diff --git a/5_retrieval/5_retrieval.ipynb b/5_retrieval/5_retrieval.ipynb index 2c27b0f5fa1d52b62b9a67147cba16af646e6fb1..d003f59fdbb0d75b7cdc8fb0e9ee7e91314ef6c4 100644 --- a/5_retrieval/5_retrieval.ipynb +++ b/5_retrieval/5_retrieval.ipynb @@ -19,7 +19,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -34,9 +34,18 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/loganmarkewich/llama_docs_bot/venv/lib/python3.9/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n" + ] + } + ], "source": [ "from llama_index import ServiceContext, set_global_service_context\n", "from llama_index.llms import OpenAI\n", @@ -72,7 +81,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -138,7 +147,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -205,7 +214,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -218,27 +227,16 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 8, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks...\n", - "To disable this warning, you can either:\n", - "\t- Avoid using `tokenizers` before the fork if possible\n", - "\t- Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)\n" - ] - } - ], + "outputs": [], "source": [ "!rm -rf data_*" ] }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -251,7 +249,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -262,7 +260,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -272,14 +270,14 @@ "\n", "--- Hierarchical ---\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\n", "Content Type: text\n", "Header Path: Usage Pattern/Configuring a Query Engine/High-Level API\n", "Links:\n", "\n", "You can directly build and configure a query engine from an index in 1 line of code:\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\n", "Content Type: text\n", "Header Path: Usage Pattern/Configuring a Query Engine/High-Level API\n", "Links:\n", @@ -289,12 +287,12 @@ " verbose=True,\n", ")\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\n", "Content Type: text\n", "Header Path: Usage Pattern/Configuring a Query Engine/High-Level API\n", "Links:\n", "\n", - "> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.See **Response Modes** for a full list of response modes and what they do.File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", + "> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.See **Response Modes** for a full list of response modes and what they do.File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\n", "Content Type: text\n", "Header Path: Usage Pattern/Configuring a Query Engine/High-Level API\n", "Links:\n", @@ -306,161 +304,14 @@ "response_modes.md\n", "streaming.md\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\n", - "Links:\n", - "\n", - "You can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct a `QueryEngine` object instead of calling `index.as_query_engine(...)`.> Note: You may need to look at API references or example notebooks.File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\n", "Content Type: text\n", "Header Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\n", "Links:\n", "\n", - "from llama_index import (\n", - " VectorStoreIndex,\n", - " get_response_synthesizer,\n", - ")\n", - "from llama_index.retrievers import VectorIndexRetriever\n", - "from llama_index.query_engine import RetrieverQueryEngine\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/build index\n", - "Links:\n", - "\n", - "index = VectorStoreIndex.from_documents(documents)\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/configure retriever\n", - "Links:\n", - "\n", - "retriever = VectorIndexRetriever(\n", - " index=index, \n", - " similarity_top_k=2,\n", - ")\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/configure response synthesizer\n", - "Links:\n", - "\n", - "response_synthesizer = get_response_synthesizer(\n", - " response_mode=\"tree_summarize\",\n", - ")\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/assemble query engine\n", - "Links:\n", - "\n", - "query_engine = RetrieverQueryEngine(\n", - " retriever=retriever,\n", - " response_synthesizer=response_synthesizer,\n", - ")\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/query\n", - "Links:\n", - "\n", - "response = query_engine.query(\"What did the author do growing up?\")print(response)\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/Streaming\n", - "Links:\n", - "\n", - "To enable streaming, you simply need to pass in a `streaming=True` flag\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/Streaming\n", - "Links:\n", - "\n", - "query_engine = index.as_query_engine(\n", - " streaming=True,\n", - ")\n", - "streaming_response = query_engine.query(\n", - " \"What did the author do growing up?\", \n", - ")\n", - "streaming_response.print_response_stream()\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Query Engine/Streaming\n", - "\n", - "* Read the full streaming guide\n", - "* See an end-to-end example\n", - "\n", - "File Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\n", - "Content Type: text\n", - "Header Path: Module Guide\n", - "Links:\n", - "\n", - "Detailed inputs/outputs for each response synthesizer are found below.File Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\n", - "Content Type: text\n", - "Header Path: Module Guide/API Example\n", - "Links:\n", - "\n", - "The following shows the setup for utilizing all kwargs.- `response_mode` specifies which response synthesizer to use\n", - "- `service_context` defines the LLM and related settings for synthesis\n", - "- `text_qa_template` and `refine_template` are the prompts used at various stages\n", - "- `use_async` is used for only the `tree_summarize` response mode right now, to asynchronously build the summary tree\n", - "- `streaming` configures whether to return a streaming response object or not\n", - "\n", - "In the `synthesize`/`asyntheszie` functions, you can optionally provide additional source nodes, which will be added to the `response.source_nodes` list.\n", - "---\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/gpt-4\n", - "Links:\n", - "\n", - "---\n", - "caption: Examples\n", - "maxdepth: 1\n", - "---\n", - "/examples/query_transformations/HyDEQueryTransformDemo.ipynb\n", - "/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/modules.md\n", - "Content Type: code\n", - "Header Path: Module Guides/Basic\n", - "\n", - "```{toctree}\n", - "---\n", - "maxdepth: 1\n", - "---\n", - "Retriever Query Engine </examples/query_engine/CustomRetrievers.ipynb>\n", - "```\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/modules.md\n", - "Content Type: code\n", - "Header Path: Module Guides/Structured & Semi-Structured Data\n", - "\n", - "```{toctree}\n", - "---\n", - "maxdepth: 1\n", - "---\n", - "/examples/query_engine/json_query_engine.ipynb\n", - "/examples/query_engine/pandas_query_engine.ipynb\n", - "/examples/query_engine/knowledge_graph_query_engine.ipynb\n", - "```\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/modules.md\n", - "Content Type: code\n", - "Header Path: Module Guides/Advanced\n", - "\n", - "```{toctree}\n", - "---\n", - "maxdepth: 1\n", + "You can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct a `QueryEngine` object instead of calling `index.as_query_engine(.)`.> Note: You may need to look at API references or example notebooks.File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.\n", "---\n", - "/examples/query_engine/RouterQueryEngine.ipynb\n", - "/examples/query_engine/RetrieverRouterQueryEngine.ipynb\n", - "/examples/query_engine/JointQASummary.ipynb\n", - "/examples/query_engine/sub_question_query_engine.ipynb\n", - "/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n", - "/examples/query_engine/SQLRouterQueryEngine.ipynb\n", + "ipynb\n", "/examples/query_engine/SQLAutoVectorQueryEngine.ipynb\n", "/examples/query_engine/SQLJoinQueryEngine.ipynb\n", "/examples/index_structs/struct_indices/duckdb_sql_query.ipynb\n", @@ -471,7 +322,7 @@ "/examples/query_engine/pdf_tables/recursive_retriever.ipynb\n", "```\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/modules.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/modules.md\n", "Content Type: code\n", "Header Path: Module Guides/Experimental\n", "\n", @@ -482,7 +333,7 @@ "/examples/query_engine/flare_query_engine.ipynb\n", "```\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/response_modes.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/response_modes.md\n", "Content Type: text\n", "Header Path: Response Modes\n", "\n", @@ -492,147 +343,79 @@ " many `Node` text chunks that can fit within the maximum prompt size.If there are \n", " too many chunks to stuff in one prompt, \"create and refine\" an answer by going through\n", " multiple prompts.- `tree_summarize`: Given a set of `Node` objects and the query, recursively construct a tree \n", - " and return the root node as the response.Good for summarization purposes.- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n", - " without actually sending them.Then can be inspected by checking `response.source_nodes`.The response object is covered in more detail in Section 5.- `accumulate`: Given a set of `Node` objects and the query, apply the query to each `Node` text\n", - " chunk while accumulating the responses into an array.Returns a concatenated string of all\n", - " responses.Good for when you need to run the same query separately against each text\n", - " chunk.See Response Synthesizer to learn more.File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Concept\n", - "Links:\n", - "\n", - "Query engine is a generic interface that allows you to ask question over your data.A query engine takes in a natural language query, and returns a rich response.It is most often (but not always) built on one or many Indices via Retrievers.You can compose multiple query engines to achieve more advanced capability.File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Concept\n", - "Links:\n", - "\n", - "If you want to have a conversation with your data (multiple back-and-forth instead of a single question & answer), take a look at Chat Engine\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Usage Pattern\n", - "Links:\n", - "\n", - "Get started with:\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Usage Pattern\n", - "Links:\n", - "\n", - "query_engine = index.as_query_engine()\n", - "response = query_engine.query(\"Who is Paul Graham.\")File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Usage Pattern\n", - "Links:\n", - "\n", - "To stream response:\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/root.md\n", - "Content Type: text\n", - "Header Path: Query Engine/Usage Pattern\n", - "Links:\n", - "\n", - "query_engine = index.as_query_engine(streaming=True)\n", - "streaming_response = query_engine.query(\"Who is Paul Graham.\")\n", + " and return the root node as the response.Good for summarization purposes.\n", "---\n", - "Here's a corresponding example code snippet over a composed graph.\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/llm_predictor_chatgpt corresponds to the ChatGPT LLM interface\n", - "Links:\n", - "\n", - "from llama_index.indices.query.query_transform.base import DecomposeQueryTransform\n", - "decompose_transform = DecomposeQueryTransform(\n", - " llm_predictor_chatgpt, verbose=True\n", ")\n", + "query_engine = graph.as_query_engine(custom_query_engines=custom_query_engines)\n", + "response = query_engine.query(query_str)\n", "\n", "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", "Content Type: text\n", - "Header Path: Query Transformations/initialize indexes and graph\n", + "Header Path: Query Transformations/query\n", "Links:\n", "\n", - "...\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "Check out our example notebook for a full walkthrough.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", "Content Type: text\n", - "Header Path: Query Transformations/configure retrievers\n", + "Header Path: Query Transformations/Multi-Step Query Transformations\n", "Links:\n", "\n", - "vector_query_engine = vector_index.as_query_engine()\n", - "vector_query_engine = TransformQueryEngine(\n", - " vector_query_engine, \n", - " query_transform=decompose_transform\n", - " transform_extra_info={'index_summary': vector_index.index_struct.summary}\n", - ")\n", - "custom_query_engines = {\n", - " vector_index.index_id: vector_query_engine\n", - "}\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "Multi-step query transformations are a generalization on top of existing single-step query transformation approaches.Given an initial, complex query, the query is transformed and executed against an index.The response is retrieved from the query.Given the response (along with prior responses) and the query, followup questions may be asked against the index as well.This technique allows a query to be run against a single knowledge source until that query has satisfied all questions.An example image is shown below.!\n", + "---\n", + "/docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", "Content Type: text\n", - "Header Path: Query Transformations/query\n", + "Header Path: Query Transformations/run query with HyDE query transform\n", "Links:\n", "\n", - "query_str = (\n", - " \"Compare and contrast the airports in Seattle, Houston, and Toronto. \"\n", - ")\n", - "query_engine = graph.as_query_engine(custom_query_engines=custom_query_engines)\n", + "query_str = \"what did paul graham do after going to RISD\"\n", + "hyde = HyDEQueryTransform(include_original=True)\n", + "query_engine = index.as_query_engine()\n", + "query_engine = TransformQueryEngine(query_engine, query_transform=hyde)\n", "response = query_engine.query(query_str)\n", + "print(response)\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", "Content Type: text\n", - "Header Path: Query Transformations/query\n", + "Header Path: Query Transformations/run query with HyDE query transform\n", "Links:\n", "\n", - "Check out our example notebook for a full walkthrough.\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "Check out our example notebook for a full walkthrough.File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", "Content Type: text\n", - "Header Path: Query Transformations/Multi-Step Query Transformations\n", + "Header Path: Query Transformations/Single-Step Query Decomposition\n", "Links:\n", "\n", - "Multi-step query transformations are a generalization on top of existing single-step query transformation approaches.\n", - "\n", - "Given an initial, complex query, the query is transformed and executed against an index. The response is retrieved from the query. \n", - "Given the response (along with prior responses) and the query, followup questions may be asked against the index as well. This technique allows a query to be run against a single knowledge source until that query has satisfied all questions.\n", - "\n", - "An example image is shown below.\n", - "\n", - "!\n", - "\n", - "\n", - "Here's a corresponding example code snippet.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "Some recent approaches (e.g.self-ask, ReAct) have suggested that LLM's \n", + "perform better at answering complex questions when they break the question into smaller steps.We have found that this is true for queries that require knowledge augmentation as well.If your query is complex, different parts of your knowledge base may answer different \"subqueries\" around the overall query.Our single-step query decomposition feature transforms a **complicated** question into a simpler one over the data collection to help provide a sub-answer to the original question.This is especially helpful over a composed graph.Within a composed graph, a query can be routed to multiple subindexes, each representing a subset of the overall knowledge corpus.Query decomposition allows us to transform the query into a more suitable question over any given index.An example image is shown below.!\n", + "---\n", + "- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n", + " without actually sending them.Then can be inspected by checking `response.source_nodes`.The response object is covered in more detail in Section 5.- `accumulate`: Given a set of `Node` objects and the query, apply the query to each `Node` text\n", + " chunk while accumulating the responses into an array.Returns a concatenated string of all\n", + " responses.Good for when you need to run the same query separately against each text\n", + " chunk.See Response Synthesizer to learn more.File Name: ./docs/core_modules/query_modules/query_engine/root.md\n", "Content Type: text\n", - "Header Path: Query Transformations/Multi-Step Query Transformations\n", + "Header Path: Query Engine/Concept\n", "Links:\n", "\n", - "from llama_index.indices.query.query_transform.base import StepDecomposeQueryTransform\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "Query engine is a generic interface that allows you to ask question over your data.A query engine takes in a natural language query, and returns a rich response.It is most often (but not always) built on one or many Indices via Retrievers.You can compose multiple query engines to achieve more advanced capability.File Name: ./docs/core_modules/query_modules/query_engine/root.md\n", "Content Type: text\n", - "Header Path: Query Transformations/gpt-4\n", + "Header Path: Query Engine/Concept\n", "Links:\n", "\n", - "step_decompose_transform = StepDecomposeQueryTransform(\n", - " llm_predictor, verbose=True\n", - ")\n", + "If you want to have a conversation with your data (multiple back-and-forth instead of a single question & answer), take a look at Chat Engine\n", "\n", - "query_engine = index.as_query_engine()\n", - "query_engine = MultiStepQueryEngine(query_engine, query_transform=step_decompose_transform)\n", + "File Name: ./docs/core_modules/query_modules/query_engine/root.md\n", + "Content Type: text\n", + "Header Path: Query Engine/Usage Pattern\n", + "Links:\n", "\n", - "response = query_engine.query(\n", - " \"Who was in the first batch of the accelerator program the author started?\",\n", - ")\n", - "print(str(response))\n", + "Get started with:\n", "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", + "File Name: ./docs/core_modules/query_modules/query_engine/root.md\n", "Content Type: text\n", - "Header Path: Query Transformations/gpt-4\n", + "Header Path: Query Engine/Usage Pattern\n", "Links:\n", "\n", - "Check out our example notebook for a full walkthrough.\n", + "query_engine = index.as_query_engine()\n", + "response = query_engine.query(\"Who is Paul Graham.\n", "---\n", "]\n", "\n", @@ -661,179 +444,7 @@ "```python\n", "chat_engine = index.as_chat_engine()\n", "streaming_response = chat_engine.stream_chat(\"Tell me a joke.\n", - "---\n", - "@abstractmethod\n", - " def postprocess_nodes(\n", - " self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n", - " ) -> List[NodeWithScore]:\n", - " \"\"\"Postprocess nodes.\"\"\"File Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Custom Node PostProcessor\n", - "Links:\n", - "\n", - "A dummy node-postprocessor can be implemented in just a few lines of code:\n", - "\n", - "File Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Custom Node PostProcessor\n", - "Links:\n", - "\n", - "from llama_index import QueryBundle\n", - "from llama_index.indices.postprocessor.base import BaseNodePostprocessor\n", - "from llama_index.schema import NodeWithScore\n", - "\n", - "class DummyNodePostprocessor:\n", - "\n", - " def postprocess_nodes(\n", - " self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n", - " ) -> List[NodeWithScore]:\n", - " \n", - " # subtracts 1 from the score\n", - " for n in nodes:\n", - " n.score -= 1\n", - "\n", - " return nodes\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations\n", - "Links:\n", - "\n", - "LlamaIndex allows you to perform *query transformations* over your index structures.Query transformations are modules that will convert a query into another query.They can be **single-step**, as in the transformation is run once before the query is executed against an index.They can also be **multi-step**, as in: \n", - "1.The query is transformed, executed against an index, \n", - "2.The response is retrieved.3.Subsequent queries are transformed/executed in a sequential fashion.We list some of our query transformations in more detail below.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/Use Cases\n", - "Links:\n", - "\n", - "Query transformations have multiple use cases:\n", - "- Transforming an initial query into a form that can be more easily embedded (e.g.HyDE)\n", - "- Transforming an initial query into a subquestion that can be more easily answered from the data (single-step query decomposition)\n", - "- Breaking an initial query into multiple subquestions that can be more easily answered on their own.(multi-step query decomposition)\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\n", - "Links:\n", - "\n", - "HyDE is a technique where given a natural language query, a hypothetical document/answer is generated first.This hypothetical document is then used for embedding lookup rather than the raw query.To use HyDE, an example code snippet is shown below.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\n", - "Links:\n", - "\n", - "from llama_index import VectorStoreIndex, SimpleDirectoryReader\n", - "from llama_index.indices.query.query_transform.base import HyDEQueryTransform\n", - "from llama_index.query_engine.transform_query_engine import TransformQueryEngine\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/load documents, build index\n", - "Links:\n", - "\n", - "documents = SimpleDirectoryReader('../paul_graham_essay/data').load_data()\n", - "index = VectorStoreIndex(documents)\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/run query with HyDE query transform\n", - "Links:\n", - "\n", - "query_str = \"what did paul graham do after going to RISD\"\n", - "hyde = HyDEQueryTransform(include_original=True)\n", - "query_engine = index.as_query_engine()\n", - "query_engine = TransformQueryEngine(query_engine, query_transform=hyde)\n", - "response = query_engine.query(query_str)\n", - "print(response)\n", - "\n", - "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/run query with HyDE query transform\n", - "Links:\n", - "\n", - "Check out our example notebook for a full walkthrough.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\n", - "Content Type: text\n", - "Header Path: Query Transformations/Single-Step Query Decomposition\n", - "Links:\n", - "\n", - "Some recent approaches (e.g.self-ask, ReAct) have suggested that LLM's \n", - "perform better at answering complex questions when they break the question into smaller steps.We have found that this is true for queries that require knowledge augmentation as well.If your query is complex, different parts of your knowledge base may answer different \"subqueries\" around the overall query.Our single-step query decomposition feature transforms a **complicated** question into a simpler one over the data collection to help provide a sub-answer to the original question.This is especially helpful over a composed graph.Within a composed graph, a query can be routed to multiple subindexes, each representing a subset of the overall knowledge corpus.Query decomposition allows us to transform the query into a more suitable question over any given index.An example image is shown below.!\n", - "---\n", - "File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Chat Engine/High-Level API\n", - "Links:\n", - "\n", - "You can directly build and configure a chat engine from an index in 1 line of code:\n", - "\n", - "File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Chat Engine/High-Level API\n", - "Links:\n", - "\n", - "chat_engine = index.as_chat_engine(\n", - " chat_mode='condense_question', \n", - " verbose=True\n", - ")\n", - "\n", - "File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Chat Engine/High-Level API\n", - "Links:\n", - "\n", - "> Note: you can access different chat engines by specifying the `chat_mode` as a kwarg.`condense_question` corresponds to `CondenseQuestionChatEngine`, `react` corresponds to `ReActChatEngine`.> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\n", - "Content Type: text\n", - "Header Path: Usage Pattern/Configuring a Chat Engine/Low-Level Composition API\n", - "Links:\n", - "\n", - "You can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct `ChatEngine` object instead of calling `index.as_chat_engine(.)`.> Note: You may need to look at API references or example notebooks.Here's an example where we configure the following:\n", - "* configure the condense question prompt, \n", - "* initialize the conversation with some existing history,\n", - "* print verbose debug message.File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.\n", - "---\n", - "similarity_top_k=1\n", - ")\n", - "\n", - "File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\n", - "Content Type: text\n", - "Header Path: Streaming/Setup\n", - "Links:\n", - "\n", - "If you are using the low-level API to compose the query engine,\n", - "pass `streaming=True` when constructing the `Response Synthesizer`:\n", - "\n", - "File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\n", - "Content Type: text\n", - "Header Path: Streaming/Setup\n", - "Links:\n", - "\n", - "from llama_index import get_response_synthesizer\n", - "synth = get_response_synthesizer(streaming=True, .)\n", - "query_engine = RetrieverQueryEngine(response_synthesizer=synth, .)\n", - "\n", - "File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\n", - "Content Type: text\n", - "Header Path: Streaming/Streaming Response\n", - "Links:\n", - "\n", - "After properly configuring both the LLM and the query engine,\n", - "calling `query` now returns a `StreamingResponse` object.File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\n", - "Content Type: text\n", - "Header Path: Streaming/Streaming Response\n", - "Links:\n", - "\n", - "streaming_response = query_engine.query(\n", - " \"What did the author do growing up?\", \n", - ")\n", - "\n", - "File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\n", - "Content Type: text\n", - "Header Path: Streaming/Streaming Response\n", - "Links:\n", - "\n", - "The response is returned immediately when the LLM call *starts*, without having to wait for the full completion.> Note: In the case where the query engine makes multiple LLM calls, only the last LLM call will be streamed and the response is returned when the last LLM call starts.You can obtain a `Generator` from the streaming response and iterate over the tokens as they arrive:\n", - "\n", - "File Name: ./docs/core_modules/query_modules/query_engine/streaming.\n", - "Total length: 6612\n" + "Total length: 2365\n" ] } ], @@ -852,7 +463,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 12, "metadata": {}, "outputs": [ { @@ -979,26 +590,20 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "from typing import Callable, Optional\n", "\n", - "from llama_index.bridge.pydantic import Field, PrivateAttr\n", - "from llama_index.indices.postprocessor.types import BaseNodePostprocessor\n", "from llama_index.utils import globals_helper\n", "from llama_index.schema import MetadataMode\n", "\n", - "class LimitRetrievedNodesLength(BaseNodePostprocessor):\n", - " limit: int = 3000\n", - " _tokenizer: Callable = PrivateAttr()\n", + "class LimitRetrievedNodesLength:\n", "\n", " def __init__(self, limit: int = 3000, tokenizer: Optional[Callable] = None):\n", " self._tokenizer = tokenizer or globals_helper.tokenizer\n", - " super().__init__(\n", - " limit=limit,\n", - " )\n", + " self.limit = limit\n", "\n", " def postprocess_nodes(self, nodes, query_bundle):\n", " included_nodes = []\n", @@ -1015,7 +620,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 14, "metadata": {}, "outputs": [ { @@ -1035,7 +640,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -1049,14 +654,14 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Total length: 2365\n" + "Total length: 2971\n" ] } ], diff --git a/5_retrieval/data_query_modules/docstore.json b/5_retrieval/data_query_modules/docstore.json new file mode 100644 index 0000000000000000000000000000000000000000..91d7629d20e34a50ba45e3557cd66ae1a5c94688 --- /dev/null +++ b/5_retrieval/data_query_modules/docstore.json @@ -0,0 +1 @@ +{"docstore/data": {"4d3efd15-341c-4b29-afa7-7953188d2938": {"__data__": {"id_": "4d3efd15-341c-4b29-afa7-7953188d2938", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "3": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "5": [{"node_id": "ed55ac15-ce09-44f2-8794-eb6f30ad4102", "node_type": null, "metadata": {}, "hash": "4262e11df5c3bbed8251c990f57e24075fea68dec6c8db7b8c6b5319d0269284"}, {"node_id": "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "node_type": null, "metadata": {}, "hash": "77f96d1de5680edd6c50e02c17bcb4d73aec29caf811c0fceff1d78500341caf"}, {"node_id": "7606d974-a75a-40e4-b749-ceee37dbf1b5", "node_type": null, "metadata": {}, "hash": "f994cfd53ce54f093d632d29c3995f2e5a7cb76c42c6249fa8ec43feb26fd0ee"}, {"node_id": "0ecd70b0-69e8-4c8d-bbde-4018da0126cb", "node_type": null, "metadata": {}, "hash": "16dc20ceedccee484801f6cd6331c075d63d21ef38feba760930abe8c6723f57"}]}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2", "text": "File Name: ../docs/core_modules/query_modules/chat_engines/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\nWe provide a few simple implementations to start, with more sophisticated modes coming soon!More specifically, the `SimpleChatEngine` does not make use of a knowledge base, \nwhereas `CondenseQuestionChatEngine` and `ReActChatEngine` make use of a query engine over knowledge base.File Name: ../docs/core_modules/query_modules/chat_engines/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\n---\nmaxdepth: 1\n---\nSimple Chat Engine </examples/chat_engine/chat_engine_repl.ipynb>\nReAct Chat Engine </examples/chat_engine/chat_engine_react.ipynb>\nOpenAI Chat Engine </examples/chat_engine/chat_engine_openai.ipynb>\nCondense Question Chat Engine </examples/chat_engine/chat_engine_condense_question.ipynb>\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Concept\nLinks:\n\nChat engine is a high-level interface for having a conversation with your data\n(multiple back-and-forth instead of a single question & answer).Think ChatGPT, but augmented with your knowledge base.Conceptually, it is a **stateful** analogy of a Query Engine.By keeping track of the conversation history, it can answer questions with past context in mind.File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Concept\nLinks:\n\nIf you want to ask standalone question over your data (i.e.without keeping track of conversation history), use Query Engine instead.File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nchat_engine = index.as_chat_engine()\nresponse = chat_engine.chat(\"Tell me a joke.\")File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nTo stream response:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nchat_engine = index.as_chat_engine()\nstreaming_response = chat_engine.stream_chat(\"Tell me a joke.\")for token in streaming_response.response_gen:\n print(token, end=\"\")\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: code\nHeader Path: Chat Engine/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Modules\nLinks:\n\nBelow you can find corresponding tutorials to see the available chat engines in action.File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Modules\nLinks:\n\n---\nmaxdepth: 2\n---\nmodules.md\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nBuild a chat engine from index:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine = index.as_chat_engine()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index, see Index\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nHave a conversation with your data:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nresponse = chat_engine.chat(\"Tell me a joke.\")File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nReset chat history to start a new conversation:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine.reset()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nEnter an interactive chat REPL:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine.chat_repl()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine\nLinks:\n\nConfiguring a chat engine is very similar to configuring a query engine.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6113854b-aea9-4310-bc89-6bf385c91deb": {"__data__": {"id_": "6113854b-aea9-4310-bc89-6bf385c91deb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}, "3": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "5": [{"node_id": "f4bd15e2-598d-4e37-ae15-6e03a9f08398", "node_type": null, "metadata": {}, "hash": "f997d531bcd63c9f023e50a984d05cab88c8796412bc8c6bc991a5335aea856e"}, {"node_id": "fb970878-52f4-4123-af7f-ef6a948abf39", "node_type": null, "metadata": {}, "hash": "c6253458d24ad71db59bdcd0495916aa2f8a261ef905f899e1ca3461c1c192cc"}, {"node_id": "051bf54d-d207-473e-a13b-3a0977d00377", "node_type": null, "metadata": {}, "hash": "48122b3e6a2098d31381010c56fa07d7b775eef7f1ff5ab516fcd7d8fb43e3b2"}, {"node_id": "fbf04091-9814-4c59-a2af-59cf4442e28a", "node_type": null, "metadata": {}, "hash": "e6dc2d9b6f90a2e165bf9b33f012c19e41a3164d99c104336abf3b6d508b6b18"}]}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19", "text": "File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\nYou can directly build and configure a chat engine from an index in 1 line of code:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\nchat_engine = index.as_chat_engine(\n chat_mode='condense_question', \n verbose=True\n)\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\n> Note: you can access different chat engines by specifying the `chat_mode` as a kwarg.`condense_question` corresponds to `CondenseQuestionChatEngine`, `react` corresponds to `ReActChatEngine`.> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct `ChatEngine` object instead of calling `index.as_chat_engine(...)`.> Note: You may need to look at API references or example notebooks.Here's an example where we configure the following:\n* configure the condense question prompt, \n* initialize the conversation with some existing history,\n* print verbose debug message.File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Low-Level Composition API\nLinks:\n\nfrom llama_index.prompts import Prompt\n\ncustom_prompt = Prompt(\"\"\"\\\nGiven a conversation (between Human and Assistant) and a follow up message from Human, \\\nrewrite the message to be a standalone question that captures all relevant context \\\nfrom the conversation.<Chat History> \n{chat_history}\n\n<Follow Up Message>\n{question}\n\n<Standalone question>\n\"\"\")\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/list of (human_message, ai_message) tuples\nLinks:\n\ncustom_chat_history = [\n (\n 'Hello assistant, we are having a insightful discussion about Paul Graham today.', \n 'Okay, sounds good.')\n]\n\nquery_engine = index.as_query_engine()\nchat_engine = CondenseQuestionChatEngine.from_defaults(\n query_engine=query_engine, \n condense_question_prompt=custom_prompt,\n chat_history=custom_chat_history,\n verbose=True\n)\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\nLinks:\n\nTo enable streaming, you simply need to call the `stream_chat` endpoint instead of the `chat` endpoint.File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\nLinks:\n\nThis somewhat inconsistent with query engine (where you pass in a `streaming=True` flag).We are working on making the behavior more consistent!File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\n\n```python\nchat_engine = index.as_chat_engine()\nstreaming_response = chat_engine.stream_chat(\"Tell me a joke.\")for token in streaming_response.response_gen:\n print(token, end=\"\")\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\n\nSee an end-to-end tutorial\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SimilarityPostprocessor\nLinks:\n\nUsed to remove nodes that are below a similarity score threshold.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SimilarityPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\n\npostprocessor = SimilarityPostprocessor(similarity_cutoff=0.7)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/KeywordNodePostprocessor\nLinks:\n\nUsed to ensure certain keywords are either excluded or included.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/KeywordNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import KeywordNodePostprocessor\n\npostprocessor = KeywordNodePostprocessor(\n required_keywords=[\"word1\", \"word2\"],\n exclude_keywords=[\"word3\", \"word4\"]\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nThis postprocessor optimizes token usage by removing sentences that are not relevant to the query (this is done using embeddings).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "43aa67f4-1213-4cfd-87bf-82baa0a7a21a": {"__data__": {"id_": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "3": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "5": [{"node_id": "9a424f32-a874-4f8e-ab1c-991d3a9dbe49", "node_type": null, "metadata": {}, "hash": "33315f4fb092f447a63428c4de8c9426c04b9d14b9066451bb8c349bb8aed600"}, {"node_id": "897ceee3-7af9-4300-a996-7069853dd3fe", "node_type": null, "metadata": {}, "hash": "415da5caa22124dcc721dee78617a51e585f7fe8dece2256478f05ea40b355e5"}, {"node_id": "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "node_type": null, "metadata": {}, "hash": "36738bb23aa0fcc746d254c0e39e574306470f8125f936803db728adca78853a"}, {"node_id": "b42d48c1-08ff-42a5-bdb4-9dd6f364a027", "node_type": null, "metadata": {}, "hash": "40e16441ab13ac84a903aa068d336b090e273e96b024890e4b0050529b834cab"}]}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819", "text": "The percentile cutoff is a measure for using the top percentage of relevant sentences.The threshold cutoff can be specified instead, which uses a raw similarity cutoff for picking which sentences to keep.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nfrom llama_index.indices.postprocessor import SentenceEmbeddingOptimizer\n\npostprocessor = SentenceEmbeddingOptimizer(\n embed_model=service_context.embed_model,\n percentile_cutoff=0.5,\n # threshold_cutoff=0.7\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nA full notebook guide can be found here\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nUses the \"Cohere ReRank\" functionality to re-order nodes, and returns the top N nodes.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nfrom llama_index.indices.postprocessor import CohereRerank\n\npostprocessor = CohereRerank(\n top_n=2\n model=\"rerank-english-v2.0\",\n api_key=\"YOUR COHERE API KEY\"\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nFull notebook guide is available here.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nUses a LLM to re-order nodes by asking the LLM to return the relevant documents and a score of how relevant they are.Returns the top N ranked nodes.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nfrom llama_index.indices.postprocessor import LLMRerank\n\npostprocessor = LLMRerank(\n top_n=2\n service_context=service_context,\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nFull notebook guide is available her for Gatsby and here for Lyft 10K documents.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes sorted by date.This assumes there is a `date` field to parse in the metadata of each node.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import FixedRecencyPostprocessor\n\npostprocessor = FixedRecencyPostprocessor(\n tok_k=1,\n date_key=\"date\" # the key in the metadata to find the date\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\n!A full notebook guide is available here.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes after sorting by date and removing older nodes that are too similar after measuring embedding similarity.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import EmbeddingRecencyPostprocessor\n\npostprocessor = EmbeddingRecencyPostprocessor(\n service_context=service_context,\n date_key=\"date\",\n similarity_cutoff=0.7\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nA full notebook guide is available here.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes applying a time-weighted rerank to each node.Each time a node is retrieved, the time it was retrieved is recorded.This biases search to favor information that has not be returned in a query yet.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import TimeWeightedPostprocessor\n\npostprocessor = TimeWeightedPostprocessor(\n time_decay=0.99,\n top_k=1\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nA full notebook guide is available here.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6dd66f92-57c2-4089-9f14-5d673d36d762": {"__data__": {"id_": "6dd66f92-57c2-4089-9f14-5d673d36d762", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "3": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "5": [{"node_id": "a4892a1f-2218-4bfe-b691-4162b1d4bf80", "node_type": null, "metadata": {}, "hash": "bbfc9e7516b4ad407a62d38a5451f7df026faabb8a4734f99b0f297b1e81a75e"}, {"node_id": "e043659e-e9a0-4c87-8095-875bfdf7221a", "node_type": null, "metadata": {}, "hash": "1cfa1181e601b4943de427f459dfd2ef90dd03581280ef97cff71cb4a0481ba2"}, {"node_id": "122d9186-a52b-4223-b806-d42a8563c93e", "node_type": null, "metadata": {}, "hash": "b89bd911f9c9274d05b41661c2651814c70623c370cecc0469df24111adebeaf"}, {"node_id": "9030c3b5-ba90-48a4-99dd-08c955bacadd", "node_type": null, "metadata": {}, "hash": "b743eeab3c848aca6a4ac34ab2b118c8bfa83196d2bb1013388391696cf3364e"}]}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84", "text": "File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor\nLinks:\n\nThe PII (Personal Identifiable Information) postprocssor removes information that might be a security risk.It does this by using NER (either with a dedicated NER model, or with a local LLM model).File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: code\nHeader Path: Modules/(Beta) PIINodePostprocessor/LLM Version\n\n```python\nfrom llama_index.indices.postprocessor import PIINodePostprocessor\n\npostprocessor = PIINodePostprocessor(\n service_context=service_context, # this should be setup with an LLM you trust\n)\n\npostprocessor.postprocess_nodes(nodes)\n```\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nThis version uses the default local model from Hugging Face that is loaded when you run `pipline(\"ner\")`.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nfrom llama_index.indices.postprocessor import NERPIINodePostprocessor\n\npostprocessor = NERPIINodePostprocessor()\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nA full notebook guide for both can be found here.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\nUses pre-defined settings to read the `Node` relationships and fetch either all nodes that come previously, next, or both.This is useful when you know the relationships point to important data (either before, after, or both) that should be sent to the LLM if that node is retrieved.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import PrevNextNodePostprocessor\n\npostprocessor = PrevNextNodePostprocessor(\n docstore=index.docstore,\n num_nodes=1, # number of nodes to fetch when looking forawrds or backwards\n mode=\"next\" # can be either 'next', 'previous', or 'both'\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\n!File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nThe same as PrevNextNodePostprocessor, but lets the LLM decide the mode (next, previous, or both).File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import AutoPrevNextNodePostprocessor\n\npostprocessor = AutoPrevNextNodePostprocessor(\n docstore=index.docstore,\n service_context=service_context\n num_nodes=1, # number of nodes to fetch when looking forawrds or backwards)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nA full example notebook is available here.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: code\nHeader Path: Modules/(Beta) PIINodePostprocessor/All Notebooks\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/node_postprocessor/OptimizerDemo.ipynb\n/examples/node_postprocessor/CohereRerank.ipynb\n/examples/node_postprocessor/LLMReranker-Lyft-10k.ipynb\n/examples/node_postprocessor/LLMReranker-Gatsby.ipynb\n/examples/node_postprocessor/RecencyPostprocessorDemo.ipynb\n/examples/node_postprocessor/TimeWeightedPostprocessorDemo.ipynb\n/examples/node_postprocessor/PII.ipynb\n/examples/node_postprocessor/PrevNextPostprocessorDemo.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Concept\nLinks:\n\nNode postprocessors are a set of modules that take a set of nodes, and apply some kind of transformation or filtering before returning them.In LlamaIndex, node postprocessors are most commonly applied within a query engine, after the node retrieval step and before the response synthesis step.LlamaIndex offers several node postprocessors for immediate use, while also providing a simple API for adding your own custom postprocessors.File Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Concept\nLinks:\n\nConfused about where node postprocessor fits in the pipeline?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "35f742cf-4dde-4ace-9e1e-d3074523760f": {"__data__": {"id_": "35f742cf-4dde-4ace-9e1e-d3074523760f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "3": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}, "5": [{"node_id": "f60a00a0-3ba2-46c7-8cad-cd05df08c6af", "node_type": null, "metadata": {}, "hash": "9cffdfb14d878e50776c5de0f52510f16f4d348eb80a2cabc41f6660265fd71e"}, {"node_id": "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "node_type": null, "metadata": {}, "hash": "c0cbcb30decd9ba24c155ab3f966b8dc08e85f1ae9f99ab81a2b51457b8a64df"}, {"node_id": "edd49718-78ae-4333-94e6-2ffda9a60166", "node_type": null, "metadata": {}, "hash": "fe690d42f5aaee8838ac0f5b002f0da4509c7701e64b84ecd0bd67ae4d479cd1"}, {"node_id": "c907930f-94ca-477b-9bea-a98af3354b65", "node_type": null, "metadata": {}, "hash": "4dd43a1f5e676e1acf02041380d771bb6bf36ad7f0248e4a97292232884d160c"}]}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15", "text": "Read about high-level concepts\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Usage Pattern\nLinks:\n\nAn example of using a node postprocessors is below:\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Usage Pattern\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\nfrom llama_index.schema import Node, NodeWithScore\n\nnodes = [\n NodeWithScore(node=Node(text=\"text\"), score=0.7),\n NodeWithScore(node=Node(text=\"text\"), score=0.8)\n]\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\nYou can find more details using post processors and how to build your own below.File Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\n---\nmaxdepth: 2\n---\nusage_pattern.md\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Modules\nLinks:\n\nBelow you can find guides for each node postprocessor.File Name: ../docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Modules\nLinks:\n\n---\nmaxdepth: 2\n---\nmodules.md\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern\nLinks:\n\nMost commonly, node-postprocessors will be used in a query engine, where they are applied to the nodes returned from a retriever, and before the response synthesis step.File Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/all node post-processors will be applied during each query\n\n```python\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.indices.postprocessor import TimeWeightedPostprocessor\n\ndocuments = SimpleDirectoryReader(\"./data\").load_data()\n\nindex = VectorStoreIndex.from_documents(documents)\n\nquery_engine = index.as_query_engine(\n node_postprocessors=[\n TimeWeightedPostprocessor(\n time_decay=0.5, time_access_refresh=False, top_k=1\n )\n ]\n)\n\nresponse = query_engine.query(\"query string\")\n```\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with Retrieved Nodes\nLinks:\n\nOr used as a standalone object for filtering retrieved nodes:\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with Retrieved Nodes\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\n\nnodes = index.as_retriever().query(\"query string\")\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with your own nodes\nLinks:\n\nAs you may have noticed, the postprocessors take `NodeWithScore` objects as inputs, which is just a wrapper class with a `Node` and a `score` value.File Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with your own nodes\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\nfrom llama_index.schema import Node, NodeWithScore\n\nnodes = [\n NodeWithScore(node=Node(text=\"text\"), score=0.7),\n NodeWithScore(node=Node(text=\"text\"), score=0.8)\n]\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nThe base class is `BaseNodePostprocessor`, and the API interface is very simple:\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nclass BaseNodePostprocessor:\n \"\"\"Node postprocessor.\"\"\"", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "04e52538-f44c-4f5d-bbd5-41ae6bbd6372": {"__data__": {"id_": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "3": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}, "5": [{"node_id": "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb", "node_type": null, "metadata": {}, "hash": "1fb85872f4367af977decfaf90775641d425a30c48ace67ce2262bf9ee0b1aa6"}, {"node_id": "bf039726-614d-4d53-b16f-d119e7b18ae7", "node_type": null, "metadata": {}, "hash": "7daf57d6e5849bd6e98d3818c87c6d8107eed501fe1a84bc4828a688e59e1268"}, {"node_id": "bcc6f32f-9b05-4747-bcff-29b82efce87d", "node_type": null, "metadata": {}, "hash": "82e8070f7441f219bd41ec73e6a1c1eaf7f2cde7fd12fc25b5e22345ab51bab2"}]}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a", "text": "@abstractmethod\n def postprocess_nodes(\n self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n ) -> List[NodeWithScore]:\n \"\"\"Postprocess nodes.\"\"\"File Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nA dummy node-postprocessor can be implemented in just a few lines of code:\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nfrom llama_index import QueryBundle\nfrom llama_index.indices.postprocessor.base import BaseNodePostprocessor\nfrom llama_index.schema import NodeWithScore\n\nclass DummyNodePostprocessor:\n\n def postprocess_nodes(\n self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n ) -> List[NodeWithScore]:\n \n # subtracts 1 from the score\n for n in nodes:\n n.score -= 1\n\n return nodes\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations\nLinks:\n\nLlamaIndex allows you to perform *query transformations* over your index structures.Query transformations are modules that will convert a query into another query.They can be **single-step**, as in the transformation is run once before the query is executed against an index.They can also be **multi-step**, as in: \n1.The query is transformed, executed against an index, \n2.The response is retrieved.3.Subsequent queries are transformed/executed in a sequential fashion.We list some of our query transformations in more detail below.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Use Cases\nLinks:\n\nQuery transformations have multiple use cases:\n- Transforming an initial query into a form that can be more easily embedded (e.g.HyDE)\n- Transforming an initial query into a subquestion that can be more easily answered from the data (single-step query decomposition)\n- Breaking an initial query into multiple subquestions that can be more easily answered on their own.(multi-step query decomposition)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\nLinks:\n\nHyDE is a technique where given a natural language query, a hypothetical document/answer is generated first.This hypothetical document is then used for embedding lookup rather than the raw query.To use HyDE, an example code snippet is shown below.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.indices.query.query_transform.base import HyDEQueryTransform\nfrom llama_index.query_engine.transform_query_engine import TransformQueryEngine\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('../paul_graham_essay/data').load_data()\nindex = VectorStoreIndex(documents)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/run query with HyDE query transform\nLinks:\n\nquery_str = \"what did paul graham do after going to RISD\"\nhyde = HyDEQueryTransform(include_original=True)\nquery_engine = index.as_query_engine()\nquery_engine = TransformQueryEngine(query_engine, query_transform=hyde)\nresponse = query_engine.query(query_str)\nprint(response)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/run query with HyDE query transform\nLinks:\n\nCheck out our example notebook for a full walkthrough.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Single-Step Query Decomposition\nLinks:\n\nSome recent approaches (e.g.self-ask, ReAct) have suggested that LLM's \nperform better at answering complex questions when they break the question into smaller steps.We have found that this is true for queries that require knowledge augmentation as well.If your query is complex, different parts of your knowledge base may answer different \"subqueries\" around the overall query.Our single-step query decomposition feature transforms a **complicated** question into a simpler one over the data collection to help provide a sub-answer to the original question.This is especially helpful over a composed graph.Within a composed graph, a query can be routed to multiple subindexes, each representing a subset of the overall knowledge corpus.Query decomposition allows us to transform the query into a more suitable question over any given index.An example image is shown below.!", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6920088c-2a84-4cbe-ad70-13f1be8704fb": {"__data__": {"id_": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}, "3": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "5": [{"node_id": "51c9d9e2-4889-4b34-84c8-76cc71f93b3f", "node_type": null, "metadata": {}, "hash": "d1753be1bb8e0df13dbeb1735c83414ef33647dd7c293075158ad286bd3e4dd7"}, {"node_id": "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "node_type": null, "metadata": {}, "hash": "36ac76a16f0bb5e758a3a01d9144c2f0a166db3bccf60d27529c5d7a733ed5ba"}, {"node_id": "25316757-07dd-4e6d-9f0f-6f96b9cf63e2", "node_type": null, "metadata": {}, "hash": "5f348a00cdcb3373aa777965ac3e0a504e23d589f5c11dfa236c3867a1b100bb"}]}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681", "text": "Here's a corresponding example code snippet over a composed graph.\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/llm_predictor_chatgpt corresponds to the ChatGPT LLM interface\nLinks:\n\nfrom llama_index.indices.query.query_transform.base import DecomposeQueryTransform\ndecompose_transform = DecomposeQueryTransform(\n llm_predictor_chatgpt, verbose=True\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/initialize indexes and graph\nLinks:\n\n...\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/configure retrievers\nLinks:\n\nvector_query_engine = vector_index.as_query_engine()\nvector_query_engine = TransformQueryEngine(\n vector_query_engine, \n query_transform=decompose_transform\n transform_extra_info={'index_summary': vector_index.index_struct.summary}\n)\ncustom_query_engines = {\n vector_index.index_id: vector_query_engine\n}\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/query\nLinks:\n\nquery_str = (\n \"Compare and contrast the airports in Seattle, Houston, and Toronto. \"\n)\nquery_engine = graph.as_query_engine(custom_query_engines=custom_query_engines)\nresponse = query_engine.query(query_str)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/query\nLinks:\n\nCheck out our example notebook for a full walkthrough.\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Multi-Step Query Transformations\nLinks:\n\nMulti-step query transformations are a generalization on top of existing single-step query transformation approaches.\n\nGiven an initial, complex query, the query is transformed and executed against an index. The response is retrieved from the query. \nGiven the response (along with prior responses) and the query, followup questions may be asked against the index as well. This technique allows a query to be run against a single knowledge source until that query has satisfied all questions.\n\nAn example image is shown below.\n\n!\n\n\nHere's a corresponding example code snippet.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Multi-Step Query Transformations\nLinks:\n\nfrom llama_index.indices.query.query_transform.base import StepDecomposeQueryTransform\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\nstep_decompose_transform = StepDecomposeQueryTransform(\n llm_predictor, verbose=True\n)\n\nquery_engine = index.as_query_engine()\nquery_engine = MultiStepQueryEngine(query_engine, query_transform=step_decompose_transform)\n\nresponse = query_engine.query(\n \"Who was in the first batch of the accelerator program the author started?\",\n)\nprint(str(response))\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\nCheck out our example notebook for a full walkthrough.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "694198a8-926a-4f24-b121-897dd6ebd176": {"__data__": {"id_": "694198a8-926a-4f24-b121-897dd6ebd176", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}, "3": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "5": [{"node_id": "61b30575-d871-460a-af27-cd41e98c2909", "node_type": null, "metadata": {}, "hash": "16f3f7c84aec55a644fb8ea155e96dbd192b7b7d79d0b53f7bd4e4b88958fc48"}, {"node_id": "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "node_type": null, "metadata": {}, "hash": "fd9284a928c4c00541e4a594c9799b619cd2f9efcb9edc608c0c3698d3b30308"}, {"node_id": "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "node_type": null, "metadata": {}, "hash": "e0549233d2c4d811c7d20b71c081249f9cef80636d7d8dfa8466a9f4a6e2a8f7"}, {"node_id": "2a5b69df-3782-4a44-8674-fcc4a9fee8c4", "node_type": null, "metadata": {}, "hash": "e5d484c3d06c22948040a467fd5b4fcfdc6ea2991af7f0ab8e62556624a81fc7"}]}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc", "text": "File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\n---\ncaption: Examples\nmaxdepth: 1\n---\n/examples/query_transformations/HyDEQueryTransformDemo.ipynb\n/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n\nFile Name: ../docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Basic\n\n```{toctree}\n---\nmaxdepth: 1\n---\nRetriever Query Engine </examples/query_engine/CustomRetrievers.ipynb>\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Structured & Semi-Structured Data\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/json_query_engine.ipynb\n/examples/query_engine/pandas_query_engine.ipynb\n/examples/query_engine/knowledge_graph_query_engine.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Advanced\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/RouterQueryEngine.ipynb\n/examples/query_engine/RetrieverRouterQueryEngine.ipynb\n/examples/query_engine/JointQASummary.ipynb\n/examples/query_engine/sub_question_query_engine.ipynb\n/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n/examples/query_engine/SQLRouterQueryEngine.ipynb\n/examples/query_engine/SQLAutoVectorQueryEngine.ipynb\n/examples/query_engine/SQLJoinQueryEngine.ipynb\n/examples/index_structs/struct_indices/duckdb_sql_query.ipynb\nRetry Query Engine </examples/evaluation/RetryQuery.ipynb>\nRetry Source Query Engine </examples/evaluation/RetryQuery.ipynb>\nRetry Guideline Query Engine </examples/evaluation/RetryQuery.ipynb>\n/examples/query_engine/citation_query_engine.ipynb\n/examples/query_engine/pdf_tables/recursive_retriever.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Experimental\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/flare_query_engine.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/response_modes.md\nContent Type: text\nHeader Path: Response Modes\n\nRight now, we support the following options:\n- `default`: \"create and refine\" an answer by sequentially going through each retrieved `Node`; \n This makes a separate LLM call per Node.Good for more detailed answers.- `compact`: \"compact\" the prompt during each LLM call by stuffing as \n many `Node` text chunks that can fit within the maximum prompt size.If there are \n too many chunks to stuff in one prompt, \"create and refine\" an answer by going through\n multiple prompts.- `tree_summarize`: Given a set of `Node` objects and the query, recursively construct a tree \n and return the root node as the response.Good for summarization purposes.- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n without actually sending them.Then can be inspected by checking `response.source_nodes`.The response object is covered in more detail in Section 5.- `accumulate`: Given a set of `Node` objects and the query, apply the query to each `Node` text\n chunk while accumulating the responses into an array.Returns a concatenated string of all\n responses.Good for when you need to run the same query separately against each text\n chunk.See Response Synthesizer to learn more.File Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Concept\nLinks:\n\nQuery engine is a generic interface that allows you to ask question over your data.A query engine takes in a natural language query, and returns a rich response.It is most often (but not always) built on one or many Indices via Retrievers.You can compose multiple query engines to achieve more advanced capability.File Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Concept\nLinks:\n\nIf you want to have a conversation with your data (multiple back-and-forth instead of a single question & answer), take a look at Chat Engine\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine()\nresponse = query_engine.query(\"Who is Paul Graham.\")File Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nTo stream response:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine(streaming=True)\nstreaming_response = query_engine.query(\"Who is Paul Graham.\")", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b24612df-85d4-4dfc-b6c9-84f0cb367ee5": {"__data__": {"id_": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "3": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}, "5": [{"node_id": "6c12ef17-17b3-47f6-87b8-c92e1391bfb7", "node_type": null, "metadata": {}, "hash": "9d8e5e06f4f0a3a3ba8f5586c4c57ef6b7486e6dc4aeb12e551086f3f3e69366"}, {"node_id": "e4737417-44d7-46eb-b775-58b673b79554", "node_type": null, "metadata": {}, "hash": "3627c85268c3748ed861ea7a144637f3b1f29c65f3967f3fb1f3ada6c758395f"}, {"node_id": "d8f3c932-6c3a-4538-9bd2-192933dc2055", "node_type": null, "metadata": {}, "hash": "91d403b091e2be9376485bfd5b7fc9ead09b5708442883ec0056483382010cd5"}, {"node_id": "4baab847-43bf-4430-a9bf-05f0c12d9b4d", "node_type": null, "metadata": {}, "hash": "0fdbefc843ac4b7186fd1cd00f56ac63f797611247df783e7a52fef6ac6e4781"}]}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2", "text": "streaming_response.print_response_stream()\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Modules\n\n```{toctree}\n---\nmaxdepth: 3\n---\nmodules.md\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Supporting Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\nsupporting_modules.md\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming\nLinks:\n\nLlamaIndex supports streaming the response as it's being generated.This allows you to start printing or processing the beginning of the response before the full response is finished.This can drastically reduce the perceived latency of queries.File Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nTo enable streaming, you need to use an LLM that supports streaming.Right now, streaming is supported by `OpenAI`, `HuggingFaceLLM`, and most LangChain LLMs (via `LangChainLLM`).Configure query engine to use streaming:\n\nIf you are using the high-level API, set `streaming=True` when building a query engine.File Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nquery_engine = index.as_query_engine(\n streaming=True,\n similarity_top_k=1\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nIf you are using the low-level API to compose the query engine,\npass `streaming=True` when constructing the `Response Synthesizer`:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nfrom llama_index import get_response_synthesizer\nsynth = get_response_synthesizer(streaming=True, ...)\nquery_engine = RetrieverQueryEngine(response_synthesizer=synth, ...)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nAfter properly configuring both the LLM and the query engine,\ncalling `query` now returns a `StreamingResponse` object.File Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nstreaming_response = query_engine.query(\n \"What did the author do growing up?\", \n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nThe response is returned immediately when the LLM call *starts*, without having to wait for the full completion.> Note: In the case where the query engine makes multiple LLM calls, only the last LLM call will be streamed and the response is returned when the last LLM call starts.You can obtain a `Generator` from the streaming response and iterate over the tokens as they arrive:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nfor text in streaming_response.response_gen:\n # do something with text as they arrive.File Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nAlternatively, if you just want to print the text as they arrive:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nstreaming_response.print_response_stream()\n\nFile Name: ../docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\n\nSee an end-to-end example\n\nFile Name: ../docs/core_modules/query_modules/query_engine/supporting_modules.md\nContent Type: code\nHeader Path: Supporting Modules\n\n```{toctree}\n---\nmaxdepth: 1\n---\nadvanced/query_transformations.md\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nBuild a query engine from index:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nquery_engine = index.as_query_engine()\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index, see Index\n```\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nAsk a question over your data\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nresponse = query_engine.query('Who is Paul Graham?')", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8d3af97a-f70d-46ff-af7e-3eeb86d210a3": {"__data__": {"id_": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "3": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}, "5": [{"node_id": "a99d060e-119d-49e2-8d50-3781092ad15c", "node_type": null, "metadata": {}, "hash": "72c44d847f39678cc9526549dc74c37c8646fdf27ef648bf52f3ef754a3486ef"}, {"node_id": "78a64c63-ffca-43dc-82f0-566a375395c6", "node_type": null, "metadata": {}, "hash": "bd5cb0ac9e40b3538070334336607ee82c78c1fb9590922fa7adb1fd18d8ecec"}, {"node_id": "5171b641-9ca6-48a0-bde6-d47d021f3c54", "node_type": null, "metadata": {}, "hash": "099f46d80276e105d56c11faacbb4c32af70c9b71864369b910ac9502c08f0e8"}]}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd", "text": "File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\nYou can directly build and configure a query engine from an index in 1 line of code:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\nquery_engine = index.as_query_engine(\n response_mode='tree_summarize',\n verbose=True,\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\n> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.See **Response Modes** for a full list of response modes and what they do.File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\n---\nmaxdepth: 1\nhidden:\n---\nresponse_modes.md\nstreaming.md\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct a `QueryEngine` object instead of calling `index.as_query_engine(...)`.> Note: You may need to look at API references or example notebooks.File Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\nLinks:\n\nfrom llama_index import (\n VectorStoreIndex,\n get_response_synthesizer,\n)\nfrom llama_index.retrievers import VectorIndexRetriever\nfrom llama_index.query_engine import RetrieverQueryEngine\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/build index\nLinks:\n\nindex = VectorStoreIndex.from_documents(documents)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/configure retriever\nLinks:\n\nretriever = VectorIndexRetriever(\n index=index, \n similarity_top_k=2,\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/configure response synthesizer\nLinks:\n\nresponse_synthesizer = get_response_synthesizer(\n response_mode=\"tree_summarize\",\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/assemble query engine\nLinks:\n\nquery_engine = RetrieverQueryEngine(\n retriever=retriever,\n response_synthesizer=response_synthesizer,\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/query\nLinks:\n\nresponse = query_engine.query(\"What did the author do growing up?\")print(response)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\nLinks:\n\nTo enable streaming, you simply need to pass in a `streaming=True` flag\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\nLinks:\n\nquery_engine = index.as_query_engine(\n streaming=True,\n)\nstreaming_response = query_engine.query(\n \"What did the author do growing up?\", \n)\nstreaming_response.print_response_stream()\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\n\n* Read the full streaming guide\n* See an end-to-end example\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide\nLinks:\n\nDetailed inputs/outputs for each response synthesizer are found below.File Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/API Example\nLinks:\n\nThe following shows the setup for utilizing all kwargs.- `response_mode` specifies which response synthesizer to use\n- `service_context` defines the LLM and related settings for synthesis\n- `text_qa_template` and `refine_template` are the prompts used at various stages\n- `use_async` is used for only the `tree_summarize` response mode right now, to asynchronously build the summary tree\n- `streaming` configures whether to return a streaming response object or not\n\nIn the `synthesize`/`asyntheszie` functions, you can optionally provide additional source nodes, which will be added to the `response.source_nodes` list.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d4bec885-2ac4-4e51-b783-7835e4181f96": {"__data__": {"id_": "d4bec885-2ac4-4e51-b783-7835e4181f96", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}, "3": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}, "5": [{"node_id": "8316e5ec-9820-47ce-9a03-0a5902c9bd70", "node_type": null, "metadata": {}, "hash": "2cd55610a036436819ffbd3c5e95d45ea799487ed09d0e15715e7bfb7be5d491"}, {"node_id": "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "node_type": null, "metadata": {}, "hash": "8a4fde3c0393191e71e36a6a9eeb0742b89d25f6c232fed0a6bfe5489275eda1"}, {"node_id": "a1c28ad7-78bf-4afb-b187-ab49cae10939", "node_type": null, "metadata": {}, "hash": "6d3cc1150e1d1f8cf08348b84a2f68d099212f4e6633b10a4795192451c06cdf"}]}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee", "text": "File Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/API Example\nLinks:\n\nfrom llama_index.schema import Node, NodeWithScore\nfrom llama_index import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(\n response_mode=\"refine\",\n service_context=service_context,\n text_qa_template=text_qa_template,\n refine_template=refine_template,\n use_async=False,\n streaming=False\n)\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/synchronous\nLinks:\n\nresponse = response_synthesizer.synthesize(\n \"query string\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), ..],\n additional_source_nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), ..], \n)\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nresponse = await response_synthesizer.asynthesize(\n \"query string\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), ..],\n additional_source_nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), ..], \n)\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nYou can also directly return a string, using the lower-level `get_response` and `aget_response` functions\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nresponse_str = response_synthesizer.get_response(\n \"query string\", \n text_chunks=[\"text1\", \"text2\", ...]\n)\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: code\nHeader Path: Module Guide/Example Notebooks\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/response_synthesizers/refine.ipynb\n/examples/response_synthesizers/tree_summarize.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Concept\nLinks:\n\nA `Response Synthesizer` is what generates a response from an LLM, using a user query and a given set of text chunks.The output of a response synthesizer is a `Response` object.The method for doing this can take many forms, from as simple as iterating over text chunks, to as complex as building a tree.The main idea here is to simplify the process of generating a response using an LLM across your data.When used in a query engine, the response synthesizer is used after nodes are retrieved from a retriever, and after any node-postprocessors are ran.File Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Concept\nLinks:\n\nConfused about where response synthesizer fits in the pipeline?Read the high-level concepts\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nUse a response synthesizer on it's own:\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nfrom llama_index.schema import Node\nfrom llama_index.response_synthesizers import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(response_mode='compact')\n\nresponse = response_synthesizer.synthesize(\"query text\", nodes=[Node(text=\"text\"), ...])\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nOr in a query engine after you've created an index:\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine(response_synthesizer=response_synthesizer)\nresponse = query_engine.query(\"query_text\")\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nYou can find more details on all available response synthesizers, modes, and how to build your own below.File Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\n---\nmaxdepth: 2\n---\nusage_pattern.md\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Modules\nLinks:\n\nBelow you can find detailed API information for each response synthesis module.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "26782402-9635-482e-b626-75e58b3de6af": {"__data__": {"id_": "26782402-9635-482e-b626-75e58b3de6af", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}, "3": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}, "5": [{"node_id": "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27", "node_type": null, "metadata": {}, "hash": "3ee763f8403d7ca6d8b237a566ba334f767091af21fbb5351b0a847760cd5f1b"}, {"node_id": "f2850e09-1c16-403b-93dd-9b73f989a8f5", "node_type": null, "metadata": {}, "hash": "8bd18e5f22a151b467ed1000b315084968cba810ecf92c83b7b06f70fa27f263"}, {"node_id": "17a940a6-e716-499c-9d83-542c33d3f97c", "node_type": null, "metadata": {}, "hash": "e22bb61dfa5d5ac930b7669bdade19f4ea8fd18d8cdc6dce23351b13fa86c3d7"}]}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138", "text": "File Name: ../docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Modules\nLinks:\n\n---\nmaxdepth: 1\n---\nmodules.md\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nConfiguring the response synthesizer for a query engine using `response_mode`:\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nfrom llama_index.schema import Node, NodeWithScore\nfrom llama_index.response_synthesizers import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(response_mode='compact')\n\nresponse = response_synthesizer.synthesize(\n \"query text\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), ..]\n)\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nOr, more commonly, in a query engine after you've created an index:\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nquery_engine = index.as_query_engine(response_synthesizer=response_synthesizer)\nresponse = query_engine.query(\"query_text\")\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index, see Index\n```\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring the Response Mode\nLinks:\n\nResponse synthesizers are typically specified through a `response_mode` kwarg setting.Several response synthesizers are implemented already in LlamaIndex:\n\n- `refine`: \"create and refine\" an answer by sequentially going through each retrieved text chunk.This makes a separate LLM call per Node.Good for more detailed answers.- `compact` (default): \"compact\" the prompt during each LLM call by stuffing as \n many text chunks that can fit within the maximum prompt size.If there are \n too many chunks to stuff in one prompt, \"create and refine\" an answer by going through\n multiple compact prompts.The same as `refine`, but should result in less LLM calls.- `tree_summarize`: Given a set of text chunks and the query, recursively construct a tree \n and return the root node as the response.Good for summarization purposes.- `simple_summarize`: Truncates all text chunks to fit into a single LLM prompt.Good for quick\n summarization purposes, but may lose detail due to truncation.- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n without actually sending them.Then can be inspected by checking `response.source_nodes`.- `accumulate`: Given a set of text chunks and the query, apply the query to each text\n chunk while accumulating the responses into an array.Returns a concatenated string of all\n responses.Good for when you need to run the same query separately against each text\n chunk.- `compact_accumulate`: The same as accumulate, but will \"compact\" each LLM prompt similar to\n `compact`, and run the same query against each text chunk.File Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Response Synthesizers\nLinks:\n\nEach response synthesizer inherits from `llama_index.response_synthesizers.base.BaseSynthesizer`.The base API is extremely simple, which makes it easy to create your own response synthesizer.Maybe you want to customize which template is used at each step in `tree_summarize`, or maybe a new research paper came out detailing a new way to generate a response to a query, you can create your own response synthesizer and plug it into any query engine or use it on it's own.Below we show the `__init__()` function, as well as the two abstract methods that every response synthesizer must implement.The basic requirements are to process a query and text chunks, and return a string (or string generator) response.File Name: ../docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Response Synthesizers\nLinks:\n\nclass BaseSynthesizer(ABC):\n \"\"\"Response builder class.\"\"\"def __init__(\n self,\n service_context: Optional[ServiceContext] = None,\n streaming: bool = False,\n ) -> None:\n \"\"\"Init params.\"\"\"self._service_context = service_context or ServiceContext.from_defaults()\n self._callback_manager = self._service_context.callback_manager\n self._streaming = streaming\n\n @abstractmethod\n def get_response(\n self,\n query_str: str,\n text_chunks: Sequence[str],\n **response_kwargs: Any,\n ) -> RESPONSE_TEXT_TYPE:\n \"\"\"Get response.\"\"\"", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "25b2aa80-5f4e-4746-b48d-42097f230452": {"__data__": {"id_": "25b2aa80-5f4e-4746-b48d-42097f230452", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}, "3": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "5": [{"node_id": "05d0a4b8-9787-412e-9ab8-92bdcec12d1e", "node_type": null, "metadata": {}, "hash": "0173af05b63014a0fa9fe4fe78768f125b690c2db01ad72e4eedd1e1ff6b0a57"}, {"node_id": "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "node_type": null, "metadata": {}, "hash": "fc88305a4fedc81a3108d9b3646098eb9aa680c1aabd1c52062298497e0c4f0b"}, {"node_id": "7436654d-25ea-4058-9623-c981db612e37", "node_type": null, "metadata": {}, "hash": "557643045b9c72929610dc515e91171a9df1d09c28ba1816d5d03bf587c97f5c"}]}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4", "text": "...\n\n @abstractmethod\n async def aget_response(\n self,\n query_str: str,\n text_chunks: Sequence[str],\n **response_kwargs: Any,\n ) -> RESPONSE_TEXT_TYPE:\n \"\"\"Get response.\"\"\"...File Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\nWe are adding more module guides soon!In the meanwhile, please take a look at the API References.File Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Vector Index Retrievers\nLinks:\n\n* VectorIndexRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Vector Index Retrievers\nLinks:\n\n---\nmaxdepth: 1\n---\nVectorIndexAutoRetriever </examples/vector_stores/chroma_auto_retriever.ipynb>\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/List Index\nLinks:\n\n* ListIndexRetriever \n* ListIndexEmbeddingRetriever \n* ListIndexLLMRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Tree Index\nLinks:\n\n* TreeSelectLeafRetriever\n* TreeSelectLeafEmbeddingRetriever\n* TreeAllLeafRetriever\n* TreeRootRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Keyword Table Index\nLinks:\n\n* KeywordTableGPTRetriever\n* KeywordTableSimpleRetriever\n* KeywordTableRAKERetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: code\nHeader Path: Module Guides/Knowledge Graph Index\n\n```{toctree}\n---\nmaxdepth: 1\n---\nCustom Retriever (KG Index and Vector Store Index) </examples/index_structs/knowledge_graph/KnowledgeGraphIndex_vs_VectorStoreIndex_vs_CustomIndex_combined.ipynb>\n```\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Knowledge Graph Index\nLinks:\n\n* KGTableRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Document Summary Index\nLinks:\n\n* DocumentSummaryIndexRetriever\n* DocumentSummaryIndexEmbeddingRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Composed Retrievers\nLinks:\n\n* TransformRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Composed Retrievers\nLinks:\n\n---\nmaxdepth: 1\n---\n/examples/query_engine/pdf_tables/recursive_retriever.ipynb\n\nFile Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes\nLinks:\n\nHere we show the mapping from `retriever_mode` configuration to the selected retriever class.> Note that `retriever_mode` can mean different thing for different index classes.File Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Vector Index\nLinks:\n\nSpecifying `retriever_mode` has no effect (silently ignored).`vector_index.as_retriever(...)` always returns a VectorIndexRetriever.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "aae303c7-88a8-425a-baa2-775741a5e48a": {"__data__": {"id_": "aae303c7-88a8-425a-baa2-775741a5e48a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}, "3": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}, "5": [{"node_id": "4387dad2-8b75-46de-bc1b-3ff7936eb37a", "node_type": null, "metadata": {}, "hash": "f1048bc9c7dbdd264ae25a82c1e249415c2c6f3cf9c99345e7566b331788ed0d"}, {"node_id": "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "node_type": null, "metadata": {}, "hash": "4c921f860ffb445c035ef24b476d6b31262e195905bfe401629c31da9a14741d"}, {"node_id": "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "node_type": null, "metadata": {}, "hash": "b1facabb9c90f48304de2adcd82f65164f296f3207d5ad09747ace5f84a04b3f"}, {"node_id": "a600037b-6be1-416c-be05-c752abf38ffe", "node_type": null, "metadata": {}, "hash": "c36fe57fd95ade9b737e41dbbbc8b18fe6a83c85ff9414470e7675e68947114a"}]}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d", "text": "File Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/List Index\nLinks:\n\n* `default`: ListIndexRetriever \n* `embedding`: ListIndexEmbeddingRetriever \n* `llm`: ListIndexLLMRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Tree Index\nLinks:\n\n* `select_leaf`: TreeSelectLeafRetriever\n* `select_leaf_embedding`: TreeSelectLeafEmbeddingRetriever\n* `all_leaf`: TreeAllLeafRetriever\n* `root`: TreeRootRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Keyword Table Index\nLinks:\n\n* `default`: KeywordTableGPTRetriever\n* `simple`: KeywordTableSimpleRetriever\n* `rake`: KeywordTableRAKERetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Knowledge Graph Index\nLinks:\n\n* `keyword`: KGTableRetriever\n* `embedding`: KGTableRetriever\n* `hybrid`: KGTableRetriever\n\nFile Name: ../docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Document Summary Index\n\n* `default`: DocumentSummaryIndexRetriever\n* `embedding`: DocumentSummaryIndexEmbeddingRetrievers\n\nFile Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Concept\nLinks:\n\nRetrievers are responsible for fetching the most relevant context given a user query (or chat message).It can be built on top of Indices, but can also be defined independently.It is used as a key building block in Query Engines (and Chat Engines) for retrieving relevant context.File Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Concept\nLinks:\n\nConfused about where retriever fits in the pipeline?Read about high-level concepts\n\nFile Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Usage Pattern\nLinks:\n\nretriever = index.as_retriever()\nnodes = retriever.retrieve(\"Who is Paul Graham?\")File Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: code\nHeader Path: Retriever/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: code\nHeader Path: Retriever/Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\nmodules.md\n```\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nGet a retriever from index:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nretriever = index.as_retriever()\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nRetrieve relevant context for a question:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nnodes = retriever.retrieve('Who is Paul Graham?')File Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\n> Note: To learn how to build an index, see Index\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nYou can select the index-specific retriever class via `retriever_mode`.For example, with a `ListIndex`:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nretriever = list_index.as_retriever(\n retriever_mode='llm',\n)\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nThis creates a ListIndexLLMRetriever on top of the list index.See **Retriever Modes** for a full list of (index-specific) retriever modes\nand the retriever classes they map to.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "413527a2-71f2-466f-b6c7-4b480c41b702": {"__data__": {"id_": "413527a2-71f2-466f-b6c7-4b480c41b702", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "3": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "5": [{"node_id": "8e83a6bb-1b59-4597-8b68-0af905679267", "node_type": null, "metadata": {}, "hash": "7778d12011847b5667a700609c14bc83795807abcebefad0a039a585ebe7c541"}, {"node_id": "469c53f1-d0e2-40b2-8f54-f84a22474d93", "node_type": null, "metadata": {}, "hash": "7564e066790552ce64be067ad08a95b6136078f91d5bd807be3a1ae7a150ba5b"}, {"node_id": "5c7983b9-f801-4a20-9ddc-321df1a15374", "node_type": null, "metadata": {}, "hash": "ddc83cb3fd24b86fb2da1a814ae51d5e6a42d1f8730252d5f78fa94594e42a05"}]}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960", "text": "File Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\n---\nmaxdepth: 1\nhidden:\n---\nretriever_modes.md\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Configuring a Retriever\nLinks:\n\nIn the same way, you can pass kwargs to configure the selected retriever.> Note: take a look at the API reference for the selected retriever class' constructor parameters for a list of valid kwargs.For example, if we selected the \"llm\" retriever mode, we might do the following:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Configuring a Retriever\nLinks:\n\nretriever = list_index.as_retriever(\n retriever_mode='llm',\n choice_batch_size=5,\n)\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.To achieve the same outcome as above, you can directly import and construct the desired retriever class:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Low-Level Composition API\nLinks:\n\nfrom llama_index.indices.list import ListIndexLLMRetriever\n\nretriever = ListIndexLLMRetriever(\n index=list_index,\n choice_batch_size=5,\n)\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/High-Level API/Advanced\n\n```{toctree}\n---\nmaxdepth: 1\n---\nDefine Custom Retriever </examples/query_engine/CustomRetrievers.ipynb>\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing\nLinks:\n\nLlamaIndex supports integrations with output parsing modules offered\nby other frameworks.These output parsing modules can be used in the following ways:\n- To provide formatting instructions for any prompt / query (through `output_parser.format`)\n- To provide \"parsing\" for LLM outputs (through `output_parser.parse`)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Guardrails\nLinks:\n\nGuardrails is an open-source Python package for specification/validation/correction of output schemas.See below for a code example.File Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Guardrails\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.output_parsers import GuardrailsOutputParser\nfrom llama_index.llm_predictor import StructuredLLMPredictor\nfrom llama_index.prompts.prompts import QuestionAnswerPrompt, RefinePrompt\nfrom llama_index.prompts.default_prompts import DEFAULT_TEXT_QA_PROMPT_TMPL, DEFAULT_REFINE_PROMPT_TMPL\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('../paul_graham_essay/data').load_data()\nindex = VectorStoreIndex(documents, chunk_size=512)\nllm_predictor = StructuredLLMPredictor()\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define query / output spec\nLinks:\n\nrail_spec = (\"\"\"\n<rail version=\"0.1\">\n\n<output>\n <list name=\"points\" description=\"Bullet points regarding events in the author's life.\">\n <object>\n <string name=\"explanation\" format=\"one-line\" on-fail-one-line=\"noop\" />\n <string name=\"explanation2\" format=\"one-line\" on-fail-one-line=\"noop\" />\n <string name=\"explanation3\" format=\"one-line\" on-fail-one-line=\"noop\" />\n </object>\n </list>\n</output>\n\n<prompt>\n\nQuery string here.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "426429e8-7a33-4b53-a9f5-e586e1f65f2c": {"__data__": {"id_": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}, "3": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}, "5": [{"node_id": "a7e3546c-e36e-4229-a275-24b1eba8a3fd", "node_type": null, "metadata": {}, "hash": "16362627e4a35e5e81416ce8f903a66949c04a7e6f05809df83452c5d9a817ad"}, {"node_id": "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "node_type": null, "metadata": {}, "hash": "16c3441a8677f30247d9e5fa184585d2335284f4a5b1648bd3f59a670344279d"}, {"node_id": "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "node_type": null, "metadata": {}, "hash": "451a04f37c689d504f80a19d43848f5c94aa339b1ff4943b06555144a8f89bef"}, {"node_id": "26022177-817a-4eb3-895a-71b8837d4ebd", "node_type": null, "metadata": {}, "hash": "45a4b8a594725fd7cf65ef78af2aaf9b31b30848ff0b088a0d0f2eb75839f998"}]}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2", "text": "@xml_prefix_prompt\n\n{output_schema}\n\n@json_suffix_prompt_v2_wo_none\n</prompt>\n</rail>\n\"\"\")\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output parser\nLinks:\n\noutput_parser = GuardrailsOutputParser.from_rail_string(rail_spec, llm=llm_predictor.llm)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/format each prompt with output parser instructions\nLinks:\n\nfmt_qa_tmpl = output_parser.format(DEFAULT_TEXT_QA_PROMPT_TMPL)\nfmt_refine_tmpl = output_parser.format(DEFAULT_REFINE_PROMPT_TMPL)\n\nqa_prompt = QuestionAnswerPrompt(fmt_qa_tmpl, output_parser=output_parser)\nrefine_prompt = RefinePrompt(fmt_refine_tmpl, output_parser=output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\nquery_engine = index.as_query_engine(\n service_context=ServiceContext.from_defaults(\n llm_predictor=llm_predictor\n ),\n text_qa_template=qa_prompt, \n refine_template=refine_prompt, \n)\nresponse = query_engine.query(\n \"What are the three items the author did growing up?\", \n)\nprint(response)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\nOutput:\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\n{'points': [{'explanation': 'Writing short stories', 'explanation2': 'Programming on an IBM 1401', 'explanation3': 'Using microcomputers'}]}\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Langchain\nLinks:\n\nLangchain also offers output parsing modules that you can use within LlamaIndex.File Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Langchain\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.output_parsers import LangchainOutputParser\nfrom llama_index.llm_predictor import StructuredLLMPredictor\nfrom llama_index.prompts.prompts import QuestionAnswerPrompt, RefinePrompt\nfrom llama_index.prompts.default_prompts import DEFAULT_TEXT_QA_PROMPT_TMPL, DEFAULT_REFINE_PROMPT_TMPL\nfrom langchain.output_parsers import StructuredOutputParser, ResponseSchema\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('../paul_graham_essay/data').load_data()\nindex = VectorStoreIndex.from_documents(documents)\nllm_predictor = StructuredLLMPredictor()\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output schema\nLinks:\n\nresponse_schemas = [\n ResponseSchema(name=\"Education\", description=\"Describes the author's educational experience/background.\"),\n ResponseSchema(name=\"Work\", description=\"Describes the author's work experience/background.\")]\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output parser\nLinks:\n\nlc_output_parser = StructuredOutputParser.from_response_schemas(response_schemas)\noutput_parser = LangchainOutputParser(lc_output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/format each prompt with output parser instructions\nLinks:\n\nfmt_qa_tmpl = output_parser.format(DEFAULT_TEXT_QA_PROMPT_TMPL)\nfmt_refine_tmpl = output_parser.format(DEFAULT_REFINE_PROMPT_TMPL)\nqa_prompt = QuestionAnswerPrompt(fmt_qa_tmpl, output_parser=output_parser)\nrefine_prompt = RefinePrompt(fmt_refine_tmpl, output_parser=output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\nquery_engine = index.as_query_engine(\n service_context=ServiceContext.from_defaults(\n llm_predictor=llm_predictor\n ),\n text_qa_template=qa_prompt, \n refine_template=refine_prompt, \n)\nresponse = query_engine.query(\n \"What are a few things the author did growing up?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "eb266488-e2e8-4a42-b4c9-c72a9cafe32f": {"__data__": {"id_": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "3": {"node_id": "b6260184-53e4-4db7-b4a2-3259dde76196", "node_type": null, "metadata": {}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd"}, "5": [{"node_id": "f15cb451-d8da-4e4f-afcc-7c195357c7a2", "node_type": null, "metadata": {}, "hash": "87e3e0448b8585cd89ec9f82e72b3f7e88aac60e246eeb91cd49b87539d282d7"}, {"node_id": "06e1128d-3441-4bd0-81ff-61e6be9a7404", "node_type": null, "metadata": {}, "hash": "bbd130373a88f7e04a7208c061869d4860fb30730f945f20f640630086fb2a47"}, {"node_id": "99f90aec-e539-408d-b6c4-0f026081ffd5", "node_type": null, "metadata": {}, "hash": "7962e6a3aedc89e9322cbcf510865fb49119839ff70f59a7ca3b22f10fb41920"}]}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c", "text": "\", \n)\nprint(str(response))\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\nOutput:\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\n{'Education': 'Before college, the author wrote short stories and experimented with programming on an IBM 1401.', 'Work': 'The author worked on writing and programming outside of school.'}File Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: code\nHeader Path: Output Parsing/Guides\n\n```{toctree}\n---\ncaption: Examples\nmaxdepth: 1\n---\n\n/examples/output_parsing/GuardrailsDemo.ipynb\n/examples/output_parsing/LangchainOutputParserDemo.ipynb\n/examples/output_parsing/guidance_pydantic_program.ipynb\n/examples/output_parsing/guidance_sub_question.ipynb\n/examples/output_parsing/openai_pydantic_program.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: text\nHeader Path: Pydantic Program\nLinks:\n\nA pydantic program is a generic abstraction that takes in an input string and converts it to a structured Pydantic object type.Because this abstraction is so generic, it encompasses a broad range of LLM workflows.The programs are composable and be for more generic or specific use cases.There's a few general types of Pydantic Programs:\n- **LLM Text Completion Pydantic Programs**: These convert input text into a user-specified structured object through a text completion API + output parsing.- **LLM Function Calling Pydantic Program**: These convert input text into a user-specified structured object through an LLM function calling API.- **Prepackaged Pydantic Programs**: These convert input text into prespecified structured objects.File Name: ../docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: text\nHeader Path: Pydantic Program/LLM Text Completion Pydantic Programs\nLinks:\n\nTODO: Coming soon!File Name: ../docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: code\nHeader Path: Pydantic Program/LLM Function Calling Pydantic Programs\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/output_parsing/openai_pydantic_program.ipynb\n/examples/output_parsing/guidance_pydantic_program.ipynb\n/examples/output_parsing/guidance_sub_question.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: code\nHeader Path: Pydantic Program/Prepackaged Pydantic Programs\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/output_parsing/df_program.ipynb\n/examples/output_parsing/evaporate_program.ipynb\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: text\nHeader Path: Structured Outputs\nLinks:\n\nThe ability of LLMs to produce structured outputs are important for downstream applications that rely on reliably parsing output values.LlamaIndex itself also relies on structured output in the following ways.- **Document retrieval**: Many data structures within LlamaIndex rely on LLM calls with a specific schema for Document retrieval.For instance, the tree index expects LLM calls to be in the format \"ANSWER: (number)\".- **Response synthesis**: Users may expect that the final response contains some degree of structure (e.g.a JSON output, a formatted SQL query, etc.)LlamaIndex provides a variety of modules enabling LLMs to produce outputs in a structured format.We provide modules at different levels of abstraction:\n- **Output Parsers**: These are modules that operate before and after an LLM text completion endpoint.They are not used with LLM function calling endpoints (since those contain structured outputs out of the box).- **Pydantic Programs**: These are generic modules that map an input prompt to a structured output, represented by a Pydantic object.They may use function calling APIs or text completion APIs + output parsers.- **Pre-defined Pydantic Program**: We have pre-defined Pydantic programs that map inputs to specific output types (like dataframes).See the sections below for an overview of output parsers and Pydantic programs.File Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: text\nHeader Path: Structured Outputs/\ud83d\udd2c Anatomy of a Structured Output Function\nLinks:\n\nHere we describe the different components of an LLM-powered structured output function.The pipeline depends on whether you're using a **generic LLM text completion API** or an **LLM function calling API**.!With generic completion APIs, the inputs and outputs are handled by text prompts.The output parser plays a role before and after the LLM call in ensuring structured outputs.Before the LLM call, the output parser can\nappend format instructions to the prompt.After the LLM call, the output parser can parse the output to the specified instructions.With function calling APIs, the output is inherently in a structured format, and the input can take in the signature of the desired object.The structured output just needs to be cast in the right object format (e.g.Pydantic).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b6260184-53e4-4db7-b4a2-3259dde76196": {"__data__": {"id_": "b6260184-53e4-4db7-b4a2-3259dde76196", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4ae9ef74-42fa-406e-87af-3080e3a73233", "node_type": null, "metadata": {}, "hash": "1ad3de0545ad0ad79cb6bc5b187a6911397dc74295b7be8dee89de3db6b7d259"}, "2": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}, "5": [{"node_id": "9c03a722-9e11-431f-a445-106c1699e852", "node_type": null, "metadata": {}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd"}]}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd", "text": "File Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: code\nHeader Path: Structured Outputs/Output Parser Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\noutput_parser.md\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: code\nHeader Path: Structured Outputs/Pydantic Program Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\npydantic_program.md\n```", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "ed55ac15-ce09-44f2-8794-eb6f30ad4102": {"__data__": {"id_": "ed55ac15-ce09-44f2-8794-eb6f30ad4102", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}, "3": {"node_id": "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "node_type": null, "metadata": {}, "hash": "77f96d1de5680edd6c50e02c17bcb4d73aec29caf811c0fceff1d78500341caf"}, "4": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}}, "hash": "4262e11df5c3bbed8251c990f57e24075fea68dec6c8db7b8c6b5319d0269284", "text": "File Name: ./docs/core_modules/query_modules/chat_engines/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\nWe provide a few simple implementations to start, with more sophisticated modes coming soon!More specifically, the `SimpleChatEngine` does not make use of a knowledge base, \nwhereas `CondenseQuestionChatEngine` and `ReActChatEngine` make use of a query engine over knowledge base.File Name: ./docs/core_modules/query_modules/chat_engines/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\n---\nmaxdepth: 1\n---\nSimple Chat Engine </examples/chat_engine/chat_engine_repl.ipynb>\nReAct Chat Engine </examples/chat_engine/chat_engine_react.ipynb>\nOpenAI Chat Engine </examples/chat_engine/chat_engine_openai.ipynb>\nCondense Question Chat Engine </examples/chat_engine/chat_engine_condense_question.ipynb>\n\nFile Name: ./docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Concept\nLinks:\n\nChat engine is a high-level interface for having a conversation with your data\n(multiple back-and-forth instead of a single question & answer).Think ChatGPT, but augmented with your knowledge base.Conceptually, it is a **stateful** analogy of a Query Engine.By keeping track of the conversation history, it can answer questions with past context in mind.File Name: ./docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Concept\nLinks:\n\nIf you want to ask standalone question over your data (i.e.without keeping track of conversation history), use Query Engine instead.File Name: ./docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "37d71d91-c9f9-4466-b919-a2d3f4eaff84": {"__data__": {"id_": "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}, "2": {"node_id": "ed55ac15-ce09-44f2-8794-eb6f30ad4102", "node_type": null, "metadata": {}, "hash": "4262e11df5c3bbed8251c990f57e24075fea68dec6c8db7b8c6b5319d0269284"}, "3": {"node_id": "7606d974-a75a-40e4-b749-ceee37dbf1b5", "node_type": null, "metadata": {}, "hash": "f994cfd53ce54f093d632d29c3995f2e5a7cb76c42c6249fa8ec43feb26fd0ee"}, "4": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}}, "hash": "77f96d1de5680edd6c50e02c17bcb4d73aec29caf811c0fceff1d78500341caf", "text": "/docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nchat_engine = index.as_chat_engine()\nresponse = chat_engine.chat(\"Tell me a joke.\")File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nTo stream response:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Usage Pattern\nLinks:\n\nchat_engine = index.as_chat_engine()\nstreaming_response = chat_engine.stream_chat(\"Tell me a joke.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7606d974-a75a-40e4-b749-ceee37dbf1b5": {"__data__": {"id_": "7606d974-a75a-40e4-b749-ceee37dbf1b5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}, "2": {"node_id": "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "node_type": null, "metadata": {}, "hash": "77f96d1de5680edd6c50e02c17bcb4d73aec29caf811c0fceff1d78500341caf"}, "3": {"node_id": "0ecd70b0-69e8-4c8d-bbde-4018da0126cb", "node_type": null, "metadata": {}, "hash": "16dc20ceedccee484801f6cd6331c075d63d21ef38feba760930abe8c6723f57"}, "4": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}}, "hash": "f994cfd53ce54f093d632d29c3995f2e5a7cb76c42c6249fa8ec43feb26fd0ee", "text": "\")for token in streaming_response.response_gen:\n print(token, end=\"\")\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: code\nHeader Path: Chat Engine/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Modules\nLinks:\n\nBelow you can find corresponding tutorials to see the available chat engines in action.File Name: ../docs/core_modules/query_modules/chat_engines/root.md\nContent Type: text\nHeader Path: Chat Engine/Modules\nLinks:\n\n---\nmaxdepth: 2\n---\nmodules.md\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nBuild a chat engine from index:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine = index.as_chat_engine()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index, see Index\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nHave a conversation with your data:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nresponse = chat_engine.chat(\"Tell me a joke.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "0ecd70b0-69e8-4c8d-bbde-4018da0126cb": {"__data__": {"id_": "0ecd70b0-69e8-4c8d-bbde-4018da0126cb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}, "2": {"node_id": "7606d974-a75a-40e4-b749-ceee37dbf1b5", "node_type": null, "metadata": {}, "hash": "f994cfd53ce54f093d632d29c3995f2e5a7cb76c42c6249fa8ec43feb26fd0ee"}, "4": {"node_id": "4d3efd15-341c-4b29-afa7-7953188d2938", "node_type": null, "metadata": {}, "hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2"}}, "hash": "16dc20ceedccee484801f6cd6331c075d63d21ef38feba760930abe8c6723f57", "text": "\")File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nReset chat history to start a new conversation:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine.reset()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nEnter an interactive chat REPL:\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nchat_engine.chat_repl()\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine\nLinks:\n\nConfiguring a chat engine is very similar to configuring a query engine.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f4bd15e2-598d-4e37-ae15-6e03a9f08398": {"__data__": {"id_": "f4bd15e2-598d-4e37-ae15-6e03a9f08398", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "3": {"node_id": "fb970878-52f4-4123-af7f-ef6a948abf39", "node_type": null, "metadata": {}, "hash": "c6253458d24ad71db59bdcd0495916aa2f8a261ef905f899e1ca3461c1c192cc"}, "4": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}}, "hash": "f997d531bcd63c9f023e50a984d05cab88c8796412bc8c6bc991a5335aea856e", "text": "File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\nYou can directly build and configure a chat engine from an index in 1 line of code:\n\nFile Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\nchat_engine = index.as_chat_engine(\n chat_mode='condense_question', \n verbose=True\n)\n\nFile Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/High-Level API\nLinks:\n\n> Note: you can access different chat engines by specifying the `chat_mode` as a kwarg.`condense_question` corresponds to `CondenseQuestionChatEngine`, `react` corresponds to `ReActChatEngine`.> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct `ChatEngine` object instead of calling `index.as_chat_engine(.)`.> Note: You may need to look at API references or example notebooks.Here's an example where we configure the following:\n* configure the condense question prompt, \n* initialize the conversation with some existing history,\n* print verbose debug message.File Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "fb970878-52f4-4123-af7f-ef6a948abf39": {"__data__": {"id_": "fb970878-52f4-4123-af7f-ef6a948abf39", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "2": {"node_id": "f4bd15e2-598d-4e37-ae15-6e03a9f08398", "node_type": null, "metadata": {}, "hash": "f997d531bcd63c9f023e50a984d05cab88c8796412bc8c6bc991a5335aea856e"}, "3": {"node_id": "051bf54d-d207-473e-a13b-3a0977d00377", "node_type": null, "metadata": {}, "hash": "48122b3e6a2098d31381010c56fa07d7b775eef7f1ff5ab516fcd7d8fb43e3b2"}, "4": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}}, "hash": "c6253458d24ad71db59bdcd0495916aa2f8a261ef905f899e1ca3461c1c192cc", "text": "md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Low-Level Composition API\nLinks:\n\nfrom llama_index.prompts import Prompt\n\ncustom_prompt = Prompt(\"\"\"\\\nGiven a conversation (between Human and Assistant) and a follow up message from Human, \\\nrewrite the message to be a standalone question that captures all relevant context \\\nfrom the conversation.<Chat History> \n{chat_history}\n\n<Follow Up Message>\n{question}\n\n<Standalone question>\n\"\"\")\n\nFile Name: ./docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/list of (human_message, ai_message) tuples\nLinks:\n\ncustom_chat_history = [\n (\n 'Hello assistant, we are having a insightful discussion about Paul Graham today.', \n 'Okay, sounds good.')", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "051bf54d-d207-473e-a13b-3a0977d00377": {"__data__": {"id_": "051bf54d-d207-473e-a13b-3a0977d00377", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "2": {"node_id": "fb970878-52f4-4123-af7f-ef6a948abf39", "node_type": null, "metadata": {}, "hash": "c6253458d24ad71db59bdcd0495916aa2f8a261ef905f899e1ca3461c1c192cc"}, "3": {"node_id": "fbf04091-9814-4c59-a2af-59cf4442e28a", "node_type": null, "metadata": {}, "hash": "e6dc2d9b6f90a2e165bf9b33f012c19e41a3164d99c104336abf3b6d508b6b18"}, "4": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}}, "hash": "48122b3e6a2098d31381010c56fa07d7b775eef7f1ff5ab516fcd7d8fb43e3b2", "text": "]\n\nquery_engine = index.as_query_engine()\nchat_engine = CondenseQuestionChatEngine.from_defaults(\n query_engine=query_engine, \n condense_question_prompt=custom_prompt,\n chat_history=custom_chat_history,\n verbose=True\n)\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\nLinks:\n\nTo enable streaming, you simply need to call the `stream_chat` endpoint instead of the `chat` endpoint.File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\nLinks:\n\nThis somewhat inconsistent with query engine (where you pass in a `streaming=True` flag).We are working on making the behavior more consistent!File Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\n\n```python\nchat_engine = index.as_chat_engine()\nstreaming_response = chat_engine.stream_chat(\"Tell me a joke.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "fbf04091-9814-4c59-a2af-59cf4442e28a": {"__data__": {"id_": "fbf04091-9814-4c59-a2af-59cf4442e28a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}, "2": {"node_id": "051bf54d-d207-473e-a13b-3a0977d00377", "node_type": null, "metadata": {}, "hash": "48122b3e6a2098d31381010c56fa07d7b775eef7f1ff5ab516fcd7d8fb43e3b2"}, "4": {"node_id": "6113854b-aea9-4310-bc89-6bf385c91deb", "node_type": null, "metadata": {}, "hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19"}}, "hash": "e6dc2d9b6f90a2e165bf9b33f012c19e41a3164d99c104336abf3b6d508b6b18", "text": "\")for token in streaming_response.response_gen:\n print(token, end=\"\")\n```\n\nFile Name: ../docs/core_modules/query_modules/chat_engines/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Chat Engine/Streaming\n\nSee an end-to-end tutorial\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SimilarityPostprocessor\nLinks:\n\nUsed to remove nodes that are below a similarity score threshold.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SimilarityPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\n\npostprocessor = SimilarityPostprocessor(similarity_cutoff=0.7)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/KeywordNodePostprocessor\nLinks:\n\nUsed to ensure certain keywords are either excluded or included.File Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/KeywordNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import KeywordNodePostprocessor\n\npostprocessor = KeywordNodePostprocessor(\n required_keywords=[\"word1\", \"word2\"],\n exclude_keywords=[\"word3\", \"word4\"]\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ../docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nThis postprocessor optimizes token usage by removing sentences that are not relevant to the query (this is done using embeddings).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9a424f32-a874-4f8e-ab1c-991d3a9dbe49": {"__data__": {"id_": "9a424f32-a874-4f8e-ab1c-991d3a9dbe49", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "3": {"node_id": "897ceee3-7af9-4300-a996-7069853dd3fe", "node_type": null, "metadata": {}, "hash": "415da5caa22124dcc721dee78617a51e585f7fe8dece2256478f05ea40b355e5"}, "4": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}}, "hash": "33315f4fb092f447a63428c4de8c9426c04b9d14b9066451bb8c349bb8aed600", "text": "The percentile cutoff is a measure for using the top percentage of relevant sentences.The threshold cutoff can be specified instead, which uses a raw similarity cutoff for picking which sentences to keep.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nfrom llama_index.indices.postprocessor import SentenceEmbeddingOptimizer\n\npostprocessor = SentenceEmbeddingOptimizer(\n embed_model=service_context.embed_model,\n percentile_cutoff=0.5,\n # threshold_cutoff=0.7\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/SentenceEmbeddingOptimizer\nLinks:\n\nA full notebook guide can be found here\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nUses the \"Cohere ReRank\" functionality to re-order nodes, and returns the top N nodes.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nfrom llama_index.indices.postprocessor import CohereRerank\n\npostprocessor = CohereRerank(\n top_n=2\n model=\"rerank-english-v2.0\",\n api_key=\"YOUR COHERE API KEY\"\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/CohereRerank\nLinks:\n\nFull notebook guide is available here.File Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "897ceee3-7af9-4300-a996-7069853dd3fe": {"__data__": {"id_": "897ceee3-7af9-4300-a996-7069853dd3fe", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "2": {"node_id": "9a424f32-a874-4f8e-ab1c-991d3a9dbe49", "node_type": null, "metadata": {}, "hash": "33315f4fb092f447a63428c4de8c9426c04b9d14b9066451bb8c349bb8aed600"}, "3": {"node_id": "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "node_type": null, "metadata": {}, "hash": "36738bb23aa0fcc746d254c0e39e574306470f8125f936803db728adca78853a"}, "4": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}}, "hash": "415da5caa22124dcc721dee78617a51e585f7fe8dece2256478f05ea40b355e5", "text": "/docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nUses a LLM to re-order nodes by asking the LLM to return the relevant documents and a score of how relevant they are.Returns the top N ranked nodes.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nfrom llama_index.indices.postprocessor import LLMRerank\n\npostprocessor = LLMRerank(\n top_n=2\n service_context=service_context,\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/LLM Rerank\nLinks:\n\nFull notebook guide is available her for Gatsby and here for Lyft 10K documents.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes sorted by date.This assumes there is a `date` field to parse in the metadata of each node.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import FixedRecencyPostprocessor\n\npostprocessor = FixedRecencyPostprocessor(\n tok_k=1,\n date_key=\"date\" # the key in the metadata to find the date\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c97f0f09-c85c-495b-a3a0-2edb8958a18c": {"__data__": {"id_": "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "2": {"node_id": "897ceee3-7af9-4300-a996-7069853dd3fe", "node_type": null, "metadata": {}, "hash": "415da5caa22124dcc721dee78617a51e585f7fe8dece2256478f05ea40b355e5"}, "3": {"node_id": "b42d48c1-08ff-42a5-bdb4-9dd6f364a027", "node_type": null, "metadata": {}, "hash": "40e16441ab13ac84a903aa068d336b090e273e96b024890e4b0050529b834cab"}, "4": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}}, "hash": "36738bb23aa0fcc746d254c0e39e574306470f8125f936803db728adca78853a", "text": "md\nContent Type: text\nHeader Path: Modules/FixedRecencyPostprocessor\nLinks:\n\n!A full notebook guide is available here.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes after sorting by date and removing older nodes that are too similar after measuring embedding similarity.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import EmbeddingRecencyPostprocessor\n\npostprocessor = EmbeddingRecencyPostprocessor(\n service_context=service_context,\n date_key=\"date\",\n similarity_cutoff=0.7\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/EmbeddingRecencyPostprocessor\nLinks:\n\nA full notebook guide is available here.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nThis postproccesor returns the top K nodes applying a time-weighted rerank to each node.Each time a node is retrieved, the time it was retrieved is recorded.This biases search to favor information that has not be returned in a query yet.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import TimeWeightedPostprocessor\n\npostprocessor = TimeWeightedPostprocessor(\n time_decay=0.99,\n top_k=1\n)\n\npostprocessor.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "b42d48c1-08ff-42a5-bdb4-9dd6f364a027": {"__data__": {"id_": "b42d48c1-08ff-42a5-bdb4-9dd6f364a027", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}, "2": {"node_id": "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "node_type": null, "metadata": {}, "hash": "36738bb23aa0fcc746d254c0e39e574306470f8125f936803db728adca78853a"}, "4": {"node_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "node_type": null, "metadata": {}, "hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819"}}, "hash": "40e16441ab13ac84a903aa068d336b090e273e96b024890e4b0050529b834cab", "text": "postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/TimeWeightedPostprocessor\nLinks:\n\nA full notebook guide is available here.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a4892a1f-2218-4bfe-b691-4162b1d4bf80": {"__data__": {"id_": "a4892a1f-2218-4bfe-b691-4162b1d4bf80", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "3": {"node_id": "e043659e-e9a0-4c87-8095-875bfdf7221a", "node_type": null, "metadata": {}, "hash": "1cfa1181e601b4943de427f459dfd2ef90dd03581280ef97cff71cb4a0481ba2"}, "4": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}}, "hash": "bbfc9e7516b4ad407a62d38a5451f7df026faabb8a4734f99b0f297b1e81a75e", "text": "File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor\nLinks:\n\nThe PII (Personal Identifiable Information) postprocssor removes information that might be a security risk.It does this by using NER (either with a dedicated NER model, or with a local LLM model).File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: code\nHeader Path: Modules/(Beta) PIINodePostprocessor/LLM Version\n\n```python\nfrom llama_index.indices.postprocessor import PIINodePostprocessor\n\npostprocessor = PIINodePostprocessor(\n service_context=service_context, # this should be setup with an LLM you trust\n)\n\npostprocessor.postprocess_nodes(nodes)\n```\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nThis version uses the default local model from Hugging Face that is loaded when you run `pipline(\"ner\")`.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nfrom llama_index.indices.postprocessor import NERPIINodePostprocessor\n\npostprocessor = NERPIINodePostprocessor()\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/NER Version\nLinks:\n\nA full notebook guide for both can be found here.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e043659e-e9a0-4c87-8095-875bfdf7221a": {"__data__": {"id_": "e043659e-e9a0-4c87-8095-875bfdf7221a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "2": {"node_id": "a4892a1f-2218-4bfe-b691-4162b1d4bf80", "node_type": null, "metadata": {}, "hash": "bbfc9e7516b4ad407a62d38a5451f7df026faabb8a4734f99b0f297b1e81a75e"}, "3": {"node_id": "122d9186-a52b-4223-b806-d42a8563c93e", "node_type": null, "metadata": {}, "hash": "b89bd911f9c9274d05b41661c2651814c70623c370cecc0469df24111adebeaf"}, "4": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}}, "hash": "1cfa1181e601b4943de427f459dfd2ef90dd03581280ef97cff71cb4a0481ba2", "text": "md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\nUses pre-defined settings to read the `Node` relationships and fetch either all nodes that come previously, next, or both.This is useful when you know the relationships point to important data (either before, after, or both) that should be sent to the LLM if that node is retrieved.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import PrevNextNodePostprocessor\n\npostprocessor = PrevNextNodePostprocessor(\n docstore=index.docstore,\n num_nodes=1, # number of nodes to fetch when looking forawrds or backwards\n mode=\"next\" # can be either 'next', 'previous', or 'both'\n)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) PrevNextNodePostprocessor\nLinks:\n\n!File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nThe same as PrevNextNodePostprocessor, but lets the LLM decide the mode (next, previous, or both).File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nfrom llama_index.indices.postprocessor import AutoPrevNextNodePostprocessor\n\npostprocessor = AutoPrevNextNodePostprocessor(\n docstore=index.docstore,", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "122d9186-a52b-4223-b806-d42a8563c93e": {"__data__": {"id_": "122d9186-a52b-4223-b806-d42a8563c93e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "2": {"node_id": "e043659e-e9a0-4c87-8095-875bfdf7221a", "node_type": null, "metadata": {}, "hash": "1cfa1181e601b4943de427f459dfd2ef90dd03581280ef97cff71cb4a0481ba2"}, "3": {"node_id": "9030c3b5-ba90-48a4-99dd-08c955bacadd", "node_type": null, "metadata": {}, "hash": "b743eeab3c848aca6a4ac34ab2b118c8bfa83196d2bb1013388391696cf3364e"}, "4": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}}, "hash": "b89bd911f9c9274d05b41661c2651814c70623c370cecc0469df24111adebeaf", "text": "service_context=service_context\n num_nodes=1, # number of nodes to fetch when looking forawrds or backwards)\n\npostprocessor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: text\nHeader Path: Modules/(Beta) PIINodePostprocessor/(Beta) AutoPrevNextNodePostprocessor\nLinks:\n\nA full example notebook is available here.File Name: ./docs/core_modules/query_modules/node_postprocessors/modules.md\nContent Type: code\nHeader Path: Modules/(Beta) PIINodePostprocessor/All Notebooks\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/node_postprocessor/OptimizerDemo.ipynb\n/examples/node_postprocessor/CohereRerank.ipynb\n/examples/node_postprocessor/LLMReranker-Lyft-10k.ipynb\n/examples/node_postprocessor/LLMReranker-Gatsby.ipynb\n/examples/node_postprocessor/RecencyPostprocessorDemo.ipynb\n/examples/node_postprocessor/TimeWeightedPostprocessorDemo.ipynb\n/examples/node_postprocessor/PII.ipynb\n/examples/node_postprocessor/PrevNextPostprocessorDemo.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Concept\nLinks:\n\nNode postprocessors are a set of modules that take a set of nodes, and apply some kind of transformation or filtering before returning them.In LlamaIndex, node postprocessors are most commonly applied within a query engine, after the node retrieval step and before the response synthesis step.LlamaIndex offers several node postprocessors for immediate use, while also providing a simple API for adding your own custom postprocessors.File Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9030c3b5-ba90-48a4-99dd-08c955bacadd": {"__data__": {"id_": "9030c3b5-ba90-48a4-99dd-08c955bacadd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}, "2": {"node_id": "122d9186-a52b-4223-b806-d42a8563c93e", "node_type": null, "metadata": {}, "hash": "b89bd911f9c9274d05b41661c2651814c70623c370cecc0469df24111adebeaf"}, "4": {"node_id": "6dd66f92-57c2-4089-9f14-5d673d36d762", "node_type": null, "metadata": {}, "hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84"}}, "hash": "b743eeab3c848aca6a4ac34ab2b118c8bfa83196d2bb1013388391696cf3364e", "text": "/docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Concept\nLinks:\n\nConfused about where node postprocessor fits in the pipeline?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f60a00a0-3ba2-46c7-8cad-cd05df08c6af": {"__data__": {"id_": "f60a00a0-3ba2-46c7-8cad-cd05df08c6af", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "3": {"node_id": "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "node_type": null, "metadata": {}, "hash": "c0cbcb30decd9ba24c155ab3f966b8dc08e85f1ae9f99ab81a2b51457b8a64df"}, "4": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}}, "hash": "9cffdfb14d878e50776c5de0f52510f16f4d348eb80a2cabc41f6660265fd71e", "text": "Read about high-level concepts\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Usage Pattern\nLinks:\n\nAn example of using a node postprocessors is below:\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Usage Pattern\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\nfrom llama_index.schema import Node, NodeWithScore\n\nnodes = [\n NodeWithScore(node=Node(text=\"text\"), score=0.7),\n NodeWithScore(node=Node(text=\"text\"), score=0.8)\n]\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\nYou can find more details using post processors and how to build your own below.File Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/filter nodes below 0.75 similarity score\nLinks:\n\n---\nmaxdepth: 2\n---\nusage_pattern.md\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/root.md\nContent Type: text\nHeader Path: Node Postprocessor/Modules\nLinks:\n\nBelow you can find guides for each node postprocessor.File Name: ./docs/core_modules/query_modules/node_postprocessors/root.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17": {"__data__": {"id_": "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "2": {"node_id": "f60a00a0-3ba2-46c7-8cad-cd05df08c6af", "node_type": null, "metadata": {}, "hash": "9cffdfb14d878e50776c5de0f52510f16f4d348eb80a2cabc41f6660265fd71e"}, "3": {"node_id": "edd49718-78ae-4333-94e6-2ffda9a60166", "node_type": null, "metadata": {}, "hash": "fe690d42f5aaee8838ac0f5b002f0da4509c7701e64b84ecd0bd67ae4d479cd1"}, "4": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}}, "hash": "c0cbcb30decd9ba24c155ab3f966b8dc08e85f1ae9f99ab81a2b51457b8a64df", "text": "md\nContent Type: text\nHeader Path: Node Postprocessor/Modules\nLinks:\n\n---\nmaxdepth: 2\n---\nmodules.md\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern\nLinks:\n\nMost commonly, node-postprocessors will be used in a query engine, where they are applied to the nodes returned from a retriever, and before the response synthesis step.File Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/all node post-processors will be applied during each query\n\n```python\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.indices.postprocessor import TimeWeightedPostprocessor\n\ndocuments = SimpleDirectoryReader(\"./data\").load_data()\n\nindex = VectorStoreIndex.from_documents(documents)\n\nquery_engine = index.as_query_engine(\n node_postprocessors=[\n TimeWeightedPostprocessor(\n time_decay=0.5, time_access_refresh=False, top_k=1\n )\n ]\n)\n\nresponse = query_engine.query(\"query string\")\n```\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with Retrieved Nodes\nLinks:\n\nOr used as a standalone object for filtering retrieved nodes:\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with Retrieved Nodes\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\n\nnodes = index.as_retriever().query(\"query string\")\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "edd49718-78ae-4333-94e6-2ffda9a60166": {"__data__": {"id_": "edd49718-78ae-4333-94e6-2ffda9a60166", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "2": {"node_id": "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "node_type": null, "metadata": {}, "hash": "c0cbcb30decd9ba24c155ab3f966b8dc08e85f1ae9f99ab81a2b51457b8a64df"}, "3": {"node_id": "c907930f-94ca-477b-9bea-a98af3354b65", "node_type": null, "metadata": {}, "hash": "4dd43a1f5e676e1acf02041380d771bb6bf36ad7f0248e4a97292232884d160c"}, "4": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}}, "hash": "fe690d42f5aaee8838ac0f5b002f0da4509c7701e64b84ecd0bd67ae4d479cd1", "text": "/docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with your own nodes\nLinks:\n\nAs you may have noticed, the postprocessors take `NodeWithScore` objects as inputs, which is just a wrapper class with a `Node` and a `score` value.File Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Using with your own nodes\nLinks:\n\nfrom llama_index.indices.postprocessor import SimilarityPostprocessor\nfrom llama_index.schema import Node, NodeWithScore\n\nnodes = [\n NodeWithScore(node=Node(text=\"text\"), score=0.7),\n NodeWithScore(node=Node(text=\"text\"), score=0.8)\n]\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/filter nodes below 0.75 similarity score\nLinks:\n\nprocessor = SimilarityPostprocessor(similarity_cutoff=0.75)\nfiltered_nodes = processor.postprocess_nodes(nodes)\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nThe base class is `BaseNodePostprocessor`, and the API interface is very simple:\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "c907930f-94ca-477b-9bea-a98af3354b65": {"__data__": {"id_": "c907930f-94ca-477b-9bea-a98af3354b65", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}, "2": {"node_id": "edd49718-78ae-4333-94e6-2ffda9a60166", "node_type": null, "metadata": {}, "hash": "fe690d42f5aaee8838ac0f5b002f0da4509c7701e64b84ecd0bd67ae4d479cd1"}, "4": {"node_id": "35f742cf-4dde-4ace-9e1e-d3074523760f", "node_type": null, "metadata": {}, "hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15"}}, "hash": "4dd43a1f5e676e1acf02041380d771bb6bf36ad7f0248e4a97292232884d160c", "text": "md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nclass BaseNodePostprocessor:\n \"\"\"Node postprocessor.\"\"\"", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb": {"__data__": {"id_": "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}, "3": {"node_id": "bf039726-614d-4d53-b16f-d119e7b18ae7", "node_type": null, "metadata": {}, "hash": "7daf57d6e5849bd6e98d3818c87c6d8107eed501fe1a84bc4828a688e59e1268"}, "4": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}}, "hash": "1fb85872f4367af977decfaf90775641d425a30c48ace67ce2262bf9ee0b1aa6", "text": "@abstractmethod\n def postprocess_nodes(\n self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n ) -> List[NodeWithScore]:\n \"\"\"Postprocess nodes.\"\"\"File Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nA dummy node-postprocessor can be implemented in just a few lines of code:\n\nFile Name: ./docs/core_modules/query_modules/node_postprocessors/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Node PostProcessor\nLinks:\n\nfrom llama_index import QueryBundle\nfrom llama_index.indices.postprocessor.base import BaseNodePostprocessor\nfrom llama_index.schema import NodeWithScore\n\nclass DummyNodePostprocessor:\n\n def postprocess_nodes(\n self, nodes: List[NodeWithScore], query_bundle: Optional[QueryBundle]\n ) -> List[NodeWithScore]:\n \n # subtracts 1 from the score\n for n in nodes:\n n.score -= 1\n\n return nodes\n\nFile Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations\nLinks:\n\nLlamaIndex allows you to perform *query transformations* over your index structures.Query transformations are modules that will convert a query into another query.They can be **single-step**, as in the transformation is run once before the query is executed against an index.They can also be **multi-step**, as in: \n1.The query is transformed, executed against an index, \n2.The response is retrieved.3.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bf039726-614d-4d53-b16f-d119e7b18ae7": {"__data__": {"id_": "bf039726-614d-4d53-b16f-d119e7b18ae7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}, "2": {"node_id": "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb", "node_type": null, "metadata": {}, "hash": "1fb85872f4367af977decfaf90775641d425a30c48ace67ce2262bf9ee0b1aa6"}, "3": {"node_id": "bcc6f32f-9b05-4747-bcff-29b82efce87d", "node_type": null, "metadata": {}, "hash": "82e8070f7441f219bd41ec73e6a1c1eaf7f2cde7fd12fc25b5e22345ab51bab2"}, "4": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}}, "hash": "7daf57d6e5849bd6e98d3818c87c6d8107eed501fe1a84bc4828a688e59e1268", "text": "Subsequent queries are transformed/executed in a sequential fashion.We list some of our query transformations in more detail below.File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Use Cases\nLinks:\n\nQuery transformations have multiple use cases:\n- Transforming an initial query into a form that can be more easily embedded (e.g.HyDE)\n- Transforming an initial query into a subquestion that can be more easily answered from the data (single-step query decomposition)\n- Breaking an initial query into multiple subquestions that can be more easily answered on their own.(multi-step query decomposition)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\nLinks:\n\nHyDE is a technique where given a natural language query, a hypothetical document/answer is generated first.This hypothetical document is then used for embedding lookup rather than the raw query.To use HyDE, an example code snippet is shown below.File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/HyDE (Hypothetical Document Embeddings)\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.indices.query.query_transform.base import HyDEQueryTransform\nfrom llama_index.query_engine.transform_query_engine import TransformQueryEngine\n\nFile Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('./paul_graham_essay/data').load_data()\nindex = VectorStoreIndex(documents)\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "bcc6f32f-9b05-4747-bcff-29b82efce87d": {"__data__": {"id_": "bcc6f32f-9b05-4747-bcff-29b82efce87d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}, "2": {"node_id": "bf039726-614d-4d53-b16f-d119e7b18ae7", "node_type": null, "metadata": {}, "hash": "7daf57d6e5849bd6e98d3818c87c6d8107eed501fe1a84bc4828a688e59e1268"}, "4": {"node_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "node_type": null, "metadata": {}, "hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a"}}, "hash": "82e8070f7441f219bd41ec73e6a1c1eaf7f2cde7fd12fc25b5e22345ab51bab2", "text": "/docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/run query with HyDE query transform\nLinks:\n\nquery_str = \"what did paul graham do after going to RISD\"\nhyde = HyDEQueryTransform(include_original=True)\nquery_engine = index.as_query_engine()\nquery_engine = TransformQueryEngine(query_engine, query_transform=hyde)\nresponse = query_engine.query(query_str)\nprint(response)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/run query with HyDE query transform\nLinks:\n\nCheck out our example notebook for a full walkthrough.File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Single-Step Query Decomposition\nLinks:\n\nSome recent approaches (e.g.self-ask, ReAct) have suggested that LLM's \nperform better at answering complex questions when they break the question into smaller steps.We have found that this is true for queries that require knowledge augmentation as well.If your query is complex, different parts of your knowledge base may answer different \"subqueries\" around the overall query.Our single-step query decomposition feature transforms a **complicated** question into a simpler one over the data collection to help provide a sub-answer to the original question.This is especially helpful over a composed graph.Within a composed graph, a query can be routed to multiple subindexes, each representing a subset of the overall knowledge corpus.Query decomposition allows us to transform the query into a more suitable question over any given index.An example image is shown below.!", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "51c9d9e2-4889-4b34-84c8-76cc71f93b3f": {"__data__": {"id_": "51c9d9e2-4889-4b34-84c8-76cc71f93b3f", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}, "3": {"node_id": "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "node_type": null, "metadata": {}, "hash": "36ac76a16f0bb5e758a3a01d9144c2f0a166db3bccf60d27529c5d7a733ed5ba"}, "4": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}}, "hash": "d1753be1bb8e0df13dbeb1735c83414ef33647dd7c293075158ad286bd3e4dd7", "text": "Here's a corresponding example code snippet over a composed graph.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/llm_predictor_chatgpt corresponds to the ChatGPT LLM interface\nLinks:\n\nfrom llama_index.indices.query.query_transform.base import DecomposeQueryTransform\ndecompose_transform = DecomposeQueryTransform(\n llm_predictor_chatgpt, verbose=True\n)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/initialize indexes and graph\nLinks:\n\n...File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/configure retrievers\nLinks:\n\nvector_query_engine = vector_index.as_query_engine()\nvector_query_engine = TransformQueryEngine(\n vector_query_engine, \n query_transform=decompose_transform\n transform_extra_info={'index_summary': vector_index.index_struct.summary}\n)\ncustom_query_engines = {\n vector_index.index_id: vector_query_engine\n}\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/query\nLinks:\n\nquery_str = (\n \"Compare and contrast the airports in Seattle, Houston, and Toronto. \"", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6a5c70d2-97d7-4b6b-8cb3-f58187568bda": {"__data__": {"id_": "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}, "2": {"node_id": "51c9d9e2-4889-4b34-84c8-76cc71f93b3f", "node_type": null, "metadata": {}, "hash": "d1753be1bb8e0df13dbeb1735c83414ef33647dd7c293075158ad286bd3e4dd7"}, "3": {"node_id": "25316757-07dd-4e6d-9f0f-6f96b9cf63e2", "node_type": null, "metadata": {}, "hash": "5f348a00cdcb3373aa777965ac3e0a504e23d589f5c11dfa236c3867a1b100bb"}, "4": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}}, "hash": "36ac76a16f0bb5e758a3a01d9144c2f0a166db3bccf60d27529c5d7a733ed5ba", "text": ")\nquery_engine = graph.as_query_engine(custom_query_engines=custom_query_engines)\nresponse = query_engine.query(query_str)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/query\nLinks:\n\nCheck out our example notebook for a full walkthrough.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Multi-Step Query Transformations\nLinks:\n\nMulti-step query transformations are a generalization on top of existing single-step query transformation approaches.Given an initial, complex query, the query is transformed and executed against an index.The response is retrieved from the query.Given the response (along with prior responses) and the query, followup questions may be asked against the index as well.This technique allows a query to be run against a single knowledge source until that query has satisfied all questions.An example image is shown below.!", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "25316757-07dd-4e6d-9f0f-6f96b9cf63e2": {"__data__": {"id_": "25316757-07dd-4e6d-9f0f-6f96b9cf63e2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}, "2": {"node_id": "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "node_type": null, "metadata": {}, "hash": "36ac76a16f0bb5e758a3a01d9144c2f0a166db3bccf60d27529c5d7a733ed5ba"}, "4": {"node_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "node_type": null, "metadata": {}, "hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681"}}, "hash": "5f348a00cdcb3373aa777965ac3e0a504e23d589f5c11dfa236c3867a1b100bb", "text": "Here's a corresponding example code snippet.File Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/Multi-Step Query Transformations\nLinks:\n\nfrom llama_index.indices.query.query_transform.base import StepDecomposeQueryTransform\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\nstep_decompose_transform = StepDecomposeQueryTransform(\n llm_predictor, verbose=True\n)\n\nquery_engine = index.as_query_engine()\nquery_engine = MultiStepQueryEngine(query_engine, query_transform=step_decompose_transform)\n\nresponse = query_engine.query(\n \"Who was in the first batch of the accelerator program the author started?\",\n)\nprint(str(response))\n\nFile Name: ../docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\nCheck out our example notebook for a full walkthrough.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "61b30575-d871-460a-af27-cd41e98c2909": {"__data__": {"id_": "61b30575-d871-460a-af27-cd41e98c2909", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "3": {"node_id": "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "node_type": null, "metadata": {}, "hash": "fd9284a928c4c00541e4a594c9799b619cd2f9efcb9edc608c0c3698d3b30308"}, "4": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}}, "hash": "16f3f7c84aec55a644fb8ea155e96dbd192b7b7d79d0b53f7bd4e4b88958fc48", "text": "File Name: ./docs/core_modules/query_modules/query_engine/advanced/query_transformations.md\nContent Type: text\nHeader Path: Query Transformations/gpt-4\nLinks:\n\n---\ncaption: Examples\nmaxdepth: 1\n---\n/examples/query_transformations/HyDEQueryTransformDemo.ipynb\n/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n\nFile Name: ./docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Basic\n\n```{toctree}\n---\nmaxdepth: 1\n---\nRetriever Query Engine </examples/query_engine/CustomRetrievers.ipynb>\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Structured & Semi-Structured Data\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/json_query_engine.ipynb\n/examples/query_engine/pandas_query_engine.ipynb\n/examples/query_engine/knowledge_graph_query_engine.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Advanced\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/RouterQueryEngine.ipynb\n/examples/query_engine/RetrieverRouterQueryEngine.ipynb\n/examples/query_engine/JointQASummary.ipynb\n/examples/query_engine/sub_question_query_engine.ipynb\n/examples/query_transformations/SimpleIndexDemo-multistep.ipynb\n/examples/query_engine/SQLRouterQueryEngine.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "27dbd541-35f6-4db6-954f-78e6bd9c7f78": {"__data__": {"id_": "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "2": {"node_id": "61b30575-d871-460a-af27-cd41e98c2909", "node_type": null, "metadata": {}, "hash": "16f3f7c84aec55a644fb8ea155e96dbd192b7b7d79d0b53f7bd4e4b88958fc48"}, "3": {"node_id": "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "node_type": null, "metadata": {}, "hash": "e0549233d2c4d811c7d20b71c081249f9cef80636d7d8dfa8466a9f4a6e2a8f7"}, "4": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}}, "hash": "fd9284a928c4c00541e4a594c9799b619cd2f9efcb9edc608c0c3698d3b30308", "text": "ipynb\n/examples/query_engine/SQLAutoVectorQueryEngine.ipynb\n/examples/query_engine/SQLJoinQueryEngine.ipynb\n/examples/index_structs/struct_indices/duckdb_sql_query.ipynb\nRetry Query Engine </examples/evaluation/RetryQuery.ipynb>\nRetry Source Query Engine </examples/evaluation/RetryQuery.ipynb>\nRetry Guideline Query Engine </examples/evaluation/RetryQuery.ipynb>\n/examples/query_engine/citation_query_engine.ipynb\n/examples/query_engine/pdf_tables/recursive_retriever.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/modules.md\nContent Type: code\nHeader Path: Module Guides/Experimental\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/query_engine/flare_query_engine.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/response_modes.md\nContent Type: text\nHeader Path: Response Modes\n\nRight now, we support the following options:\n- `default`: \"create and refine\" an answer by sequentially going through each retrieved `Node`; \n This makes a separate LLM call per Node.Good for more detailed answers.- `compact`: \"compact\" the prompt during each LLM call by stuffing as \n many `Node` text chunks that can fit within the maximum prompt size.If there are \n too many chunks to stuff in one prompt, \"create and refine\" an answer by going through\n multiple prompts.- `tree_summarize`: Given a set of `Node` objects and the query, recursively construct a tree \n and return the root node as the response.Good for summarization purposes.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9": {"__data__": {"id_": "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "2": {"node_id": "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "node_type": null, "metadata": {}, "hash": "fd9284a928c4c00541e4a594c9799b619cd2f9efcb9edc608c0c3698d3b30308"}, "3": {"node_id": "2a5b69df-3782-4a44-8674-fcc4a9fee8c4", "node_type": null, "metadata": {}, "hash": "e5d484c3d06c22948040a467fd5b4fcfdc6ea2991af7f0ab8e62556624a81fc7"}, "4": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}}, "hash": "e0549233d2c4d811c7d20b71c081249f9cef80636d7d8dfa8466a9f4a6e2a8f7", "text": "- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n without actually sending them.Then can be inspected by checking `response.source_nodes`.The response object is covered in more detail in Section 5.- `accumulate`: Given a set of `Node` objects and the query, apply the query to each `Node` text\n chunk while accumulating the responses into an array.Returns a concatenated string of all\n responses.Good for when you need to run the same query separately against each text\n chunk.See Response Synthesizer to learn more.File Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Concept\nLinks:\n\nQuery engine is a generic interface that allows you to ask question over your data.A query engine takes in a natural language query, and returns a rich response.It is most often (but not always) built on one or many Indices via Retrievers.You can compose multiple query engines to achieve more advanced capability.File Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Concept\nLinks:\n\nIf you want to have a conversation with your data (multiple back-and-forth instead of a single question & answer), take a look at Chat Engine\n\nFile Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine()\nresponse = query_engine.query(\"Who is Paul Graham.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2a5b69df-3782-4a44-8674-fcc4a9fee8c4": {"__data__": {"id_": "2a5b69df-3782-4a44-8674-fcc4a9fee8c4", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}, "2": {"node_id": "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "node_type": null, "metadata": {}, "hash": "e0549233d2c4d811c7d20b71c081249f9cef80636d7d8dfa8466a9f4a6e2a8f7"}, "4": {"node_id": "694198a8-926a-4f24-b121-897dd6ebd176", "node_type": null, "metadata": {}, "hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc"}}, "hash": "e5d484c3d06c22948040a467fd5b4fcfdc6ea2991af7f0ab8e62556624a81fc7", "text": "\")File Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nTo stream response:\n\nFile Name: ../docs/core_modules/query_modules/query_engine/root.md\nContent Type: text\nHeader Path: Query Engine/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine(streaming=True)\nstreaming_response = query_engine.query(\"Who is Paul Graham.\")", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "6c12ef17-17b3-47f6-87b8-c92e1391bfb7": {"__data__": {"id_": "6c12ef17-17b3-47f6-87b8-c92e1391bfb7", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "3": {"node_id": "e4737417-44d7-46eb-b775-58b673b79554", "node_type": null, "metadata": {}, "hash": "3627c85268c3748ed861ea7a144637f3b1f29c65f3967f3fb1f3ada6c758395f"}, "4": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}}, "hash": "9d8e5e06f4f0a3a3ba8f5586c4c57ef6b7486e6dc4aeb12e551086f3f3e69366", "text": "streaming_response.print_response_stream()\n\nFile Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Modules\n\n```{toctree}\n---\nmaxdepth: 3\n---\nmodules.md\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/root.md\nContent Type: code\nHeader Path: Query Engine/Supporting Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\nsupporting_modules.md\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming\nLinks:\n\nLlamaIndex supports streaming the response as it's being generated.This allows you to start printing or processing the beginning of the response before the full response is finished.This can drastically reduce the perceived latency of queries.File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nTo enable streaming, you need to use an LLM that supports streaming.Right now, streaming is supported by `OpenAI`, `HuggingFaceLLM`, and most LangChain LLMs (via `LangChainLLM`).Configure query engine to use streaming:\n\nIf you are using the high-level API, set `streaming=True` when building a query engine.File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nquery_engine = index.as_query_engine(\n streaming=True,", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e4737417-44d7-46eb-b775-58b673b79554": {"__data__": {"id_": "e4737417-44d7-46eb-b775-58b673b79554", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "2": {"node_id": "6c12ef17-17b3-47f6-87b8-c92e1391bfb7", "node_type": null, "metadata": {}, "hash": "9d8e5e06f4f0a3a3ba8f5586c4c57ef6b7486e6dc4aeb12e551086f3f3e69366"}, "3": {"node_id": "d8f3c932-6c3a-4538-9bd2-192933dc2055", "node_type": null, "metadata": {}, "hash": "91d403b091e2be9376485bfd5b7fc9ead09b5708442883ec0056483382010cd5"}, "4": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}}, "hash": "3627c85268c3748ed861ea7a144637f3b1f29c65f3967f3fb1f3ada6c758395f", "text": "similarity_top_k=1\n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nIf you are using the low-level API to compose the query engine,\npass `streaming=True` when constructing the `Response Synthesizer`:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Setup\nLinks:\n\nfrom llama_index import get_response_synthesizer\nsynth = get_response_synthesizer(streaming=True, .)\nquery_engine = RetrieverQueryEngine(response_synthesizer=synth, .)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nAfter properly configuring both the LLM and the query engine,\ncalling `query` now returns a `StreamingResponse` object.File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nstreaming_response = query_engine.query(\n \"What did the author do growing up?\", \n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nThe response is returned immediately when the LLM call *starts*, without having to wait for the full completion.> Note: In the case where the query engine makes multiple LLM calls, only the last LLM call will be streamed and the response is returned when the last LLM call starts.You can obtain a `Generator` from the streaming response and iterate over the tokens as they arrive:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "d8f3c932-6c3a-4538-9bd2-192933dc2055": {"__data__": {"id_": "d8f3c932-6c3a-4538-9bd2-192933dc2055", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "2": {"node_id": "e4737417-44d7-46eb-b775-58b673b79554", "node_type": null, "metadata": {}, "hash": "3627c85268c3748ed861ea7a144637f3b1f29c65f3967f3fb1f3ada6c758395f"}, "3": {"node_id": "4baab847-43bf-4430-a9bf-05f0c12d9b4d", "node_type": null, "metadata": {}, "hash": "0fdbefc843ac4b7186fd1cd00f56ac63f797611247df783e7a52fef6ac6e4781"}, "4": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}}, "hash": "91d403b091e2be9376485bfd5b7fc9ead09b5708442883ec0056483382010cd5", "text": "md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nfor text in streaming_response.response_gen:\n # do something with text as they arrive.File Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nAlternatively, if you just want to print the text as they arrive:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\nLinks:\n\nstreaming_response.print_response_stream()\n\nFile Name: ./docs/core_modules/query_modules/query_engine/streaming.md\nContent Type: text\nHeader Path: Streaming/Streaming Response\n\nSee an end-to-end example\n\nFile Name: ./docs/core_modules/query_modules/query_engine/supporting_modules.md\nContent Type: code\nHeader Path: Supporting Modules\n\n```{toctree}\n---\nmaxdepth: 1\n---\nadvanced/query_transformations.md\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nBuild a query engine from index:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nquery_engine = index.as_query_engine()\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index, see Index\n```\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4baab847-43bf-4430-a9bf-05f0c12d9b4d": {"__data__": {"id_": "4baab847-43bf-4430-a9bf-05f0c12d9b4d", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}, "2": {"node_id": "d8f3c932-6c3a-4538-9bd2-192933dc2055", "node_type": null, "metadata": {}, "hash": "91d403b091e2be9376485bfd5b7fc9ead09b5708442883ec0056483382010cd5"}, "4": {"node_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "node_type": null, "metadata": {}, "hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2"}}, "hash": "0fdbefc843ac4b7186fd1cd00f56ac63f797611247df783e7a52fef6ac6e4781", "text": "md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nAsk a question over your data\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nresponse = query_engine.query('Who is Paul Graham?')", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a99d060e-119d-49e2-8d50-3781092ad15c": {"__data__": {"id_": "a99d060e-119d-49e2-8d50-3781092ad15c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}, "3": {"node_id": "78a64c63-ffca-43dc-82f0-566a375395c6", "node_type": null, "metadata": {}, "hash": "bd5cb0ac9e40b3538070334336607ee82c78c1fb9590922fa7adb1fd18d8ecec"}, "4": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}}, "hash": "72c44d847f39678cc9526549dc74c37c8646fdf27ef648bf52f3ef754a3486ef", "text": "File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\nYou can directly build and configure a query engine from an index in 1 line of code:\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\nquery_engine = index.as_query_engine(\n response_mode='tree_summarize',\n verbose=True,\n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\n> Note: While the high-level API optimizes for ease-of-use, it does *NOT* expose full range of configurability.See **Response Modes** for a full list of response modes and what they do.File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/High-Level API\nLinks:\n\n---\nmaxdepth: 1\nhidden:\n---\nresponse_modes.md\nstreaming.md\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.Concretely speaking, you would explicitly construct a `QueryEngine` object instead of calling `index.as_query_engine(.)`.> Note: You may need to look at API references or example notebooks.File Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "78a64c63-ffca-43dc-82f0-566a375395c6": {"__data__": {"id_": "78a64c63-ffca-43dc-82f0-566a375395c6", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}, "2": {"node_id": "a99d060e-119d-49e2-8d50-3781092ad15c", "node_type": null, "metadata": {}, "hash": "72c44d847f39678cc9526549dc74c37c8646fdf27ef648bf52f3ef754a3486ef"}, "3": {"node_id": "5171b641-9ca6-48a0-bde6-d47d021f3c54", "node_type": null, "metadata": {}, "hash": "099f46d80276e105d56c11faacbb4c32af70c9b71864369b910ac9502c08f0e8"}, "4": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}}, "hash": "bd5cb0ac9e40b3538070334336607ee82c78c1fb9590922fa7adb1fd18d8ecec", "text": "md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Low-Level Composition API\nLinks:\n\nfrom llama_index import (\n VectorStoreIndex,\n get_response_synthesizer,\n)\nfrom llama_index.retrievers import VectorIndexRetriever\nfrom llama_index.query_engine import RetrieverQueryEngine\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/build index\nLinks:\n\nindex = VectorStoreIndex.from_documents(documents)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/configure retriever\nLinks:\n\nretriever = VectorIndexRetriever(\n index=index, \n similarity_top_k=2,\n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/configure response synthesizer\nLinks:\n\nresponse_synthesizer = get_response_synthesizer(\n response_mode=\"tree_summarize\",\n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/assemble query engine\nLinks:\n\nquery_engine = RetrieverQueryEngine(\n retriever=retriever,\n response_synthesizer=response_synthesizer,\n)\n\nFile Name: ./docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/query\nLinks:\n\nresponse = query_engine.query(\"What did the author do growing up?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5171b641-9ca6-48a0-bde6-d47d021f3c54": {"__data__": {"id_": "5171b641-9ca6-48a0-bde6-d47d021f3c54", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}, "2": {"node_id": "78a64c63-ffca-43dc-82f0-566a375395c6", "node_type": null, "metadata": {}, "hash": "bd5cb0ac9e40b3538070334336607ee82c78c1fb9590922fa7adb1fd18d8ecec"}, "4": {"node_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "node_type": null, "metadata": {}, "hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd"}}, "hash": "099f46d80276e105d56c11faacbb4c32af70c9b71864369b910ac9502c08f0e8", "text": "\")print(response)\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\nLinks:\n\nTo enable streaming, you simply need to pass in a `streaming=True` flag\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\nLinks:\n\nquery_engine = index.as_query_engine(\n streaming=True,\n)\nstreaming_response = query_engine.query(\n \"What did the author do growing up?\", \n)\nstreaming_response.print_response_stream()\n\nFile Name: ../docs/core_modules/query_modules/query_engine/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring a Query Engine/Streaming\n\n* Read the full streaming guide\n* See an end-to-end example\n\nFile Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide\nLinks:\n\nDetailed inputs/outputs for each response synthesizer are found below.File Name: ../docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/API Example\nLinks:\n\nThe following shows the setup for utilizing all kwargs.- `response_mode` specifies which response synthesizer to use\n- `service_context` defines the LLM and related settings for synthesis\n- `text_qa_template` and `refine_template` are the prompts used at various stages\n- `use_async` is used for only the `tree_summarize` response mode right now, to asynchronously build the summary tree\n- `streaming` configures whether to return a streaming response object or not\n\nIn the `synthesize`/`asyntheszie` functions, you can optionally provide additional source nodes, which will be added to the `response.source_nodes` list.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8316e5ec-9820-47ce-9a03-0a5902c9bd70": {"__data__": {"id_": "8316e5ec-9820-47ce-9a03-0a5902c9bd70", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}, "3": {"node_id": "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "node_type": null, "metadata": {}, "hash": "8a4fde3c0393191e71e36a6a9eeb0742b89d25f6c232fed0a6bfe5489275eda1"}, "4": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}}, "hash": "2cd55610a036436819ffbd3c5e95d45ea799487ed09d0e15715e7bfb7be5d491", "text": "File Name: ./docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/API Example\nLinks:\n\nfrom llama_index.schema import Node, NodeWithScore\nfrom llama_index import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(\n response_mode=\"refine\",\n service_context=service_context,\n text_qa_template=text_qa_template,\n refine_template=refine_template,\n use_async=False,\n streaming=False\n)\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/synchronous\nLinks:\n\nresponse = response_synthesizer.synthesize(\n \"query string\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), .],\n additional_source_nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), .], \n)\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nresponse = await response_synthesizer.asynthesize(\n \"query string\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), .],\n additional_source_nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), .], \n)\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nYou can also directly return a string, using the lower-level `get_response` and `aget_response` functions\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5e8bf41b-f072-4f1e-a2c9-367cee63d816": {"__data__": {"id_": "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}, "2": {"node_id": "8316e5ec-9820-47ce-9a03-0a5902c9bd70", "node_type": null, "metadata": {}, "hash": "2cd55610a036436819ffbd3c5e95d45ea799487ed09d0e15715e7bfb7be5d491"}, "3": {"node_id": "a1c28ad7-78bf-4afb-b187-ab49cae10939", "node_type": null, "metadata": {}, "hash": "6d3cc1150e1d1f8cf08348b84a2f68d099212f4e6633b10a4795192451c06cdf"}, "4": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}}, "hash": "8a4fde3c0393191e71e36a6a9eeb0742b89d25f6c232fed0a6bfe5489275eda1", "text": "/docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: text\nHeader Path: Module Guide/asynchronous\nLinks:\n\nresponse_str = response_synthesizer.get_response(\n \"query string\", \n text_chunks=[\"text1\", \"text2\", .]\n)\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/modules.md\nContent Type: code\nHeader Path: Module Guide/Example Notebooks\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/response_synthesizers/refine.ipynb\n/examples/response_synthesizers/tree_summarize.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Concept\nLinks:\n\nA `Response Synthesizer` is what generates a response from an LLM, using a user query and a given set of text chunks.The output of a response synthesizer is a `Response` object.The method for doing this can take many forms, from as simple as iterating over text chunks, to as complex as building a tree.The main idea here is to simplify the process of generating a response using an LLM across your data.When used in a query engine, the response synthesizer is used after nodes are retrieved from a retriever, and after any node-postprocessors are ran.File Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Concept\nLinks:\n\nConfused about where response synthesizer fits in the pipeline?Read the high-level concepts\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nUse a response synthesizer on it's own:\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a1c28ad7-78bf-4afb-b187-ab49cae10939": {"__data__": {"id_": "a1c28ad7-78bf-4afb-b187-ab49cae10939", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}, "2": {"node_id": "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "node_type": null, "metadata": {}, "hash": "8a4fde3c0393191e71e36a6a9eeb0742b89d25f6c232fed0a6bfe5489275eda1"}, "4": {"node_id": "d4bec885-2ac4-4e51-b783-7835e4181f96", "node_type": null, "metadata": {}, "hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee"}}, "hash": "6d3cc1150e1d1f8cf08348b84a2f68d099212f4e6633b10a4795192451c06cdf", "text": "/docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nfrom llama_index.schema import Node\nfrom llama_index.response_synthesizers import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(response_mode='compact')\n\nresponse = response_synthesizer.synthesize(\"query text\", nodes=[Node(text=\"text\"), .])\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nOr in a query engine after you've created an index:\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nquery_engine = index.as_query_engine(response_synthesizer=response_synthesizer)\nresponse = query_engine.query(\"query_text\")\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\nYou can find more details on all available response synthesizers, modes, and how to build your own below.File Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Usage Pattern\nLinks:\n\n---\nmaxdepth: 2\n---\nusage_pattern.md\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Modules\nLinks:\n\nBelow you can find detailed API information for each response synthesis module.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27": {"__data__": {"id_": "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}, "3": {"node_id": "f2850e09-1c16-403b-93dd-9b73f989a8f5", "node_type": null, "metadata": {}, "hash": "8bd18e5f22a151b467ed1000b315084968cba810ecf92c83b7b06f70fa27f263"}, "4": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}}, "hash": "3ee763f8403d7ca6d8b237a566ba334f767091af21fbb5351b0a847760cd5f1b", "text": "File Name: ./docs/core_modules/query_modules/response_synthesizers/root.md\nContent Type: text\nHeader Path: Response Synthesizer/Modules\nLinks:\n\n---\nmaxdepth: 1\n---\nmodules.md\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nConfiguring the response synthesizer for a query engine using `response_mode`:\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nfrom llama_index.schema import Node, NodeWithScore\nfrom llama_index.response_synthesizers import get_response_synthesizer\n\nresponse_synthesizer = get_response_synthesizer(response_mode='compact')\n\nresponse = response_synthesizer.synthesize(\n \"query text\", \n nodes=[NodeWithScore(node=Node(text=\"text\"), score=1.0), .]\n)\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nOr, more commonly, in a query engine after you've created an index:\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nquery_engine = index.as_query_engine(response_synthesizer=response_synthesizer)\nresponse = query_engine.query(\"query_text\")\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/Get Started\n\n```{tip}\nTo learn how to build an index,", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f2850e09-1c16-403b-93dd-9b73f989a8f5": {"__data__": {"id_": "f2850e09-1c16-403b-93dd-9b73f989a8f5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}, "2": {"node_id": "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27", "node_type": null, "metadata": {}, "hash": "3ee763f8403d7ca6d8b237a566ba334f767091af21fbb5351b0a847760cd5f1b"}, "3": {"node_id": "17a940a6-e716-499c-9d83-542c33d3f97c", "node_type": null, "metadata": {}, "hash": "e22bb61dfa5d5ac930b7669bdade19f4ea8fd18d8cdc6dce23351b13fa86c3d7"}, "4": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}}, "hash": "8bd18e5f22a151b467ed1000b315084968cba810ecf92c83b7b06f70fa27f263", "text": "see Index\n```\n\nFile Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Configuring the Response Mode\nLinks:\n\nResponse synthesizers are typically specified through a `response_mode` kwarg setting.Several response synthesizers are implemented already in LlamaIndex:\n\n- `refine`: \"create and refine\" an answer by sequentially going through each retrieved text chunk.This makes a separate LLM call per Node.Good for more detailed answers.- `compact` (default): \"compact\" the prompt during each LLM call by stuffing as \n many text chunks that can fit within the maximum prompt size.If there are \n too many chunks to stuff in one prompt, \"create and refine\" an answer by going through\n multiple compact prompts.The same as `refine`, but should result in less LLM calls.- `tree_summarize`: Given a set of text chunks and the query, recursively construct a tree \n and return the root node as the response.Good for summarization purposes.- `simple_summarize`: Truncates all text chunks to fit into a single LLM prompt.Good for quick\n summarization purposes, but may lose detail due to truncation.- `no_text`: Only runs the retriever to fetch the nodes that would have been sent to the LLM, \n without actually sending them.Then can be inspected by checking `response.source_nodes`.- `accumulate`: Given a set of text chunks and the query, apply the query to each text\n chunk while accumulating the responses into an array.Returns a concatenated string of all\n responses.Good for when you need to run the same query separately against each text\n chunk.- `compact_accumulate`: The same as accumulate, but will \"compact\" each LLM prompt similar to\n `compact`, and run the same query against each text chunk.File Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "17a940a6-e716-499c-9d83-542c33d3f97c": {"__data__": {"id_": "17a940a6-e716-499c-9d83-542c33d3f97c", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}, "2": {"node_id": "f2850e09-1c16-403b-93dd-9b73f989a8f5", "node_type": null, "metadata": {}, "hash": "8bd18e5f22a151b467ed1000b315084968cba810ecf92c83b7b06f70fa27f263"}, "4": {"node_id": "26782402-9635-482e-b626-75e58b3de6af", "node_type": null, "metadata": {}, "hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138"}}, "hash": "e22bb61dfa5d5ac930b7669bdade19f4ea8fd18d8cdc6dce23351b13fa86c3d7", "text": "/docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Response Synthesizers\nLinks:\n\nEach response synthesizer inherits from `llama_index.response_synthesizers.base.BaseSynthesizer`.The base API is extremely simple, which makes it easy to create your own response synthesizer.Maybe you want to customize which template is used at each step in `tree_summarize`, or maybe a new research paper came out detailing a new way to generate a response to a query, you can create your own response synthesizer and plug it into any query engine or use it on it's own.Below we show the `__init__()` function, as well as the two abstract methods that every response synthesizer must implement.The basic requirements are to process a query and text chunks, and return a string (or string generator) response.File Name: ./docs/core_modules/query_modules/response_synthesizers/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Custom Response Synthesizers\nLinks:\n\nclass BaseSynthesizer(ABC):\n \"\"\"Response builder class.\"\"\"def __init__(\n self,\n service_context: Optional[ServiceContext] = None,\n streaming: bool = False,\n ) -> None:\n \"\"\"Init params.\"\"\"self._service_context = service_context or ServiceContext.from_defaults()\n self._callback_manager = self._service_context.callback_manager\n self._streaming = streaming\n\n @abstractmethod\n def get_response(\n self,\n query_str: str,\n text_chunks: Sequence[str],\n **response_kwargs: Any,\n ) -> RESPONSE_TEXT_TYPE:\n \"\"\"Get response.\"\"\"", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "05d0a4b8-9787-412e-9ab8-92bdcec12d1e": {"__data__": {"id_": "05d0a4b8-9787-412e-9ab8-92bdcec12d1e", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}, "3": {"node_id": "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "node_type": null, "metadata": {}, "hash": "fc88305a4fedc81a3108d9b3646098eb9aa680c1aabd1c52062298497e0c4f0b"}, "4": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}}, "hash": "0173af05b63014a0fa9fe4fe78768f125b690c2db01ad72e4eedd1e1ff6b0a57", "text": "...\n\n @abstractmethod\n async def aget_response(\n self,\n query_str: str,\n text_chunks: Sequence[str],\n **response_kwargs: Any,\n ) -> RESPONSE_TEXT_TYPE:\n \"\"\"Get response.\"\"\".File Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides\nLinks:\n\nWe are adding more module guides soon!In the meanwhile, please take a look at the API References.File Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Vector Index Retrievers\nLinks:\n\n* VectorIndexRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Vector Index Retrievers\nLinks:\n\n---\nmaxdepth: 1\n---\nVectorIndexAutoRetriever </examples/vector_stores/chroma_auto_retriever.ipynb>\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/List Index\nLinks:\n\n* ListIndexRetriever \n* ListIndexEmbeddingRetriever \n* ListIndexLLMRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Tree Index\nLinks:\n\n* TreeSelectLeafRetriever\n* TreeSelectLeafEmbeddingRetriever\n* TreeAllLeafRetriever\n* TreeRootRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a066a9ec-d70b-45c3-9f1a-445c9a86aede": {"__data__": {"id_": "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}, "2": {"node_id": "05d0a4b8-9787-412e-9ab8-92bdcec12d1e", "node_type": null, "metadata": {}, "hash": "0173af05b63014a0fa9fe4fe78768f125b690c2db01ad72e4eedd1e1ff6b0a57"}, "3": {"node_id": "7436654d-25ea-4058-9623-c981db612e37", "node_type": null, "metadata": {}, "hash": "557643045b9c72929610dc515e91171a9df1d09c28ba1816d5d03bf587c97f5c"}, "4": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}}, "hash": "fc88305a4fedc81a3108d9b3646098eb9aa680c1aabd1c52062298497e0c4f0b", "text": "md\nContent Type: text\nHeader Path: Module Guides/Keyword Table Index\nLinks:\n\n* KeywordTableGPTRetriever\n* KeywordTableSimpleRetriever\n* KeywordTableRAKERetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: code\nHeader Path: Module Guides/Knowledge Graph Index\n\n```{toctree}\n---\nmaxdepth: 1\n---\nCustom Retriever (KG Index and Vector Store Index) </examples/index_structs/knowledge_graph/KnowledgeGraphIndex_vs_VectorStoreIndex_vs_CustomIndex_combined.ipynb>\n```\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Knowledge Graph Index\nLinks:\n\n* KGTableRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Document Summary Index\nLinks:\n\n* DocumentSummaryIndexRetriever\n* DocumentSummaryIndexEmbeddingRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Composed Retrievers\nLinks:\n\n* TransformRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/modules.md\nContent Type: text\nHeader Path: Module Guides/Composed Retrievers\nLinks:\n\n---\nmaxdepth: 1\n---\n/examples/query_engine/pdf_tables/recursive_retriever.ipynb\n\nFile Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes\nLinks:\n\nHere we show the mapping from `retriever_mode` configuration to the selected retriever class.> Note that `retriever_mode` can mean different thing for different index classes.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "7436654d-25ea-4058-9623-c981db612e37": {"__data__": {"id_": "7436654d-25ea-4058-9623-c981db612e37", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}, "2": {"node_id": "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "node_type": null, "metadata": {}, "hash": "fc88305a4fedc81a3108d9b3646098eb9aa680c1aabd1c52062298497e0c4f0b"}, "4": {"node_id": "25b2aa80-5f4e-4746-b48d-42097f230452", "node_type": null, "metadata": {}, "hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4"}}, "hash": "557643045b9c72929610dc515e91171a9df1d09c28ba1816d5d03bf587c97f5c", "text": "File Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Vector Index\nLinks:\n\nSpecifying `retriever_mode` has no effect (silently ignored).`vector_index.as_retriever(.)` always returns a VectorIndexRetriever.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "4387dad2-8b75-46de-bc1b-3ff7936eb37a": {"__data__": {"id_": "4387dad2-8b75-46de-bc1b-3ff7936eb37a", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "3": {"node_id": "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "node_type": null, "metadata": {}, "hash": "4c921f860ffb445c035ef24b476d6b31262e195905bfe401629c31da9a14741d"}, "4": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}}, "hash": "f1048bc9c7dbdd264ae25a82c1e249415c2c6f3cf9c99345e7566b331788ed0d", "text": "File Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/List Index\nLinks:\n\n* `default`: ListIndexRetriever \n* `embedding`: ListIndexEmbeddingRetriever \n* `llm`: ListIndexLLMRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Tree Index\nLinks:\n\n* `select_leaf`: TreeSelectLeafRetriever\n* `select_leaf_embedding`: TreeSelectLeafEmbeddingRetriever\n* `all_leaf`: TreeAllLeafRetriever\n* `root`: TreeRootRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Keyword Table Index\nLinks:\n\n* `default`: KeywordTableGPTRetriever\n* `simple`: KeywordTableSimpleRetriever\n* `rake`: KeywordTableRAKERetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Knowledge Graph Index\nLinks:\n\n* `keyword`: KGTableRetriever\n* `embedding`: KGTableRetriever\n* `hybrid`: KGTableRetriever\n\nFile Name: ./docs/core_modules/query_modules/retriever/retriever_modes.md\nContent Type: text\nHeader Path: Retriever Modes/Document Summary Index\n\n* `default`: DocumentSummaryIndexRetriever\n* `embedding`: DocumentSummaryIndexEmbeddingRetrievers\n\nFile Name: ./docs/core_modules/query_modules/retriever/root.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71": {"__data__": {"id_": "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "2": {"node_id": "4387dad2-8b75-46de-bc1b-3ff7936eb37a", "node_type": null, "metadata": {}, "hash": "f1048bc9c7dbdd264ae25a82c1e249415c2c6f3cf9c99345e7566b331788ed0d"}, "3": {"node_id": "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "node_type": null, "metadata": {}, "hash": "b1facabb9c90f48304de2adcd82f65164f296f3207d5ad09747ace5f84a04b3f"}, "4": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}}, "hash": "4c921f860ffb445c035ef24b476d6b31262e195905bfe401629c31da9a14741d", "text": "md\nContent Type: text\nHeader Path: Retriever/Concept\nLinks:\n\nRetrievers are responsible for fetching the most relevant context given a user query (or chat message).It can be built on top of Indices, but can also be defined independently.It is used as a key building block in Query Engines (and Chat Engines) for retrieving relevant context.File Name: ./docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Concept\nLinks:\n\nConfused about where retriever fits in the pipeline?Read about high-level concepts\n\nFile Name: ./docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Usage Pattern\nLinks:\n\nGet started with:\n\nFile Name: ./docs/core_modules/query_modules/retriever/root.md\nContent Type: text\nHeader Path: Retriever/Usage Pattern\nLinks:\n\nretriever = index.as_retriever()\nnodes = retriever.retrieve(\"Who is Paul Graham?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a7c88a07-1068-4305-aa31-ce7d2ece27ab": {"__data__": {"id_": "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "2": {"node_id": "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "node_type": null, "metadata": {}, "hash": "4c921f860ffb445c035ef24b476d6b31262e195905bfe401629c31da9a14741d"}, "3": {"node_id": "a600037b-6be1-416c-be05-c752abf38ffe", "node_type": null, "metadata": {}, "hash": "c36fe57fd95ade9b737e41dbbbc8b18fe6a83c85ff9414470e7675e68947114a"}, "4": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}}, "hash": "b1facabb9c90f48304de2adcd82f65164f296f3207d5ad09747ace5f84a04b3f", "text": "\")File Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: code\nHeader Path: Retriever/Usage Pattern\n\n```{toctree}\n---\nmaxdepth: 2\n---\nusage_pattern.md\n```\n\nFile Name: ../docs/core_modules/query_modules/retriever/root.md\nContent Type: code\nHeader Path: Retriever/Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\nmodules.md\n```\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nGet a retriever from index:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nretriever = index.as_retriever()\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nRetrieve relevant context for a question:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\nnodes = retriever.retrieve('Who is Paul Graham?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a600037b-6be1-416c-be05-c752abf38ffe": {"__data__": {"id_": "a600037b-6be1-416c-be05-c752abf38ffe", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}, "2": {"node_id": "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "node_type": null, "metadata": {}, "hash": "b1facabb9c90f48304de2adcd82f65164f296f3207d5ad09747ace5f84a04b3f"}, "4": {"node_id": "aae303c7-88a8-425a-baa2-775741a5e48a", "node_type": null, "metadata": {}, "hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d"}}, "hash": "c36fe57fd95ade9b737e41dbbbc8b18fe6a83c85ff9414470e7675e68947114a", "text": "')File Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/Get Started\nLinks:\n\n> Note: To learn how to build an index, see Index\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nYou can select the index-specific retriever class via `retriever_mode`.For example, with a `ListIndex`:\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nretriever = list_index.as_retriever(\n retriever_mode='llm',\n)\n\nFile Name: ../docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\nThis creates a ListIndexLLMRetriever on top of the list index.See **Retriever Modes** for a full list of (index-specific) retriever modes\nand the retriever classes they map to.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "8e83a6bb-1b59-4597-8b68-0af905679267": {"__data__": {"id_": "8e83a6bb-1b59-4597-8b68-0af905679267", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}, "3": {"node_id": "469c53f1-d0e2-40b2-8f54-f84a22474d93", "node_type": null, "metadata": {}, "hash": "7564e066790552ce64be067ad08a95b6136078f91d5bd807be3a1ae7a150ba5b"}, "4": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}}, "hash": "7778d12011847b5667a700609c14bc83795807abcebefad0a039a585ebe7c541", "text": "File Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Selecting a Retriever\nLinks:\n\n---\nmaxdepth: 1\nhidden:\n---\nretriever_modes.md\n\nFile Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Configuring a Retriever\nLinks:\n\nIn the same way, you can pass kwargs to configure the selected retriever.> Note: take a look at the API reference for the selected retriever class' constructor parameters for a list of valid kwargs.For example, if we selected the \"llm\" retriever mode, we might do the following:\n\nFile Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Configuring a Retriever\nLinks:\n\nretriever = list_index.as_retriever(\n retriever_mode='llm',\n choice_batch_size=5,\n)\n\nFile Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Low-Level Composition API\nLinks:\n\nYou can use the low-level composition API if you need more granular control.To achieve the same outcome as above, you can directly import and construct the desired retriever class:\n\nFile Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: text\nHeader Path: Usage Pattern/High-Level API/Low-Level Composition API\nLinks:\n\nfrom llama_index.indices.list import ListIndexLLMRetriever\n\nretriever = ListIndexLLMRetriever(\n index=list_index,\n choice_batch_size=5,", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "469c53f1-d0e2-40b2-8f54-f84a22474d93": {"__data__": {"id_": "469c53f1-d0e2-40b2-8f54-f84a22474d93", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}, "2": {"node_id": "8e83a6bb-1b59-4597-8b68-0af905679267", "node_type": null, "metadata": {}, "hash": "7778d12011847b5667a700609c14bc83795807abcebefad0a039a585ebe7c541"}, "3": {"node_id": "5c7983b9-f801-4a20-9ddc-321df1a15374", "node_type": null, "metadata": {}, "hash": "ddc83cb3fd24b86fb2da1a814ae51d5e6a42d1f8730252d5f78fa94594e42a05"}, "4": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}}, "hash": "7564e066790552ce64be067ad08a95b6136078f91d5bd807be3a1ae7a150ba5b", "text": ")\n\nFile Name: ./docs/core_modules/query_modules/retriever/usage_pattern.md\nContent Type: code\nHeader Path: Usage Pattern/High-Level API/Advanced\n\n```{toctree}\n---\nmaxdepth: 1\n---\nDefine Custom Retriever </examples/query_engine/CustomRetrievers.ipynb>\n```\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing\nLinks:\n\nLlamaIndex supports integrations with output parsing modules offered\nby other frameworks.These output parsing modules can be used in the following ways:\n- To provide formatting instructions for any prompt / query (through `output_parser.format`)\n- To provide \"parsing\" for LLM outputs (through `output_parser.parse`)\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Guardrails\nLinks:\n\nGuardrails is an open-source Python package for specification/validation/correction of output schemas.See below for a code example.File Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Guardrails\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.output_parsers import GuardrailsOutputParser\nfrom llama_index.llm_predictor import StructuredLLMPredictor\nfrom llama_index.prompts.prompts import QuestionAnswerPrompt, RefinePrompt\nfrom llama_index.prompts.default_prompts import DEFAULT_TEXT_QA_PROMPT_TMPL, DEFAULT_REFINE_PROMPT_TMPL\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "5c7983b9-f801-4a20-9ddc-321df1a15374": {"__data__": {"id_": "5c7983b9-f801-4a20-9ddc-321df1a15374", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}, "2": {"node_id": "469c53f1-d0e2-40b2-8f54-f84a22474d93", "node_type": null, "metadata": {}, "hash": "7564e066790552ce64be067ad08a95b6136078f91d5bd807be3a1ae7a150ba5b"}, "4": {"node_id": "413527a2-71f2-466f-b6c7-4b480c41b702", "node_type": null, "metadata": {}, "hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960"}}, "hash": "ddc83cb3fd24b86fb2da1a814ae51d5e6a42d1f8730252d5f78fa94594e42a05", "text": "md\nContent Type: text\nHeader Path: Output Parsing/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('./paul_graham_essay/data').load_data()\nindex = VectorStoreIndex(documents, chunk_size=512)\nllm_predictor = StructuredLLMPredictor()\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define query / output spec\nLinks:\n\nrail_spec = (\"\"\"\n<rail version=\"0.1\">\n\n<output>\n <list name=\"points\" description=\"Bullet points regarding events in the author's life.\">\n <object>\n <string name=\"explanation\" format=\"one-line\" on-fail-one-line=\"noop\" />\n <string name=\"explanation2\" format=\"one-line\" on-fail-one-line=\"noop\" />\n <string name=\"explanation3\" format=\"one-line\" on-fail-one-line=\"noop\" />\n </object>\n </list>\n</output>\n\n<prompt>\n\nQuery string here.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "a7e3546c-e36e-4229-a275-24b1eba8a3fd": {"__data__": {"id_": "a7e3546c-e36e-4229-a275-24b1eba8a3fd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "3": {"node_id": "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "node_type": null, "metadata": {}, "hash": "16c3441a8677f30247d9e5fa184585d2335284f4a5b1648bd3f59a670344279d"}, "4": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}}, "hash": "16362627e4a35e5e81416ce8f903a66949c04a7e6f05809df83452c5d9a817ad", "text": "@xml_prefix_prompt\n\n{output_schema}\n\n@json_suffix_prompt_v2_wo_none\n</prompt>\n</rail>\n\"\"\")\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output parser\nLinks:\n\noutput_parser = GuardrailsOutputParser.from_rail_string(rail_spec, llm=llm_predictor.llm)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/format each prompt with output parser instructions\nLinks:\n\nfmt_qa_tmpl = output_parser.format(DEFAULT_TEXT_QA_PROMPT_TMPL)\nfmt_refine_tmpl = output_parser.format(DEFAULT_REFINE_PROMPT_TMPL)\n\nqa_prompt = QuestionAnswerPrompt(fmt_qa_tmpl, output_parser=output_parser)\nrefine_prompt = RefinePrompt(fmt_refine_tmpl, output_parser=output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\nquery_engine = index.as_query_engine(\n service_context=ServiceContext.from_defaults(\n llm_predictor=llm_predictor\n ),\n text_qa_template=qa_prompt, \n refine_template=refine_prompt, \n)\nresponse = query_engine.query(\n \"What are the three items the author did growing up?\", \n)\nprint(response)\n\nFile Name: .", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "e3d798c1-4d01-4fd8-9725-59dcc73c5320": {"__data__": {"id_": "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "2": {"node_id": "a7e3546c-e36e-4229-a275-24b1eba8a3fd", "node_type": null, "metadata": {}, "hash": "16362627e4a35e5e81416ce8f903a66949c04a7e6f05809df83452c5d9a817ad"}, "3": {"node_id": "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "node_type": null, "metadata": {}, "hash": "451a04f37c689d504f80a19d43848f5c94aa339b1ff4943b06555144a8f89bef"}, "4": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}}, "hash": "16c3441a8677f30247d9e5fa184585d2335284f4a5b1648bd3f59a670344279d", "text": "/docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\nOutput:\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/obtain a structured response\nLinks:\n\n{'points': [{'explanation': 'Writing short stories', 'explanation2': 'Programming on an IBM 1401', 'explanation3': 'Using microcomputers'}]}\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Langchain\nLinks:\n\nLangchain also offers output parsing modules that you can use within LlamaIndex.File Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/Langchain\nLinks:\n\nfrom llama_index import VectorStoreIndex, SimpleDirectoryReader\nfrom llama_index.output_parsers import LangchainOutputParser\nfrom llama_index.llm_predictor import StructuredLLMPredictor\nfrom llama_index.prompts.prompts import QuestionAnswerPrompt, RefinePrompt\nfrom llama_index.prompts.default_prompts import DEFAULT_TEXT_QA_PROMPT_TMPL, DEFAULT_REFINE_PROMPT_TMPL\nfrom langchain.output_parsers import StructuredOutputParser, ResponseSchema\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/load documents, build index\nLinks:\n\ndocuments = SimpleDirectoryReader('./paul_graham_essay/data').load_data()\nindex = VectorStoreIndex.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "3b581203-bfa0-4565-9929-ea9e4a9b68a1": {"__data__": {"id_": "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "2": {"node_id": "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "node_type": null, "metadata": {}, "hash": "16c3441a8677f30247d9e5fa184585d2335284f4a5b1648bd3f59a670344279d"}, "3": {"node_id": "26022177-817a-4eb3-895a-71b8837d4ebd", "node_type": null, "metadata": {}, "hash": "45a4b8a594725fd7cf65ef78af2aaf9b31b30848ff0b088a0d0f2eb75839f998"}, "4": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}}, "hash": "451a04f37c689d504f80a19d43848f5c94aa339b1ff4943b06555144a8f89bef", "text": "from_documents(documents)\nllm_predictor = StructuredLLMPredictor()\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output schema\nLinks:\n\nresponse_schemas = [\n ResponseSchema(name=\"Education\", description=\"Describes the author's educational experience/background.\"),\n ResponseSchema(name=\"Work\", description=\"Describes the author's work experience/background.\")]", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "26022177-817a-4eb3-895a-71b8837d4ebd": {"__data__": {"id_": "26022177-817a-4eb3-895a-71b8837d4ebd", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}, "2": {"node_id": "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "node_type": null, "metadata": {}, "hash": "451a04f37c689d504f80a19d43848f5c94aa339b1ff4943b06555144a8f89bef"}, "4": {"node_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "node_type": null, "metadata": {}, "hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2"}}, "hash": "45a4b8a594725fd7cf65ef78af2aaf9b31b30848ff0b088a0d0f2eb75839f998", "text": "File Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/define output parser\nLinks:\n\nlc_output_parser = StructuredOutputParser.from_response_schemas(response_schemas)\noutput_parser = LangchainOutputParser(lc_output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/format each prompt with output parser instructions\nLinks:\n\nfmt_qa_tmpl = output_parser.format(DEFAULT_TEXT_QA_PROMPT_TMPL)\nfmt_refine_tmpl = output_parser.format(DEFAULT_REFINE_PROMPT_TMPL)\nqa_prompt = QuestionAnswerPrompt(fmt_qa_tmpl, output_parser=output_parser)\nrefine_prompt = RefinePrompt(fmt_refine_tmpl, output_parser=output_parser)\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\nquery_engine = index.as_query_engine(\n service_context=ServiceContext.from_defaults(\n llm_predictor=llm_predictor\n ),\n text_qa_template=qa_prompt, \n refine_template=refine_prompt, \n)\nresponse = query_engine.query(\n \"What are a few things the author did growing up?", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "f15cb451-d8da-4e4f-afcc-7c195357c7a2": {"__data__": {"id_": "f15cb451-d8da-4e4f-afcc-7c195357c7a2", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}, "3": {"node_id": "06e1128d-3441-4bd0-81ff-61e6be9a7404", "node_type": null, "metadata": {}, "hash": "bbd130373a88f7e04a7208c061869d4860fb30730f945f20f640630086fb2a47"}, "4": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}}, "hash": "87e3e0448b8585cd89ec9f82e72b3f7e88aac60e246eeb91cd49b87539d282d7", "text": "\", \n)\nprint(str(response))\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\nOutput:\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: text\nHeader Path: Output Parsing/query index\nLinks:\n\n{'Education': 'Before college, the author wrote short stories and experimented with programming on an IBM 1401.', 'Work': 'The author worked on writing and programming outside of school.'}File Name: ./docs/core_modules/query_modules/structured_outputs/output_parser.md\nContent Type: code\nHeader Path: Output Parsing/Guides\n\n```{toctree}\n---\ncaption: Examples\nmaxdepth: 1\n---\n\n/examples/output_parsing/GuardrailsDemo.ipynb\n/examples/output_parsing/LangchainOutputParserDemo.ipynb\n/examples/output_parsing/guidance_pydantic_program.ipynb\n/examples/output_parsing/guidance_sub_question.ipynb\n/examples/output_parsing/openai_pydantic_program.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: text\nHeader Path: Pydantic Program\nLinks:\n\nA pydantic program is a generic abstraction that takes in an input string and converts it to a structured Pydantic object type.Because this abstraction is so generic, it encompasses a broad range of LLM workflows.The programs are composable and be for more generic or specific use cases.There's a few general types of Pydantic Programs:\n- **LLM Text Completion Pydantic Programs**: These convert input text into a user-specified structured object through a text completion API + output parsing.", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "06e1128d-3441-4bd0-81ff-61e6be9a7404": {"__data__": {"id_": "06e1128d-3441-4bd0-81ff-61e6be9a7404", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}, "2": {"node_id": "f15cb451-d8da-4e4f-afcc-7c195357c7a2", "node_type": null, "metadata": {}, "hash": "87e3e0448b8585cd89ec9f82e72b3f7e88aac60e246eeb91cd49b87539d282d7"}, "3": {"node_id": "99f90aec-e539-408d-b6c4-0f026081ffd5", "node_type": null, "metadata": {}, "hash": "7962e6a3aedc89e9322cbcf510865fb49119839ff70f59a7ca3b22f10fb41920"}, "4": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}}, "hash": "bbd130373a88f7e04a7208c061869d4860fb30730f945f20f640630086fb2a47", "text": "- **LLM Function Calling Pydantic Program**: These convert input text into a user-specified structured object through an LLM function calling API.- **Prepackaged Pydantic Programs**: These convert input text into prespecified structured objects.File Name: ./docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: text\nHeader Path: Pydantic Program/LLM Text Completion Pydantic Programs\nLinks:\n\nTODO: Coming soon!File Name: ./docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: code\nHeader Path: Pydantic Program/LLM Function Calling Pydantic Programs\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/output_parsing/openai_pydantic_program.ipynb\n/examples/output_parsing/guidance_pydantic_program.ipynb\n/examples/output_parsing/guidance_sub_question.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/pydantic_program.md\nContent Type: code\nHeader Path: Pydantic Program/Prepackaged Pydantic Programs\n\n```{toctree}\n---\nmaxdepth: 1\n---\n/examples/output_parsing/df_program.ipynb\n/examples/output_parsing/evaporate_program.ipynb\n```\n\nFile Name: ./docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: text\nHeader Path: Structured Outputs\nLinks:\n\nThe ability of LLMs to produce structured outputs are important for downstream applications that rely on reliably parsing output values.LlamaIndex itself also relies on structured output in the following ways.- **Document retrieval**: Many data structures within LlamaIndex rely on LLM calls with a specific schema for Document retrieval.For instance,", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "99f90aec-e539-408d-b6c4-0f026081ffd5": {"__data__": {"id_": "99f90aec-e539-408d-b6c4-0f026081ffd5", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}, "2": {"node_id": "06e1128d-3441-4bd0-81ff-61e6be9a7404", "node_type": null, "metadata": {}, "hash": "bbd130373a88f7e04a7208c061869d4860fb30730f945f20f640630086fb2a47"}, "4": {"node_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "node_type": null, "metadata": {}, "hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c"}}, "hash": "7962e6a3aedc89e9322cbcf510865fb49119839ff70f59a7ca3b22f10fb41920", "text": "the tree index expects LLM calls to be in the format \"ANSWER: (number)\".- **Response synthesis**: Users may expect that the final response contains some degree of structure (e.g.a JSON output, a formatted SQL query, etc.)LlamaIndex provides a variety of modules enabling LLMs to produce outputs in a structured format.We provide modules at different levels of abstraction:\n- **Output Parsers**: These are modules that operate before and after an LLM text completion endpoint.They are not used with LLM function calling endpoints (since those contain structured outputs out of the box).- **Pydantic Programs**: These are generic modules that map an input prompt to a structured output, represented by a Pydantic object.They may use function calling APIs or text completion APIs + output parsers.- **Pre-defined Pydantic Program**: We have pre-defined Pydantic programs that map inputs to specific output types (like dataframes).See the sections below for an overview of output parsers and Pydantic programs.File Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: text\nHeader Path: Structured Outputs/\ud83d\udd2c Anatomy of a Structured Output Function\nLinks:\n\nHere we describe the different components of an LLM-powered structured output function.The pipeline depends on whether you're using a **generic LLM text completion API** or an **LLM function calling API**.!With generic completion APIs, the inputs and outputs are handled by text prompts.The output parser plays a role before and after the LLM call in ensuring structured outputs.Before the LLM call, the output parser can\nappend format instructions to the prompt.After the LLM call, the output parser can parse the output to the specified instructions.With function calling APIs, the output is inherently in a structured format, and the input can take in the signature of the desired object.The structured output just needs to be cast in the right object format (e.g.Pydantic).", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}, "9c03a722-9e11-431f-a445-106c1699e852": {"__data__": {"id_": "9c03a722-9e11-431f-a445-106c1699e852", "embedding": null, "metadata": {}, "excluded_embed_metadata_keys": [], "excluded_llm_metadata_keys": [], "relationships": {"1": {"node_id": "b6260184-53e4-4db7-b4a2-3259dde76196", "node_type": null, "metadata": {}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd"}, "4": {"node_id": "b6260184-53e4-4db7-b4a2-3259dde76196", "node_type": null, "metadata": {}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd"}}, "hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd", "text": "File Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: code\nHeader Path: Structured Outputs/Output Parser Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\noutput_parser.md\n```\n\nFile Name: ../docs/core_modules/query_modules/structured_outputs/root.md\nContent Type: code\nHeader Path: Structured Outputs/Pydantic Program Modules\n\n```{toctree}\n---\nmaxdepth: 2\n---\npydantic_program.md\n```", "start_char_idx": null, "end_char_idx": null, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n"}, "__type__": "1"}}, "docstore/ref_doc_info": {"4ae9ef74-42fa-406e-87af-3080e3a73233": {"node_ids": ["4d3efd15-341c-4b29-afa7-7953188d2938", "6113854b-aea9-4310-bc89-6bf385c91deb", "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "6dd66f92-57c2-4089-9f14-5d673d36d762", "35f742cf-4dde-4ace-9e1e-d3074523760f", "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "6920088c-2a84-4cbe-ad70-13f1be8704fb", "694198a8-926a-4f24-b121-897dd6ebd176", "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "d4bec885-2ac4-4e51-b783-7835e4181f96", "26782402-9635-482e-b626-75e58b3de6af", "25b2aa80-5f4e-4746-b48d-42097f230452", "aae303c7-88a8-425a-baa2-775741a5e48a", "413527a2-71f2-466f-b6c7-4b480c41b702", "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "b6260184-53e4-4db7-b4a2-3259dde76196"], "metadata": {}}, "4d3efd15-341c-4b29-afa7-7953188d2938": {"node_ids": ["ed55ac15-ce09-44f2-8794-eb6f30ad4102", "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "7606d974-a75a-40e4-b749-ceee37dbf1b5", "0ecd70b0-69e8-4c8d-bbde-4018da0126cb", "ed55ac15-ce09-44f2-8794-eb6f30ad4102", "37d71d91-c9f9-4466-b919-a2d3f4eaff84", "7606d974-a75a-40e4-b749-ceee37dbf1b5", "0ecd70b0-69e8-4c8d-bbde-4018da0126cb"], "metadata": {}}, "6113854b-aea9-4310-bc89-6bf385c91deb": {"node_ids": ["f4bd15e2-598d-4e37-ae15-6e03a9f08398", "fb970878-52f4-4123-af7f-ef6a948abf39", "051bf54d-d207-473e-a13b-3a0977d00377", "fbf04091-9814-4c59-a2af-59cf4442e28a", "f4bd15e2-598d-4e37-ae15-6e03a9f08398", "fb970878-52f4-4123-af7f-ef6a948abf39", "051bf54d-d207-473e-a13b-3a0977d00377", "fbf04091-9814-4c59-a2af-59cf4442e28a"], "metadata": {}}, "43aa67f4-1213-4cfd-87bf-82baa0a7a21a": {"node_ids": ["9a424f32-a874-4f8e-ab1c-991d3a9dbe49", "897ceee3-7af9-4300-a996-7069853dd3fe", "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "b42d48c1-08ff-42a5-bdb4-9dd6f364a027", "9a424f32-a874-4f8e-ab1c-991d3a9dbe49", "897ceee3-7af9-4300-a996-7069853dd3fe", "c97f0f09-c85c-495b-a3a0-2edb8958a18c", "b42d48c1-08ff-42a5-bdb4-9dd6f364a027"], "metadata": {}}, "6dd66f92-57c2-4089-9f14-5d673d36d762": {"node_ids": ["a4892a1f-2218-4bfe-b691-4162b1d4bf80", "e043659e-e9a0-4c87-8095-875bfdf7221a", "122d9186-a52b-4223-b806-d42a8563c93e", "9030c3b5-ba90-48a4-99dd-08c955bacadd", "a4892a1f-2218-4bfe-b691-4162b1d4bf80", "e043659e-e9a0-4c87-8095-875bfdf7221a", "122d9186-a52b-4223-b806-d42a8563c93e", "9030c3b5-ba90-48a4-99dd-08c955bacadd"], "metadata": {}}, "35f742cf-4dde-4ace-9e1e-d3074523760f": {"node_ids": ["f60a00a0-3ba2-46c7-8cad-cd05df08c6af", "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "edd49718-78ae-4333-94e6-2ffda9a60166", "c907930f-94ca-477b-9bea-a98af3354b65", "f60a00a0-3ba2-46c7-8cad-cd05df08c6af", "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17", "edd49718-78ae-4333-94e6-2ffda9a60166", "c907930f-94ca-477b-9bea-a98af3354b65"], "metadata": {}}, "04e52538-f44c-4f5d-bbd5-41ae6bbd6372": {"node_ids": ["a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb", "bf039726-614d-4d53-b16f-d119e7b18ae7", "bcc6f32f-9b05-4747-bcff-29b82efce87d", "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb", "bf039726-614d-4d53-b16f-d119e7b18ae7", "bcc6f32f-9b05-4747-bcff-29b82efce87d"], "metadata": {}}, "6920088c-2a84-4cbe-ad70-13f1be8704fb": {"node_ids": ["51c9d9e2-4889-4b34-84c8-76cc71f93b3f", "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "25316757-07dd-4e6d-9f0f-6f96b9cf63e2", "51c9d9e2-4889-4b34-84c8-76cc71f93b3f", "6a5c70d2-97d7-4b6b-8cb3-f58187568bda", "25316757-07dd-4e6d-9f0f-6f96b9cf63e2"], "metadata": {}}, "694198a8-926a-4f24-b121-897dd6ebd176": {"node_ids": ["61b30575-d871-460a-af27-cd41e98c2909", "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "2a5b69df-3782-4a44-8674-fcc4a9fee8c4", "61b30575-d871-460a-af27-cd41e98c2909", "27dbd541-35f6-4db6-954f-78e6bd9c7f78", "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9", "2a5b69df-3782-4a44-8674-fcc4a9fee8c4"], "metadata": {}}, "b24612df-85d4-4dfc-b6c9-84f0cb367ee5": {"node_ids": ["6c12ef17-17b3-47f6-87b8-c92e1391bfb7", "e4737417-44d7-46eb-b775-58b673b79554", "d8f3c932-6c3a-4538-9bd2-192933dc2055", "4baab847-43bf-4430-a9bf-05f0c12d9b4d", "6c12ef17-17b3-47f6-87b8-c92e1391bfb7", "e4737417-44d7-46eb-b775-58b673b79554", "d8f3c932-6c3a-4538-9bd2-192933dc2055", "4baab847-43bf-4430-a9bf-05f0c12d9b4d"], "metadata": {}}, "8d3af97a-f70d-46ff-af7e-3eeb86d210a3": {"node_ids": ["a99d060e-119d-49e2-8d50-3781092ad15c", "78a64c63-ffca-43dc-82f0-566a375395c6", "5171b641-9ca6-48a0-bde6-d47d021f3c54", "a99d060e-119d-49e2-8d50-3781092ad15c", "78a64c63-ffca-43dc-82f0-566a375395c6", "5171b641-9ca6-48a0-bde6-d47d021f3c54"], "metadata": {}}, "d4bec885-2ac4-4e51-b783-7835e4181f96": {"node_ids": ["8316e5ec-9820-47ce-9a03-0a5902c9bd70", "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "a1c28ad7-78bf-4afb-b187-ab49cae10939", "8316e5ec-9820-47ce-9a03-0a5902c9bd70", "5e8bf41b-f072-4f1e-a2c9-367cee63d816", "a1c28ad7-78bf-4afb-b187-ab49cae10939"], "metadata": {}}, "26782402-9635-482e-b626-75e58b3de6af": {"node_ids": ["26bbaf3d-a5b3-4759-a25d-b7df0f43ef27", "f2850e09-1c16-403b-93dd-9b73f989a8f5", "17a940a6-e716-499c-9d83-542c33d3f97c", "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27", "f2850e09-1c16-403b-93dd-9b73f989a8f5", "17a940a6-e716-499c-9d83-542c33d3f97c"], "metadata": {}}, "25b2aa80-5f4e-4746-b48d-42097f230452": {"node_ids": ["05d0a4b8-9787-412e-9ab8-92bdcec12d1e", "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "7436654d-25ea-4058-9623-c981db612e37", "05d0a4b8-9787-412e-9ab8-92bdcec12d1e", "a066a9ec-d70b-45c3-9f1a-445c9a86aede", "7436654d-25ea-4058-9623-c981db612e37"], "metadata": {}}, "aae303c7-88a8-425a-baa2-775741a5e48a": {"node_ids": ["4387dad2-8b75-46de-bc1b-3ff7936eb37a", "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "a600037b-6be1-416c-be05-c752abf38ffe", "4387dad2-8b75-46de-bc1b-3ff7936eb37a", "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71", "a7c88a07-1068-4305-aa31-ce7d2ece27ab", "a600037b-6be1-416c-be05-c752abf38ffe"], "metadata": {}}, "413527a2-71f2-466f-b6c7-4b480c41b702": {"node_ids": ["8e83a6bb-1b59-4597-8b68-0af905679267", "469c53f1-d0e2-40b2-8f54-f84a22474d93", "5c7983b9-f801-4a20-9ddc-321df1a15374", "8e83a6bb-1b59-4597-8b68-0af905679267", "469c53f1-d0e2-40b2-8f54-f84a22474d93", "5c7983b9-f801-4a20-9ddc-321df1a15374"], "metadata": {}}, "426429e8-7a33-4b53-a9f5-e586e1f65f2c": {"node_ids": ["a7e3546c-e36e-4229-a275-24b1eba8a3fd", "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "26022177-817a-4eb3-895a-71b8837d4ebd", "a7e3546c-e36e-4229-a275-24b1eba8a3fd", "e3d798c1-4d01-4fd8-9725-59dcc73c5320", "3b581203-bfa0-4565-9929-ea9e4a9b68a1", "26022177-817a-4eb3-895a-71b8837d4ebd"], "metadata": {}}, "eb266488-e2e8-4a42-b4c9-c72a9cafe32f": {"node_ids": ["f15cb451-d8da-4e4f-afcc-7c195357c7a2", "06e1128d-3441-4bd0-81ff-61e6be9a7404", "99f90aec-e539-408d-b6c4-0f026081ffd5", "f15cb451-d8da-4e4f-afcc-7c195357c7a2", "06e1128d-3441-4bd0-81ff-61e6be9a7404", "99f90aec-e539-408d-b6c4-0f026081ffd5"], "metadata": {}}, "b6260184-53e4-4db7-b4a2-3259dde76196": {"node_ids": ["9c03a722-9e11-431f-a445-106c1699e852", "9c03a722-9e11-431f-a445-106c1699e852"], "metadata": {}}}, "docstore/metadata": {"4d3efd15-341c-4b29-afa7-7953188d2938": {"doc_hash": "6f8ec28aabfcd722e8db20a1c6f0eb6da161969d6b25af5c28538c67cebb5cf2", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "6113854b-aea9-4310-bc89-6bf385c91deb": {"doc_hash": "23ece345e5f586c10b97690c83deeebe6f66a795e799e1af8fa93db5617b0c19", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "43aa67f4-1213-4cfd-87bf-82baa0a7a21a": {"doc_hash": "a0d1f179a217cf7fc1c4fd1d22fca457eeaccd5067fc576576d6c574833c9819", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "6dd66f92-57c2-4089-9f14-5d673d36d762": {"doc_hash": "57b3a9d1ed2161800ca8bac022fcab50e962e36982501f1eb585e8bd1d7f2b84", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "35f742cf-4dde-4ace-9e1e-d3074523760f": {"doc_hash": "6a6bda7efa03e7cc02c0e7680f8c5733a6189c644cb105b834a87a752f78ff15", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "04e52538-f44c-4f5d-bbd5-41ae6bbd6372": {"doc_hash": "bc0161262c1dc2aad3ca4cf6b88ad30099437cd12c9874915d62d90c08c4303a", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "6920088c-2a84-4cbe-ad70-13f1be8704fb": {"doc_hash": "3e02e38d063a3a8abfc1c3a7d2de32be785acef71e2cc5bc7fc0caaf18bfe681", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "694198a8-926a-4f24-b121-897dd6ebd176": {"doc_hash": "29c21ff640a6cd9da6e4df4d3c0168a3b0aab94f96744cc1adc2b43a18aac0cc", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "b24612df-85d4-4dfc-b6c9-84f0cb367ee5": {"doc_hash": "077623c29831c1ed704d254f398a3ce87e9d3a6486ede1e70631bcd3eca322d2", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "8d3af97a-f70d-46ff-af7e-3eeb86d210a3": {"doc_hash": "7f00adc6844033a8e93e275648dda6e79d21262691c1df107c9193f2fd37cbdd", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "d4bec885-2ac4-4e51-b783-7835e4181f96": {"doc_hash": "efdc6d67c28004e0f4404c272b12c3595f51988b5ea627b7af2e791a9027c8ee", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "26782402-9635-482e-b626-75e58b3de6af": {"doc_hash": "176caf3999e0eb5643f52cd884bdae32faeda9d8a60407b388f5ea9ac762d138", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "25b2aa80-5f4e-4746-b48d-42097f230452": {"doc_hash": "fa1db5008bdc963023cefafbd02496a9a0f487eea05875bfa8ff7a7dda51e7e4", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "aae303c7-88a8-425a-baa2-775741a5e48a": {"doc_hash": "a869b8ae5d018206e19c4dd9bc50c9a1080186c82fc4274d558476dd12687e3d", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "413527a2-71f2-466f-b6c7-4b480c41b702": {"doc_hash": "86738b20de788a0f4749a15508f7b237bfff9aa6006d20a4c2d2ce2715cd8960", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "426429e8-7a33-4b53-a9f5-e586e1f65f2c": {"doc_hash": "6de32bdd828b5b5b5db524c58b86abbd80fe85c04ed6f9e420160450346e52d2", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "eb266488-e2e8-4a42-b4c9-c72a9cafe32f": {"doc_hash": "3318422c3746f1ffee8bf8ae68857b4955ceacf7cd1d0a17bb85f972b4eea56c", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "b6260184-53e4-4db7-b4a2-3259dde76196": {"doc_hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd", "ref_doc_id": "4ae9ef74-42fa-406e-87af-3080e3a73233"}, "ed55ac15-ce09-44f2-8794-eb6f30ad4102": {"doc_hash": "4262e11df5c3bbed8251c990f57e24075fea68dec6c8db7b8c6b5319d0269284", "ref_doc_id": "4d3efd15-341c-4b29-afa7-7953188d2938"}, "37d71d91-c9f9-4466-b919-a2d3f4eaff84": {"doc_hash": "77f96d1de5680edd6c50e02c17bcb4d73aec29caf811c0fceff1d78500341caf", "ref_doc_id": "4d3efd15-341c-4b29-afa7-7953188d2938"}, "7606d974-a75a-40e4-b749-ceee37dbf1b5": {"doc_hash": "f994cfd53ce54f093d632d29c3995f2e5a7cb76c42c6249fa8ec43feb26fd0ee", "ref_doc_id": "4d3efd15-341c-4b29-afa7-7953188d2938"}, "0ecd70b0-69e8-4c8d-bbde-4018da0126cb": {"doc_hash": "16dc20ceedccee484801f6cd6331c075d63d21ef38feba760930abe8c6723f57", "ref_doc_id": "4d3efd15-341c-4b29-afa7-7953188d2938"}, "f4bd15e2-598d-4e37-ae15-6e03a9f08398": {"doc_hash": "f997d531bcd63c9f023e50a984d05cab88c8796412bc8c6bc991a5335aea856e", "ref_doc_id": "6113854b-aea9-4310-bc89-6bf385c91deb"}, "fb970878-52f4-4123-af7f-ef6a948abf39": {"doc_hash": "c6253458d24ad71db59bdcd0495916aa2f8a261ef905f899e1ca3461c1c192cc", "ref_doc_id": "6113854b-aea9-4310-bc89-6bf385c91deb"}, "051bf54d-d207-473e-a13b-3a0977d00377": {"doc_hash": "48122b3e6a2098d31381010c56fa07d7b775eef7f1ff5ab516fcd7d8fb43e3b2", "ref_doc_id": "6113854b-aea9-4310-bc89-6bf385c91deb"}, "fbf04091-9814-4c59-a2af-59cf4442e28a": {"doc_hash": "e6dc2d9b6f90a2e165bf9b33f012c19e41a3164d99c104336abf3b6d508b6b18", "ref_doc_id": "6113854b-aea9-4310-bc89-6bf385c91deb"}, "9a424f32-a874-4f8e-ab1c-991d3a9dbe49": {"doc_hash": "33315f4fb092f447a63428c4de8c9426c04b9d14b9066451bb8c349bb8aed600", "ref_doc_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a"}, "897ceee3-7af9-4300-a996-7069853dd3fe": {"doc_hash": "415da5caa22124dcc721dee78617a51e585f7fe8dece2256478f05ea40b355e5", "ref_doc_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a"}, "c97f0f09-c85c-495b-a3a0-2edb8958a18c": {"doc_hash": "36738bb23aa0fcc746d254c0e39e574306470f8125f936803db728adca78853a", "ref_doc_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a"}, "b42d48c1-08ff-42a5-bdb4-9dd6f364a027": {"doc_hash": "40e16441ab13ac84a903aa068d336b090e273e96b024890e4b0050529b834cab", "ref_doc_id": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a"}, "a4892a1f-2218-4bfe-b691-4162b1d4bf80": {"doc_hash": "bbfc9e7516b4ad407a62d38a5451f7df026faabb8a4734f99b0f297b1e81a75e", "ref_doc_id": "6dd66f92-57c2-4089-9f14-5d673d36d762"}, "e043659e-e9a0-4c87-8095-875bfdf7221a": {"doc_hash": "1cfa1181e601b4943de427f459dfd2ef90dd03581280ef97cff71cb4a0481ba2", "ref_doc_id": "6dd66f92-57c2-4089-9f14-5d673d36d762"}, "122d9186-a52b-4223-b806-d42a8563c93e": {"doc_hash": "b89bd911f9c9274d05b41661c2651814c70623c370cecc0469df24111adebeaf", "ref_doc_id": "6dd66f92-57c2-4089-9f14-5d673d36d762"}, "9030c3b5-ba90-48a4-99dd-08c955bacadd": {"doc_hash": "b743eeab3c848aca6a4ac34ab2b118c8bfa83196d2bb1013388391696cf3364e", "ref_doc_id": "6dd66f92-57c2-4089-9f14-5d673d36d762"}, "f60a00a0-3ba2-46c7-8cad-cd05df08c6af": {"doc_hash": "9cffdfb14d878e50776c5de0f52510f16f4d348eb80a2cabc41f6660265fd71e", "ref_doc_id": "35f742cf-4dde-4ace-9e1e-d3074523760f"}, "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17": {"doc_hash": "c0cbcb30decd9ba24c155ab3f966b8dc08e85f1ae9f99ab81a2b51457b8a64df", "ref_doc_id": "35f742cf-4dde-4ace-9e1e-d3074523760f"}, "edd49718-78ae-4333-94e6-2ffda9a60166": {"doc_hash": "fe690d42f5aaee8838ac0f5b002f0da4509c7701e64b84ecd0bd67ae4d479cd1", "ref_doc_id": "35f742cf-4dde-4ace-9e1e-d3074523760f"}, "c907930f-94ca-477b-9bea-a98af3354b65": {"doc_hash": "4dd43a1f5e676e1acf02041380d771bb6bf36ad7f0248e4a97292232884d160c", "ref_doc_id": "35f742cf-4dde-4ace-9e1e-d3074523760f"}, "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb": {"doc_hash": "1fb85872f4367af977decfaf90775641d425a30c48ace67ce2262bf9ee0b1aa6", "ref_doc_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372"}, "bf039726-614d-4d53-b16f-d119e7b18ae7": {"doc_hash": "7daf57d6e5849bd6e98d3818c87c6d8107eed501fe1a84bc4828a688e59e1268", "ref_doc_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372"}, "bcc6f32f-9b05-4747-bcff-29b82efce87d": {"doc_hash": "82e8070f7441f219bd41ec73e6a1c1eaf7f2cde7fd12fc25b5e22345ab51bab2", "ref_doc_id": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372"}, "51c9d9e2-4889-4b34-84c8-76cc71f93b3f": {"doc_hash": "d1753be1bb8e0df13dbeb1735c83414ef33647dd7c293075158ad286bd3e4dd7", "ref_doc_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb"}, "6a5c70d2-97d7-4b6b-8cb3-f58187568bda": {"doc_hash": "36ac76a16f0bb5e758a3a01d9144c2f0a166db3bccf60d27529c5d7a733ed5ba", "ref_doc_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb"}, "25316757-07dd-4e6d-9f0f-6f96b9cf63e2": {"doc_hash": "5f348a00cdcb3373aa777965ac3e0a504e23d589f5c11dfa236c3867a1b100bb", "ref_doc_id": "6920088c-2a84-4cbe-ad70-13f1be8704fb"}, "61b30575-d871-460a-af27-cd41e98c2909": {"doc_hash": "16f3f7c84aec55a644fb8ea155e96dbd192b7b7d79d0b53f7bd4e4b88958fc48", "ref_doc_id": "694198a8-926a-4f24-b121-897dd6ebd176"}, "27dbd541-35f6-4db6-954f-78e6bd9c7f78": {"doc_hash": "fd9284a928c4c00541e4a594c9799b619cd2f9efcb9edc608c0c3698d3b30308", "ref_doc_id": "694198a8-926a-4f24-b121-897dd6ebd176"}, "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9": {"doc_hash": "e0549233d2c4d811c7d20b71c081249f9cef80636d7d8dfa8466a9f4a6e2a8f7", "ref_doc_id": "694198a8-926a-4f24-b121-897dd6ebd176"}, "2a5b69df-3782-4a44-8674-fcc4a9fee8c4": {"doc_hash": "e5d484c3d06c22948040a467fd5b4fcfdc6ea2991af7f0ab8e62556624a81fc7", "ref_doc_id": "694198a8-926a-4f24-b121-897dd6ebd176"}, "6c12ef17-17b3-47f6-87b8-c92e1391bfb7": {"doc_hash": "9d8e5e06f4f0a3a3ba8f5586c4c57ef6b7486e6dc4aeb12e551086f3f3e69366", "ref_doc_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5"}, "e4737417-44d7-46eb-b775-58b673b79554": {"doc_hash": "3627c85268c3748ed861ea7a144637f3b1f29c65f3967f3fb1f3ada6c758395f", "ref_doc_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5"}, "d8f3c932-6c3a-4538-9bd2-192933dc2055": {"doc_hash": "91d403b091e2be9376485bfd5b7fc9ead09b5708442883ec0056483382010cd5", "ref_doc_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5"}, "4baab847-43bf-4430-a9bf-05f0c12d9b4d": {"doc_hash": "0fdbefc843ac4b7186fd1cd00f56ac63f797611247df783e7a52fef6ac6e4781", "ref_doc_id": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5"}, "a99d060e-119d-49e2-8d50-3781092ad15c": {"doc_hash": "72c44d847f39678cc9526549dc74c37c8646fdf27ef648bf52f3ef754a3486ef", "ref_doc_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3"}, "78a64c63-ffca-43dc-82f0-566a375395c6": {"doc_hash": "bd5cb0ac9e40b3538070334336607ee82c78c1fb9590922fa7adb1fd18d8ecec", "ref_doc_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3"}, "5171b641-9ca6-48a0-bde6-d47d021f3c54": {"doc_hash": "099f46d80276e105d56c11faacbb4c32af70c9b71864369b910ac9502c08f0e8", "ref_doc_id": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3"}, "8316e5ec-9820-47ce-9a03-0a5902c9bd70": {"doc_hash": "2cd55610a036436819ffbd3c5e95d45ea799487ed09d0e15715e7bfb7be5d491", "ref_doc_id": "d4bec885-2ac4-4e51-b783-7835e4181f96"}, "5e8bf41b-f072-4f1e-a2c9-367cee63d816": {"doc_hash": "8a4fde3c0393191e71e36a6a9eeb0742b89d25f6c232fed0a6bfe5489275eda1", "ref_doc_id": "d4bec885-2ac4-4e51-b783-7835e4181f96"}, "a1c28ad7-78bf-4afb-b187-ab49cae10939": {"doc_hash": "6d3cc1150e1d1f8cf08348b84a2f68d099212f4e6633b10a4795192451c06cdf", "ref_doc_id": "d4bec885-2ac4-4e51-b783-7835e4181f96"}, "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27": {"doc_hash": "3ee763f8403d7ca6d8b237a566ba334f767091af21fbb5351b0a847760cd5f1b", "ref_doc_id": "26782402-9635-482e-b626-75e58b3de6af"}, "f2850e09-1c16-403b-93dd-9b73f989a8f5": {"doc_hash": "8bd18e5f22a151b467ed1000b315084968cba810ecf92c83b7b06f70fa27f263", "ref_doc_id": "26782402-9635-482e-b626-75e58b3de6af"}, "17a940a6-e716-499c-9d83-542c33d3f97c": {"doc_hash": "e22bb61dfa5d5ac930b7669bdade19f4ea8fd18d8cdc6dce23351b13fa86c3d7", "ref_doc_id": "26782402-9635-482e-b626-75e58b3de6af"}, "05d0a4b8-9787-412e-9ab8-92bdcec12d1e": {"doc_hash": "0173af05b63014a0fa9fe4fe78768f125b690c2db01ad72e4eedd1e1ff6b0a57", "ref_doc_id": "25b2aa80-5f4e-4746-b48d-42097f230452"}, "a066a9ec-d70b-45c3-9f1a-445c9a86aede": {"doc_hash": "fc88305a4fedc81a3108d9b3646098eb9aa680c1aabd1c52062298497e0c4f0b", "ref_doc_id": "25b2aa80-5f4e-4746-b48d-42097f230452"}, "7436654d-25ea-4058-9623-c981db612e37": {"doc_hash": "557643045b9c72929610dc515e91171a9df1d09c28ba1816d5d03bf587c97f5c", "ref_doc_id": "25b2aa80-5f4e-4746-b48d-42097f230452"}, "4387dad2-8b75-46de-bc1b-3ff7936eb37a": {"doc_hash": "f1048bc9c7dbdd264ae25a82c1e249415c2c6f3cf9c99345e7566b331788ed0d", "ref_doc_id": "aae303c7-88a8-425a-baa2-775741a5e48a"}, "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71": {"doc_hash": "4c921f860ffb445c035ef24b476d6b31262e195905bfe401629c31da9a14741d", "ref_doc_id": "aae303c7-88a8-425a-baa2-775741a5e48a"}, "a7c88a07-1068-4305-aa31-ce7d2ece27ab": {"doc_hash": "b1facabb9c90f48304de2adcd82f65164f296f3207d5ad09747ace5f84a04b3f", "ref_doc_id": "aae303c7-88a8-425a-baa2-775741a5e48a"}, "a600037b-6be1-416c-be05-c752abf38ffe": {"doc_hash": "c36fe57fd95ade9b737e41dbbbc8b18fe6a83c85ff9414470e7675e68947114a", "ref_doc_id": "aae303c7-88a8-425a-baa2-775741a5e48a"}, "8e83a6bb-1b59-4597-8b68-0af905679267": {"doc_hash": "7778d12011847b5667a700609c14bc83795807abcebefad0a039a585ebe7c541", "ref_doc_id": "413527a2-71f2-466f-b6c7-4b480c41b702"}, "469c53f1-d0e2-40b2-8f54-f84a22474d93": {"doc_hash": "7564e066790552ce64be067ad08a95b6136078f91d5bd807be3a1ae7a150ba5b", "ref_doc_id": "413527a2-71f2-466f-b6c7-4b480c41b702"}, "5c7983b9-f801-4a20-9ddc-321df1a15374": {"doc_hash": "ddc83cb3fd24b86fb2da1a814ae51d5e6a42d1f8730252d5f78fa94594e42a05", "ref_doc_id": "413527a2-71f2-466f-b6c7-4b480c41b702"}, "a7e3546c-e36e-4229-a275-24b1eba8a3fd": {"doc_hash": "16362627e4a35e5e81416ce8f903a66949c04a7e6f05809df83452c5d9a817ad", "ref_doc_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c"}, "e3d798c1-4d01-4fd8-9725-59dcc73c5320": {"doc_hash": "16c3441a8677f30247d9e5fa184585d2335284f4a5b1648bd3f59a670344279d", "ref_doc_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c"}, "3b581203-bfa0-4565-9929-ea9e4a9b68a1": {"doc_hash": "451a04f37c689d504f80a19d43848f5c94aa339b1ff4943b06555144a8f89bef", "ref_doc_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c"}, "26022177-817a-4eb3-895a-71b8837d4ebd": {"doc_hash": "45a4b8a594725fd7cf65ef78af2aaf9b31b30848ff0b088a0d0f2eb75839f998", "ref_doc_id": "426429e8-7a33-4b53-a9f5-e586e1f65f2c"}, "f15cb451-d8da-4e4f-afcc-7c195357c7a2": {"doc_hash": "87e3e0448b8585cd89ec9f82e72b3f7e88aac60e246eeb91cd49b87539d282d7", "ref_doc_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f"}, "06e1128d-3441-4bd0-81ff-61e6be9a7404": {"doc_hash": "bbd130373a88f7e04a7208c061869d4860fb30730f945f20f640630086fb2a47", "ref_doc_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f"}, "99f90aec-e539-408d-b6c4-0f026081ffd5": {"doc_hash": "7962e6a3aedc89e9322cbcf510865fb49119839ff70f59a7ca3b22f10fb41920", "ref_doc_id": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f"}, "9c03a722-9e11-431f-a445-106c1699e852": {"doc_hash": "aec735ffcc16723e9832e9ffdf74f1c8401a5cefe7fb8b862bf19e5230f1dbfd", "ref_doc_id": "b6260184-53e4-4db7-b4a2-3259dde76196"}}} \ No newline at end of file diff --git a/5_retrieval/data_query_modules/graph_store.json b/5_retrieval/data_query_modules/graph_store.json new file mode 100644 index 0000000000000000000000000000000000000000..9aab8ead445561f8679e28fe03922c05b1c91ad1 --- /dev/null +++ b/5_retrieval/data_query_modules/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/5_retrieval/data_query_modules/index_store.json b/5_retrieval/data_query_modules/index_store.json new file mode 100644 index 0000000000000000000000000000000000000000..3209e2b5157bd9ef210682a28a3de4c2435b08ad --- /dev/null +++ b/5_retrieval/data_query_modules/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"a815994d-6a50-41ba-a44a-f27fd6165638": {"__type__": "vector_store", "__data__": "{\"index_id\": \"a815994d-6a50-41ba-a44a-f27fd6165638\", \"summary\": null, \"nodes_dict\": {\"ed55ac15-ce09-44f2-8794-eb6f30ad4102\": \"ed55ac15-ce09-44f2-8794-eb6f30ad4102\", \"37d71d91-c9f9-4466-b919-a2d3f4eaff84\": \"37d71d91-c9f9-4466-b919-a2d3f4eaff84\", \"7606d974-a75a-40e4-b749-ceee37dbf1b5\": \"7606d974-a75a-40e4-b749-ceee37dbf1b5\", \"0ecd70b0-69e8-4c8d-bbde-4018da0126cb\": \"0ecd70b0-69e8-4c8d-bbde-4018da0126cb\", \"f4bd15e2-598d-4e37-ae15-6e03a9f08398\": \"f4bd15e2-598d-4e37-ae15-6e03a9f08398\", \"fb970878-52f4-4123-af7f-ef6a948abf39\": \"fb970878-52f4-4123-af7f-ef6a948abf39\", \"051bf54d-d207-473e-a13b-3a0977d00377\": \"051bf54d-d207-473e-a13b-3a0977d00377\", \"fbf04091-9814-4c59-a2af-59cf4442e28a\": \"fbf04091-9814-4c59-a2af-59cf4442e28a\", \"9a424f32-a874-4f8e-ab1c-991d3a9dbe49\": \"9a424f32-a874-4f8e-ab1c-991d3a9dbe49\", \"897ceee3-7af9-4300-a996-7069853dd3fe\": \"897ceee3-7af9-4300-a996-7069853dd3fe\", \"c97f0f09-c85c-495b-a3a0-2edb8958a18c\": \"c97f0f09-c85c-495b-a3a0-2edb8958a18c\", \"b42d48c1-08ff-42a5-bdb4-9dd6f364a027\": \"b42d48c1-08ff-42a5-bdb4-9dd6f364a027\", \"a4892a1f-2218-4bfe-b691-4162b1d4bf80\": \"a4892a1f-2218-4bfe-b691-4162b1d4bf80\", \"e043659e-e9a0-4c87-8095-875bfdf7221a\": \"e043659e-e9a0-4c87-8095-875bfdf7221a\", \"122d9186-a52b-4223-b806-d42a8563c93e\": \"122d9186-a52b-4223-b806-d42a8563c93e\", \"9030c3b5-ba90-48a4-99dd-08c955bacadd\": \"9030c3b5-ba90-48a4-99dd-08c955bacadd\", \"f60a00a0-3ba2-46c7-8cad-cd05df08c6af\": \"f60a00a0-3ba2-46c7-8cad-cd05df08c6af\", \"032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17\": \"032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17\", \"edd49718-78ae-4333-94e6-2ffda9a60166\": \"edd49718-78ae-4333-94e6-2ffda9a60166\", \"c907930f-94ca-477b-9bea-a98af3354b65\": \"c907930f-94ca-477b-9bea-a98af3354b65\", \"a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb\": \"a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb\", \"bf039726-614d-4d53-b16f-d119e7b18ae7\": \"bf039726-614d-4d53-b16f-d119e7b18ae7\", \"bcc6f32f-9b05-4747-bcff-29b82efce87d\": \"bcc6f32f-9b05-4747-bcff-29b82efce87d\", \"51c9d9e2-4889-4b34-84c8-76cc71f93b3f\": \"51c9d9e2-4889-4b34-84c8-76cc71f93b3f\", \"6a5c70d2-97d7-4b6b-8cb3-f58187568bda\": \"6a5c70d2-97d7-4b6b-8cb3-f58187568bda\", \"25316757-07dd-4e6d-9f0f-6f96b9cf63e2\": \"25316757-07dd-4e6d-9f0f-6f96b9cf63e2\", \"61b30575-d871-460a-af27-cd41e98c2909\": \"61b30575-d871-460a-af27-cd41e98c2909\", \"27dbd541-35f6-4db6-954f-78e6bd9c7f78\": \"27dbd541-35f6-4db6-954f-78e6bd9c7f78\", \"2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9\": \"2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9\", \"2a5b69df-3782-4a44-8674-fcc4a9fee8c4\": \"2a5b69df-3782-4a44-8674-fcc4a9fee8c4\", \"6c12ef17-17b3-47f6-87b8-c92e1391bfb7\": \"6c12ef17-17b3-47f6-87b8-c92e1391bfb7\", \"e4737417-44d7-46eb-b775-58b673b79554\": \"e4737417-44d7-46eb-b775-58b673b79554\", \"d8f3c932-6c3a-4538-9bd2-192933dc2055\": \"d8f3c932-6c3a-4538-9bd2-192933dc2055\", \"4baab847-43bf-4430-a9bf-05f0c12d9b4d\": \"4baab847-43bf-4430-a9bf-05f0c12d9b4d\", \"a99d060e-119d-49e2-8d50-3781092ad15c\": \"a99d060e-119d-49e2-8d50-3781092ad15c\", \"78a64c63-ffca-43dc-82f0-566a375395c6\": \"78a64c63-ffca-43dc-82f0-566a375395c6\", \"5171b641-9ca6-48a0-bde6-d47d021f3c54\": \"5171b641-9ca6-48a0-bde6-d47d021f3c54\", \"8316e5ec-9820-47ce-9a03-0a5902c9bd70\": \"8316e5ec-9820-47ce-9a03-0a5902c9bd70\", \"5e8bf41b-f072-4f1e-a2c9-367cee63d816\": \"5e8bf41b-f072-4f1e-a2c9-367cee63d816\", \"a1c28ad7-78bf-4afb-b187-ab49cae10939\": \"a1c28ad7-78bf-4afb-b187-ab49cae10939\", \"26bbaf3d-a5b3-4759-a25d-b7df0f43ef27\": \"26bbaf3d-a5b3-4759-a25d-b7df0f43ef27\", \"f2850e09-1c16-403b-93dd-9b73f989a8f5\": \"f2850e09-1c16-403b-93dd-9b73f989a8f5\", \"17a940a6-e716-499c-9d83-542c33d3f97c\": \"17a940a6-e716-499c-9d83-542c33d3f97c\", \"05d0a4b8-9787-412e-9ab8-92bdcec12d1e\": \"05d0a4b8-9787-412e-9ab8-92bdcec12d1e\", \"a066a9ec-d70b-45c3-9f1a-445c9a86aede\": \"a066a9ec-d70b-45c3-9f1a-445c9a86aede\", \"7436654d-25ea-4058-9623-c981db612e37\": \"7436654d-25ea-4058-9623-c981db612e37\", \"4387dad2-8b75-46de-bc1b-3ff7936eb37a\": \"4387dad2-8b75-46de-bc1b-3ff7936eb37a\", \"2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71\": \"2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71\", \"a7c88a07-1068-4305-aa31-ce7d2ece27ab\": \"a7c88a07-1068-4305-aa31-ce7d2ece27ab\", \"a600037b-6be1-416c-be05-c752abf38ffe\": \"a600037b-6be1-416c-be05-c752abf38ffe\", \"8e83a6bb-1b59-4597-8b68-0af905679267\": \"8e83a6bb-1b59-4597-8b68-0af905679267\", \"469c53f1-d0e2-40b2-8f54-f84a22474d93\": \"469c53f1-d0e2-40b2-8f54-f84a22474d93\", \"5c7983b9-f801-4a20-9ddc-321df1a15374\": \"5c7983b9-f801-4a20-9ddc-321df1a15374\", \"a7e3546c-e36e-4229-a275-24b1eba8a3fd\": \"a7e3546c-e36e-4229-a275-24b1eba8a3fd\", \"e3d798c1-4d01-4fd8-9725-59dcc73c5320\": \"e3d798c1-4d01-4fd8-9725-59dcc73c5320\", \"3b581203-bfa0-4565-9929-ea9e4a9b68a1\": \"3b581203-bfa0-4565-9929-ea9e4a9b68a1\", \"26022177-817a-4eb3-895a-71b8837d4ebd\": \"26022177-817a-4eb3-895a-71b8837d4ebd\", \"f15cb451-d8da-4e4f-afcc-7c195357c7a2\": \"f15cb451-d8da-4e4f-afcc-7c195357c7a2\", \"06e1128d-3441-4bd0-81ff-61e6be9a7404\": \"06e1128d-3441-4bd0-81ff-61e6be9a7404\", \"99f90aec-e539-408d-b6c4-0f026081ffd5\": \"99f90aec-e539-408d-b6c4-0f026081ffd5\", \"9c03a722-9e11-431f-a445-106c1699e852\": \"9c03a722-9e11-431f-a445-106c1699e852\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/5_retrieval/data_query_modules/vector_store.json b/5_retrieval/data_query_modules/vector_store.json new file mode 100644 index 0000000000000000000000000000000000000000..40e6b80fc29fbdcf8f379df8da667c0c0f0bb679 --- /dev/null +++ b/5_retrieval/data_query_modules/vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"ed55ac15-ce09-44f2-8794-eb6f30ad4102": [-0.1448536515235901, 0.47820842266082764, -0.6607775688171387, 0.3158903121948242, 0.6077238321304321, -0.5295463800430298, 0.8134379982948303, 0.6201581358909607, -0.4188339412212372, -0.5678346157073975, -0.344998836517334, 0.435666024684906, -1.0177316665649414, 0.7250480651855469, 0.7857944965362549, 0.8096219301223755, 0.9578505754470825, -0.42918655276298523, -0.15852732956409454, -0.07347036898136139, -0.15807688236236572, -0.0502859503030777, 0.020366976037621498, 0.6054287552833557, 0.4447799324989319, -0.047488339245319366, 0.02198691852390766, 0.10500513762235641, -1.0261719226837158, -0.01599922403693199, 0.1558804214000702, -0.3375956416130066, -0.019937820732593536, -0.4356697201728821, -0.05762077122926712, -0.36427485942840576, -0.7503616809844971, -0.24686427414417267, 0.4465888738632202, -0.14402005076408386, -0.9124792814254761, -0.3796139359474182, -0.10230908542871475, 0.3306569457054138, -0.8947365880012512, 0.1517069935798645, -0.952394425868988, 0.6294204592704773, -0.3832256495952606, 0.29772263765335083, -1.2554163932800293, 0.4261854887008667, 0.3677586019039154, 0.49087685346603394, 0.3791177570819855, 1.1436283588409424, -0.09178443253040314, -1.0171942710876465, -0.01353081688284874, -0.3120260536670685, 0.6183136105537415, 0.26728683710098267, 0.4933406114578247, 0.21807603538036346, 0.4315248131752014, -0.6591134667396545, -0.39606744050979614, 0.42122459411621094, -1.0255799293518066, -0.566135823726654, -0.12425799667835236, 0.29298245906829834, 0.06186775118112564, 0.0015939250588417053, 0.7091417908668518, -0.2786253094673157, -0.06816129386425018, 0.37921515107154846, 1.1559861898422241, 0.838191032409668, -0.3825342655181885, 0.8475592732429504, -0.09163646399974823, 1.014488697052002, -0.6301565170288086, -0.2743758261203766, -0.5321908593177795, 0.03177284449338913, -0.735524594783783, 0.7696454524993896, -0.5378813743591309, -0.8289685249328613, 0.9978020787239075, 0.4680733382701874, 0.3239046633243561, -0.5341359376907349, 0.835963249206543, 0.17246472835540771, 0.6127457618713379, 0.046354662626981735, -0.5658750534057617, -0.5653016567230225, 0.22973254323005676, 0.24278104305267334, -1.4544073343276978, -0.3126671314239502, -0.4527759850025177, -0.1683148890733719, 0.2513194978237152, 0.23964795470237732, 0.09127582609653473, -0.7921114563941956, -0.4860765337944031, -0.15729767084121704, -0.9998950362205505, 0.9053924679756165, 0.48598507046699524, 0.389655739068985, 0.2632107734680176, 0.07998204231262207, 0.8624509572982788, 1.1094386577606201, 0.24327337741851807, 1.1310769319534302, 0.4814364016056061, 0.7538072466850281, 0.0461205318570137, 0.8898353576660156, -0.7794104218482971, -1.332247018814087, 0.08823579549789429, 0.8162292838096619, -0.1400221735239029, -0.042027756571769714, -0.461262047290802, 0.05256156623363495, 0.2158590853214264, 0.6477496027946472, 0.48509126901626587, -0.20872355997562408, -0.2817482054233551, -0.41149425506591797, 0.48013898730278015, -0.010760948993265629, 0.41137754917144775, -0.2243751585483551, -0.427646666765213, -1.0944916009902954, -0.24742743372917175, 0.882580578327179, -0.13209860026836395, 0.10377339273691177, 1.1689445972442627, -1.201594591140747, 0.18055316805839539, 0.6714898943901062, -0.1434677541255951, -0.39042606949806213, -0.5866472721099854, 0.5450112819671631, 0.6993132829666138, 0.1370404064655304, 0.035839810967445374, -0.11659228801727295, -0.318864643573761, -0.04828442633152008, 0.23308619856834412, -0.09341654926538467, 0.1112690269947052, 0.17276343703269958, -0.17204061150550842, -0.5519368648529053, 1.0006325244903564, -0.28580209612846375, -0.10051800310611725, 0.30432257056236267, 1.1363389492034912, 0.4067796468734741, 0.07130993902683258, -0.6818402409553528, -1.142244815826416, 0.8365568518638611, -0.16629374027252197, -0.3641738295555115, -0.2089558094739914, -0.6993518471717834, 1.533767819404602, -0.5320998430252075, -0.30765020847320557, -0.059279561042785645, -1.1997509002685547, -0.844917893409729, -0.42935702204704285, 0.38971543312072754, 1.234744906425476, -0.40153300762176514, 0.026983186602592468, 0.7167207598686218, 0.05791598930954933, 0.6462996006011963, 0.33897915482521057, 0.6298536658287048, 0.10265983641147614, -0.6362895369529724, -0.94753098487854, 0.9664271473884583, 0.2806607484817505, -0.45440641045570374, -0.04406151920557022, 0.3708491325378418, 0.025043435394763947, 0.07285608351230621, 0.6856110692024231, -0.555314838886261, 0.292459636926651, 0.4215228855609894, 0.30759090185165405, -0.7148257493972778, 0.6881597638130188, -0.7171168327331543, 0.5091595649719238, -0.6152933239936829, -1.097702980041504, 0.45555180311203003, -0.24821260571479797, 1.151954174041748, 1.3814436197280884, -0.297481894493103, -0.16645848751068115, 0.2949620187282562, 0.1167229562997818, -0.4468410611152649, 0.7630593776702881, 0.4396699368953705, 0.025371678173542023, -0.5660980939865112, -0.08029186725616455, -0.6333462595939636, 0.8714771866798401, -0.6869813799858093, 0.47644367814064026, 1.1251033544540405, -0.12272162735462189, 0.6463703513145447, 0.687282383441925, -0.11373579502105713, 0.1404409110546112, -0.5707536935806274, -0.5214841961860657, -0.34274518489837646, -0.5382827520370483, -0.38430118560791016, 0.279325008392334, -0.8358194231987, 0.5973537564277649, -0.3348935842514038, -0.6439845561981201, 0.467032790184021, 0.3018946051597595, 0.7986809611320496, -0.5904051065444946, 0.8304772973060608, 0.5565332770347595, -0.013824157416820526, -0.09763451665639877, -1.1788088083267212, -0.46862316131591797, -0.17362695932388306, 0.26248079538345337, 0.2862386703491211, 0.47996920347213745, -0.15289533138275146, 0.05077126994729042, -0.03225533664226532, -0.059408389031887054, 0.010795071721076965, 0.6346142292022705, 0.334940105676651, 0.15196695923805237, -0.9119176864624023, -0.47060102224349976, 0.9809889197349548, -1.0953165292739868, -0.9927133321762085, -0.17935791611671448, -0.45714735984802246, 0.39108914136886597, -0.7254583239555359, -0.3406815230846405, 0.6326761245727539, 0.645595133304596, 0.13532879948616028, -0.36064520478248596, 0.7893834710121155, 1.100917100906372, -0.04382941499352455, 0.3995780944824219, 0.7017529010772705, 0.18830689787864685, 0.5859361886978149, -0.22614797949790955, 0.6532220244407654, 0.3917177617549896, -0.3174833357334137, -0.44912099838256836, -0.3546827733516693, -0.16166672110557556, -0.6425838470458984, -4.397025108337402, 0.35672733187675476, -0.47300273180007935, -0.8588236570358276, 0.33609068393707275, 0.015146017074584961, 0.3974137008190155, -1.0656232833862305, -0.8292984962463379, 0.9018959999084473, -0.32500961422920227, -0.26450151205062866, 0.34804728627204895, 0.35135138034820557, 0.04778696969151497, 0.4550175964832306, -0.41014671325683594, -0.7682324051856995, -0.025949060916900635, 0.3148496448993683, -0.4747837781906128, -0.8264395594596863, -0.42475447058677673, 0.8174383640289307, 0.32549288868904114, 0.33140772581100464, -0.8167352080345154, 0.04420779272913933, -0.6380012035369873, -0.21321643888950348, 0.37130364775657654, -0.2518114149570465, -0.16483283042907715, 0.4442288279533386, 0.05512130260467529, -0.8259477019309998, 0.7202942967414856, -0.009817235171794891, 0.13024258613586426, -0.40010592341423035, -0.9413644075393677, -0.21962501108646393, 0.2479068636894226, -0.3209505081176758, 0.8241479396820068, -0.5620587468147278, -0.5971366167068481, -0.37503722310066223, 0.004922676831483841, 0.7758206129074097, -0.5059896111488342, -0.6861942410469055, -0.2853620946407318, 0.5824752449989319, 0.28729334473609924, -0.11822569370269775, 0.21040230989456177, -0.23008456826210022, -0.2862933278083801, -0.2267473042011261, -0.004454459995031357, -0.6705772876739502, -1.0173701047897339, -0.678584098815918, 0.17003914713859558, -1.0821130275726318, -0.9290117621421814, -0.8451991677284241, 0.618678092956543, 0.6902062892913818, -0.8398599028587341, 0.440015971660614, -0.003533273935317993, -1.312082052230835, 0.5564377903938293, -0.10693151503801346, -0.48728930950164795, -0.35421985387802124, -0.16702169179916382, 0.6842221617698669, -0.6852746605873108, -0.2084859013557434, 0.6370720267295837, 0.18951016664505005, -0.42875462770462036, -0.3671071231365204, 0.22320674359798431, -0.07167001068592072, -0.5613831281661987, -0.6621928215026855, 0.8069084882736206, -0.48596641421318054, -0.07980029284954071, 0.45998120307922363, 0.6462550759315491, 0.4805539548397064, 0.011411325074732304, -0.7016638517379761, 0.3901871144771576, 0.2023235261440277, 0.991065502166748, -0.4604599177837372, 0.1802501380443573, -0.12305115163326263, 0.17418992519378662, -0.1789277195930481, -0.4011872708797455, -0.02055373042821884, 0.28196460008621216, 0.31672340631484985, -0.03429510444402695, -0.2632294297218323, -0.07463029026985168, -0.2746286392211914, -0.00901458878070116, -0.7821564078330994, 0.39062264561653137, 0.5941646099090576, -0.03613799810409546, -0.06147515028715134, -0.4231225550174713, 0.7221348285675049, -0.5590389966964722, -0.18880072236061096, -1.5342270135879517, 0.2959052622318268, 0.16243553161621094, -0.11732034385204315, 0.19568189978599548, 0.053401313722133636, -0.6836462020874023, -0.34752899408340454, 0.29388660192489624, -0.21566826105117798, 1.0816051959991455, -0.8371900916099548, -0.3650462031364441, -0.19799166917800903, -0.01171264797449112, -0.4936607778072357, 0.17314791679382324, 0.3207985460758209, 0.5368555784225464, 0.5587872266769409, 0.4224962890148163, 0.5633960366249084, -1.032127857208252, 0.6157835721969604, -0.06258957087993622, -0.18855597078800201, 0.015180002897977829, -0.4721330404281616, 0.24159479141235352, -0.5461503267288208, 0.02920183539390564, -0.519659161567688, 1.041278600692749, 0.3562277853488922, -0.07323138415813446, -0.6738073229789734, 0.19191959500312805, -0.5714384317398071, -0.22053202986717224, -0.15351442992687225, 0.3880748748779297, 1.033161997795105, -0.30245494842529297, -0.22653615474700928, -0.18922369182109833, -0.09899715334177017, 0.5238267183303833, -0.08015111088752747, -0.9573155045509338, 0.11620911955833435, -0.17990586161613464, 0.7640194892883301, 0.26277732849121094, -0.15995073318481445, 0.5023672580718994, 0.5412068963050842, 0.23798266053199768, -0.05414726585149765, 0.17422398924827576, 0.6547163724899292, 0.8808745741844177, -0.17497709393501282, 0.29916635155677795, -0.10810716450214386, -0.4289762079715729, -0.23553305864334106, 0.56326824426651, -0.042160432785749435, -0.2916017174720764, -0.03664562851190567, -0.9712761044502258, -1.0758147239685059, 0.3865613639354706, 0.07686660438776016, 0.5396409034729004, 0.3915950655937195, -0.3575214147567749, -0.7206003665924072, -0.31200358271598816, 0.3351558446884155, 0.024005815386772156, -1.2423726320266724, 0.7110418677330017, -0.2117995023727417, -0.17061403393745422, 0.15799763798713684, -0.057774219661951065, -0.643083930015564, -1.089860200881958, -0.06656187027692795, 0.12638366222381592, -1.2553704977035522, -0.5951343178749084, -0.17972981929779053, -0.049435608088970184, -0.26272720098495483, 0.5272493958473206, -0.13051944971084595, -0.006102040410041809, -0.5115971565246582, -1.0260435342788696, 0.35768595337867737, -0.39263206720352173, 0.23249703645706177, 0.455757737159729, -0.38162997364997864, 0.2382732629776001, -0.40356871485710144, 0.16005289554595947, 1.031297206878662, -0.015773948282003403, 0.054769184440374374, -0.20125707983970642, 0.4495026469230652, 0.2477683126926422, 0.6008633375167847, 0.06856897473335266, 0.020989593118429184, -0.20610786974430084, -0.9968177676200867, 0.2599875330924988, -0.29082441329956055, -0.7184352874755859, -0.10224730521440506, -0.0901164636015892, 0.5008511543273926, 0.26263663172721863, 0.4346112012863159, -0.6242129802703857, -0.4267679452896118, 0.7810972332954407, -0.8617810606956482, -0.7688681483268738, 0.20938266813755035, -0.5202969312667847, 0.5093051791191101, 0.2893891930580139, 0.11381653696298599, -1.3189818859100342, 0.7187298536300659, 0.8823989033699036, 0.7521069645881653, -0.22893449664115906, -0.5630397796630859, 0.46151745319366455, -0.33846738934516907, -0.18700382113456726, -1.1974081993103027, -0.0004188045859336853, 0.011822953820228577, 0.3892289102077484, -0.7046843767166138, -0.29793328046798706, 0.14300799369812012, 1.1019898653030396, -0.4973982274532318, -0.5801495909690857, 0.25136634707450867, -0.47235047817230225, 0.5126761198043823, 0.5587627291679382, -0.9869912266731262, -0.3892723321914673, 0.23418769240379333, -0.22059062123298645, 0.4535173773765564, -0.40213534235954285, 1.1041419506072998, -0.7565453052520752, 0.4979330599308014, 0.014351680874824524, -0.10742278397083282, 0.7300617694854736, 1.0579062700271606, -0.459203839302063, 0.17171745002269745, -0.6743946075439453, 0.8891794085502625, 0.730482816696167, 0.325933039188385, -0.2343014031648636, -0.012799669057130814, -0.08994802832603455, -1.1431255340576172, 0.30145955085754395, 0.5294467210769653, 0.17600490152835846, -0.3709595799446106, 0.83870530128479, 0.5808306336402893, -1.1279399394989014, -0.7300593256950378, 0.2854152321815491, -0.34882351756095886, -0.09133042395114899, 0.05181580036878586, 0.4736554026603699, 0.46413689851760864, 0.31714776158332825, 0.43863165378570557, 0.37566301226615906, 1.0756536722183228, -0.3487429916858673, 0.48303812742233276, 0.47855350375175476, 0.9508645534515381, 0.8930789232254028, 0.5792560577392578, 0.41028112173080444, 0.9266821146011353, -0.6662590503692627, -0.9678782820701599, 0.1901177167892456, 0.14798620343208313, -0.06063926964998245, -0.26528793573379517, -0.4485348165035248, 0.6255471110343933, 0.5983545780181885, 1.4818556308746338, -0.3673247992992401, 0.5170775055885315, -0.024943798780441284, -0.12278972566127777, 0.6114311218261719, 0.28249359130859375, -0.128950834274292, 1.0018463134765625, -0.5624364614486694, -0.7040410041809082, -0.052228882908821106, 0.195283904671669, -0.002498939633369446, -0.1269749104976654, -0.5388723015785217, 0.29800570011138916, 0.10398745536804199, 1.0426738262176514, 0.9397650957107544, -0.15910962224006653, 0.026974335312843323, 0.5601662397384644, 0.41163375973701477, -0.32103365659713745, 0.8965954184532166, 0.169361412525177, 0.0313103161752224, 0.24919995665550232, -0.48062604665756226, 0.12645241618156433, -0.27682092785835266, 0.04234388843178749, 1.0481324195861816, -0.22259390354156494, -0.41167598962783813, 0.11963480710983276, 0.29009419679641724, -0.2808911204338074, -0.8404877781867981, -0.7764581441879272, -0.030065640807151794, -1.1586824655532837, -0.1300409883260727, 0.6973372101783752, 0.025994211435317993, -1.00691819190979, -0.4850861728191376, -0.6222896575927734, 0.06401385366916656, -0.30663588643074036, -0.8718068599700928, -0.43480807542800903, 0.5447558760643005, 0.12720057368278503, 0.14554211497306824, 1.0094735622406006, 0.7392329573631287, 0.2660121023654938, -0.21659579873085022, 0.33115777373313904, 0.1873818188905716, 0.9995567798614502, -0.6975747346878052, 0.2729010283946991, -1.0502510070800781, 0.499252051115036, 0.5147631168365479, 0.6565908789634705, -1.4585165977478027, 1.0091915130615234, 0.21287891268730164, -0.4461289644241333, 0.8489338159561157, 0.5068243145942688, -0.2554607689380646, -0.35792383551597595, -0.35609784722328186, -0.14513316750526428, 0.2981428802013397, 0.6720473766326904, -0.09117098152637482, 0.6761652231216431, 0.969889223575592, 0.25388991832733154, -0.7158190608024597, -0.22120130062103271, -0.15876798331737518, 0.28907549381256104, -0.8280386924743652, -0.017094023525714874, -0.6095824241638184, -1.0439832210540771, -0.7721870541572571, 0.8289152979850769, 0.11145612597465515, -0.516486406326294, -0.11495950073003769, -0.5271854400634766, 0.12009992450475693, 0.3545486330986023, -0.5940995812416077, -0.7459700703620911, -0.14299841225147247, -0.9749425649642944, -1.0434163808822632, -0.0016018599271774292, 0.20536988973617554, -0.9394099116325378, 0.13342946767807007, -0.7126671075820923, 0.12819543480873108, -0.2999228239059448, -0.32399532198905945, 0.44412586092948914, -0.17178106307983398, 0.13793550431728363], "37d71d91-c9f9-4466-b919-a2d3f4eaff84": [-0.16078035533428192, 0.41050758957862854, -0.6033995747566223, 0.2662314176559448, 0.5582578182220459, 0.05220859497785568, 0.618716835975647, 0.4180913269519806, -0.27507030963897705, -0.44019970297813416, -0.6003146171569824, 0.027281509712338448, -1.4526398181915283, 0.4387423098087311, 0.27408695220947266, 0.7989932894706726, 0.49419546127319336, -0.23116357624530792, -0.14095497131347656, -0.14140507578849792, -0.42193061113357544, 0.16054417192935944, -0.12621507048606873, 0.5370365381240845, 0.40175965428352356, -0.19254456460475922, 0.08602438867092133, 0.29725944995880127, -1.2219825983047485, -0.219830721616745, 0.21263334155082703, -0.21207472681999207, 0.10338491201400757, -0.43459880352020264, -0.0027850940823554993, -0.4694763123989105, -0.6505001783370972, -0.4680596888065338, 0.038027845323085785, 0.18582358956336975, -0.8251162767410278, -0.6265403628349304, -0.4855109453201294, 0.17296060919761658, -0.9142723083496094, 0.13505692780017853, -0.7972082495689392, 0.5159558057785034, -0.8086059093475342, 0.6029708981513977, -1.212821364402771, 0.578366756439209, -0.17619234323501587, 0.30474546551704407, 0.5087859034538269, 1.0342450141906738, -0.11421884596347809, -0.9061368703842163, -0.1668546497821808, -0.37529224157333374, 0.615293562412262, 0.06256348639726639, 0.6661534905433655, 0.2283630073070526, 0.1598537117242813, -0.13326343894004822, -0.23712623119354248, 0.5999994874000549, -1.0147488117218018, -0.6600279211997986, 0.1653849184513092, 0.3150666058063507, -0.07026809453964233, 0.11003425717353821, 1.0707671642303467, -0.301321804523468, -0.5752900838851929, 0.40803322196006775, 0.8224973678588867, 0.5654038786888123, -0.06859448552131653, 0.6781001091003418, 0.18030279874801636, 0.8757339715957642, -0.8064241409301758, -0.3785998225212097, -0.3135294020175934, 0.10086829960346222, -0.6901400685310364, 0.9066120386123657, -0.31070324778556824, -0.73272305727005, 1.0505826473236084, 0.5765659809112549, 0.46391138434410095, -0.7541715502738953, 0.8283903002738953, -0.14436917006969452, 0.5267711877822876, 0.3014659285545349, -0.7436890006065369, -0.6094245314598083, 0.22382521629333496, 0.27292704582214355, -1.7416760921478271, -0.2848530411720276, -0.17810240387916565, -0.559535026550293, 0.3176678717136383, 0.19677551090717316, -0.1440574824810028, -0.601554274559021, -0.4098752737045288, -0.0816444456577301, -1.032942533493042, 1.3554270267486572, 0.6627513766288757, 0.03311661258339882, 0.23146259784698486, -0.047576989978551865, 0.8918981552124023, 0.6009173393249512, 0.2550372779369354, 1.2318774461746216, 0.6200087666511536, 0.8383271098136902, 0.19158826768398285, 0.8395602107048035, -0.48645782470703125, -1.2014747858047485, 0.17619097232818604, 0.9724138975143433, 0.04401063919067383, 0.08477061986923218, -0.15858563780784607, -0.2388949692249298, 0.4018568992614746, 0.3208902180194855, 0.7842648029327393, -0.3016902208328247, -0.7029579877853394, -0.4605276882648468, 0.031055424362421036, 0.1662505567073822, 0.7725653648376465, -0.20816493034362793, -0.5595409870147705, -1.15602707862854, -0.24296456575393677, 0.7044059038162231, -0.1020398885011673, 0.12457732111215591, 1.1863709688186646, -1.1126214265823364, -0.2881104350090027, 0.8883064389228821, -0.24388805031776428, 0.01698995754122734, -0.8206641674041748, 0.6113190054893494, 0.6633107662200928, -0.02398688718676567, -0.5076031684875488, 0.05458663031458855, -0.36456504464149475, 0.19911767542362213, 0.3315433859825134, -0.11776003986597061, -0.17826543748378754, 0.35140636563301086, -0.40010932087898254, -0.5030299425125122, 1.1164606809616089, 0.045770540833473206, 0.10733717679977417, 0.3555932939052582, 1.2464412450790405, 0.371467649936676, 0.2819461226463318, -0.7164857983589172, -1.1578636169433594, 0.8995773196220398, 0.03415856882929802, -0.23611941933631897, 0.20641881227493286, -0.5659070014953613, 1.444425106048584, -0.2075517177581787, -0.18842604756355286, 0.029529213905334473, -1.3661131858825684, -1.037568211555481, -0.42033666372299194, 0.7184438109397888, 1.4390960931777954, -0.7957522869110107, -0.18736189603805542, 0.6146484017372131, 0.02217184193432331, 0.5855826139450073, -0.035748742520809174, 0.48784729838371277, 0.024360164999961853, -0.8233022093772888, -1.0612869262695312, 0.8697509169578552, 0.4405766427516937, -0.15434984862804413, -0.058532506227493286, -0.06282968074083328, 0.1418706774711609, -0.06018304079771042, 0.6640796065330505, -0.7086585760116577, 0.8354410529136658, 0.0014605894684791565, 0.5297188758850098, -0.6225758790969849, 0.7488671541213989, -1.0931270122528076, 0.45659932494163513, -0.5300168395042419, -1.0791270732879639, 0.22415019571781158, 0.19441953301429749, 1.3649407625198364, 1.4058085680007935, -0.2153645157814026, -0.044171616435050964, 0.18168792128562927, 0.029859714210033417, -0.18300658464431763, 0.4611191153526306, 0.6224355697631836, 0.18196655809879303, 0.02834809198975563, -0.015871822834014893, -0.7165118455886841, 0.792687714099884, -0.8252654075622559, 0.4041042923927307, 1.3228193521499634, -0.43503835797309875, 0.43311598896980286, 0.3272697329521179, -0.10972623527050018, 0.16931042075157166, -0.6845703721046448, -0.6716153025627136, -0.3462630808353424, -0.3440031409263611, -0.4024653434753418, 0.6375852227210999, -1.0775872468948364, 0.7737329006195068, -0.25014057755470276, -0.7474616765975952, 0.33113226294517517, 0.4945565462112427, 0.8175292611122131, -0.5033091902732849, 0.5152099132537842, -0.05303269997239113, -0.029849424958229065, -0.4831579029560089, -1.2365607023239136, -1.0236396789550781, -0.07339702546596527, -0.07335770130157471, 0.13790100812911987, 0.40162333846092224, -0.10528439283370972, -0.2137146294116974, 0.015327531844377518, -0.28451311588287354, 0.15683917701244354, 1.0471185445785522, 0.1427922248840332, -0.056060053408145905, -0.9322188496589661, -0.4401704967021942, 0.9186573028564453, -0.8277495503425598, -0.7610026001930237, -0.10572992265224457, -0.439116895198822, 0.02991572394967079, -0.33408322930336, 0.014805033802986145, 0.40682101249694824, 0.23066496849060059, 0.571738600730896, -0.5374113917350769, 0.5997236967086792, 0.9710313081741333, 0.09060594439506531, 0.4707258343696594, 0.5480623841285706, 0.42334458231925964, 0.40470799803733826, -0.22169983386993408, 0.829143762588501, 0.42286914587020874, -0.1421564221382141, -0.24447324872016907, -0.3755141794681549, -0.2205878496170044, -0.5708985924720764, -4.250838279724121, 0.16604889929294586, 0.08195391297340393, -0.6996013522148132, 0.37551936507225037, 0.36256229877471924, 0.2977147698402405, -1.0140588283538818, -0.7496333718299866, 0.7535479664802551, -0.25420448184013367, -0.13591450452804565, 0.28328078985214233, 0.14754556119441986, 0.00047800689935684204, 0.48819026350975037, -0.4152299165725708, -0.7372736930847168, 0.07880084216594696, 0.1681351363658905, -0.21369944512844086, -0.7898225784301758, -0.35030508041381836, 0.6775169968605042, 0.4060473144054413, 0.49827176332473755, -0.5668582916259766, 0.5959753394126892, -0.5778305530548096, 0.010824374854564667, 0.41008418798446655, -0.5158531665802002, 0.11037810146808624, 0.3037605583667755, -0.08986639976501465, -0.911159336566925, 0.6326521635055542, -0.5169086456298828, 0.08618192374706268, -0.08305419236421585, -0.440764456987381, -0.712591290473938, -0.09424272924661636, -0.7532598972320557, 0.76240473985672, -0.21519261598587036, -0.6987938284873962, -0.13766103982925415, -0.015198154374957085, 0.8978109955787659, -0.27223172783851624, -0.7260587811470032, -0.17300593852996826, 0.8498249650001526, 0.08629614114761353, -0.21190732717514038, 0.25881701707839966, 0.05488884821534157, -0.511463463306427, -0.41856807470321655, 0.28164514899253845, -0.458176851272583, -0.6877460479736328, -0.5272407531738281, 0.06351658701896667, -0.6750900745391846, -0.7490469217300415, -0.6378758549690247, 0.94183748960495, 0.34629520773887634, -0.6583687663078308, 0.4994797706604004, 0.035339340567588806, -1.1585670709609985, -0.17741860449314117, -0.02783636935055256, -0.5791869163513184, -0.1672695130109787, -0.3090425431728363, 0.2935805916786194, -0.7415363788604736, -0.39531034231185913, 0.3293418288230896, 0.3190573453903198, -0.09202796220779419, -0.6668495535850525, 0.28496065735816956, -0.22018209099769592, -0.8251866102218628, -0.29472842812538147, 1.0513343811035156, -0.7423190474510193, -0.33092087507247925, 0.6077616810798645, 0.43039700388908386, 0.20346543192863464, -0.11000774800777435, -0.5811009407043457, 0.7771873474121094, 0.3389718532562256, 0.3661351501941681, -0.8102012276649475, 0.2767850458621979, 0.16712337732315063, 0.08527402579784393, 0.29239678382873535, -0.4268467128276825, 0.010841037146747112, 0.293620765209198, 0.03704078495502472, 0.338499516248703, -0.10091958940029144, 0.0766133964061737, -0.40256622433662415, 0.10932231694459915, -0.7729394435882568, 0.5764837265014648, 0.36104047298431396, 0.16589397192001343, 0.16256259381771088, -0.14612853527069092, 0.5650812983512878, -0.8582810163497925, -0.5943843722343445, -1.5892324447631836, 0.35976678133010864, 0.2089252918958664, -0.2537359297275543, 0.2715858519077301, -0.15678414702415466, -0.2527429461479187, -0.4870886206626892, 0.49450990557670593, -0.38533568382263184, 0.523405134677887, -0.815962553024292, -0.31926923990249634, -0.3792273998260498, 0.010720513761043549, -0.6253854036331177, 0.07096581161022186, 0.10505297780036926, 0.22094541788101196, 0.6521154046058655, 0.46587151288986206, 0.6661624908447266, -0.7888572812080383, 0.3022814691066742, -0.18284392356872559, -0.2780422866344452, 0.12057695537805557, -0.275535523891449, 0.48974427580833435, -0.6030747890472412, 0.10460624098777771, -0.3736434280872345, 1.118640422821045, 0.4088830053806305, -0.19461871683597565, -0.650316596031189, 0.17845384776592255, -0.5490640997886658, -0.2827332615852356, 0.08952027559280396, -0.22590187191963196, 1.3120893239974976, -0.4293105900287628, 0.023374661803245544, -0.13109098374843597, -0.004088724963366985, 0.6483809947967529, -0.06019187718629837, -0.907693088054657, 0.33342698216438293, -0.2763790190219879, 0.47562292218208313, 0.1958044469356537, 0.026237741112709045, 0.39573246240615845, 0.3504946529865265, -0.014442900195717812, -0.024150516837835312, 0.5995643734931946, 0.6023015975952148, 0.9667113423347473, 0.06723777949810028, 0.3369707465171814, -0.12405025213956833, -0.35269439220428467, -0.35239648818969727, 0.5404492616653442, 0.39053651690483093, -0.26936280727386475, 0.2607406973838806, -0.9460391998291016, -1.4225349426269531, 0.4166715741157532, -0.008138731122016907, 0.5940206050872803, 0.053749099373817444, -0.1878281533718109, -0.45224809646606445, -0.12587054073810577, 0.025630764663219452, -0.14194315671920776, -1.2726707458496094, 0.4614241123199463, -0.06213339790701866, -0.02262062579393387, 0.3723536729812622, 0.015102691948413849, -0.756556510925293, -1.1250817775726318, 0.15948747098445892, 0.33620765805244446, -1.1568260192871094, -0.4644562304019928, -0.4516494870185852, -0.22092872858047485, -0.04297344386577606, 0.4422443211078644, -0.19668106734752655, -0.03473271429538727, -0.07663486152887344, -1.24643075466156, 0.6601261496543884, -0.05657687410712242, -0.11916359513998032, 0.5250023603439331, -0.5397680997848511, 0.4235208034515381, -0.11550374329090118, 0.40838712453842163, 1.2678502798080444, 0.02473542094230652, -0.05982041358947754, -0.39410680532455444, 0.404487669467926, 0.0437871515750885, 0.7857475876808167, 0.2288147658109665, 0.20768006145954132, -0.059764839708805084, -0.7430360317230225, 0.5712404251098633, -0.014349021017551422, -0.5757720470428467, -0.4133452773094177, -0.16163477301597595, 0.8201808929443359, 0.36944493651390076, 0.6543728113174438, -0.19081296026706696, -0.21166476607322693, 0.846623957157135, -0.9142561554908752, -0.6352278590202332, 0.2112356573343277, -0.6742885112762451, 0.47462397813796997, 0.2534758746623993, 0.13832338154315948, -1.4478223323822021, 0.6286437511444092, 0.9767866134643555, 0.5382674932479858, -0.014004718512296677, -0.1890225112438202, 0.4159400463104248, -0.4728713631629944, -0.18101398646831512, -1.2269866466522217, 0.10320308804512024, 0.1003306582570076, 0.3496440052986145, -0.5798772573471069, -0.42155003547668457, 0.30696192383766174, 1.1314624547958374, -0.7320858836174011, -0.6061242818832397, 0.5433039665222168, -0.4325612187385559, 0.4847099781036377, 0.45377418398857117, -1.114463210105896, 0.3134195804595947, 0.4908387064933777, -0.2662973403930664, 0.3167573809623718, 0.0388413742184639, 1.2288753986358643, -0.5071728229522705, 0.18365910649299622, 0.22658377885818481, -0.15271127223968506, 0.7574285864830017, 1.1295216083526611, -0.47471731901168823, 0.12773612141609192, -0.8323318958282471, 0.7199194431304932, 0.9106816053390503, 0.23902586102485657, -0.16568441689014435, -0.2925434112548828, -0.003736887127161026, -1.0965156555175781, 0.2653166949748993, 0.4909084439277649, 0.24157235026359558, -0.19971498847007751, 0.7059951424598694, 0.707163393497467, -1.207383632659912, -0.6640182733535767, 0.3092145025730133, -0.2993398606777191, -0.22999495267868042, 0.03921527788043022, 0.48565080761909485, 0.11475560069084167, 0.8554345369338989, 0.5392860174179077, 0.3445885181427002, 1.255629062652588, -0.3426034450531006, 0.422848105430603, 1.152738094329834, 1.1064873933792114, 1.3455442190170288, 0.35270172357559204, 0.3898945450782776, 1.1340811252593994, -0.7772386074066162, -0.85099196434021, 0.33544236421585083, 0.1714901328086853, -0.004677675664424896, 0.1939397156238556, -0.46680083870887756, 0.6636146903038025, 0.28503721952438354, 1.6384351253509521, -0.5541962385177612, 0.5951926708221436, -0.17971095442771912, -0.47961437702178955, 0.4208339750766754, -0.05466432869434357, -0.042649075388908386, 0.6894528269767761, -0.34279665350914, -0.5101253986358643, 0.13573956489562988, 0.3807956278324127, -0.33983558416366577, 0.20960594713687897, -0.6052200794219971, 0.027345646172761917, -0.09392942488193512, 0.7427672743797302, 1.0111085176467896, -0.01406887173652649, -0.12011434137821198, 0.3916691243648529, 0.5708910822868347, -0.18176384270191193, 0.6137018799781799, -0.0360928475856781, -0.030742309987545013, 0.2027064859867096, -0.5143663883209229, -0.03633200377225876, -0.6901521682739258, 0.05817209929227829, 0.7849050164222717, -0.23483622074127197, -0.1320795714855194, 0.3169940710067749, 0.05040065199136734, -0.10775972902774811, -0.7606280446052551, -0.7626373171806335, -0.17841589450836182, -0.9966996908187866, -0.2344326227903366, 0.6850249767303467, -0.304745078086853, -1.1043899059295654, -0.39189445972442627, -0.647597074508667, -0.16320501267910004, -0.49968644976615906, -1.0890240669250488, -0.18635226786136627, 0.5139198899269104, 0.34300366044044495, 0.10171181708574295, 0.819179892539978, 0.7231774926185608, 0.33387959003448486, -0.3374500870704651, 0.3576014041900635, -0.016623403877019882, 0.7840878963470459, -0.6295685768127441, -0.20665541291236877, -1.4301137924194336, 0.50174880027771, 0.6407532691955566, 0.7417035102844238, -1.472186803817749, 1.186716914176941, 0.3212074041366577, -0.6207959055900574, 0.7481332421302795, 0.022528281435370445, -0.6305264234542847, -0.3748754858970642, -0.3095712959766388, -0.13890224695205688, 0.11558280140161514, 0.5750712752342224, -0.22362245619297028, 0.9020751714706421, 1.0953021049499512, 0.15639612078666687, -0.6511015295982361, -0.15900005400180817, -0.1905660629272461, 0.4710170328617096, -0.7883061766624451, 0.2637920379638672, -0.792837917804718, -1.1025183200836182, -0.6103017330169678, 0.47385382652282715, -0.004690892994403839, -0.8728107810020447, -0.13622170686721802, -0.966586172580719, 0.2709391713142395, 0.338042289018631, -0.8307287096977234, -0.5519687533378601, -0.18093565106391907, -0.8086485266685486, -0.9698231816291809, 0.10226736962795258, 0.3978021442890167, -0.9598590731620789, -0.5310501456260681, -0.7828251719474792, 0.28734421730041504, -0.39032864570617676, -0.28227654099464417, 0.36835977435112, -0.09479017555713654, 0.41081705689430237], "7606d974-a75a-40e4-b749-ceee37dbf1b5": [0.1828860640525818, 0.11898116767406464, -0.5139497518539429, -0.02507299929857254, 0.5962336659431458, -0.2095603495836258, 0.5556234121322632, 0.5815926790237427, -0.3327648341655731, -0.7547255754470825, -0.2975323796272278, -0.09682455658912659, -1.171999454498291, 0.3819289803504944, 0.16910773515701294, 0.8196077942848206, 0.5267293453216553, -0.3218397796154022, 0.11471681296825409, -0.467561274766922, -0.31083154678344727, -0.2834576964378357, -0.21602937579154968, 0.47996920347213745, 0.7711125016212463, -0.23229390382766724, -0.01580864004790783, 0.030547767877578735, -0.8997924327850342, -0.08922059088945389, 0.35686933994293213, -0.3441491425037384, 0.11983273923397064, -0.4415261745452881, 0.1633336842060089, -0.8148276209831238, -0.7434606552124023, -0.2777864336967468, 0.24081340432167053, -0.03117232769727707, -0.8570004105567932, -0.7945184111595154, -0.5518053770065308, -0.15486542880535126, -0.6488101482391357, 0.5280499458312988, -1.012455940246582, 0.8659336566925049, -0.7074737548828125, 0.4109424948692322, -1.141805648803711, 0.8097060918807983, 0.0783749371767044, 0.17808130383491516, 0.5919244289398193, 1.0955820083618164, -0.08868855983018875, -0.701208770275116, -0.15233214199543, -0.5537478923797607, 0.7889854907989502, -0.22177022695541382, 0.7308036088943481, 0.2567409873008728, -0.041553713381290436, -0.09472781419754028, -0.38526615500450134, 0.841968834400177, -0.7281613349914551, -0.7214492559432983, -0.19684337079524994, 0.2209358513355255, -0.20691637694835663, 0.0678558200597763, 0.41139718890190125, -0.46778836846351624, -0.3125486969947815, 0.447752982378006, 1.106479287147522, 0.7686567306518555, -0.1481623500585556, 0.1604560911655426, 0.04129903018474579, 0.8977429270744324, -0.7585502862930298, -0.10046818107366562, -0.2730059027671814, 0.19532746076583862, -0.6969649195671082, 0.6454962491989136, -0.12599056959152222, -0.7908715009689331, 0.8541836142539978, 0.44001954793930054, 0.40548694133758545, -0.6203842163085938, 0.662563145160675, 0.1854083389043808, 0.3704361617565155, 0.062447987496852875, -0.5222153663635254, -0.873771071434021, 0.12517566978931427, -0.022265147417783737, -1.5127366781234741, -0.4482344388961792, -0.5504163503646851, -0.4118121564388275, -0.034746699035167694, 0.21412837505340576, -0.27961838245391846, -0.4488941729068756, -0.6417045593261719, -0.05659301578998566, -0.8649259805679321, 1.2652692794799805, 0.4807877540588379, 0.07849366217851639, -0.07438723742961884, 0.010103985667228699, 1.1308956146240234, 0.7556494474411011, 0.3243597447872162, 1.3176956176757812, 0.006529334932565689, 0.8358287811279297, 0.24191498756408691, 1.123028039932251, -0.39801445603370667, -1.3751267194747925, -0.00016924366354942322, 0.8868349194526672, -0.10918258875608444, -0.0035080835223197937, -0.28271734714508057, 0.10957261919975281, 0.49943503737449646, 0.20551221072673798, 0.6545721888542175, -0.701027512550354, -0.4527977406978607, -0.49558117985725403, 0.13791905343532562, 0.024415619671344757, 0.5748212933540344, 0.05746223032474518, -0.3270261287689209, -1.3260554075241089, -0.049327630549669266, 0.8084383606910706, -0.1995130032300949, 0.1709950864315033, 1.1821221113204956, -0.9480578303337097, -0.28175076842308044, 0.6005973815917969, -0.27419358491897583, 0.21730154752731323, -0.7117350101470947, 0.562131404876709, 0.61235111951828, -0.18635745346546173, -0.2265598624944687, -0.04903486371040344, -0.6667878031730652, 0.36219820380210876, 0.25940120220184326, -0.22227992117404938, -0.1168181449174881, 0.32042568922042847, -0.09891806542873383, -0.3772348463535309, 0.9857999682426453, 0.00905786082148552, 0.34233397245407104, -0.24787387251853943, 1.0520401000976562, 0.3298414945602417, 0.18874578177928925, -0.3867547810077667, -1.0774434804916382, 0.6818587183952332, 0.1824878752231598, -0.0769411250948906, 0.2755109369754791, -0.5554621815681458, 1.2815935611724854, 0.2027704417705536, -0.26908135414123535, 0.3018425703048706, -1.133853793144226, -0.8235966563224792, -0.3978045880794525, 0.4409501850605011, 1.1227409839630127, -0.8867985010147095, 0.049955978989601135, 0.5393356084823608, 0.1298426389694214, 0.609879195690155, -0.23792412877082825, 0.36138150095939636, -0.10750611126422882, -0.6433170437812805, -1.0149345397949219, 0.7464756965637207, 0.20422445237636566, -0.12358121573925018, -0.22735977172851562, 0.32252466678619385, 0.06582953035831451, 0.08322769403457642, 0.4943297505378723, -0.7220821380615234, 0.6975207924842834, 0.17899048328399658, 0.450406938791275, -0.7690436244010925, 0.7630350589752197, -0.8722549676895142, 0.5772030353546143, -0.9791534543037415, -1.0449628829956055, 0.3878464698791504, -0.20678427815437317, 1.4097291231155396, 1.1460336446762085, -0.440788596868515, -0.1319834440946579, 0.2589322328567505, -0.21064847707748413, -0.142811581492424, 0.3428709805011749, 0.36243799328804016, -0.3610334098339081, -0.32013121247291565, -0.1686049848794937, -0.5308183431625366, 0.7359009385108948, -1.0108165740966797, 0.42345067858695984, 1.2998888492584229, -0.7500948905944824, 0.5942796468734741, 0.5066508054733276, -0.1742171049118042, 0.38580796122550964, -0.7006744742393494, -0.6864972114562988, -0.2590683698654175, -0.6030459403991699, -0.4645266532897949, 0.35775092244148254, -0.8569818735122681, 0.7125537395477295, -0.2517349123954773, -0.785852313041687, 0.20577992498874664, 0.432046115398407, 0.6373189091682434, -0.4416130483150482, 0.5854770541191101, 0.06397110968828201, -0.3065726161003113, -0.3941849172115326, -1.5918874740600586, -0.8573324680328369, -0.037775974720716476, 0.34601444005966187, 0.27105987071990967, 0.48978668451309204, 0.2171579748392105, -0.030377238988876343, 0.05661895126104355, -0.5314110517501831, 0.2957770824432373, 1.0951547622680664, 0.42582860589027405, 0.08673615753650665, -0.9183220267295837, -0.36602696776390076, 1.0043742656707764, -0.8486976623535156, -0.9116678833961487, -0.13919682800769806, -0.5262714624404907, 0.12069344520568848, -0.6456323266029358, -0.20937108993530273, 0.519485354423523, 0.2797771096229553, 0.3494342565536499, -0.5707169771194458, 0.5410247445106506, 1.3358389139175415, 0.07855461537837982, 0.23084783554077148, 0.3759940266609192, 0.044983863830566406, 0.1996227353811264, -0.2635546624660492, 0.3576895296573639, 0.4247053265571594, -0.38754308223724365, -0.6545616388320923, -0.6187628507614136, -0.1688959002494812, -0.5508283376693726, -4.301836013793945, 0.18489015102386475, -0.09179295599460602, -0.3776291608810425, 0.5040109157562256, 0.4862058758735657, 0.3352051377296448, -0.924935519695282, -0.6040147542953491, 0.7628745436668396, -0.6422200798988342, -0.36163681745529175, 0.1587536782026291, 0.41042056679725647, 0.20270133018493652, 0.44608622789382935, -0.1408507227897644, -0.7366650700569153, 0.43677812814712524, 0.2388041615486145, -0.13932375609874725, -0.9863272309303284, -0.4586249589920044, 0.8857996463775635, 0.6842021942138672, 0.09483316540718079, -1.0355082750320435, 0.6236915588378906, -0.8282899260520935, 0.09562079608440399, 0.2746492922306061, -0.2159600853919983, 0.39194023609161377, 0.028955258429050446, -0.10715541243553162, -0.48654478788375854, 0.7226559519767761, -0.18042683601379395, -0.08282767236232758, -0.42082473635673523, -0.47544780373573303, -0.5920637845993042, -0.46565455198287964, -0.5641935467720032, 0.7325688600540161, 0.0323939323425293, -0.41728639602661133, -0.39240652322769165, 0.20963174104690552, 0.8820579648017883, -0.3193993866443634, -0.8511360287666321, -0.39358025789260864, 0.27789798378944397, 0.16553157567977905, -0.21518456935882568, -0.04616790637373924, 0.16012367606163025, -0.14652416110038757, -0.010941483080387115, 0.32317909598350525, -0.559590220451355, -0.387696236371994, -0.5565036535263062, 0.1759532392024994, -0.5272215008735657, -0.6564964056015015, -1.0472931861877441, 0.7083837985992432, 0.7115417122840881, -0.6336562633514404, 0.24062535166740417, -0.12365549802780151, -1.4798229932785034, -0.28104615211486816, -0.1860148310661316, -0.2691352963447571, -0.3276538550853729, -0.29923009872436523, 0.3597826659679413, -0.3282495141029358, -0.27740126848220825, 0.5482392311096191, 0.30877381563186646, -0.30091139674186707, -0.8639864921569824, -0.01685572788119316, -0.43863025307655334, -0.6032597422599792, -0.31039270758628845, 0.8477572798728943, -0.8433663845062256, -0.4180738627910614, 0.6990939378738403, 0.4896552562713623, 0.4708073139190674, -0.07007095217704773, -0.43840524554252625, 0.6311989426612854, -0.23550710082054138, 0.33273202180862427, -0.9733788967132568, 0.3464030623435974, -0.025744326412677765, 0.1591755598783493, 0.10167700797319412, -0.5081937313079834, 0.051491402089595795, 0.43654099106788635, 0.05943271517753601, 0.471682608127594, -0.5315254926681519, -0.1410842090845108, -0.38960665464401245, 0.0030685272067785263, -0.6460718512535095, 0.4882564842700958, 0.5451948046684265, 0.343349426984787, 0.02818274311721325, -0.41586145758628845, 0.6601953506469727, -0.9367074370384216, -0.2932966351509094, -0.9800635576248169, 0.22120098769664764, 0.3462017774581909, -0.4513205289840698, 0.3019862771034241, -0.22048723697662354, -0.2458847016096115, -0.26637786626815796, 0.49231547117233276, 0.21367327868938446, 0.8474850058555603, -0.7871211767196655, -0.1891927719116211, -0.5883626341819763, 0.0758679211139679, -0.33101052045822144, 0.1417173445224762, 0.17188800871372223, 0.39332684874534607, 0.4634825587272644, 0.7943946123123169, 0.8601461052894592, -0.518875777721405, 0.4960838556289673, -0.09301825612783432, -0.23676499724388123, 0.4184664487838745, -0.32496607303619385, 0.43383464217185974, -0.6036802530288696, 0.16428232192993164, -0.4883847236633301, 1.0341918468475342, 0.22405242919921875, -0.38187605142593384, -0.8090201020240784, 0.6122545599937439, -0.3688998818397522, -0.21242403984069824, -0.0588035024702549, 0.24443507194519043, 1.21769380569458, -0.915789783000946, 0.2721501886844635, -0.2449757605791092, -0.184370219707489, 0.5281283855438232, -0.17289987206459045, -0.696669340133667, 0.3318200409412384, -0.21440039575099945, 0.4791207015514374, 0.0005566179752349854, -0.17167170345783234, 0.6223981380462646, 0.23390372097492218, -0.01774250715970993, 0.1875365972518921, 0.30611202120780945, 0.7161397337913513, 1.1254562139511108, 0.5033454298973083, 0.20939543843269348, -0.18521863222122192, -0.6805222630500793, 0.023440882563591003, 0.21704615652561188, 0.14980758726596832, -0.014541767537593842, -0.13471047580242157, -1.0120463371276855, -1.1292622089385986, 0.1809729039669037, 0.22759748995304108, 0.3315172791481018, 0.1881663054227829, -0.33914628624916077, -0.07483795285224915, -0.12358686327934265, 0.058692701160907745, 0.01880621910095215, -1.3474737405776978, 0.49043989181518555, -0.26229357719421387, -0.16858313977718353, 0.1490018218755722, 0.09232878684997559, -0.9131945967674255, -0.8064526319503784, 0.17194822430610657, 0.03768999129533768, -0.9661402702331543, -0.46427133679389954, -0.3448120653629303, 0.2111399620771408, -0.542382001876831, 0.5921162962913513, -0.0053333379328250885, -0.11848840117454529, -0.11447789520025253, -1.169066071510315, 0.5134071111679077, -0.4965606927871704, -0.16752013564109802, 0.4918569326400757, -0.39658311009407043, 0.21703481674194336, -0.19100460410118103, 0.37440019845962524, 1.2287635803222656, 0.3763296604156494, -0.3421873152256012, -0.11269649118185043, 0.5454988479614258, 0.18697331845760345, 0.7576012015342712, -0.1643897294998169, -0.14959940314292908, -0.5717498660087585, -0.6496371030807495, 0.5122074484825134, 0.15915443003177643, -0.5964370965957642, 0.12431378662586212, 0.07777035236358643, 0.8461006879806519, 0.37993380427360535, 0.9546775221824646, -0.2815871834754944, -0.23939922451972961, 0.8095384240150452, -0.7858746647834778, -0.5906685590744019, -0.10636182874441147, -0.42068126797676086, 0.2833012044429779, 0.15000353753566742, 0.3843136131763458, -1.322687029838562, 0.9007928967475891, 0.9218667149543762, 1.0388107299804688, 0.2864285707473755, -0.3305334448814392, 0.6303918957710266, -0.3058381974697113, 0.2011336237192154, -1.4747390747070312, -0.0282539501786232, 0.696870744228363, 0.5905393958091736, -0.4508812725543976, -0.6133403778076172, 0.0499412938952446, 1.0256397724151611, -0.5366629958152771, -0.8553513288497925, 0.49887481331825256, -0.16887694597244263, 0.6134573817253113, 0.443159818649292, -1.1512104272842407, 0.0123435715213418, 0.45757752656936646, -0.10940627753734589, 0.18659257888793945, 0.018736757338047028, 1.3599145412445068, -0.6112717986106873, 0.18034060299396515, 0.13521894812583923, -0.13394972681999207, 0.9225512146949768, 1.1893014907836914, -0.6455914974212646, 0.2703010141849518, -0.8227846026420593, 0.9124003052711487, 0.7818828821182251, 0.23155850172042847, -0.10440590977668762, 0.029884453862905502, 0.5428670048713684, -1.111029028892517, 0.3615420460700989, 0.7118592262268066, 0.03516647219657898, -0.5054763555526733, 0.7196363210678101, 0.8054884076118469, -1.2062560319900513, -0.7560698986053467, 0.6089420318603516, -0.11205489188432693, -0.5190452337265015, -0.052640415728092194, 0.2830571234226227, 0.23526912927627563, 0.9111347198486328, 0.57716965675354, 0.5007155537605286, 1.1910250186920166, -0.2845391035079956, 0.5331467986106873, 0.9557514786720276, 0.8733057975769043, 1.159766435623169, 0.19770626723766327, 0.3235665559768677, 0.9792324900627136, -0.6926366686820984, -0.8238657712936401, 0.21363630890846252, 0.1466791331768036, -0.04518495500087738, 0.13588371872901917, 0.03737534582614899, 0.6038087010383606, 0.6664528250694275, 1.5669348239898682, -0.4333098232746124, 0.2583359479904175, -0.2403508424758911, -0.2327738255262375, 0.5647024512290955, 0.07515554875135422, -0.2815767228603363, 0.7565494775772095, -0.7127050161361694, -0.8943577408790588, 0.24998769164085388, 0.6184494495391846, -0.4218084216117859, -0.0750788077712059, -0.34576675295829773, -0.1314694732427597, 0.1681903600692749, 0.910712480545044, 1.0487481355667114, -0.1957792341709137, -0.233240008354187, 0.042742952704429626, 0.36572349071502686, -0.4040822386741638, 0.49011552333831787, 0.033988818526268005, 0.31430086493492126, 0.3519303798675537, -0.5973370671272278, 0.17862145602703094, -0.39237818121910095, -0.12964245676994324, 0.6443035006523132, -0.15554705262184143, -0.2287905365228653, 0.01684296876192093, 0.5069946646690369, -0.010467275977134705, -0.9896177053451538, -0.8062797784805298, -0.1319427788257599, -0.8636454939842224, -0.0127024594694376, 0.7122355103492737, -0.16405488550662994, -1.2046334743499756, -0.4912484884262085, -0.548159122467041, -0.028164204210042953, -0.36420831084251404, -1.1119279861450195, -0.2700788378715515, 0.4584272801876068, 0.04725350812077522, 0.48556602001190186, 0.8471314907073975, 0.4264207184314728, 0.4890810251235962, -0.32911327481269836, -0.004230910912156105, 0.460331529378891, 0.8486282825469971, -0.6234130263328552, 0.12066356837749481, -1.3083014488220215, 0.7733390927314758, 0.5205340385437012, 0.5991727709770203, -1.6533185243606567, 1.3198721408843994, 0.03146227449178696, -0.5556488633155823, 0.9458180665969849, 0.22044627368450165, -0.546701967716217, -0.32452988624572754, 0.04379197955131531, 0.042920246720314026, 0.4880529046058655, 0.44078952074050903, -0.07546128332614899, 0.5812544822692871, 1.0079991817474365, 0.08045163750648499, -0.5337083339691162, 0.1811429113149643, -0.5783413648605347, 0.22583207488059998, -0.9177606701850891, -0.06982147693634033, -0.5656465888023376, -0.7279067039489746, -0.5790844559669495, 0.8588309288024902, 0.03258315101265907, -0.8933191895484924, 0.0294174961745739, -0.33477091789245605, 0.4260794222354889, 0.39342325925827026, -0.47676414251327515, -0.6213601231575012, -0.3143830895423889, -0.9425453543663025, -1.0248618125915527, -0.12137340009212494, 0.2115020602941513, -0.718281626701355, -0.3696346879005432, -0.4923854172229767, 0.20271944999694824, -0.12603522837162018, -0.409294992685318, 0.7269203662872314, -0.3544682264328003, 0.22659993171691895], "0ecd70b0-69e8-4c8d-bbde-4018da0126cb": [-0.15600621700286865, 0.31338730454444885, -0.6480826139450073, -0.16895745694637299, 0.8631681799888611, -0.30970463156700134, 0.7157957553863525, 0.4973022937774658, -0.2525257170200348, -0.5200513601303101, -0.3668420910835266, 0.21177740395069122, -1.1054786443710327, 0.49055373668670654, 0.33452555537223816, 0.6769053339958191, 0.5670545697212219, -0.44022729992866516, -0.09399636089801788, -0.3476126194000244, -0.12229058146476746, -0.12885981798171997, -0.021286454051733017, 0.5466323494911194, 0.6194201707839966, -0.34739673137664795, -0.0483514741063118, 0.1343124508857727, -1.1835825443267822, 0.20613771677017212, 0.35722723603248596, -0.21963588893413544, 0.11645494401454926, -0.27031436562538147, 0.3542541265487671, -0.4893219769001007, -0.4224623441696167, -0.3452790379524231, 0.29470205307006836, -0.23450209200382233, -0.4444518983364105, -0.7731418013572693, -0.5632022023200989, -0.0890052318572998, -0.6727110743522644, 0.19458509981632233, -0.8502800464630127, 0.4244285821914673, -0.6062720417976379, -0.018694207072257996, -1.2125515937805176, 0.4167441427707672, 0.1381811499595642, 0.3806164264678955, 0.3289269804954529, 1.150869607925415, 0.09594479948282242, -0.9488099217414856, -0.2713437080383301, -0.24701935052871704, 0.6497244238853455, 0.15172913670539856, 0.622610867023468, 0.3521953821182251, -0.10756029933691025, -0.14742611348628998, -0.04667312651872635, 0.18342900276184082, -0.9718144536018372, -0.8042862415313721, -0.13137006759643555, 0.3864852786064148, 0.09404104948043823, -0.03285430371761322, 0.5384668707847595, -0.14301514625549316, -0.3168805241584778, 0.084011510014534, 1.0082780122756958, 0.7370261549949646, -0.2857930362224579, 0.6889410018920898, 0.08154743909835815, 0.8703600168228149, -0.6572298407554626, -0.37562164664268494, -0.5557595491409302, -0.08237569034099579, -0.4380331039428711, 0.8378763198852539, -0.2719496488571167, -0.9127886891365051, 1.0077224969863892, 0.5873324871063232, 0.504658579826355, -0.7487838268280029, 0.792721152305603, 0.1483636051416397, 0.6030082106590271, 0.4573575556278229, -0.37240222096443176, -0.6088979244232178, 0.09477996826171875, 0.14733096957206726, -1.693307638168335, -0.3250309228897095, -0.5785388946533203, -0.1674203872680664, 0.08659421652555466, 0.1067180410027504, -0.30762389302253723, -1.043322205543518, -0.3912287652492523, 0.10454999655485153, -1.045882225036621, 1.0905230045318604, 0.4240858256816864, 0.19262024760246277, 0.09859804064035416, -0.13146774470806122, 0.9075283408164978, 0.8707448244094849, 0.12436854839324951, 1.0851056575775146, 0.298869252204895, 0.9112358093261719, 0.31293922662734985, 1.0004876852035522, -0.780330240726471, -1.215301275253296, -0.05998928099870682, 0.9163703918457031, 0.15872488915920258, -0.01096200942993164, -0.14355672895908356, -0.16610701382160187, 0.4660626947879791, 0.32828375697135925, 0.6607506275177002, -0.3373458981513977, -0.3212939500808716, -0.4773577153682709, 0.39394015073776245, 0.2659792900085449, 0.23856766521930695, -0.04578793793916702, -0.29236412048339844, -1.0516961812973022, -0.12775202095508575, 0.80806964635849, -0.0256957970559597, 0.09190455079078674, 1.3170982599258423, -0.9553277492523193, -0.09135095030069351, 0.8237000107765198, -0.25367528200149536, 0.10864907503128052, -0.8173948526382446, 0.3876343071460724, 0.6301248073577881, 0.08451013267040253, -0.31595245003700256, -0.11299389600753784, -0.5427360534667969, 0.20049390196800232, 0.10380107164382935, -0.0843019112944603, 0.04767186939716339, 0.5341907143592834, -0.2639090418815613, -0.4954487085342407, 0.9926531314849854, -0.12415140867233276, -0.08817560225725174, 0.37355995178222656, 1.029181957244873, 0.3059964179992676, -0.008419856429100037, -0.6182090640068054, -1.046256184577942, 0.9484409689903259, -0.25349605083465576, -0.4515407681465149, 0.25535157322883606, -0.8395851254463196, 1.3301756381988525, -0.05870082229375839, -0.3936517834663391, 0.3601222336292267, -1.16500985622406, -0.5266034603118896, -0.11732654273509979, 0.5128234624862671, 1.1523232460021973, -0.3673538863658905, -0.09761618077754974, 0.5269958972930908, -0.1976483017206192, 0.669998049736023, 0.05219331383705139, 0.47491762042045593, 0.19942303001880646, -0.8027593493461609, -0.9221060872077942, 0.8762974739074707, 0.021934345364570618, -0.10442079603672028, 0.10329711437225342, 0.24305658042430878, -0.03793767839670181, 0.41921302676200867, 0.5525401830673218, -0.33758777379989624, 0.7311290502548218, 0.23899304866790771, 0.1908060610294342, -0.8118790984153748, 0.6575663685798645, -0.9607601165771484, 0.15216639637947083, -0.8815661072731018, -1.0965763330459595, 0.5325694680213928, -0.2918993830680847, 1.2387669086456299, 1.4739727973937988, -0.4375232756137848, -0.08028721809387207, 0.35387057065963745, 0.059317320585250854, -0.17263272404670715, 0.5203896760940552, 0.57590252161026, 0.19948811829090118, -0.3184380829334259, 0.226484015583992, -0.569028377532959, 0.7693484425544739, -0.7121958136558533, 0.7385304570198059, 1.328960657119751, 0.021233443170785904, 0.5753076076507568, 0.3476736545562744, -0.0806589275598526, -0.11393649876117706, -0.3545016646385193, -0.7764668464660645, -0.15483392775058746, -0.3737119734287262, -0.3320247530937195, 0.44927558302879333, -0.8865553736686707, 0.6394444108009338, -0.25559908151626587, -0.6854960918426514, 0.06452617794275284, 0.41924193501472473, 1.0356099605560303, -0.44091010093688965, 0.9705488681793213, 0.15441536903381348, -0.17357710003852844, -0.451522558927536, -1.3720911741256714, -0.8491851687431335, 0.0045020319521427155, 0.09467845410108566, 0.15902219712734222, 0.15272873640060425, 0.1646120697259903, -0.08043909072875977, 0.09752816706895828, -0.11654049158096313, -0.2229057401418686, 1.0157032012939453, 0.11084271967411041, -0.1604258418083191, -0.6511706709861755, -0.5764166116714478, 0.7332420349121094, -0.9699083566665649, -1.0247113704681396, -0.26432085037231445, -0.5400071144104004, -0.19184288382530212, -0.5396730899810791, -0.2755333185195923, 0.41419580578804016, 0.3956310749053955, 0.5458317399024963, -0.5305804014205933, 0.6886651515960693, 0.988849401473999, 0.21840563416481018, 0.24370728433132172, 0.6562018394470215, 0.10693353414535522, 0.3275411128997803, -0.10441979765892029, 0.803275465965271, 0.22496485710144043, -0.3110255300998688, -0.44364455342292786, -0.7557348608970642, -0.5115534067153931, -0.2515103220939636, -4.411696910858154, 0.3470383584499359, 0.12733328342437744, -0.47929200530052185, 0.34912317991256714, 0.5960289239883423, 0.3401404321193695, -0.9117763042449951, -0.775915265083313, 0.9967082738876343, -0.25050419569015503, -0.147946298122406, 0.41373682022094727, 0.4998580813407898, -0.11482614278793335, 0.5444422960281372, -0.42176225781440735, -1.070605993270874, 0.3488394618034363, 0.1363525092601776, -0.47539037466049194, -0.991878867149353, -0.30946585536003113, 0.567779541015625, -0.03989870101213455, 0.31845569610595703, -0.8246203660964966, 0.41475552320480347, -0.7882176041603088, -0.18899670243263245, 0.3062809705734253, -0.20095132291316986, 0.19709478318691254, 0.3605814576148987, 0.03976855054497719, -0.9349366426467896, 0.8840534090995789, -0.33240270614624023, 0.10117152333259583, -0.335239052772522, -0.6710767149925232, -0.4402492344379425, -0.07417169213294983, -0.6415499448776245, 0.759227454662323, -0.06253420561552048, -0.7533218264579773, -0.3367501497268677, -0.20513257384300232, 0.9401280283927917, -0.44699883460998535, -0.9908595681190491, -0.1648804247379303, 0.31335991621017456, 0.4842616319656372, -0.06985708326101303, -0.05964132770895958, -0.3528757393360138, -0.19285355508327484, -0.23333853483200073, 0.2611673176288605, -0.6918803453445435, -0.6895462870597839, -0.8446828722953796, 0.18820348381996155, -0.9545227885246277, -0.7652738094329834, -0.8103582859039307, 0.45069852471351624, 0.8395605683326721, -0.7394087910652161, 0.5364372134208679, -0.018173985183238983, -1.356695532798767, -0.04716576635837555, -0.23139092326164246, -0.6009702682495117, -0.332916796207428, -0.4063025414943695, 0.07816435396671295, -0.31237268447875977, -0.05569477751851082, 0.3096122741699219, 0.37719324231147766, -0.22875428199768066, -0.8898243308067322, 0.30087870359420776, -0.4692972004413605, -0.8574313521385193, -0.6898891925811768, 0.6906717419624329, -0.6179712414741516, -0.5862876176834106, 0.8936394453048706, 0.6448419690132141, 0.1538510024547577, -0.15540549159049988, -0.6715043187141418, 0.6797643899917603, -0.1382080316543579, 0.6175000667572021, -0.7452917695045471, 0.18188932538032532, 0.08699436485767365, 0.19839367270469666, 0.025155384093523026, -0.39615893363952637, -0.06459031254053116, 0.5148618221282959, 0.20875343680381775, 0.354595422744751, -0.1944475769996643, -0.15288661420345306, -0.4533050060272217, -0.12821799516677856, -0.898120105266571, 0.4970838725566864, 0.35717716813087463, 0.06845935434103012, 0.047259025275707245, -0.3376198410987854, 0.740260660648346, -0.8642358183860779, -0.07558047026395798, -1.3685302734375, 0.0462472029030323, 0.2467428743839264, -0.3181317448616028, 0.1803082376718521, -0.004311675205826759, -0.5869120955467224, -0.40902450680732727, 0.5425443053245544, -0.18272162973880768, 0.8938028812408447, -0.5716938376426697, -0.32729610800743103, -0.05723094567656517, -0.024758175015449524, -0.5262993574142456, 0.008042728528380394, 0.4732699692249298, 0.49753814935684204, 0.3873479962348938, 0.5131285190582275, 0.6695278882980347, -0.7991016507148743, 0.35856929421424866, -0.11529717594385147, -0.27001112699508667, 0.013814510777592659, -0.3666805922985077, 0.20063619315624237, -0.5549039840698242, 0.11275234818458557, -0.35337764024734497, 1.172424077987671, 0.06175094097852707, -0.22952938079833984, -0.5693293213844299, 0.29484081268310547, -0.3897473216056824, -0.23287832736968994, -0.1869523674249649, -0.19939230382442474, 1.0815825462341309, -0.6554971933364868, -0.0320732519030571, 0.038990795612335205, 0.2158644050359726, 0.6439575552940369, -0.2395227700471878, -0.6320752501487732, 0.28599679470062256, -0.48992934823036194, 0.6682949066162109, 0.27468371391296387, -0.1645943522453308, 0.41470709443092346, 0.31847289204597473, 0.08715205639600754, -0.06804899126291275, -0.08045798540115356, 0.7149922251701355, 0.8652932047843933, -0.20353667438030243, 0.2017679214477539, -0.19952617585659027, -0.6866649389266968, -0.21561166644096375, 0.6406887769699097, 0.3008231222629547, -0.33990976214408875, 0.13798175752162933, -0.8994711637496948, -1.1867448091506958, -0.002934727817773819, 0.04105249047279358, 0.8016658425331116, 0.4139966666698456, -0.30644696950912476, -0.26652762293815613, 0.015683740377426147, -0.18655964732170105, -0.19115236401557922, -1.2563276290893555, 0.688151478767395, -0.363154798746109, -0.10791342705488205, 0.5843461155891418, -0.18125605583190918, -0.6919572353363037, -0.7838239669799805, 0.08134559541940689, 0.2032841444015503, -1.3542697429656982, -0.4650478661060333, -0.3836785852909088, 0.1850634664297104, -0.22176945209503174, 0.6324642896652222, -0.03478655964136124, 0.016578376293182373, -0.27228549122810364, -1.0040817260742188, 0.6727794408798218, -0.3753662109375, 0.1216467022895813, 0.4968566596508026, -0.22527611255645752, 0.1637895703315735, -0.3203297555446625, 0.38378480076789856, 1.045773983001709, 0.3483133614063263, -0.1123218685388565, -0.15840604901313782, 0.4552980661392212, 0.31430932879447937, 0.6686986088752747, 0.16996566951274872, 0.0013400763273239136, -0.4020664393901825, -0.8855358958244324, 0.39815667271614075, 0.07708624750375748, -0.9763306379318237, 0.02696651965379715, -0.0020044357515871525, 1.0282083749771118, 0.029229484498500824, 0.4069080650806427, -0.2243136316537857, -0.4192463755607605, 0.7135280966758728, -0.8304818272590637, -0.7300944924354553, 0.008083760738372803, -0.41773805022239685, 0.31664222478866577, 0.4726567268371582, 0.014507889747619629, -1.4330718517303467, 0.5611873865127563, 0.8837884664535522, 0.7890326380729675, -0.33100852370262146, -0.2707839012145996, 0.516068696975708, -0.4688827395439148, -0.021074697375297546, -1.461024522781372, 0.196427583694458, 0.33153289556503296, 0.48180317878723145, -0.2669100761413574, -0.4895281493663788, 0.5182444453239441, 1.328123927116394, -0.37020236253738403, -0.6950505375862122, 0.060000453144311905, -0.20003557205200195, 0.8028975129127502, 0.4917635917663574, -1.076498031616211, -0.06418056786060333, -0.05043526738882065, -0.20354953408241272, 0.3581487536430359, 0.16442130506038666, 1.2739214897155762, -0.6428609490394592, 0.14461910724639893, -0.051581971347332, -0.12966184318065643, 0.8162253499031067, 1.275427222251892, -0.4509076178073883, 0.3850421607494354, -0.605692446231842, 1.2000609636306763, 0.6340227127075195, 0.22213450074195862, -0.006924077868461609, -0.2788268029689789, 0.22955594956874847, -1.0791829824447632, 0.10452045500278473, 0.7780007123947144, 0.256955623626709, -0.306364506483078, 0.5722063779830933, 1.045039415359497, -1.2036582231521606, -0.7787336111068726, 0.2446555197238922, 0.06494654715061188, -0.12794499099254608, 0.3219775855541229, 0.3115970492362976, 0.5005078315734863, 0.30666640400886536, 0.8330662250518799, 0.576166033744812, 0.9407737255096436, -0.11332286894321442, 0.44026076793670654, 0.7547634840011597, 0.775593638420105, 1.280922532081604, 0.11503870785236359, 0.45640915632247925, 0.9333192110061646, -0.45591238141059875, -0.7546651363372803, 0.36668676137924194, 0.0873001292347908, 0.020027942955493927, 0.0220794677734375, 0.012259088456630707, 0.5972465872764587, 0.42617833614349365, 1.3731392621994019, -0.3564942181110382, 0.44176942110061646, -0.4866167902946472, -0.6384204626083374, 0.7100311517715454, -0.17000645399093628, 0.08872047066688538, 1.0840750932693481, -0.801799476146698, -0.5755367279052734, 0.4094620943069458, 0.3415469527244568, -0.25383374094963074, 0.042182307690382004, -0.49493408203125, -0.08191151916980743, 0.09141537547111511, 0.891402542591095, 1.0349003076553345, 0.01996903121471405, 0.020102884620428085, 0.22182312607765198, 0.33313214778900146, -0.2732357084751129, 0.7697738409042358, 0.2509608566761017, 0.3788148760795593, 0.5488643050193787, -0.25280964374542236, -0.11740387976169586, -0.4223478436470032, -0.10217045247554779, 0.5272747278213501, -0.12099610269069672, -0.35905930399894714, 0.5316504836082458, 0.6387603282928467, 0.03932204097509384, -0.9401759505271912, -0.9084198474884033, -0.002895742654800415, -0.8717121481895447, -0.045340292155742645, 0.6927160620689392, -0.19974327087402344, -0.8979322910308838, -0.3912973701953888, -0.4160914421081543, -0.1937331110239029, -0.5118826627731323, -0.931620717048645, -0.25355732440948486, 0.5873124003410339, 0.2802286446094513, 0.27767905592918396, 0.843817412853241, 0.4352576732635498, 0.3502059280872345, -0.3458373248577118, 0.14757420122623444, 0.07192161679267883, 1.0390266180038452, -0.8807998299598694, 0.17802007496356964, -1.2733404636383057, 0.5334258079528809, 0.7064703702926636, 0.6848257780075073, -1.4683825969696045, 1.2992297410964966, -0.055603526532649994, -0.5411274433135986, 0.8294265866279602, -0.008738700300455093, -0.5150581002235413, -0.1870115101337433, 0.058562904596328735, -0.34623995423316956, 0.119866743683815, 0.43569883704185486, -0.22709636390209198, 0.4514193832874298, 0.6819882988929749, 0.08222981542348862, -0.6676369309425354, 0.06707813590765, -0.2420661598443985, 0.5076656937599182, -0.8101021647453308, 0.15799763798713684, -0.608652651309967, -0.7271835207939148, -0.8623577356338501, 0.6458186507225037, 0.18587833642959595, -0.5551848411560059, 0.09886165708303452, -0.5857771635055542, 0.23819808661937714, 0.2634475827217102, -0.661179780960083, -0.6711179614067078, -0.31810078024864197, -0.9539180994033813, -0.9913285374641418, -0.3399434983730316, 0.4587513506412506, -0.6385618448257446, 0.1754474937915802, -0.5690903663635254, 0.0036189518868923187, -0.3628842234611511, -0.4120679795742035, 0.3516620695590973, -0.1510443240404129, 0.2486395239830017], "f4bd15e2-598d-4e37-ae15-6e03a9f08398": [-0.03685012832283974, 0.40991106629371643, -0.4930875301361084, -0.0824052169919014, 0.6985263228416443, -0.2591068744659424, 0.5999388098716736, 0.5073941946029663, -0.3591894507408142, -0.487049400806427, -0.4710325598716736, 0.10395923256874084, -1.1123028993606567, 0.6789024472236633, 0.5301745533943176, 0.6846871376037598, 0.557673990726471, -0.3407522737979889, 0.10661448538303375, -0.38016417622566223, 0.06981813162565231, 0.0194861963391304, -0.20468635857105255, 0.42287492752075195, 0.49256518483161926, 0.024726226925849915, -0.2452239990234375, 0.13040314614772797, -1.0563044548034668, 0.011217527091503143, 0.18430198729038239, -0.24042390286922455, 0.14512847363948822, -0.42690709233283997, 0.10704159736633301, -0.4086797833442688, -0.5679620504379272, -0.5234780311584473, 0.2824137806892395, 0.0652415007352829, -0.5915710926055908, -0.5141749382019043, -0.23292604088783264, 0.12661032378673553, -0.6061568856239319, 0.2500365674495697, -1.1171746253967285, 0.7584360241889954, -0.4200740158557892, -0.049875736236572266, -1.3232060670852661, 0.5429059267044067, 0.09501244127750397, 0.40329888463020325, 0.6640164256095886, 0.9872525930404663, -0.11577025800943375, -0.9066169857978821, -0.09960918128490448, -0.3744284212589264, 0.46780481934547424, 0.25004661083221436, 0.6753904223442078, 0.20899763703346252, 0.16452842950820923, -0.025392848998308182, -0.4558160603046417, 0.5431303977966309, -1.382220983505249, -0.9499925374984741, 0.11050602793693542, 0.26536789536476135, 0.17951470613479614, -0.15309256315231323, 0.24172624945640564, -0.3564499318599701, -0.29445862770080566, 0.3738641142845154, 1.0470032691955566, 0.8090372681617737, -0.3847922384738922, 0.7410867214202881, -0.009921148419380188, 1.0099157094955444, -0.7099684476852417, -0.21430745720863342, -0.6692994236946106, 0.1859932392835617, -0.6198042631149292, 0.6110168695449829, 0.0017415434122085571, -0.8799169063568115, 0.865116536617279, 0.47436997294425964, 0.36037877202033997, -0.6656407117843628, 0.8744702339172363, 0.11231440305709839, 0.6276805996894836, 0.3890092670917511, -0.5828031301498413, -0.3409609794616699, 0.4314413070678711, 0.10959725081920624, -1.4033633470535278, -0.449822336435318, -0.38617822527885437, -0.31987446546554565, 0.18488724529743195, 0.09857604652643204, 0.22015783190727234, -0.9332833886146545, -0.41520461440086365, -0.18576499819755554, -0.7995893359184265, 1.062436580657959, 0.6190842986106873, 0.3679950535297394, 0.09492748230695724, -0.07563193887472153, 1.1044602394104004, 1.2496963739395142, 0.3206121325492859, 1.267206072807312, 0.364011287689209, 0.7291966080665588, 0.2886744737625122, 1.112730622291565, -0.5053250789642334, -1.1513488292694092, -0.05665714293718338, 0.7228162884712219, 0.041683413088321686, -0.228585883975029, -0.30192071199417114, 0.2649151086807251, 0.43525105714797974, 0.46972399950027466, 0.6338998675346375, -0.42889082431793213, -0.23207250237464905, -0.6818305253982544, 0.4546974003314972, -0.07519155740737915, 0.15373216569423676, -0.013577155768871307, -0.13028612732887268, -1.162724494934082, -0.016365796327590942, 0.9153991937637329, 0.05687520280480385, 0.2139435112476349, 1.177190899848938, -1.016946792602539, 0.037687379866838455, 0.714684784412384, -0.3067914545536041, -0.1405000388622284, -0.6386836767196655, 0.5017530918121338, 0.4927404820919037, 0.14980779588222504, -0.23159517347812653, -0.13632747530937195, -0.6287550926208496, 0.19685056805610657, 0.5429202318191528, 0.011100433766841888, -0.055979445576667786, 0.25469547510147095, -0.4000288248062134, -0.5392546653747559, 1.0428547859191895, -0.14244037866592407, 0.13825678825378418, 0.19650378823280334, 1.1309322118759155, 0.25293582677841187, 0.3853605091571808, -0.5758498907089233, -1.1294338703155518, 0.6541059613227844, -0.1439237743616104, -0.4226692020893097, 0.10325321555137634, -0.8232090473175049, 1.4428374767303467, -0.40312689542770386, -0.2743045389652252, 0.1187368854880333, -1.2266017198562622, -0.73545902967453, -0.4260260760784149, 0.4196765124797821, 1.3563700914382935, -0.30176931619644165, -0.2124129980802536, 0.5889509916305542, 0.03261899575591087, 0.7676998972892761, 0.19812491536140442, 0.6111564636230469, -0.1678493320941925, -0.8849678635597229, -0.9940885901451111, 0.7262173295021057, 0.10533583164215088, -0.13665227591991425, 0.10940118134021759, 0.39466845989227295, 0.038422226905822754, 0.06958915293216705, 0.713435173034668, -0.5886510610580444, 0.573207437992096, 0.08401273190975189, 0.27818119525909424, -0.5606995820999146, 0.7546988725662231, -0.857537031173706, 0.5629284381866455, -0.8790507316589355, -1.077042579650879, 0.5358240604400635, -0.5651517510414124, 1.2352861166000366, 1.4144001007080078, -0.35981714725494385, -0.17535586655139923, 0.28580591082572937, 0.04929064214229584, -0.3979581892490387, 0.4429134726524353, 0.5383703708648682, -0.15898610651493073, -0.46857699751853943, -0.12672877311706543, -0.3814331591129303, 0.7456434369087219, -0.7202528119087219, 0.5815271139144897, 1.3754703998565674, -0.1348942369222641, 0.47339722514152527, 0.41365864872932434, -0.047759827226400375, 0.2982398271560669, -0.4876690208911896, -0.8586153984069824, -0.3999561667442322, -0.45811235904693604, -0.23597395420074463, 0.4099121689796448, -0.9568098783493042, 0.6205077171325684, -0.16380365192890167, -0.6916256546974182, 0.5365563631057739, 0.5028902888298035, 0.6980988383293152, -0.43496087193489075, 0.7788967490196228, 0.19604744017124176, 0.06496861577033997, -0.17655262351036072, -1.3755155801773071, -0.5274249315261841, 0.06382963806390762, 0.26094311475753784, -0.017886117100715637, 0.3337765336036682, 0.055507153272628784, 0.13852843642234802, -0.0696229338645935, -0.09960636496543884, 0.10494332015514374, 0.9200658202171326, 0.41973164677619934, 0.09152989089488983, -0.8651430606842041, -0.4234667718410492, 1.0494301319122314, -0.9478190541267395, -0.9250904321670532, -0.2682247459888458, -0.5340442657470703, 0.25026077032089233, -0.9764194488525391, -0.30536502599716187, 0.28437376022338867, 0.3081957995891571, 0.30017054080963135, -0.5724316835403442, 0.9049463868141174, 1.1592637300491333, -0.025492386892437935, 0.3752122223377228, 0.5535780191421509, 0.2755313813686371, 0.31495553255081177, -0.2244027554988861, 0.5454975366592407, 0.34397074580192566, -0.5552628040313721, -0.8069770932197571, -0.6572791337966919, -0.49551355838775635, -0.5528171062469482, -4.479026794433594, 0.5528817176818848, -0.460238516330719, -0.4925950765609741, 0.3125078082084656, 0.3751125931739807, 0.32341068983078003, -1.0096242427825928, -0.7387334704399109, 0.6925939321517944, -0.4357873797416687, -0.22274798154830933, 0.3138311803340912, 0.5891732573509216, -0.20799696445465088, 0.6114436984062195, -0.34412476420402527, -0.8012913465499878, 0.23124513030052185, 0.20090791583061218, -0.5955766439437866, -0.976958692073822, -0.1432095170021057, 0.6840687990188599, 0.22543978691101074, 0.22483941912651062, -1.0124003887176514, 0.2972418963909149, -0.723336398601532, -0.11066266894340515, 0.26861485838890076, -0.29668083786964417, 0.047494933009147644, 0.11882662773132324, 0.09000097960233688, -0.6800050139427185, 0.6966037154197693, -0.25870704650878906, 0.13076037168502808, -0.1163165271282196, -0.6293249130249023, -0.345805823802948, -0.3222850561141968, -0.6579383015632629, 0.7919356226921082, -0.34592026472091675, -0.8982436656951904, -0.29076892137527466, -0.2053380310535431, 0.7209909558296204, -0.3234754800796509, -0.7758490443229675, -0.2550724148750305, 0.39705196022987366, 0.5006274580955505, -0.23329083621501923, 0.011824801564216614, -0.14562177658081055, -0.25388193130493164, -0.17085298895835876, 0.13828639686107635, -0.7236366868019104, -0.8190957307815552, -0.6944144368171692, 0.1206209659576416, -0.9372560977935791, -0.7919986248016357, -0.885118305683136, 0.6198282837867737, 0.7566398978233337, -0.7398500442504883, 0.6494648456573486, 0.19640704989433289, -1.3578602075576782, 0.10947336256504059, -0.18079495429992676, -0.40850505232810974, -0.6904715895652771, -0.3289947509765625, 0.375636488199234, -0.41313987970352173, -0.24922886490821838, 0.6478971838951111, 0.22252047061920166, -0.05480321869254112, -0.5868208408355713, 0.2619626522064209, -0.25372037291526794, -0.5810548067092896, -0.36135992407798767, 0.754045307636261, -0.7464510798454285, -0.2904830574989319, 0.8207870721817017, 0.445058137178421, 0.31065797805786133, 0.03690280392765999, -0.7585754990577698, 0.4851617217063904, 0.17177675664424896, 0.5096596479415894, -0.6132781505584717, 0.1691497415304184, -0.023896291851997375, 0.07956327497959137, 0.05840618163347244, -0.46217891573905945, -0.0422312431037426, 0.13458476960659027, 0.3870062530040741, 0.24000078439712524, -0.45597973465919495, -0.0016664788126945496, -0.22086673974990845, -0.15702171623706818, -0.6832817792892456, 0.38539043068885803, 0.2926541864871979, 0.04881890490651131, 0.0431661494076252, -0.43605268001556396, 0.7662176489830017, -0.4493046700954437, -0.23420453071594238, -1.4104942083358765, 0.19139741361141205, 0.064878448843956, -0.23103643953800201, 0.2847757339477539, 0.18408361077308655, -0.5334585905075073, -0.5139986276626587, 0.5260990858078003, -0.389504998922348, 0.6384650468826294, -0.7704740762710571, -0.12786506116390228, -0.1484982967376709, 0.10969078540802002, -0.2839435338973999, 0.17973242700099945, 0.18064475059509277, 0.39956411719322205, 0.48394834995269775, 0.4392678737640381, 0.6386878490447998, -0.7146546244621277, 0.3916233479976654, -0.3036462962627411, -0.15982657670974731, 0.17253577709197998, -0.4071357846260071, 0.2232903391122818, -0.5772644877433777, -0.06275775283575058, -0.4859454333782196, 1.063765525817871, 0.061859458684921265, -0.1384700983762741, -0.6188188195228577, 0.3799791932106018, -0.5398973822593689, -0.5136730670928955, -0.04208306595683098, 0.09488467872142792, 1.1310489177703857, -0.5723413228988647, 0.14814287424087524, -0.23099075257778168, -0.05895392224192619, 0.5244093537330627, -0.1125483512878418, -0.8159204125404358, 0.2084108591079712, -0.36901354789733887, 0.403226375579834, 0.19123855233192444, 0.04285402595996857, 0.4054514169692993, 0.6907932758331299, 0.16888724267482758, -0.09911184757947922, 0.3465203642845154, 0.5100333094596863, 0.8417518138885498, -0.15028196573257446, 0.0825837105512619, -0.09235657006502151, -0.2842831313610077, -0.3677902817726135, 0.5341000556945801, 0.0006705699488520622, -0.3675215542316437, 0.01731821894645691, -0.7401360869407654, -1.2338957786560059, 0.35439199209213257, 0.34525519609451294, 0.6971622109413147, 0.45383530855178833, -0.2542632222175598, -0.30585557222366333, -0.24401353299617767, 0.18102091550827026, -0.1376734972000122, -1.2410075664520264, 0.583284854888916, -0.15043731033802032, -0.02049238234758377, 0.19834083318710327, -0.18214380741119385, -0.8476846814155579, -0.9154632091522217, 0.03307772055268288, 0.2039089798927307, -1.1078451871871948, -0.5702711343765259, -0.27615857124328613, 0.053372494876384735, -0.31460142135620117, 0.35611072182655334, -0.11557566374540329, 0.11807605624198914, -0.49569863080978394, -1.0852124691009521, 0.5238711833953857, -0.276334673166275, 0.10082343220710754, 0.508453369140625, -0.2536545693874359, 0.330631285905838, -0.3199896812438965, 0.35777032375335693, 1.1183948516845703, 0.18972305953502655, 0.11055343598127365, -0.26478177309036255, 0.21591606736183167, 0.34669601917266846, 0.5777401328086853, 0.00819874182343483, -0.16913554072380066, -0.4046560227870941, -1.1683889627456665, 0.17594516277313232, 0.053059451282024384, -1.051974892616272, -0.3403717279434204, 0.0047947922721505165, 0.6194406747817993, 0.04536563158035278, 0.2899433374404907, -0.2689228057861328, -0.30407363176345825, 0.8277842998504639, -0.8437443971633911, -0.3873765170574188, 0.012884924188256264, -0.5129526853561401, 0.5011463761329651, 0.19136923551559448, 0.14933937788009644, -1.4191099405288696, 0.7054622769355774, 1.008247971534729, 0.7654110789299011, -0.14502549171447754, -0.4698539674282074, 0.5889268517494202, -0.5486709475517273, 0.004659668542444706, -1.2051969766616821, 0.16314354538917542, 0.244587242603302, 0.5474354028701782, -0.5875770449638367, -0.2666146457195282, 0.28679364919662476, 1.1364392042160034, -0.24349796772003174, -0.7701095938682556, 0.22853824496269226, -0.13879111409187317, 0.2923576235771179, 0.48079606890678406, -0.9366777539253235, -0.023242363706231117, -0.06454188376665115, -0.14862266182899475, 0.3872607946395874, 0.16020244359970093, 1.2587329149246216, -0.5176074504852295, 0.38915932178497314, -0.09953572601079941, -0.02735854871571064, 1.0107680559158325, 1.1648377180099487, -0.478394478559494, 0.08684365451335907, -0.6917245388031006, 0.927745521068573, 0.574409008026123, 0.34116002917289734, -0.23181432485580444, -0.1580691635608673, 0.31928616762161255, -1.0542817115783691, 0.4268689453601837, 0.7058659195899963, 0.050048962235450745, -0.3107653856277466, 0.8112398386001587, 0.8254207968711853, -1.343698501586914, -0.48932188749313354, 0.3768157362937927, -0.15313421189785004, -0.26633530855178833, -0.13780170679092407, 0.44217851758003235, 0.37039870023727417, 0.6278961300849915, 0.3259875178337097, 0.43546468019485474, 1.1332405805587769, -0.10120667517185211, 0.4250073730945587, 0.6429271101951599, 0.6842637658119202, 0.9051622748374939, 0.27334219217300415, 0.5569050908088684, 0.8886507153511047, -0.5581793785095215, -0.9297521114349365, 0.18865656852722168, 0.23852232098579407, -0.18785834312438965, -0.2679550051689148, -0.1805543303489685, 0.856318473815918, 0.7452442049980164, 1.4041831493377686, -0.40076708793640137, 0.45109084248542786, -0.37981289625167847, -0.3797333836555481, 0.6690930724143982, 0.383767306804657, -0.08036273717880249, 1.033495545387268, -0.616536021232605, -0.6536396145820618, 0.4140998125076294, 0.2749600112438202, -0.40917956829071045, -0.0452323853969574, -0.2964502274990082, 0.01074480265378952, 0.19193050265312195, 0.9290614128112793, 0.844213604927063, -0.06362361460924149, -0.011260079219937325, 0.3164599537849426, 0.6353815197944641, -0.12402372062206268, 0.6028143167495728, 0.10024269670248032, 0.3939116597175598, 0.181239053606987, -0.36562609672546387, -0.05017005652189255, -0.36358651518821716, 0.1873658299446106, 0.7916539907455444, -0.2021160125732422, -0.10475621372461319, 0.06621501594781876, 0.7062760591506958, -0.23085761070251465, -0.8220909833908081, -0.9837214946746826, -0.2891572415828705, -0.8983915448188782, -0.056173574179410934, 0.5341711044311523, -0.004738643765449524, -0.8652788996696472, -0.42909732460975647, -0.638093888759613, 0.0988195538520813, -0.23158779740333557, -0.8212523460388184, -0.25336217880249023, 0.6740887761116028, 0.12068410217761993, 0.1235017254948616, 0.8502007722854614, 0.4703926146030426, 0.3334335684776306, -0.33082449436187744, 0.475199431180954, 0.29880017042160034, 0.7697022557258606, -0.8186441659927368, 0.42641717195510864, -1.0180374383926392, 0.6159545183181763, 0.4130285382270813, 0.5884994268417358, -1.5815708637237549, 1.1920595169067383, 0.369273841381073, -0.5921220779418945, 1.0387262105941772, 0.3819923996925354, -0.3894658386707306, 0.010109677910804749, -0.21110250055789948, -0.2901972830295563, 0.4022795855998993, 0.3385714888572693, -0.11819953471422195, 0.6400402188301086, 0.7154754400253296, 0.06713514775037766, -0.6775557398796082, -0.06003008037805557, -0.4762316644191742, 0.859736442565918, -0.7599100470542908, 0.10964648425579071, -0.6670892834663391, -0.9010242223739624, -0.8568634986877441, 0.6422152519226074, -0.008954130113124847, -0.6715728044509888, -0.09189442545175552, -0.3058626651763916, 0.02389257401227951, 0.41160711646080017, -0.5143635272979736, -0.6684551239013672, -0.3051373362541199, -0.9256129860877991, -1.0610673427581787, -0.051682762801647186, 0.5164368152618408, -0.8182198405265808, -0.01989833265542984, -0.6527155041694641, -0.28226417303085327, -0.2659372091293335, -0.35665759444236755, 0.4466724097728729, -0.49691104888916016, 0.37558573484420776], "fb970878-52f4-4123-af7f-ef6a948abf39": [-0.08332283794879913, 0.17824333906173706, -0.5158259272575378, 0.1684771329164505, 0.6511487364768982, -0.24116598069667816, 0.6736771464347839, 0.7513334155082703, -0.1696162223815918, -0.597097635269165, -0.4268109202384949, 0.40762627124786377, -0.9227036237716675, 0.4179658889770508, 0.5371569991111755, 0.598602294921875, 0.3557950258255005, -0.29763898253440857, -0.18874435126781464, -0.2696632146835327, -0.17341135442256927, 0.048138752579689026, -0.16803447902202606, 0.4230988919734955, 0.3892103433609009, 0.07826456427574158, 0.022603366523981094, 0.13062095642089844, -1.1157464981079102, 0.23668602108955383, 0.3405793607234955, -0.17806895077228546, -0.15226900577545166, -0.26303648948669434, 0.25489673018455505, -0.6473230123519897, -0.5709649920463562, -0.3600444495677948, 0.3051954507827759, 0.08597694337368011, -0.6917727589607239, -0.49044039845466614, -0.43560147285461426, 0.15177185833454132, -0.6456753611564636, 0.23122581839561462, -1.0144433975219727, 0.5120153427124023, -0.24427857995033264, -0.0780121386051178, -1.1684762239456177, 0.33436134457588196, 0.07251012325286865, 0.5434383749961853, 0.5438884496688843, 0.982270359992981, 0.06005486100912094, -1.2365901470184326, -0.1341244876384735, -0.24480320513248444, 0.17389026284217834, 0.138198122382164, 0.603890061378479, -0.020851412788033485, -0.1301146149635315, -0.19888247549533844, -0.15801404416561127, 0.4284501373767853, -1.1891579627990723, -0.6408290266990662, -0.3171531856060028, 0.009771034121513367, 0.1142377257347107, -0.08293941617012024, 0.3838094174861908, -0.5615631341934204, -0.2345850169658661, 0.6076082587242126, 0.6951256394386292, 0.8196234107017517, -0.22660145163536072, 0.6175507307052612, 0.08328904211521149, 0.869895339012146, -0.7158699035644531, -0.3007242679595947, -0.17874550819396973, -0.15367382764816284, -0.5418310165405273, 0.8550047874450684, -0.5842026472091675, -0.8485832810401917, 0.8737598061561584, 0.34125277400016785, 0.25231024622917175, -0.4325220584869385, 0.8094522356987, 0.4224788248538971, 0.24674800038337708, 0.08779776841402054, -0.5527097582817078, -0.6199745535850525, -0.023413974791765213, 0.22686408460140228, -1.4061338901519775, -0.3528081774711609, -0.4943554699420929, -0.07394989579916, 0.28014764189720154, -0.05375032126903534, -0.01824124902486801, -0.9460440874099731, -0.1418704390525818, -0.07862912863492966, -0.7632730007171631, 1.1489557027816772, 0.524010419845581, 0.28508397936820984, -0.038907408714294434, -0.13091246783733368, 0.9413115382194519, 0.9983978867530823, 0.6223425269126892, 1.3873846530914307, 0.30036407709121704, 0.8484402298927307, 0.45714810490608215, 1.0030583143234253, -0.32096266746520996, -1.3069796562194824, -0.02423204854130745, 1.0681524276733398, -0.03555945307016373, -0.09286176413297653, 0.03940851613879204, 0.006448313593864441, 0.16463355720043182, 0.3079780042171478, 0.40157365798950195, -0.26297861337661743, -0.03375329077243805, -0.4450756907463074, 0.4599035978317261, -0.07246865332126617, 0.34759438037872314, -0.12964096665382385, -0.13175685703754425, -0.8788763880729675, -0.5540534257888794, 0.8117534518241882, 0.2274896204471588, -0.3063563406467438, 1.2254257202148438, -0.9001103639602661, -0.2148621827363968, 0.7165457606315613, -0.11016213893890381, -0.09472876787185669, -0.8165327906608582, 0.4835261404514313, 0.4854491949081421, 0.21520377695560455, -0.15785160660743713, 0.09203190356492996, -0.5747154355049133, -0.08281971514225006, 0.16391044855117798, 0.02987714856863022, -0.16379664838314056, 0.5899285674095154, -0.33386754989624023, -0.49061116576194763, 0.8692580461502075, -0.20167246460914612, -0.3157660961151123, 0.09741219878196716, 1.3182514905929565, 0.45524612069129944, 0.4171735346317291, -0.2869109511375427, -0.9168702363967896, 0.5605687499046326, 0.165630504488945, -0.1814703494310379, 0.33958718180656433, -0.5386128425598145, 1.4377071857452393, -0.45391222834587097, -0.5710338354110718, 0.2030671238899231, -1.1967216730117798, -0.7582793235778809, -0.4120611846446991, 0.6092929244041443, 1.3603662252426147, -0.3917940557003021, -0.1635097861289978, 0.6858773231506348, 0.4528493881225586, 0.7834303379058838, 0.3877536952495575, 0.498046875, -0.14702701568603516, -0.8066707849502563, -0.8838463425636292, 0.7506993412971497, 0.34601086378097534, 0.04504828155040741, -0.1171087771654129, 0.20993798971176147, -0.36080724000930786, 0.28334149718284607, 0.7798515558242798, -0.332806795835495, 0.8342249393463135, 0.37970948219299316, 0.5755599737167358, -0.6306058168411255, 0.5151106119155884, -1.0292834043502808, 0.2338511347770691, -0.7490044236183167, -0.9158565402030945, 0.25014588236808777, -0.11155851930379868, 1.2715554237365723, 1.148053765296936, -0.6789681315422058, -0.15283134579658508, 0.021077917888760567, -0.0729905217885971, -0.36381956934928894, 0.2680779993534088, 0.4539280831813812, -0.43763646483421326, -0.09142471104860306, -0.11799012124538422, -0.6158204674720764, 0.7536005973815918, -0.6386016607284546, 0.40653538703918457, 1.3688093423843384, -0.05757075175642967, 0.5175914764404297, 0.056101977825164795, 0.06564109027385712, -0.05116182565689087, -0.3760857880115509, -0.6764237880706787, -0.0916467159986496, -0.601720929145813, -0.37905406951904297, 0.5976380109786987, -0.5185352563858032, 0.512978196144104, -0.08285802602767944, -0.9082512855529785, 0.28129667043685913, 0.6463114023208618, 0.7589548826217651, -0.34746119379997253, 1.0309051275253296, 0.15525338053703308, 0.00610823929309845, -0.46393734216690063, -1.2117373943328857, -0.4938892722129822, -0.08338294178247452, 0.38621392846107483, -0.05175410956144333, 0.4503438174724579, -0.07123251259326935, 0.0008344352245330811, 0.13380762934684753, 0.1235884428024292, 0.1662675440311432, 1.0663037300109863, 0.2909475564956665, -0.006124123930931091, -0.6930274367332458, -0.3403325378894806, 0.8572177886962891, -1.0066988468170166, -0.8175575137138367, -0.4498172402381897, -0.6548007726669312, 0.2792091369628906, -0.5456981062889099, -0.3551081418991089, 0.4826580584049225, 0.22939907014369965, 0.5583351254463196, -0.47109171748161316, 0.6810890436172485, 0.8845995664596558, 0.29506751894950867, 0.2674548625946045, 0.8257109522819519, 0.1503029316663742, 0.15969961881637573, 0.1503077894449234, 0.6608155369758606, 0.6575284004211426, -0.4570973813533783, -0.35168009996414185, -0.5038517713546753, -0.3619855046272278, -0.5595315098762512, -4.644000053405762, 0.18578125536441803, 0.2100350558757782, -0.5037868022918701, 0.2683659791946411, 0.6514987349510193, 0.3461185097694397, -0.8022010922431946, -0.6346659064292908, 0.6219654083251953, -0.3067246079444885, 0.08375641703605652, 0.4944266080856323, 0.36674612760543823, 0.054472554475069046, 0.3798832893371582, -0.5517610311508179, -0.9855867028236389, 0.31718552112579346, 0.467520534992218, -0.4604259729385376, -0.6257162094116211, -0.24234408140182495, 0.8085839152336121, 0.1007297933101654, 0.29987257719039917, -0.7263501286506653, 0.42990872263908386, -0.6792067885398865, -0.19187822937965393, 0.2735480070114136, -0.4587809145450592, -0.16782422363758087, 0.0507950484752655, 0.04064851626753807, -0.6938813924789429, 0.7243733406066895, -0.26053059101104736, 0.0164155513048172, -0.3706599771976471, -0.13185438513755798, -0.6499364972114563, -0.198680579662323, -0.6488828659057617, 0.9146271347999573, -0.051450587809085846, -0.5862919092178345, -0.29741352796554565, 0.22280052304267883, 0.8723255395889282, -0.637532114982605, -0.5623548626899719, -0.2627957761287689, 0.26197516918182373, 0.1921136975288391, -0.030857915058732033, 0.017267249524593353, -0.1863337904214859, -0.5707578063011169, -0.016639888286590576, 0.2634369432926178, -0.5973297953605652, -0.8243703246116638, -0.8685857653617859, 0.11411122977733612, -0.7974578142166138, -0.7202452421188354, -0.7774161696434021, 0.819045901298523, 0.8058742880821228, -0.5693933963775635, 0.5718747973442078, -0.10510477423667908, -1.4580186605453491, 0.18893571197986603, -0.5154772996902466, -0.5022894144058228, -0.2850138545036316, -0.27310606837272644, 0.3129957616329193, -0.5920618772506714, -0.5215545892715454, 0.4193708300590515, 0.040132082998752594, -0.23598435521125793, -0.6365472674369812, 0.6224972605705261, -0.5931305289268494, -0.8084951639175415, -0.6664950847625732, 0.7633775472640991, -0.4667837917804718, -0.6093503832817078, 0.819796621799469, 0.3547932803630829, 0.20657879114151, 0.209003284573555, -0.6426073908805847, 0.6211282014846802, 0.20087510347366333, 0.5167744159698486, -0.8131000399589539, -0.09665066003799438, -0.0852569043636322, -0.14787223935127258, 0.2620407044887543, -0.7624150514602661, -0.17375420033931732, 0.2486097663640976, 0.2999463677406311, 0.28802424669265747, -0.34512048959732056, 0.058682650327682495, -0.49830299615859985, -0.17788486182689667, -0.8314175605773926, 0.5790363550186157, 0.3574061989784241, 0.027072053402662277, 0.019605649635195732, -0.5615240931510925, 0.5746373534202576, -0.7464538216590881, -0.03756211698055267, -1.4774976968765259, 0.3627919852733612, 0.13242574036121368, -0.18608087301254272, 0.09238103032112122, 0.005233804229646921, -0.2914801239967346, -0.4547783136367798, 0.8930327892303467, -0.4665367305278778, 0.6477662920951843, -0.8567158579826355, -0.2662309408187866, -0.2768625020980835, 0.007089108228683472, 0.15969231724739075, 0.26657363772392273, 0.4324927031993866, 0.2702069580554962, 0.3580460846424103, 0.4773585796356201, 0.4746643602848053, -0.7389015555381775, 0.18713468313217163, -0.24781666696071625, -0.6598043441772461, 0.44103193283081055, -0.11660774797201157, 0.17240333557128906, -0.49725091457366943, 0.21043983101844788, -0.6447087526321411, 0.7621697187423706, -0.07027824968099594, -0.21344813704490662, -0.5163780450820923, 0.3005011975765228, -0.7412301301956177, -0.41646823287010193, 0.09986771643161774, 0.01320275291800499, 1.1416157484054565, -0.5412261486053467, 0.11779502034187317, 0.09255935251712799, 0.06647161394357681, 0.7606370449066162, -0.22856342792510986, -0.7848251461982727, 0.12568886578083038, -0.47547972202301025, 0.761443555355072, 0.2136332392692566, 0.10206426680088043, 0.3157077431678772, 0.4128459393978119, -0.013806624338030815, -0.3785436153411865, 0.14661245048046112, 0.6883509755134583, 0.8792973756790161, -0.2173001766204834, 0.08666157722473145, 0.044331587851047516, -0.41580629348754883, -0.17060846090316772, 0.5236433744430542, 0.28740665316581726, -0.4386307895183563, -0.048581887036561966, -0.7554857134819031, -1.2762198448181152, 0.12039293348789215, -0.1544073522090912, 0.9155391454696655, 0.28247931599617004, -0.2825075089931488, -0.2944086492061615, -0.18135905265808105, 0.04172553867101669, 0.09816347062587738, -1.3632638454437256, 0.5786102414131165, -0.3759261965751648, -0.3162030279636383, 0.3875913918018341, 0.07728371024131775, -0.7609086036682129, -0.6765989661216736, 0.00437425822019577, 0.28674882650375366, -1.288483738899231, -0.8549301028251648, -0.08393971621990204, 0.0508100688457489, -0.2285728007555008, 0.32617470622062683, -0.038232073187828064, 0.0020415186882019043, -0.1783936470746994, -1.0689780712127686, 0.47071000933647156, -0.18805363774299622, -0.36698612570762634, 0.41896551847457886, -0.12148543447256088, 0.12571382522583008, -0.40483972430229187, 0.18271473050117493, 1.011871576309204, 0.000860113650560379, 0.17979088425636292, -0.4138478934764862, 0.1881212741136551, -0.018056705594062805, 0.7415472865104675, 0.3828720450401306, -0.1388997584581375, -0.6783141493797302, -0.9267714619636536, 0.23065683245658875, 0.5118870735168457, -0.5940634608268738, 0.21090753376483917, -0.26875415444374084, 0.7579750418663025, -0.17526499927043915, 0.23251649737358093, -0.08205434679985046, -0.5245727300643921, 0.6324285268783569, -0.5071181058883667, -0.5733593702316284, 0.00013786368072032928, -0.3297452926635742, 0.23857787251472473, 0.26766708493232727, 0.43863755464553833, -1.345190167427063, 0.6050148010253906, 0.9859377145767212, 0.3184441328048706, -0.02488747239112854, 0.2394530475139618, 0.5137930512428284, -0.41953447461128235, -0.13835252821445465, -1.448338270187378, 0.27416956424713135, 0.25726282596588135, 0.1745559275150299, -0.5585649013519287, -0.0193338543176651, 0.028079546988010406, 1.1339854001998901, -0.7767936587333679, -0.7008249163627625, 0.13727250695228577, -0.044190019369125366, 0.5742285847663879, 0.5989971160888672, -0.8949617147445679, -0.030263274908065796, -0.07599376142024994, -0.26829585433006287, 0.3636165261268616, 0.20864033699035645, 1.2231770753860474, 0.04767061769962311, 0.5641182661056519, -0.011624261736869812, 0.06043948233127594, 0.6527305245399475, 1.0152826309204102, -0.5106636881828308, 0.014717577025294304, -0.6582582592964172, 0.6861611604690552, 0.4502093493938446, 0.7721232771873474, -0.4246441423892975, -0.32682615518569946, -0.1664680689573288, -0.9942167401313782, 0.5451532006263733, 0.4312658905982971, 0.2120172083377838, -0.40719476342201233, 0.9683720469474792, 0.7525625824928284, -1.0395801067352295, -1.0114281177520752, 0.3580307066440582, -0.1566355973482132, -0.07104364782571793, 0.408512145280838, 0.5481725931167603, 0.437705934047699, 0.7137086987495422, 0.3301750123500824, 0.5859889984130859, 0.9625795483589172, -0.42220816016197205, 0.3252018094062805, 0.6033365726470947, 1.0039799213409424, 0.9877767562866211, 0.5342609882354736, 0.4409475326538086, 0.83017498254776, -0.6309821009635925, -0.9296208024024963, 0.08012668043375015, 0.22768306732177734, 0.0715210884809494, -0.19728761911392212, 0.3551075756549835, 0.5946919918060303, 0.17782992124557495, 1.357036828994751, -0.2760588228702545, -0.07884788513183594, -0.2643337547779083, -0.17664650082588196, 0.5714483261108398, 0.13167738914489746, -0.05946741998195648, 1.058340072631836, -0.4747014343738556, -0.9052119255065918, 0.5634108185768127, 0.13187327980995178, -0.42979854345321655, 0.46042510867118835, -0.7767473459243774, 0.11916451901197433, 0.01665695756673813, 1.1242870092391968, 1.344222903251648, 0.011021915823221207, 0.23856547474861145, 0.23672211170196533, 0.2227032631635666, -0.21615952253341675, 0.7659558057785034, 0.12148509919643402, 0.2725115418434143, 0.08941568434238434, -0.27722692489624023, 0.16806237399578094, -0.3026357591152191, 0.006560958921909332, 0.9226830005645752, -0.20187416672706604, 0.07638956606388092, 0.5274533629417419, 0.37156832218170166, -0.4556598961353302, -0.8478717803955078, -1.071422815322876, -0.15216313302516937, -0.8733594417572021, -0.25064510107040405, 0.8135925531387329, -0.3001149594783783, -0.9687801003456116, -0.31027349829673767, -0.8060262203216553, 0.14544536173343658, -0.4405897855758667, -0.6511963605880737, -0.5007367134094238, 0.6489084959030151, 0.38844114542007446, 0.28890588879585266, 0.3116619288921356, 0.46512800455093384, 0.31063079833984375, -0.27031296491622925, -0.19796425104141235, 0.1542121171951294, 0.8159770965576172, -0.6087654232978821, 0.15955030918121338, -1.4378159046173096, 0.5578769445419312, 0.4504750072956085, 0.607189953327179, -1.6146764755249023, 0.7666741013526917, -0.10131805390119553, -0.1293572038412094, 0.8600860834121704, 0.4224218428134918, -0.2715595066547394, -0.33383435010910034, -0.07547204941511154, -0.42223620414733887, 0.25125592947006226, 0.6224188804626465, -0.3693183958530426, 0.8457898497581482, 0.9090986847877502, 0.32386571168899536, -0.7002556324005127, 0.1494412124156952, -0.2481566071510315, 0.48348987102508545, -0.49126267433166504, -0.17461134493350983, -0.5637731552124023, -1.0923699140548706, -0.5512559413909912, 0.5337508320808411, 0.05926619470119476, -0.6991711258888245, -0.04518115520477295, -0.661608099937439, -0.09929409623146057, 0.7138354182243347, -0.7103672623634338, -0.5890691876411438, -0.27863961458206177, -0.6760280132293701, -1.1071712970733643, 0.32398346066474915, 0.3402402102947235, -0.6246064901351929, 0.1988639235496521, -0.5094341039657593, 0.041439488530159, -0.11580529808998108, -0.26067477464675903, 0.23749622702598572, -0.5853502154350281, 0.23285570740699768], "051bf54d-d207-473e-a13b-3a0977d00377": [-0.04747806116938591, 0.1975070983171463, -0.5508010983467102, -0.16904288530349731, 0.611459493637085, -0.37364038825035095, 0.734135091304779, 0.5709678530693054, -0.36801281571388245, -0.44559207558631897, -0.7851276397705078, 0.17584292590618134, -1.25341796875, 0.7193250060081482, 0.3894919455051422, 1.147502064704895, 0.4842040538787842, -0.3173680305480957, 0.17007389664649963, -0.4630153775215149, -0.08734945952892303, -0.005101323127746582, -0.2217634916305542, 0.4369308054447174, 0.2399962991476059, -0.010767176747322083, -0.06173300743103027, 0.17614325881004333, -1.0205426216125488, -0.03541283681988716, 0.48021888732910156, -0.0825241357088089, 0.12300419807434082, -0.28654980659484863, 0.21299085021018982, -0.5903368592262268, -0.7501664161682129, -0.3838956654071808, 0.018276918679475784, 0.08875742554664612, -0.6562185287475586, -0.5440879464149475, -0.15660816431045532, 0.08808297663927078, -0.8307839035987854, 0.008412988856434822, -0.9712257981300354, 0.9694423079490662, -0.4731460511684418, -0.04984832555055618, -1.3244431018829346, 0.7116537690162659, 0.27183637022972107, 0.2996354401111603, 0.5562095642089844, 0.8397145867347717, 0.1878843456506729, -0.88182133436203, -0.11534922569990158, -0.45480072498321533, 0.5455431342124939, 0.024293027818202972, 0.6168724894523621, 0.05940651893615723, -0.054280444979667664, -0.4172193706035614, -0.16647346317768097, 0.6249075531959534, -1.020021677017212, -0.8111828565597534, 0.14304053783416748, 0.33182665705680847, 0.09458209574222565, -0.058018624782562256, 0.6489031910896301, -0.2732737362384796, -0.2749165892601013, 0.5182726383209229, 0.908179521560669, 0.8351314663887024, -0.06140860170125961, 0.4496852159500122, 0.13608820736408234, 1.1799554824829102, -0.5909869074821472, -0.34816431999206543, -0.6025363802909851, 0.14779430627822876, -0.6206898093223572, 0.6660297513008118, -0.3072131872177124, -0.9727658629417419, 1.1477229595184326, 0.28562992811203003, 0.2204393446445465, -0.6750606894493103, 0.7966598868370056, 0.010893445461988449, 0.7962489724159241, -0.11889919638633728, -0.6489094495773315, -0.5056328773498535, 0.3287471830844879, 0.2236720770597458, -1.421434998512268, -0.6951886415481567, -0.3893481492996216, -0.5267839431762695, 0.2120601087808609, 0.09667575359344482, -0.04572978615760803, -0.6156769394874573, -0.406660258769989, -0.24192728102207184, -1.1290631294250488, 0.9434496760368347, 0.25900548696517944, -0.1121312752366066, 0.22474241256713867, -0.056286558508872986, 0.9745591282844543, 0.8277484774589539, 0.12187018245458603, 1.3143022060394287, 0.26039862632751465, 0.8078165650367737, 0.23303890228271484, 0.9893922209739685, -0.41768309473991394, -1.2908700704574585, 0.2919159233570099, 0.9317978024482727, -0.0371943898499012, -0.22301793098449707, -0.34275463223457336, 0.014784961938858032, 0.4720248878002167, 0.30368053913116455, 0.8781088590621948, -0.054983872920274734, -0.5037349462509155, -0.444877028465271, 0.10343378782272339, 0.21647444367408752, 0.21456308662891388, -0.21535375714302063, -0.10528317093849182, -1.2225966453552246, 0.0756826251745224, 0.6458902359008789, -0.12914784252643585, 0.32401663064956665, 1.1540932655334473, -1.223506212234497, -0.10984168201684952, 0.3868356943130493, -0.5599818825721741, 0.03310728073120117, -0.7546342015266418, 0.5961095690727234, 0.5995225310325623, -0.03150751441717148, -0.18274234235286713, 0.3140747547149658, -0.373749703168869, 0.2752954065799713, 0.12319377809762955, 0.08513045310974121, 0.06136612594127655, 0.586885929107666, -0.20473401248455048, -0.4994303286075592, 1.0983840227127075, -0.27374961972236633, 0.0913357138633728, 0.05782270058989525, 1.3001497983932495, 0.42625775933265686, 0.5264043211936951, -0.4222817122936249, -1.0575275421142578, 0.46600010991096497, -0.3384070098400116, -0.026026353240013123, -0.18410268425941467, -0.646659791469574, 1.3557463884353638, -0.08769838511943817, -0.17803381383419037, 0.08870330452919006, -1.2326164245605469, -0.845721423625946, -0.5155925154685974, 0.37076041102409363, 1.3811838626861572, -0.6243258714675903, -0.11659035831689835, 0.7050279378890991, 0.10102829337120056, 0.8268775939941406, 0.12430088222026825, 0.28387415409088135, -0.21410757303237915, -0.8243270516395569, -1.0048401355743408, 0.8113397359848022, 0.29198360443115234, -0.04037294164299965, -0.16319100558757782, 0.43561455607414246, -0.1565822809934616, -0.022861864417791367, 0.41731396317481995, -0.7259515523910522, 0.6704623699188232, 0.07996560633182526, 0.16069555282592773, -0.675803005695343, 0.5171893239021301, -0.7738317847251892, 0.35723087191581726, -0.7057272791862488, -1.145919680595398, 0.5058809518814087, -0.2166789025068283, 1.373786449432373, 1.304697036743164, -0.3789187967777252, -0.15614603459835052, 0.24225783348083496, 0.05579560995101929, -0.15169134736061096, 0.27867743372917175, 0.41711053252220154, -0.0251174233853817, -0.42260244488716125, 0.1970040500164032, -0.6406630873680115, 0.7278344631195068, -0.6993024945259094, 0.17084725201129913, 1.2778483629226685, -0.37965723872184753, 0.4107213318347931, 0.5739144086837769, -0.31310972571372986, 0.22224324941635132, -0.4628989100456238, -0.726138174533844, -0.33490967750549316, -0.605884313583374, -0.48369431495666504, 0.5485816597938538, -1.0567948818206787, 0.5163450241088867, -0.17853140830993652, -0.7767589092254639, 0.4998711943626404, 0.6109222173690796, 0.571833610534668, -0.612032949924469, 0.6241981387138367, 0.08879908174276352, -0.2167203277349472, -0.09943141043186188, -1.2845137119293213, -0.6904516220092773, -0.06886116415262222, 0.2225586473941803, 0.04573674499988556, 0.4156658947467804, 0.09013956785202026, 0.36515820026397705, 0.11834986507892609, -0.14763298630714417, 0.2948547601699829, 1.0091943740844727, 0.5548889636993408, 0.3643606901168823, -0.7690389156341553, -0.35013478994369507, 0.7141151428222656, -0.9947721362113953, -0.8691540956497192, -0.3417033851146698, -0.47260984778404236, -0.03199534863233566, -0.6742616295814514, -0.19261987507343292, 0.4122667610645294, 0.39026719331741333, 0.47794634103775024, -0.3080950975418091, 0.8052027225494385, 1.156542181968689, 0.2024817317724228, 0.5129762887954712, 0.5248266458511353, 0.06662663072347641, 0.2514360547065735, -0.2167733609676361, 0.7495772242546082, 0.7023715972900391, -0.24692845344543457, -0.41003748774528503, -0.585603654384613, -0.17933093011379242, -0.4578040540218353, -4.513545513153076, 0.46643146872520447, -0.0022333264350891113, -0.6237350702285767, 0.421049028635025, 0.3127223253250122, 0.36788222193717957, -0.9786999821662903, -0.7531111240386963, 0.9186564683914185, -0.3440941572189331, -0.03639654070138931, 0.24550507962703705, 0.4769560694694519, -0.007507443428039551, 0.48347148299217224, -0.2825205326080322, -0.8107683658599854, 0.36513441801071167, 0.25060349702835083, -0.5803238153457642, -0.5818799734115601, -0.33327293395996094, 0.5877529978752136, 0.4939178228378296, 0.2406567931175232, -1.032163143157959, 0.6151391267776489, -0.8280354142189026, -0.1956665813922882, 0.23821374773979187, -0.4003485143184662, -0.10167495906352997, 0.2954234182834625, -0.14463266730308533, -0.5783514976501465, 0.4979402720928192, -0.4165291488170624, 0.2597494125366211, -0.20084872841835022, -0.740860104560852, -0.6246163249015808, -0.05207914859056473, -0.5621703863143921, 0.6102092266082764, -0.20313414931297302, -0.6594274044036865, -0.09275539219379425, 0.0859348475933075, 0.7552290558815002, -0.18851950764656067, -0.8526004552841187, -0.16947349905967712, 0.4387325942516327, 0.36181023716926575, -0.028392141684889793, -0.009277403354644775, -0.1723969280719757, -0.37531226873397827, 0.01747499406337738, 0.04100614786148071, -0.5825981497764587, -0.6843467950820923, -0.5649707913398743, 0.17219656705856323, -0.5766366124153137, -0.6515585780143738, -0.7676413059234619, 0.839501142501831, 0.6466028690338135, -0.590061366558075, 0.5118004083633423, 0.18536564707756042, -1.211722493171692, 0.013159073889255524, 0.06936188787221909, -0.20546959340572357, -0.04096592217683792, -0.24355733394622803, 0.23054830729961395, -0.614173412322998, -0.28370511531829834, 0.6327494382858276, 0.2994854748249054, -0.2392098605632782, -0.6579309701919556, 0.3261001706123352, -0.2971947193145752, -0.7775084972381592, -0.20540860295295715, 0.7865471243858337, -0.5730874538421631, -0.21294842660427094, 0.788185179233551, 0.33372288942337036, 0.5902897119522095, -0.06811286509037018, -0.6466682553291321, 0.7954052090644836, 0.08019526302814484, 0.4117792844772339, -0.8698464035987854, 0.28348106145858765, -0.08169225603342056, 0.35044151544570923, -0.028916677460074425, -0.3630266785621643, -0.051546644419431686, 0.24761679768562317, 0.2051914632320404, 0.18779683113098145, -0.4173961877822876, -0.04096301645040512, -0.14080697298049927, 0.07121706008911133, -0.8196290135383606, 0.32756152749061584, 0.4866478443145752, -0.07405965030193329, -0.19215930998325348, -0.48996278643608093, 0.8656948208808899, -0.7424085736274719, -0.39173436164855957, -1.3214722871780396, 0.2698180675506592, 0.0482545867562294, -0.2216905802488327, 0.44765403866767883, -0.1300494521856308, -0.5850917100906372, -0.5469149351119995, 0.4047508239746094, -0.33478015661239624, 0.7790877819061279, -1.0380830764770508, -0.09558740258216858, -0.14804457128047943, -0.061188049614429474, -0.4492984712123871, 0.4045790433883667, -0.07434071600437164, 0.5399512648582458, 0.36826637387275696, 0.5871185660362244, 1.015451192855835, -0.38819414377212524, 0.323916494846344, -0.10829528421163559, -0.22482818365097046, 0.20849406719207764, -0.3898065984249115, 0.11179761588573456, -0.514572262763977, -0.10041612386703491, -0.28256547451019287, 1.118069052696228, 0.33057454228401184, -0.36818641424179077, -0.4150741696357727, 0.4280650317668915, -0.6734442114830017, -0.21445387601852417, 0.11142906546592712, 0.17541058361530304, 1.1161977052688599, -0.5890374183654785, 0.1910901963710785, -0.41303640604019165, -0.12566563487052917, 0.3026696443557739, 0.09820719063282013, -0.8582281470298767, 0.4872242510318756, -0.023646408692002296, 0.31688129901885986, 0.11166822910308838, -0.03895018622279167, 0.1357378214597702, 0.6672421097755432, 0.2713562548160553, 0.04599136859178543, 0.14890699088573456, 0.8149712085723877, 1.0687506198883057, 0.09746010601520538, 0.2079678475856781, -0.10240617394447327, -0.3379962146282196, -0.0768902450799942, 0.40416592359542847, 0.2690604627132416, -0.31706565618515015, -0.02222314290702343, -0.983532190322876, -1.149093508720398, 0.3885785639286041, 0.17477278411388397, 0.3457241654396057, 0.05240095779299736, -0.26237329840660095, -0.26914793252944946, -0.1806647777557373, -0.0893128365278244, 0.054831355810165405, -1.0887656211853027, 0.5156741142272949, -0.37987205386161804, -0.0876738503575325, 0.15824919939041138, 0.052574992179870605, -0.6678574085235596, -0.8250604867935181, 0.16787950694561005, 0.22199948132038116, -0.9896032214164734, -0.5863254070281982, -0.13461650907993317, 0.046097349375486374, -0.2579154372215271, 0.47542643547058105, -0.275901198387146, 0.1848994493484497, -0.3575628697872162, -1.3588489294052124, 0.4683823585510254, -0.2647641897201538, -0.026047077029943466, 0.4519161880016327, -0.31979045271873474, 0.3160146176815033, -0.3955189883708954, 0.09107989072799683, 1.1358290910720825, 0.2277933955192566, -0.0915694385766983, -0.2815546989440918, 0.6435261368751526, 0.2604306936264038, 0.5541033148765564, 0.20883730053901672, -0.060255467891693115, -0.08553953468799591, -0.9163076877593994, 0.3193877339363098, 0.2828559875488281, -0.7243547439575195, -0.13595521450042725, -0.22662171721458435, 0.7023130059242249, 0.034371405839920044, 0.5179516673088074, -0.13706594705581665, -0.3034778833389282, 0.8682340979576111, -0.9738885164260864, -0.28394216299057007, 0.10591267049312592, -0.5528850555419922, 0.30601364374160767, -0.08832664042711258, 0.16531699895858765, -1.39799964427948, 0.5285670161247253, 0.7730662822723389, 0.7561660408973694, 0.18145669996738434, 0.04025304317474365, 0.47205042839050293, -0.4900933504104614, -0.06342173367738724, -1.3605848550796509, 0.277599036693573, 0.4103326201438904, 0.7037200331687927, -0.5256695747375488, -0.41606974601745605, 0.2833411395549774, 0.9456164240837097, -0.41032469272613525, -0.9078054428100586, 0.3888043463230133, -0.07337832450866699, 0.4468674063682556, 0.6086182594299316, -1.1649857759475708, 0.2631196081638336, 0.07126098871231079, -0.08652696013450623, 0.42453449964523315, 0.16130782663822174, 1.1097427606582642, -0.16828547418117523, 0.3390512466430664, -0.033330343663692474, -0.07916104793548584, 0.7839187383651733, 1.1242132186889648, -0.5063459873199463, 0.12345226854085922, -0.7275542616844177, 0.7391290664672852, 0.7498947381973267, 0.5051434636116028, -0.17547297477722168, -0.29408296942710876, 0.23311404883861542, -1.0373358726501465, 0.46645307540893555, 0.5943483114242554, 0.10252057015895844, -0.3016885817050934, 0.7468109726905823, 0.8101696372032166, -1.345803141593933, -0.5799187421798706, 0.26619502902030945, -0.09719908237457275, -0.6119354367256165, 0.1052437573671341, 0.2681567072868347, 0.2879354655742645, 0.6219630837440491, 0.24717243015766144, 0.2953904867172241, 1.2029820680618286, -0.16021305322647095, 0.5502711534500122, 0.9486756324768066, 0.8576411008834839, 1.0934499502182007, 0.15058855712413788, 0.5119608640670776, 0.7738404273986816, -0.8505843281745911, -0.7178019285202026, 0.15873722732067108, 0.25519123673439026, -0.22005705535411835, -0.3253689110279083, -0.21681568026542664, 0.7581912279129028, 0.5489278435707092, 1.4952870607376099, -0.7009389996528625, 0.5992241501808167, -0.3249847888946533, -0.37275969982147217, 0.4702717065811157, 0.12947234511375427, -0.058296576142311096, 0.6607815623283386, -0.615837812423706, -0.8239444494247437, 0.03469135984778404, 0.5699827671051025, -0.3075212240219116, 0.003986697643995285, -0.27930644154548645, 0.09674473106861115, -0.017743851989507675, 0.6853302121162415, 1.0291752815246582, -0.16301491856575012, 0.14196477830410004, 0.2600666284561157, 0.2531813979148865, -0.4981692135334015, 0.8970605134963989, 0.04969331622123718, 0.013568498194217682, 0.25428739190101624, -0.33269286155700684, 0.19472910463809967, -0.2594671845436096, -0.008600272238254547, 0.6647183895111084, -0.4198376536369324, -0.10075238347053528, 0.15004348754882812, 0.7657670974731445, -0.364947110414505, -0.7758347392082214, -0.7874528765678406, -0.32319796085357666, -0.9482036828994751, -0.1772870272397995, 0.5699624419212341, -0.34059375524520874, -1.0907831192016602, -0.6613888740539551, -0.4714238941669464, -0.10551728308200836, -0.41705405712127686, -0.9836727380752563, -0.35303524136543274, 0.4614381790161133, 0.06855186820030212, 0.27767372131347656, 0.7878578901290894, 0.6134185791015625, 0.5312841534614563, -0.28545379638671875, -0.02486778050661087, 0.28249311447143555, 0.8244813084602356, -0.8594945073127747, 0.2879302203655243, -1.0506174564361572, 0.7245684862136841, 0.5404062271118164, 0.2908326983451843, -1.7027256488800049, 1.3398468494415283, 0.2345600426197052, -0.7030381560325623, 0.8002062439918518, 0.054961033165454865, -0.5534785389900208, -0.2824179530143738, -0.1931839883327484, -0.07798492163419724, 0.24090231955051422, 0.443757563829422, -0.15751433372497559, 0.5807832479476929, 1.1913779973983765, 0.16764740645885468, -0.7204803228378296, -0.09074249863624573, -0.1796274185180664, 0.5657538771629333, -0.9168452024459839, -0.1592155396938324, -0.6260282397270203, -1.1203029155731201, -0.8184109926223755, 0.7087848782539368, 0.1855357438325882, -0.8360846042633057, -0.1978590041399002, -0.39990362524986267, -0.00962039828300476, 0.2464672476053238, -0.374629408121109, -0.8084326386451721, -0.24322204291820526, -0.9931725263595581, -0.7983869910240173, -0.08598259836435318, 0.37301105260849, -0.6468750238418579, -0.48777326941490173, -0.6988615989685059, 0.2393423169851303, -0.3684840202331543, -0.33939388394355774, 0.3322054147720337, -0.09805555641651154, 0.469047486782074], "fbf04091-9814-4c59-a2af-59cf4442e28a": [0.012578330934047699, -0.044022336602211, -0.446098268032074, -0.2637411057949066, 0.6123042106628418, -0.19556824862957, 0.2456139326095581, 0.5530368089675903, -0.4485894441604614, -0.38640597462654114, -0.5644581913948059, -0.29637575149536133, -1.0662143230438232, 0.4766377806663513, 0.2936765253543854, 0.9183015823364258, 0.481732040643692, -0.00490141287446022, 0.08894675970077515, -0.4534950852394104, 0.04109320789575577, 0.16653308272361755, -0.20564377307891846, 0.8664775490760803, 0.3902522623538971, -0.05038316547870636, -0.1574760377407074, -0.3588871657848358, -1.0479321479797363, 0.24485012888908386, 0.4739084839820862, -0.193362295627594, -0.012467533349990845, -0.27421218156814575, 0.6050282716751099, -0.6524755358695984, -0.5933616757392883, -0.18883633613586426, 0.09464052319526672, 0.08684274554252625, -0.8978461027145386, -0.5321253538131714, -0.44583627581596375, -0.05403679981827736, -0.8364757895469666, 0.32728341221809387, -1.0276036262512207, 0.8350886702537537, -0.8349650502204895, 0.15582728385925293, -1.4532593488693237, 0.7566725015640259, -0.006276734173297882, -0.059030331671237946, 0.3997340798377991, 1.033179759979248, -0.15885867178440094, -0.6342945098876953, -0.08587883412837982, -0.5739083886146545, 0.22505545616149902, -0.34372591972351074, 0.6129706501960754, 0.13711987435817719, 0.18972434103488922, -0.5005966424942017, -0.1311379224061966, 0.7891435027122498, -1.1980738639831543, -0.5871356725692749, -0.058033570647239685, 0.38836583495140076, 0.12641534209251404, -0.04252009838819504, 0.5985761880874634, -0.7825502157211304, -0.18456892669200897, 0.48972344398498535, 1.0165762901306152, 0.9218618869781494, -0.07992999255657196, 0.2884299159049988, -0.03944326192140579, 1.2099723815917969, -0.35090741515159607, -0.23748041689395905, -0.6341045498847961, -0.2256823629140854, -0.399885356426239, 0.45101770758628845, -0.2470242828130722, -0.6301674842834473, 0.5636206865310669, 0.5342236161231995, 0.10035524517297745, -0.16491907835006714, 0.6266645193099976, 0.16290254890918732, 0.09607809036970139, -0.025509081780910492, -0.8812297582626343, -1.0412912368774414, 0.022666700184345245, 0.1066749095916748, -1.492079496383667, -0.6759557127952576, -0.6677328944206238, -0.2927645146846771, 0.2539152204990387, 0.3646855354309082, -0.22290970385074615, -0.3332832157611847, -0.2673340439796448, 0.11834950000047684, -0.9773660898208618, 1.3909800052642822, 0.521989107131958, 0.25442442297935486, -0.130753755569458, 0.03576183319091797, 0.966971218585968, 0.6574997901916504, 0.5570486187934875, 1.4498542547225952, -0.0044509246945381165, 0.6993851661682129, 0.4986765384674072, 1.158730149269104, -0.48629528284072876, -1.2198083400726318, 0.09681826084852219, 1.0187954902648926, 0.1065223440527916, 0.19016849994659424, -0.2568165063858032, 0.053945720195770264, 0.37424030900001526, -0.19855087995529175, 0.8396425247192383, -0.5491237640380859, -0.23115654289722443, -0.3929460644721985, 0.21805627644062042, 0.15366774797439575, 0.8444820046424866, -0.017573624849319458, -0.2758755385875702, -1.0146706104278564, 0.09385135769844055, 0.8400114178657532, -0.08827998489141464, 0.2834395170211792, 0.7556081414222717, -0.8080516457557678, -0.1789318472146988, 0.7787192463874817, -0.1506170928478241, 0.30984365940093994, -1.0413663387298584, 0.7624563574790955, 0.7003083229064941, -0.12150855362415314, -0.2007654309272766, -0.14137357473373413, -0.5348771810531616, 0.4256912171840668, 0.29910409450531006, -0.1942097693681717, -0.04599575698375702, 0.5864406228065491, -0.11597242206335068, -0.3412913978099823, 0.9354891777038574, -0.2519223093986511, -0.011717185378074646, -0.2759709358215332, 1.0087729692459106, 0.38387516140937805, 0.4684480130672455, -0.22631801664829254, -0.8668721318244934, 0.8308283686637878, -0.02864263579249382, 0.04928863048553467, -0.1658230721950531, -0.5503283739089966, 1.219900369644165, 0.08397044241428375, -0.5406739711761475, -0.09916475415229797, -1.1179020404815674, -0.7470927238464355, -0.4076220989227295, 0.6698349118232727, 1.1326031684875488, -0.6663994789123535, -0.17038321495056152, 0.45397940278053284, 0.027957070618867874, 0.6346226334571838, -0.3111603856086731, 0.30858057737350464, -0.2855567932128906, -0.7786483764648438, -1.349421739578247, 0.9289361238479614, 0.1648980677127838, -0.10824881494045258, -0.15856008231639862, 0.018918875604867935, -0.09768255054950714, 0.29141324758529663, 0.5565440654754639, -0.40826860070228577, 0.682776927947998, -0.03928941860795021, 0.20848730206489563, -0.4246075749397278, 0.839695394039154, -1.0011863708496094, 0.44692766666412354, -0.7373160123825073, -0.8064796328544617, 0.616696298122406, -0.18973541259765625, 1.7274526357650757, 0.7608766555786133, -0.764839231967926, -0.3370879292488098, 0.38647451996803284, 0.04792657494544983, -0.2592160701751709, 0.16737571358680725, 0.36186641454696655, -0.6212338805198669, -0.4845157563686371, -0.24242320656776428, -0.478986918926239, 0.8301572203636169, -0.8672369718551636, 0.3867032527923584, 1.2982611656188965, -0.512981653213501, 0.852484941482544, 0.6327036023139954, 0.19640886783599854, 0.6294933557510376, -0.5154345035552979, -0.7594993114471436, -0.31997478008270264, -0.5434987545013428, -0.4875507652759552, 0.573024332523346, -0.8516119122505188, 0.772185742855072, -0.36749768257141113, -0.9195985198020935, 0.1375178098678589, 0.7067566514015198, 0.5066556334495544, -0.3535989224910736, 0.5538515448570251, 0.0993623211979866, -0.6132212281227112, -0.4279048442840576, -1.6834365129470825, -0.6222900748252869, -0.147125706076622, 0.39088642597198486, 0.033548835664987564, 0.3970615863800049, 0.08332758396863937, -0.0692826360464096, -0.17817723751068115, -0.567497968673706, 0.1467006653547287, 1.1029599905014038, 0.26591747999191284, -0.07943391799926758, -1.0081584453582764, -0.3043968379497528, 0.973164439201355, -0.8017357587814331, -0.9693496227264404, -0.3024272620677948, -0.6006845831871033, 0.11204788833856583, -0.5026828646659851, -0.08746952563524246, 0.5315276980400085, 0.5722837448120117, 0.5293315649032593, -0.5143420696258545, 0.24716734886169434, 1.4586536884307861, 0.2798127830028534, 0.25674939155578613, 0.08654455095529556, 0.38695967197418213, -0.019656185060739517, -0.29897990822792053, 0.5561189651489258, 0.4459002614021301, -0.13664066791534424, -0.7417954206466675, -0.3608718514442444, 0.021102581173181534, -0.5101045370101929, -4.304270267486572, 0.35017716884613037, 0.3091564178466797, -0.26419711112976074, 0.6726193428039551, 0.16806922852993011, 0.5831454396247864, -0.6113435626029968, -0.5248401165008545, 0.5047605037689209, -0.6539686918258667, 0.046099260449409485, 0.17212824523448944, 0.42017170786857605, 0.5560094118118286, 0.4050120413303375, -0.34206724166870117, -0.767577052116394, 0.25017839670181274, 0.22228693962097168, 0.015851818025112152, -1.115952968597412, -0.40443116426467896, 0.8771494626998901, 0.7112014293670654, 0.37223899364471436, -1.1730811595916748, 0.7172629237174988, -1.0077364444732666, -0.0844428613781929, 0.2747667133808136, -0.34743520617485046, 0.27254214882850647, 0.09933242201805115, -0.2094460427761078, -0.2737587094306946, 0.7109361290931702, 0.034014105796813965, -0.12426090240478516, -0.13225962221622467, -0.4499962329864502, -0.6987914443016052, -0.21946680545806885, -0.7391432523727417, 0.6551544070243835, 0.19004198908805847, -0.3524642288684845, -0.22931216657161713, 0.302846223115921, 0.6453477740287781, -0.19351816177368164, -0.894575834274292, -0.41656121611595154, 0.1958962082862854, 0.023503229022026062, -0.46798446774482727, -0.060808755457401276, -0.03065010905265808, -0.37035802006721497, -0.03680034726858139, 0.2711903154850006, -0.4923880994319916, -0.43813610076904297, -0.4832974076271057, -0.21760012209415436, -0.4520283639431, -0.797853410243988, -0.7477346658706665, 0.7044323086738586, 0.8393160104751587, -0.48276814818382263, 0.07955211400985718, -0.07435934245586395, -1.3736861944198608, -0.36451566219329834, -0.3782738745212555, -0.5327305793762207, -0.2627972662448883, -0.18135704100131989, 0.41576555371284485, -0.41864293813705444, -0.3629230558872223, 0.3142719864845276, 0.10623446106910706, -0.23594354093074799, -0.7100425362586975, 0.02227855660021305, -0.46573910117149353, -0.7428280711174011, -0.37290361523628235, 0.9113210439682007, -0.7092905044555664, -0.4044606685638428, 0.2312304973602295, 0.42885661125183105, 0.5770723819732666, 0.008083377033472061, -0.539863109588623, 0.59805828332901, -0.25885331630706787, 0.3185936212539673, -0.8384405374526978, 0.37688830494880676, -0.43187978863716125, 0.26317834854125977, 0.35370808839797974, -0.7345661520957947, 0.06387849152088165, 0.31392937898635864, 0.06731980293989182, 0.5122182965278625, -0.550109326839447, 0.32441049814224243, -0.7257317304611206, 0.15964387357234955, -0.5837697982788086, 0.5149298310279846, 0.7353212237358093, 0.46793949604034424, -0.21993210911750793, -0.5165956020355225, 0.40764346718788147, -0.7857493758201599, -0.4575747549533844, -1.049041986465454, -0.0056466273963451385, 0.2287348210811615, -0.3041755259037018, 0.05597582459449768, 0.05128869414329529, -0.18313175439834595, 0.03323676437139511, 0.40045180916786194, 0.05017317831516266, 0.8451282978057861, -0.6173433661460876, -0.014170199632644653, -0.36617782711982727, 0.7640276551246643, -0.08344913274049759, 0.03982497751712799, -0.20070727169513702, 0.24122025072574615, 0.5654638409614563, 1.1396198272705078, 0.9773005247116089, -0.5476356744766235, 0.20932763814926147, -0.09086436033248901, -0.07606615126132965, 0.4903810918331146, -0.46445220708847046, 0.34511587023735046, -0.33909499645233154, 0.07475809752941132, -0.5153742432594299, 0.4877683222293854, 0.2431184947490692, -0.48594993352890015, -0.9905149340629578, 0.6921288967132568, -0.35193437337875366, -0.30983108282089233, 0.13627955317497253, 0.07213637232780457, 1.0973953008651733, -0.6730501651763916, 0.14675897359848022, -0.09109078347682953, -0.3758265972137451, 0.33483314514160156, -0.23691901564598083, -0.6597080230712891, 0.48099055886268616, 0.02355348691344261, 0.42299628257751465, 0.10718502104282379, -0.23803873360157013, 0.15036383271217346, 0.2501435875892639, -0.011841114610433578, 0.11674749851226807, 0.5494425296783447, 0.9288051128387451, 1.239293098449707, 0.7115012407302856, 0.23405301570892334, -0.1777169406414032, -0.6947034001350403, 0.1093488335609436, 0.48374155163764954, 0.33642908930778503, -0.058386024087667465, -0.1464683711528778, -0.9955807328224182, -1.1415064334869385, 0.16427554190158844, -0.043243348598480225, 0.35365286469459534, -0.012892238795757294, -0.34169575572013855, 0.029534969478845596, -0.3774700164794922, -0.10489453375339508, -0.02707687020301819, -1.4925029277801514, 0.5516214370727539, -0.0824274867773056, -0.5091398358345032, -0.029142208397388458, -0.05960767716169357, -0.9924473762512207, -0.8526861071586609, 0.20044483244419098, 0.22424057126045227, -0.8942555785179138, -0.3453505337238312, -0.19209299981594086, 0.21234337985515594, -0.49941933155059814, 0.47092100977897644, 0.21237149834632874, -0.10104559361934662, -0.09968499839305878, -0.7443930506706238, 0.8891048431396484, -0.39894452691078186, -0.06524768471717834, 0.3713523745536804, -0.4428527057170868, 0.39677560329437256, -0.5028660297393799, 0.425544410943985, 0.9643726348876953, 0.42939043045043945, -0.14365407824516296, -0.3820933699607849, 0.5360867381095886, -0.1067722886800766, 0.9663992524147034, -0.09982035309076309, -0.3536696135997772, -0.5340694189071655, -0.7147731781005859, 0.33418354392051697, 0.09883391857147217, -0.35727620124816895, 0.4606933295726776, -0.18903766572475433, 0.6714859008789062, 0.12818585336208344, 0.6928585171699524, -0.3296284079551697, -0.19162338972091675, 0.9168325662612915, -0.7158647179603577, -0.48296844959259033, -0.08866653591394424, -0.23271767795085907, -0.13315650820732117, 0.19933289289474487, 0.2138245850801468, -1.058550477027893, 1.1694024801254272, 1.0082474946975708, 0.8186694383621216, 0.16892606019973755, -0.0545850470662117, 0.423123836517334, -0.40282270312309265, 0.08696000277996063, -1.3628175258636475, -0.1755472719669342, 0.7464610934257507, 0.582240879535675, 0.058028221130371094, -0.5188916921615601, -0.14261433482170105, 0.8364722728729248, -0.8244760632514954, -0.6635331511497498, 0.43024951219558716, 0.006935805082321167, 0.4804461598396301, 0.5333405137062073, -1.0283143520355225, 0.2183171808719635, 0.17978090047836304, -0.21116997301578522, 0.17687246203422546, -0.09266721457242966, 1.27750563621521, -0.28809455037117004, 0.20509308576583862, 0.01574896275997162, -0.3312109708786011, 0.6031962037086487, 1.0085086822509766, -0.6250923871994019, 0.17520472407341003, -0.732323169708252, 0.6927429437637329, 0.9629054665565491, 0.1593289077281952, -0.3803909420967102, 0.16280828416347504, 0.3351565897464752, -1.0709171295166016, 0.31438425183296204, 0.7085779905319214, 0.0147712929174304, -0.6295393705368042, 0.7122620940208435, 0.5480058193206787, -1.2752394676208496, -0.5704817175865173, 0.5418354272842407, -0.15088340640068054, -0.14984823763370514, -0.22399425506591797, 0.5902274250984192, 0.030209004878997803, 1.125056266784668, 0.28569695353507996, 0.37482959032058716, 1.450887680053711, -0.44119489192962646, 0.48346608877182007, 0.9331022500991821, 0.9697179198265076, 1.1504029035568237, 0.32457685470581055, -0.026575341820716858, 1.1751434803009033, -1.054556131362915, -0.6986103057861328, 0.13518109917640686, -0.17497745156288147, -0.2917829155921936, 0.2655283212661743, 0.2446984052658081, 0.7545079588890076, 0.3260534703731537, 1.779444694519043, -0.38383427262306213, -0.0999717116355896, -0.23399391770362854, -0.49866172671318054, 0.5500454306602478, 0.0035518109798431396, -0.1890924572944641, 0.7759259939193726, -0.5132383704185486, -0.7058367729187012, 0.4283509850502014, 0.9652780890464783, -0.3399423062801361, 0.07582651823759079, -0.6173568964004517, -0.223934605717659, -0.5876020789146423, 1.09322988986969, 0.9508348107337952, 0.11741850525140762, -0.058300286531448364, -0.0718601793050766, 0.40034744143486023, -0.14087459444999695, 0.7218618392944336, 0.13051733374595642, 0.09570707380771637, 0.026291396468877792, -0.4010474681854248, 0.17019584774971008, -0.2442982941865921, 0.0003063008189201355, 0.34618160128593445, -0.30594268441200256, -0.2475002110004425, -0.07174435257911682, 0.8926858305931091, -0.2679175138473511, -1.0501279830932617, -0.8642409443855286, -0.3550526797771454, -0.9999318718910217, -0.12315507978200912, 0.3926822245121002, -0.32488811016082764, -1.0667179822921753, -0.34149637818336487, -0.5621857643127441, 0.32059788703918457, -0.45978227257728577, -0.7411024570465088, -0.24185815453529358, 0.39736494421958923, 0.3012002110481262, 0.2845563292503357, 0.8682124614715576, 0.5303263664245605, 0.49597835540771484, -0.38820746541023254, 0.17812871932983398, 0.29127755761146545, 0.9462381601333618, -0.5696893930435181, 0.10984346270561218, -1.4099297523498535, 0.3229875862598419, 0.3838711082935333, 0.6197854280471802, -1.6107630729675293, 1.2679383754730225, 0.0782545953989029, -0.8068419694900513, 1.1421780586242676, 0.32134056091308594, -0.5795842409133911, -0.6095176935195923, -0.08855368942022324, -0.35594356060028076, 0.6796598434448242, 0.7656702995300293, -0.12710760533809662, 0.5231599807739258, 0.9681336283683777, -0.03793688490986824, -0.5331345796585083, -0.13251999020576477, -0.3722093403339386, 0.04573461413383484, -1.0937403440475464, -0.23853811621665955, -0.33464017510414124, -0.9472370743751526, -0.6408782005310059, 0.8445084691047668, 0.047153688967227936, -0.8698387742042542, 0.21128617227077484, 0.12670481204986572, 0.15114259719848633, 0.24132709205150604, -0.3047657608985901, -0.6418920159339905, -0.4680171012878418, -0.924763023853302, -0.9156946539878845, 0.0020704157650470734, 0.10258040577173233, -0.5821977853775024, -0.1268395185470581, -0.5630638599395752, 0.13746222853660583, 0.08286243677139282, -0.275784969329834, 0.5310994982719421, -0.2827528417110443, 0.3832032084465027], "9a424f32-a874-4f8e-ab1c-991d3a9dbe49": [-0.4839608073234558, 0.02218744158744812, -0.5178032517433167, -0.2856956124305725, 0.9670544862747192, -0.37814223766326904, 0.6930321455001831, -0.13162751495838165, -0.1997319459915161, -0.12750163674354553, -0.2070268988609314, -0.12804226577281952, -0.8791900873184204, 0.39624232053756714, 0.5939269065856934, 1.3202277421951294, 0.8218932747840881, 0.4207291901111603, 0.20901817083358765, 0.02134622633457184, 0.26655635237693787, 0.3769661784172058, -0.5250421166419983, 0.8971880078315735, 0.43322035670280457, -0.15845590829849243, 0.23624931275844574, -0.03262389823794365, -1.0140377283096313, 0.15392281115055084, 0.14080385863780975, -0.44330033659935, 0.05690772086381912, -0.14094924926757812, 0.05458889901638031, -0.41068777441978455, -0.6924221515655518, -0.23339024186134338, 0.311041921377182, -0.3052827715873718, -0.5186097621917725, -0.6710878014564514, -0.2176063358783722, 0.08077971637248993, -1.4759472608566284, 0.2283412516117096, -1.382315754890442, 0.4771619737148285, -0.6410323977470398, -0.11913725733757019, -1.4272781610488892, 0.6380099654197693, 0.2588879466056824, -0.48053017258644104, 0.13253426551818848, 0.925378143787384, 0.4046240746974945, -0.5746514797210693, -0.07213824987411499, -0.1810954064130783, 0.23929181694984436, -0.5463410019874573, 0.06821921467781067, 0.44207844138145447, 0.11285244673490524, -0.39730268716812134, 0.06905746459960938, 0.6534811854362488, -0.9963545203208923, -0.8922032713890076, -0.37577691674232483, -0.187912255525589, 0.30918174982070923, -0.018950410187244415, 0.09064914286136627, -0.4592150151729584, -0.281629741191864, 0.6393642425537109, 0.8310234546661377, 0.8848837614059448, -0.3047555088996887, 0.21075136959552765, -0.14371201395988464, 0.9971319437026978, -0.16282764077186584, -0.19519497454166412, -0.41036197543144226, -0.5570480823516846, -0.936056911945343, 0.321855366230011, -1.1583799123764038, 0.002509668469429016, 0.7384373545646667, 0.6369534730911255, 0.8882625102996826, 0.1294061243534088, 0.8170258402824402, 0.11705505847930908, 0.21074703335762024, -0.05115038901567459, -0.5998201370239258, -1.243177056312561, -0.24031944572925568, 0.10341552644968033, -1.4996721744537354, -0.22646202147006989, -0.5258587598800659, -0.09845085442066193, 0.223798006772995, 0.29768452048301697, -0.0841682106256485, -0.667851448059082, -0.4801698923110962, 0.16662044823169708, -0.8565143942832947, 1.4836028814315796, 0.1554841548204422, 0.3207341134548187, -0.25961822271347046, -0.25835487246513367, 0.4933861792087555, 1.1717681884765625, 0.2982410192489624, 1.820308804512024, -0.15363243222236633, 0.28806981444358826, 0.26559364795684814, 1.0258796215057373, -0.40164297819137573, -0.637739896774292, -0.08772098273038864, 1.0057337284088135, 0.02424861118197441, -0.057302914559841156, -0.023633897304534912, -0.027269169688224792, 0.2986135482788086, -0.10198575258255005, 0.5249650478363037, -0.3944876492023468, 0.35408899188041687, -0.2673402428627014, 0.3026115298271179, -0.09820477664470673, 0.4640272855758667, -0.22693437337875366, -0.22211886942386627, -0.7113933563232422, -0.4026285409927368, 0.7444100379943848, 0.23329117894172668, 0.9107611179351807, 0.8838849067687988, -0.44840162992477417, 0.7483488321304321, 0.4074632525444031, -0.07013379037380219, -0.3136092722415924, -0.6536086797714233, 0.8643879890441895, 0.4197748601436615, -0.13395655155181885, -0.3637472987174988, 0.08851675689220428, -0.65912264585495, 0.05905018746852875, 0.22683469951152802, 0.18929091095924377, -0.34359240531921387, 0.7301049828529358, -0.3979738652706146, -0.2017839252948761, 1.0567803382873535, -0.1538972556591034, -0.3672903776168823, 0.2527754306793213, 0.8239208459854126, 0.5270801186561584, 0.3325854539871216, -0.018620815128087997, -1.1859989166259766, 1.0140931606292725, 0.2610955834388733, -0.17152807116508484, -0.3041679561138153, -0.407258003950119, 0.9637196660041809, -0.27379310131073, -0.3386990427970886, -0.32340511679649353, -1.383927345275879, -0.7704977989196777, 0.04222190007567406, 0.17023777961730957, 0.8450391888618469, -0.23485450446605682, 0.011170584708452225, 0.40883827209472656, 0.11392859369516373, 0.7750638723373413, -0.30224496126174927, -0.13944928348064423, 0.05579468235373497, -0.464830607175827, -0.962566614151001, 0.9712785482406616, 0.13456454873085022, -0.32335296273231506, -0.023132435977458954, 0.22181594371795654, -0.04993528127670288, 0.27310457825660706, 0.5482690334320068, -0.2846047878265381, 0.8006543517112732, 0.04404311627149582, 0.5661669969558716, -0.8369796872138977, 1.0066006183624268, -0.7170202136039734, 0.5625592470169067, -0.6738495826721191, -0.7804170250892639, 0.3083060681819916, -0.5342546701431274, 1.4902323484420776, 1.038980484008789, -0.8296338319778442, -0.37263742089271545, 0.816116213798523, -0.17055602371692657, -0.2243589609861374, 0.22069069743156433, 0.3402954339981079, 0.2758151888847351, -0.4846872091293335, -0.2908687889575958, -0.6446449756622314, 1.3720660209655762, -0.7081656455993652, 0.3091261386871338, 1.055208683013916, 0.5861525535583496, 0.960334837436676, 0.5326523780822754, 0.6360661387443542, 0.5602791905403137, -0.21598005294799805, -0.5460931062698364, -0.25366225838661194, -0.4196958839893341, -0.6582100987434387, 0.31717121601104736, -0.6097694039344788, 1.0532723665237427, -0.42000147700309753, -0.6744425892829895, 0.3036893606185913, 0.9329317808151245, 0.5821842551231384, -0.16232377290725708, 0.3019377589225769, 0.08070510625839233, -0.2125084400177002, -0.2918887138366699, -1.7398526668548584, -0.44025301933288574, -0.5106667876243591, 0.40871092677116394, 0.33549022674560547, 0.7662981748580933, -0.2977607548236847, 0.5277273654937744, -0.0322771817445755, -0.9690670967102051, -0.2678598165512085, 0.6281954050064087, 0.19823740422725677, -0.18792161345481873, -0.817504346370697, 0.20296062529087067, 1.0472984313964844, -0.8526903390884399, -0.9894277453422546, -0.38109421730041504, -0.6864331960678101, 0.47324615716934204, -0.7050309777259827, 0.2027607262134552, 0.0478067584335804, 0.23541390895843506, 0.5413056015968323, -0.30584385991096497, 0.19441311061382294, 1.480564832687378, -0.10266116261482239, 0.6896906495094299, 0.28771454095840454, 0.46721968054771423, 0.3495594561100006, 0.2619335651397705, 0.3214963674545288, 0.7938699126243591, -0.30949467420578003, -0.5479649305343628, -0.3132600784301758, 0.19940289855003357, -0.2601667642593384, -4.228849411010742, 0.5363960266113281, -0.03342815861105919, -0.41722437739372253, 0.4054221212863922, -0.3853590488433838, 0.2685288190841675, -0.3154405355453491, -0.6573539972305298, 0.03806252405047417, -0.5217678546905518, -0.14828205108642578, 0.45987218618392944, 0.7261092066764832, 0.31669217348098755, 0.69925856590271, -0.027713481336832047, -0.35780611634254456, 0.0865560919046402, 1.0243868827819824, 0.26909130811691284, -1.048872709274292, -0.40228214859962463, 0.15326185524463654, 0.050403743982315063, 1.0313904285430908, -0.8093699216842651, 0.4478888213634491, -1.2311445474624634, -0.5755323767662048, 0.33348602056503296, -0.5001776218414307, -0.1927962750196457, -0.0512918159365654, 0.28543174266815186, -1.155989646911621, 1.1896536350250244, 0.5499317049980164, 0.13995684683322906, 0.002308901399374008, -0.5015468597412109, 0.026417046785354614, -0.2147808074951172, -0.3345538377761841, 0.5470057129859924, -0.05053388699889183, -0.1543581783771515, -0.03447582945227623, -0.13826671242713928, 0.6650770306587219, 0.26980361342430115, -0.5209609866142273, -0.6573900580406189, 0.4860950708389282, -0.28088003396987915, -0.9169747233390808, -0.03832229599356651, -0.009910538792610168, -0.4894058406352997, -0.24825061857700348, -0.367114782333374, -0.7048923373222351, -0.03312510624527931, -0.6883936524391174, -0.15023866295814514, -0.5568719506263733, -0.7652859091758728, -0.5527050495147705, 0.4172268509864807, 0.698348879814148, -0.5163286924362183, -0.061882391571998596, 0.2296351194381714, -1.1060887575149536, -0.26018190383911133, -0.8991570472717285, -0.2335519641637802, -0.4035056531429291, -0.3195127248764038, 0.46936696767807007, -0.860812246799469, -0.5573565363883972, 0.487806111574173, -0.05557738244533539, -0.29038625955581665, -0.26569926738739014, 0.2970794141292572, -0.48554155230522156, -0.6365503072738647, -0.6191048622131348, 0.9298720359802246, -0.6701613664627075, 0.007836475968360901, -0.12665002048015594, 0.49215516448020935, 0.851371705532074, 0.11972758173942566, 0.09940159320831299, 0.04945262521505356, -0.31142669916152954, 0.5738586783409119, -1.061977505683899, 0.17611156404018402, -0.3182026743888855, -0.0762498676776886, 0.11643325537443161, -0.5516048073768616, 0.103253573179245, 0.5333762168884277, -0.438888281583786, 0.5030079483985901, -0.5101083517074585, 0.6597853302955627, -0.6580582857131958, 0.6109580993652344, -0.5269602537155151, 0.21920304000377655, 0.47417137026786804, -0.014188610017299652, -0.10006733238697052, -0.7646399736404419, 0.10132365673780441, -1.0595191717147827, -0.7122135162353516, -1.0219626426696777, 0.21336819231510162, -0.13908006250858307, -0.030584966763854027, 0.20863477885723114, -0.1317911148071289, -0.591163694858551, 0.23001185059547424, 0.3830938935279846, 0.015728086233139038, 0.6909957528114319, -0.6874983310699463, -0.2586444914340973, -0.2936306595802307, 0.5208994150161743, 0.06070743501186371, 0.3092729151248932, 0.16657698154449463, 0.42621955275535583, 0.42630505561828613, 0.9070453643798828, 0.2307100147008896, -0.37766367197036743, -0.4998086094856262, -0.1864754855632782, 0.463274747133255, 0.2195531576871872, -0.10812734067440033, -0.09331623464822769, -0.7150231599807739, -0.20538277924060822, -0.11845836043357849, 0.61106276512146, -0.0009869560599327087, -0.6355922222137451, -1.3081609010696411, 0.6574247479438782, -0.009147018194198608, -1.1422152519226074, -0.15094400942325592, 0.32304826378822327, 1.242060661315918, -0.35194268822669983, 0.06917662918567657, 0.003312133252620697, -0.19340549409389496, 0.4011760652065277, -0.29251328110694885, 0.08476722240447998, 0.21919672191143036, -0.35421285033226013, 0.6729063391685486, 0.5092513561248779, 0.3497808575630188, -0.35087502002716064, 0.07524653524160385, -0.007720639929175377, -0.10176004469394684, 0.08796046674251556, 0.41864943504333496, 0.682049036026001, 0.4617811441421509, 0.46581679582595825, -0.22953388094902039, -0.4062800705432892, 0.03709334880113602, 0.12233182787895203, 0.38293808698654175, -0.12029216438531876, -0.10521362721920013, -0.5308377742767334, -1.336604118347168, -0.036043405532836914, 0.26152893900871277, -0.1803128868341446, 0.23393487930297852, -0.19784791767597198, 0.035910043865442276, -0.5436579585075378, -0.12754607200622559, 0.46946007013320923, -1.5327179431915283, 1.1179536581039429, 0.2978760600090027, -0.6168937683105469, 0.29292261600494385, -0.8688845634460449, -0.7004830241203308, -0.9814993739128113, 0.22087730467319489, 0.9991471171379089, -0.7283597588539124, -0.5163863897323608, -0.1903640478849411, 0.013952475041151047, -0.5502894520759583, 0.23646925389766693, 0.2326418161392212, -0.18606431782245636, -0.3588579297065735, -0.4648413360118866, 0.677466630935669, 0.05236130952835083, -0.3458760380744934, 0.6181987524032593, -0.47877758741378784, 0.13938197493553162, -0.4744028151035309, 0.8565217852592468, 0.9596887230873108, -0.03673550859093666, 0.4997981786727905, -0.21714527904987335, 0.16769975423812866, 0.03344714641571045, 0.7510266304016113, 0.19755935668945312, -0.19453661143779755, -0.6019866466522217, -0.7520517110824585, 0.15508629381656647, -0.14439944922924042, 0.11751638352870941, -0.0236315056681633, -0.13682696223258972, 0.9771533608436584, -0.04611285775899887, 0.23909276723861694, -0.07253924757242203, -0.3183271586894989, 1.0262513160705566, -0.3986962139606476, -0.7528217434883118, -0.3085707724094391, -0.4318338930606842, 0.2306152731180191, 0.2707720696926117, 0.4372090995311737, -0.35074836015701294, 1.1869951486587524, 0.7251428365707397, 0.7844836115837097, -0.22611641883850098, -0.34707021713256836, 0.9045295715332031, -0.7162874937057495, 0.2972010374069214, -1.1305040121078491, -0.2945825159549713, 0.5247286558151245, 0.20373974740505219, -0.12908868491649628, -0.24324172735214233, 0.1962377429008484, 0.38435372710227966, -0.9347352385520935, -0.8152720332145691, 0.2560943365097046, -0.2574610710144043, 0.1690303534269333, 0.3235078752040863, -0.8165881037712097, -0.07401321083307266, -0.34987521171569824, -0.6224864721298218, 0.27918702363967896, -0.13713496923446655, 1.2514538764953613, -0.3430904448032379, -0.1833072006702423, 0.28264471888542175, -0.15260793268680573, 1.0346288681030273, 0.9722364544868469, -0.5424922108650208, -0.15386976301670074, -0.7432373762130737, 0.5169049501419067, 0.654525101184845, 0.0026492103934288025, -0.5751478672027588, 0.1364857405424118, 0.3269314169883728, -0.761709451675415, 0.6216776371002197, 0.6898093819618225, 0.34942466020584106, -0.5272295475006104, 1.0659505128860474, 0.3259284198284149, -0.6945917010307312, -0.894216775894165, 0.09743352979421616, -0.6038968563079834, 0.20517319440841675, -0.20610450208187103, -0.039319492876529694, -0.005158156156539917, 1.3700878620147705, 0.19076602160930634, 0.4636884331703186, 1.570412516593933, -0.828514039516449, -0.025580771267414093, 0.9901750087738037, 0.7361768484115601, 1.1600663661956787, 1.0545116662979126, -0.10519450902938843, 0.9289026260375977, -0.8973912000656128, -0.9137357473373413, -0.43661171197891235, -0.35449156165122986, 0.22212374210357666, -0.3448733687400818, -0.09466399252414703, 0.4831252694129944, -0.20025686919689178, 1.4348790645599365, -0.3774874806404114, -0.05163387954235077, -0.5699993371963501, -0.31427228450775146, 0.9241987466812134, 0.28913068771362305, -0.10028792917728424, 0.4724051356315613, -0.6731396317481995, -0.13195931911468506, 0.5913275480270386, 0.610511302947998, -0.19200479984283447, 0.022213619202375412, -0.4462895393371582, 0.06038236245512962, -0.6732602715492249, 1.1667732000350952, 1.278824806213379, 0.16092714667320251, -0.13007593154907227, 0.3026760518550873, 0.42334628105163574, 0.3604043126106262, 0.18183815479278564, 0.5564591884613037, -0.21307671070098877, -0.1504795104265213, -0.04668959975242615, 0.030742136761546135, -0.4395488202571869, 0.5285463333129883, 0.1203417256474495, 0.10937236249446869, 0.57460618019104, 0.431163489818573, 1.1130163669586182, -0.8757247924804688, -0.8291438817977905, -0.38982030749320984, -0.05494184419512749, -0.8252062201499939, -0.2944246530532837, 0.4702104926109314, -0.2897424101829529, -0.6183480024337769, -0.12635670602321625, -0.35421568155288696, 0.007795073091983795, -0.23558051884174347, -0.9090202450752258, -0.5467787981033325, 0.382261723279953, 0.47165989875793457, 0.027930891141295433, 1.0244379043579102, 0.5536818504333496, 0.2385174036026001, -0.5584279298782349, 0.5406190156936646, 0.2931177616119385, 1.2206084728240967, -0.0011753663420677185, 0.23979908227920532, -1.4507529735565186, 0.20312261581420898, 0.3906658887863159, 0.5355225801467896, -1.695237636566162, 0.7781959176063538, -0.2578153610229492, -0.6404944658279419, 1.257089376449585, 0.036354806274175644, 0.29679661989212036, -0.465622216463089, 0.28082022070884705, -1.0301599502563477, 0.131103515625, 0.8104435205459595, -0.6094868779182434, 0.7903879880905151, 0.7313523888587952, 0.1269187182188034, -0.6441613435745239, 0.05830446258187294, -0.137134850025177, 0.15836673974990845, -0.8736779689788818, 0.006963685154914856, -0.7297645211219788, -0.9686521291732788, -0.7098849415779114, 0.49265018105506897, -0.5440003871917725, -1.3281141519546509, 0.263245165348053, -0.3988702595233917, -0.4106009602546692, 0.005472160410135984, -0.30768027901649475, -0.0605631098151207, -0.44566619396209717, -0.5707941055297852, -0.9676262140274048, 0.07192547619342804, 0.2572058439254761, -0.24970264732837677, 0.03922578692436218, -0.8093245625495911, -0.24169334769248962, 0.15102069079875946, -0.34436705708503723, 0.24639898538589478, -0.26054003834724426, -0.1689419448375702], "897ceee3-7af9-4300-a996-7069853dd3fe": [-0.26088690757751465, -0.11562831699848175, -0.029942825436592102, 0.03091169148683548, 0.9642994403839111, -0.4998420476913452, 0.19659607112407684, 0.5421544313430786, -0.37190377712249756, -0.27588754892349243, -0.27088749408721924, -0.4583762288093567, -0.7271069884300232, 0.6923032402992249, 0.3425762355327606, 0.8989341855049133, 0.6320160627365112, -0.256747305393219, -0.1294521540403366, -0.16198566555976868, 0.21435540914535522, 0.35319533944129944, -0.45980536937713623, 0.828713595867157, 0.2980378270149231, -0.09062331914901733, 0.3814983665943146, -0.23901134729385376, -1.3201936483383179, 0.1494760662317276, 0.1870606541633606, -0.2912812829017639, 0.07466118037700653, 0.3413231372833252, 0.21253642439842224, -0.06896847486495972, -0.75045245885849, -0.5522637367248535, 0.2849655747413635, -0.20076918601989746, -0.48986393213272095, -0.4808305501937866, -0.4984438717365265, 0.12086813151836395, -1.0298019647598267, 0.38574784994125366, -1.2279257774353027, 0.4610151946544647, -0.5004920363426208, 0.0764823704957962, -1.2844908237457275, 0.29968899488449097, -0.024439148604869843, 0.2230922430753708, 0.5824699401855469, 0.936134397983551, -0.00019983481615781784, -0.6853665113449097, -0.1456805169582367, -0.14493530988693237, 0.22481179237365723, -0.2143554985523224, 0.6061673760414124, 0.6352200508117676, 0.3649601936340332, -1.1683311462402344, -0.0924224853515625, 0.4829559922218323, -1.2447482347488403, -0.9975447654724121, -0.32030537724494934, 0.2883746027946472, 0.3253101706504822, -0.16474241018295288, 0.5915520191192627, -0.4767376780509949, -0.37318262457847595, 0.6937722563743591, 0.886187732219696, 0.7951770424842834, -0.050099313259124756, 0.37958604097366333, -0.07108433544635773, 1.1083837747573853, 0.0919351875782013, 0.13128475844860077, -0.903436541557312, -0.5542493462562561, -0.7634246945381165, 0.740336000919342, -0.4130452573299408, -0.26085367798805237, 0.5219379663467407, 1.0828543901443481, 0.3952280879020691, -0.10170453786849976, 0.7051936984062195, 0.1965956687927246, 0.501457929611206, -0.05875076353549957, -0.3415266275405884, -0.9279327988624573, 0.03906131535768509, -0.15161411464214325, -1.4605134725570679, -0.9987484216690063, -0.8528600335121155, 0.17658643424510956, -0.1296374499797821, 0.047579240053892136, -0.25538474321365356, -0.5773670673370361, -0.7150907516479492, 0.4702033996582031, -1.2081795930862427, 1.4947474002838135, 0.2849262058734894, 0.2851200997829437, -0.1958983838558197, -0.006908971816301346, 0.9764765501022339, 0.918439507484436, 0.2964245676994324, 1.3781790733337402, 0.4719766676425934, 0.7193624973297119, 0.2730939984321594, 1.1118899583816528, -0.6844171285629272, -0.7857181429862976, 0.2784707546234131, 1.2645816802978516, 0.061990462243556976, 0.02926759421825409, -0.45219552516937256, -0.5574347972869873, -0.22925114631652832, 0.41549307107925415, 0.48146575689315796, -0.26701778173446655, -0.14577923715114594, -0.1365446150302887, 0.35182684659957886, -0.03908563405275345, 0.5079094767570496, 0.2661234736442566, -0.1475042700767517, -0.8013191223144531, -0.5460665822029114, 0.49386534094810486, 0.5035684108734131, 0.7048559188842773, 0.455744206905365, -0.9429223537445068, -0.0077031441032886505, 0.9171096086502075, 0.38923490047454834, -0.04249761626124382, -1.138379693031311, 0.6319313049316406, 0.8033413290977478, -0.23358869552612305, -0.5098530054092407, 0.055206142365932465, -0.3545618951320648, -0.16730400919914246, 0.41430580615997314, -0.28890371322631836, 0.1983148455619812, 0.5229601860046387, -0.4186904728412628, -0.7278743982315063, 0.8425632119178772, -0.12439336627721786, -0.46910199522972107, 0.6192809343338013, 1.4507372379302979, 0.034614961594343185, 0.15993118286132812, -0.05944542586803436, -0.8804569244384766, 0.9078660607337952, -0.28825584053993225, -0.5176820158958435, -0.25313448905944824, -0.33662211894989014, 1.4781169891357422, -0.6105678677558899, -0.18319694697856903, -0.4547947347164154, -1.4478529691696167, -0.3129242956638336, -0.03907909616827965, 0.6477558612823486, 1.2399429082870483, 0.09882575273513794, 0.10935330390930176, 0.43473005294799805, -0.3595736622810364, 0.8762359023094177, 0.012993499636650085, 0.5402764678001404, -0.06522826850414276, -1.0705903768539429, -0.9449946880340576, 0.9817637801170349, 0.6039903163909912, 0.1540096402168274, 0.5620578527450562, 0.16281183063983917, 0.14342272281646729, 0.11602991819381714, 0.9072431325912476, -0.41300687193870544, 1.0544850826263428, 0.5060069561004639, 0.20626237988471985, -0.4060877561569214, 1.20098876953125, -0.6915543675422668, 0.5117485523223877, -0.30537593364715576, -0.9686115384101868, 0.4295659065246582, -0.20224064588546753, 1.4178792238235474, 1.069262981414795, -0.7708105444908142, -0.36863258481025696, 0.8365803956985474, 0.4969061017036438, -0.3251861035823822, 0.2356894612312317, 0.17516814172267914, -0.23021259903907776, -0.8225789666175842, -0.0015651490539312363, -0.6615540385246277, 0.6239328980445862, -0.7810028195381165, 0.4870983362197876, 1.1660345792770386, 0.16952957212924957, 0.967474102973938, 0.33393359184265137, 0.2435699999332428, 0.34777095913887024, -0.2721325159072876, -0.38140732049942017, -0.17800909280776978, -0.4078180193901062, -0.685468852519989, 0.73944491147995, -0.7008993029594421, 0.7849252820014954, -0.3621881604194641, -1.301742434501648, 0.10745389759540558, 0.5983235836029053, 0.8492208123207092, -0.25971606373786926, 0.5340834856033325, 0.31064078211784363, -0.17713616788387299, -0.6777983903884888, -1.6171079874038696, -0.8264177441596985, -0.27152514457702637, 0.37328004837036133, 0.18523699045181274, 0.4394693374633789, -0.38124820590019226, -0.04635237157344818, -0.20645931363105774, -0.6201831102371216, -0.29927659034729004, 1.0697426795959473, 0.14543181657791138, 0.046048931777477264, -0.9510844349861145, -0.28800398111343384, 0.9829021096229553, -0.7754272222518921, -1.2806586027145386, -0.4280976355075836, -0.5849267244338989, 0.13944481313228607, -0.482431560754776, 0.30187609791755676, 0.21629130840301514, 0.08608633279800415, 0.7603516578674316, -0.4229321777820587, 0.6333062648773193, 1.10835862159729, 0.14101934432983398, 0.467531681060791, 0.06983504444360733, 0.35439521074295044, 0.1906152069568634, 0.1434420794248581, 0.5401855707168579, 0.8638226985931396, 0.12977714836597443, -0.4736274182796478, -0.20042262971401215, -0.15704593062400818, -0.2701188921928406, -4.148346900939941, 0.2973131537437439, 0.00580289401113987, -0.823749840259552, 0.3177426755428314, 0.26176080107688904, 0.5923311114311218, -0.8252155780792236, -0.8577578663825989, 0.30478352308273315, -0.04397571086883545, 0.15698373317718506, 0.4668383002281189, 0.3718433976173401, 0.4104827046394348, 0.5754050016403198, -0.10462216287851334, -0.4984893500804901, -0.04586222767829895, 0.7362228631973267, -0.09345327317714691, -1.3530240058898926, -0.42089465260505676, 0.17863595485687256, 0.05283482372760773, 0.786602795124054, -1.1013298034667969, 0.8621550798416138, -1.1373473405838013, -0.5232937335968018, 0.23434433341026306, -0.6523070931434631, -0.15047061443328857, 0.015219248831272125, 0.02428196370601654, -1.0834980010986328, 0.8758726716041565, 0.03365476429462433, 0.05448675900697708, -0.12824766337871552, -0.6795399785041809, -0.4891863465309143, -0.07439374923706055, -0.30522626638412476, 0.8710566759109497, 0.18016046285629272, -0.5640415549278259, -0.25524628162384033, -0.1214756965637207, 0.5044354200363159, 0.07579998672008514, -0.7687439918518066, -0.22739621996879578, 0.08165271580219269, -0.19731444120407104, -0.5378834009170532, -0.28252720832824707, -0.30150607228279114, -0.3171516954898834, -0.01659397780895233, -0.0826132521033287, -0.5969048142433167, -0.37799254059791565, -0.7847217917442322, -0.9811478853225708, -0.6982901096343994, -1.0291242599487305, -0.7471638321876526, 0.5919792056083679, 0.8680099844932556, -0.42485228180885315, 0.31141000986099243, -0.2326154112815857, -1.4015835523605347, -0.18478146195411682, -0.3617694079875946, -0.5112121105194092, -0.3047235608100891, -0.5772000551223755, 0.38336554169654846, -0.6025044918060303, -0.2532987892627716, 0.08332686126232147, 0.6270601749420166, -0.45142272114753723, -0.679247260093689, -0.05849122256040573, -0.46856045722961426, -0.7131315469741821, -0.8032637238502502, 0.8597811460494995, -0.5793695449829102, 0.09642614424228668, 0.23775532841682434, 0.5211158394813538, 0.18765977025032043, -0.015881940722465515, -0.4624885618686676, 0.7411713004112244, 0.09048128128051758, 0.7613405585289001, -0.22605817019939423, 0.19624672830104828, -0.28708553314208984, 0.38833585381507874, 0.1124497503042221, -0.4355865716934204, 0.021625034511089325, 0.0028362050652503967, 0.10179123282432556, 0.13809449970722198, -0.15263693034648895, 0.5714354515075684, -0.6835424900054932, 0.0011350251734256744, -0.38586485385894775, 0.2773941457271576, 0.8480572700500488, 0.5101480484008789, 0.01047133281826973, -1.0845413208007812, 0.5665278434753418, -0.9776566028594971, -0.6243904232978821, -1.4603654146194458, 0.3882155120372772, -0.07595537602901459, 0.03821747750043869, -0.05676198750734329, 0.2675684988498688, -0.7119138240814209, -0.11346911638975143, 0.5304460525512695, -0.36246511340141296, 0.5489724278450012, -0.760819137096405, -0.27168363332748413, -0.2855566442012787, 1.0483171939849854, -0.20924009382724762, 0.3339121639728546, 0.09353922307491302, 0.35016748309135437, 0.2947414219379425, 0.8650371432304382, 0.4200870096683502, -0.7067221999168396, 0.09530124068260193, -0.080418661236763, 0.311212956905365, -0.09764991700649261, -0.22471636533737183, 0.46951624751091003, -0.6663487553596497, 0.39918339252471924, -0.4885004162788391, 0.35117244720458984, 0.0467446967959404, -0.16278553009033203, -0.994793713092804, 0.4512280225753784, -0.3724580407142639, -0.36812761425971985, 0.02660481631755829, -0.0613914392888546, 1.1703040599822998, -0.14800556004047394, 0.1582004725933075, 0.37774959206581116, -0.14030086994171143, 0.5100846886634827, -0.43504539132118225, -0.5006901025772095, 0.28111812472343445, -0.3863101601600647, 0.7749136090278625, 0.6928082704544067, 0.0735594779253006, -0.19554319977760315, 0.34752389788627625, -0.333026260137558, -0.20732782781124115, 0.15100817382335663, 0.6317299604415894, 0.7464811205863953, 0.18716010451316833, 0.1727258563041687, -0.2612239718437195, -0.3360673487186432, -0.29611024260520935, 0.832136332988739, 0.20668959617614746, -0.38534989953041077, 0.33426132798194885, -0.8709086775779724, -1.30867338180542, 0.0850193053483963, 0.21253317594528198, 0.4402187466621399, -0.19556863605976105, -0.6197347640991211, -0.16348813474178314, -0.45471903681755066, -0.12955714762210846, 0.18844762444496155, -1.2772952318191528, 0.7100751399993896, 0.23403820395469666, -0.12726740539073944, -0.030266210436820984, -0.38642194867134094, -0.5526214241981506, -0.8016092777252197, 0.44289618730545044, 0.2884107232093811, -0.8235491514205933, 0.11642281711101532, 0.01888459175825119, -0.20450909435749054, -0.333652526140213, 0.40193042159080505, 0.2386053502559662, -0.1068263128399849, -0.10422743856906891, -0.792709469795227, 1.0863492488861084, -0.14914432168006897, -0.013883048668503761, 0.483440637588501, -0.5042802095413208, 0.7144607901573181, -0.6962268948554993, 0.4786216616630554, 0.9609500169754028, -0.007908808067440987, 0.8046167492866516, -0.7330051064491272, 0.36998099088668823, -0.05856233090162277, 0.999618649482727, 0.07639778405427933, -0.04776845872402191, -0.2162300944328308, -0.8733373880386353, 0.05049951374530792, -0.13885276019573212, -0.3144330680370331, 0.11207099258899689, -0.1840258538722992, 0.5895689725875854, 0.24203938245773315, 0.44960644841194153, 0.1054498553276062, -0.02043750137090683, 1.0849719047546387, -0.6819586157798767, -0.6785910129547119, -0.28032219409942627, -0.7184199690818787, -0.17791147530078888, 0.47369185090065, 0.2895331382751465, -0.8900317549705505, 1.1341527700424194, 1.0078034400939941, 0.6859994530677795, -0.2750578224658966, -0.4644449055194855, 0.5030930638313293, -0.5579429268836975, -0.16830839216709137, -0.9746448397636414, 0.3930387496948242, 0.19812840223312378, 0.2852899432182312, -0.3880462944507599, -0.26533153653144836, -0.27026158571243286, 0.2259402573108673, -0.9353596568107605, -0.7169671654701233, 0.0418754443526268, -0.22144338488578796, -0.08374805748462677, 0.27718040347099304, -0.7354681491851807, 0.21054759621620178, -0.0789845809340477, -0.1748131513595581, 0.442985862493515, -0.49048465490341187, 1.0582635402679443, -0.29195114970207214, 0.23420749604701996, 0.07330530881881714, -0.2048899233341217, 0.0026936307549476624, 0.9995366334915161, -0.6172992587089539, 0.10686998814344406, -0.6162881851196289, 0.6902717351913452, 1.256920337677002, 0.07470501959323883, -0.3748016357421875, 0.04420461878180504, 0.26375648379325867, -0.9412930011749268, 0.16946953535079956, 0.6030491590499878, 0.08177074790000916, -0.5270125865936279, 0.8175429105758667, 0.48076537251472473, -0.9238293766975403, -0.8696189522743225, 0.0531485378742218, -0.5798574090003967, -0.06155546009540558, -0.2637593448162079, 0.5431922674179077, 0.11838626861572266, 0.8115499019622803, 0.23428165912628174, 0.5585364103317261, 1.3966689109802246, -0.31408458948135376, -0.06705199182033539, 0.9159453511238098, 1.075145959854126, 1.3881560564041138, 0.40306562185287476, 0.06199178099632263, 1.3711533546447754, -0.8766005039215088, -0.7932118773460388, 0.13286077976226807, -0.619025468826294, 0.15998965501785278, 0.05662546306848526, -0.06223379075527191, 0.8882154226303101, 0.32527023553848267, 1.4422013759613037, -0.04915907233953476, 0.29080745577812195, 0.13011910021305084, -0.6906384825706482, 0.8762362599372864, 0.18540053069591522, 0.04953828454017639, 0.5662443041801453, -0.8609880208969116, -0.4393664002418518, 0.3981385827064514, 0.46540123224258423, 0.041696496307849884, 0.04009993001818657, -0.7886038422584534, -0.2758594751358032, -0.7196654081344604, 1.1674898862838745, 1.2833749055862427, -0.1279071420431137, -0.11045440286397934, -0.07991389185190201, 0.547013521194458, 0.09519247710704803, 0.1352270096540451, 0.08421622961759567, 0.11727868020534515, 0.15914621949195862, -0.35993748903274536, 0.29174739122390747, 0.16306455433368683, 0.11495693027973175, 0.4907849133014679, 0.1115129142999649, 0.08804933726787567, 0.5514768362045288, 0.6908315420150757, -0.6074932813644409, -0.684127688407898, -0.9322662353515625, -0.06453784555196762, -1.2133796215057373, -0.06513114273548126, 0.5326505899429321, -0.4375665485858917, -0.47049349546432495, -0.3490949869155884, -0.5415624976158142, 0.03717102110385895, -0.2983328700065613, -0.4208475649356842, -0.32182276248931885, 0.40983152389526367, 0.2528638243675232, -0.06132901459932327, 0.8905758857727051, 0.37433236837387085, -0.1847745031118393, -0.14378622174263, 0.590076744556427, 0.09549270570278168, 1.0373610258102417, -0.35127708315849304, -0.0206754170358181, -1.2185944318771362, 0.5425800681114197, 0.5213016271591187, 0.5834895372390747, -1.3944463729858398, 0.8704501390457153, -0.07578644156455994, -0.7664233446121216, 1.0894511938095093, -0.24073070287704468, -0.19268600642681122, -0.5087118148803711, -0.10676316171884537, -0.8823263645172119, 0.14472797513008118, 0.7937183976173401, -0.36135539412498474, 0.6186810731887817, 0.9734300374984741, 0.2209784835577011, -0.2831597924232483, -0.04566686600446701, -0.03921409696340561, 0.1327093541622162, -1.195702075958252, -0.2808281481266022, -0.8191524744033813, -0.7833858132362366, -0.8741246461868286, 0.7931228876113892, -0.13840252161026, -0.889065682888031, 0.12055984884500504, -0.8360204696655273, -0.5040639042854309, -0.0506933219730854, -0.3458103537559509, -0.09025880694389343, -0.4311869144439697, -0.596921443939209, -0.7978880405426025, -0.031100772321224213, 0.5094074010848999, -0.3617208003997803, 0.2870412766933441, -0.6387776136398315, 0.34324386715888977, -0.3096885085105896, -0.5324580073356628, 0.5001885890960693, -0.033023618161678314, 0.0877472311258316], "c97f0f09-c85c-495b-a3a0-2edb8958a18c": [-0.16810956597328186, 0.13053755462169647, -0.20921704173088074, 0.003477199003100395, 0.6779231429100037, -0.28036001324653625, 0.3844555914402008, 0.5451176166534424, -0.34274405241012573, -0.5897601842880249, -0.1889844536781311, -0.5201312303543091, -0.6451069712638855, 0.5592654347419739, 0.43726372718811035, 0.8337060809135437, 0.6200838088989258, -0.4586360454559326, -0.13843649625778198, -0.07997914403676987, 0.2791610360145569, 0.30478665232658386, -0.39782705903053284, 0.8893357515335083, 0.2805882692337036, 0.016805976629257202, 0.2865920066833496, -0.38704970479011536, -1.3963079452514648, 0.3342656195163727, 0.07116709649562836, -0.14089560508728027, -0.07553183287382126, 0.02262631058692932, 0.1805565357208252, -0.13401073217391968, -0.7265743017196655, -0.23206984996795654, 0.31299686431884766, -0.2647934854030609, -0.8550962209701538, -0.7538726329803467, -0.44086888432502747, -0.07835705578327179, -0.8346527218818665, 0.19937114417552948, -1.0836143493652344, 0.7000422477722168, -0.6561402082443237, 0.23267143964767456, -1.054224967956543, 0.32680949568748474, 0.28141510486602783, 0.5306726098060608, 0.428710401058197, 1.0212565660476685, 0.2630747854709625, -0.9676739573478699, -0.053353048861026764, -0.6090043783187866, 0.4718238115310669, -0.2394968569278717, 0.3775143325328827, 0.14448042213916779, 0.3848033845424652, -0.6030272841453552, -0.15953181684017181, 0.2947259545326233, -1.2066820859909058, -0.6574571132659912, 0.12271125614643097, 0.4065028131008148, 0.24418839812278748, -0.11173389106988907, 0.7442410588264465, -0.5938560962677002, -0.4748424291610718, 0.3591466248035431, 1.1498298645019531, 0.8306690454483032, -0.033123768866062164, 0.3252800405025482, -0.22453360259532928, 1.1266382932662964, -0.39062735438346863, -0.018234804272651672, -0.8438940048217773, -0.5426122546195984, -0.6950149536132812, 0.6337884664535522, -0.6758423447608948, -0.053920865058898926, 0.795198380947113, 0.8856793642044067, 0.37981531023979187, -0.14773371815681458, 0.6561819314956665, 0.44388455152511597, 0.42678102850914, -0.2121536284685135, -0.5316668748855591, -0.977769136428833, -0.26205235719680786, 0.22804121673107147, -1.2679452896118164, -0.7549368739128113, -0.9337248802185059, 0.1860656887292862, 0.2448551058769226, 0.2734757363796234, -0.15603359043598175, -0.7604882121086121, -0.7439010739326477, -0.1473347246646881, -0.9251061677932739, 1.2448539733886719, 0.4116416871547699, 0.2609677016735077, -0.37725162506103516, -0.09260250627994537, 0.7855139374732971, 0.9568260908126831, 0.4604276120662689, 1.274538516998291, 0.4609721302986145, 1.0000085830688477, 0.40294912457466125, 0.7953404188156128, -0.6086776852607727, -0.8403991460800171, 0.11697109788656235, 1.0617015361785889, -0.2269638031721115, 0.06154116988182068, -0.12465736269950867, -0.3329513669013977, -0.12633076310157776, 0.19958437979221344, 0.1787397861480713, -0.43646180629730225, 0.020322103053331375, -0.440511018037796, 0.5211882591247559, -0.17277267575263977, 0.6826940774917603, 0.2561480700969696, -0.005111441016197205, -0.8887963891029358, -0.7428790926933289, 0.7652937173843384, 0.18972773849964142, 0.13564836978912354, 0.7888433337211609, -0.8194686770439148, 0.36782363057136536, 0.602940559387207, 0.1309901773929596, 0.28170859813690186, -1.133238673210144, 0.8646864295005798, 0.7281370759010315, -0.09860119223594666, -0.8387923836708069, 0.11826656758785248, -0.3505783975124359, -0.1820334941148758, 0.5648624897003174, -0.4198109805583954, 0.052740827202796936, 0.21147027611732483, -0.33398669958114624, -0.9684682488441467, 1.1015020608901978, -0.29603615403175354, -0.24115097522735596, 0.6824643015861511, 1.3516602516174316, 0.11043418943881989, 0.05070732161402702, -0.41663655638694763, -1.0308772325515747, 0.937010645866394, 0.11665967106819153, -0.6406213045120239, -0.4325560927391052, -0.5057607889175415, 1.320561408996582, -0.34932515025138855, -0.6029279232025146, -0.01418675109744072, -1.2471293210983276, -0.7869359850883484, 0.048791393637657166, 0.5406399965286255, 1.0494009256362915, -0.0006454512476921082, -0.32126837968826294, -0.07175469398498535, -0.2717803716659546, 0.7219184637069702, -0.06868111342191696, 0.5182932019233704, -0.22525134682655334, -1.0516866445541382, -1.0030457973480225, 0.9430966377258301, 0.50750333070755, 0.1690971851348877, -0.04184179753065109, -0.10768327862024307, 0.17783471941947937, -0.2311648577451706, 0.6158134341239929, -0.33172428607940674, 0.8505818843841553, 0.5997658967971802, 0.3362327218055725, -0.5664148926734924, 1.214042067527771, -1.4029592275619507, 0.5321111679077148, -0.7289987802505493, -1.1620351076126099, 0.4163318872451782, -0.11463028937578201, 1.6009727716445923, 1.0719501972198486, -0.7675875425338745, -0.23515786230564117, 0.6616588830947876, 0.35642358660697937, -0.5575874447822571, 0.2879573404788971, 0.2278558760881424, -0.09254295378923416, -0.3613168001174927, -0.17860154807567596, -0.4008914828300476, 1.128402829170227, -0.7096208333969116, 0.7667164206504822, 1.3928680419921875, 0.15385007858276367, 0.64081209897995, 0.4198720455169678, 0.2875044345855713, 0.15507471561431885, -0.1782439649105072, -0.657423734664917, -0.14060047268867493, -0.6541124582290649, -0.476510226726532, 0.7109365463256836, -0.6023461818695068, 0.8700562119483948, -0.2153216004371643, -0.9004164338111877, 0.05572090297937393, 1.0242958068847656, 0.8039326667785645, -0.6129109263420105, 0.5123841166496277, 0.6843259930610657, -0.06775625050067902, -0.47019460797309875, -1.6634044647216797, -0.598792552947998, -0.10784920305013657, 0.42155423760414124, 0.17909738421440125, 0.2626006007194519, -0.49340736865997314, -0.20534676313400269, -0.30727192759513855, -0.5521059036254883, -0.3243459165096283, 1.1395072937011719, 0.0655086413025856, -0.13239777088165283, -0.7591086626052856, -0.2607165575027466, 1.1372395753860474, -0.9185605049133301, -1.3418563604354858, -0.5056467056274414, -0.4917938709259033, 0.21265725791454315, -0.5237737894058228, -0.0783597007393837, 0.6439308524131775, 0.2611461281776428, 0.7688043117523193, -0.4707479774951935, 0.5564029812812805, 1.5065034627914429, 0.4863477945327759, 0.5230752229690552, 0.08076905459165573, 0.29514095187187195, -0.01912730745971203, 0.24070535600185394, 0.7952176928520203, 0.5711162090301514, 0.17634540796279907, -0.2826191186904907, -0.006522864103317261, -0.18116523325443268, -0.41118815541267395, -3.985471725463867, 0.030739184468984604, -0.0910482257604599, -0.5692126154899597, 0.12466451525688171, 0.24727347493171692, 0.4320070147514343, -0.6502870321273804, -0.8093373775482178, -0.0241786390542984, -0.12251272052526474, -0.05764269083738327, 0.7549140453338623, 0.34054410457611084, 0.055115826427936554, 0.3691764771938324, 0.010228767991065979, -0.6677308082580566, -0.05497965216636658, 0.4713315963745117, 0.15808916091918945, -1.7036911249160767, -0.541027843952179, 0.188218891620636, 0.07136204093694687, 0.7380294799804688, -0.9548656940460205, 0.9196179509162903, -0.8092424273490906, -0.4241641163825989, 0.4154372215270996, -0.480377197265625, -0.16369843482971191, -0.2048105001449585, 0.31332647800445557, -1.0130479335784912, 0.6599836349487305, 0.23431578278541565, -0.1347087025642395, -0.3585067391395569, -0.563715398311615, -0.4654175937175751, -0.05755079537630081, -0.6208581924438477, 0.9086366891860962, 0.08567267656326294, 0.029990240931510925, -0.05649648979306221, 0.10077434033155441, 0.6915190815925598, 0.31759554147720337, -0.6795504689216614, -0.1150452047586441, 0.16858798265457153, -0.26471877098083496, -0.5668184161186218, -0.030090466141700745, -0.1045956015586853, -0.4788226783275604, 0.05598372220993042, 0.2564883232116699, -0.694314181804657, -0.5667489767074585, -0.7464639544487, -0.2724575400352478, -0.6865055561065674, -0.9713342189788818, -0.7866507768630981, 0.622136652469635, 1.0657985210418701, -0.5858612060546875, 0.6985123157501221, -0.25911226868629456, -1.571276307106018, 0.27221837639808655, -0.40561938285827637, -0.5458718538284302, -0.49018171429634094, -0.1316950023174286, 0.30331099033355713, -0.3636077046394348, -0.25328677892684937, 0.17447060346603394, 0.27455568313598633, -0.26448726654052734, -0.8107097744941711, 0.028068263083696365, -0.7140900492668152, -0.7490742802619934, -0.8172861337661743, 0.7701363563537598, -0.6829447746276855, -0.05891222506761551, 0.17592643201351166, 0.5050513744354248, 0.3010387718677521, 0.09995903074741364, -0.5183913707733154, 0.5272905826568604, 0.04887828975915909, 0.534435510635376, -0.7061527967453003, 0.08757390826940536, -0.5609972476959229, -0.16500604152679443, -0.048599690198898315, -0.64322829246521, -0.07270078361034393, 0.22739030420780182, 0.09923748672008514, 0.1942356675863266, -0.4694676399230957, 0.31617680191993713, -0.8079727292060852, 0.12807705998420715, -0.5888327360153198, 0.569381594657898, 0.5899918675422668, 0.34239333868026733, 0.09602207690477371, -0.5027898550033569, 0.4445000886917114, -0.7934131622314453, -0.26568031311035156, -1.4136927127838135, 0.4308933615684509, 0.018237609416246414, 0.15343590080738068, 0.023081427440047264, 0.049387264996767044, -0.3890196681022644, 0.029560618102550507, 0.5562013387680054, 0.2226206660270691, 0.5093095302581787, -0.35667622089385986, -0.3720204532146454, -0.18229113519191742, 1.0271151065826416, -0.310314804315567, 0.36285102367401123, 0.07069306820631027, 0.40276089310646057, 0.48343950510025024, 0.8986113667488098, 0.5816044807434082, -0.8080435395240784, 0.415868878364563, -0.46178483963012695, 0.09683293104171753, 0.13661479949951172, -0.35483434796333313, 0.2741032838821411, -0.5939618349075317, -0.007737010717391968, -0.5297967195510864, 0.5681884288787842, 0.28343823552131653, -0.04311993718147278, -0.837544322013855, 0.3442908823490143, -0.5334718227386475, -0.4323737919330597, -0.23748931288719177, -0.4288555979728699, 1.2465192079544067, -0.3598267138004303, 0.08598600327968597, 0.2842835783958435, -0.1760556995868683, 0.5646236538887024, -0.21611738204956055, -0.7645377516746521, 0.15696007013320923, -0.22452160716056824, 0.8866409063339233, 0.2360251545906067, 0.13197968900203705, -0.17576217651367188, 0.05495009198784828, 0.09832827746868134, -0.1737825572490692, 0.696098268032074, 0.5544277429580688, 0.7586515545845032, 0.11211946606636047, 0.4190504252910614, -0.4148731231689453, -0.3908461630344391, -0.2055017352104187, 0.7432153820991516, 0.06623787432909012, -0.37869352102279663, 0.2017400711774826, -0.6249821186065674, -1.392777442932129, 0.04025325924158096, 0.04573269188404083, 0.5617371201515198, -0.15317174792289734, -0.5757797956466675, -0.1657388061285019, -0.49244341254234314, 0.35631147027015686, 0.13498486578464508, -1.352016568183899, 0.8134591579437256, 0.266121506690979, -0.367984414100647, 0.014210257679224014, 0.1106131374835968, -0.5187584161758423, -1.166919231414795, 0.2982881963253021, 0.18811756372451782, -0.9248937964439392, -0.0082327201962471, -0.06948132812976837, -0.28752797842025757, -0.36182862520217896, 0.3287276029586792, 0.6621761918067932, -0.10937640070915222, -0.2757721543312073, -0.659949779510498, 0.8287546038627625, 0.09482504427433014, 0.003519393503665924, 0.7437565326690674, -0.4015619158744812, 0.507469654083252, -0.48841753602027893, 0.44837450981140137, 0.7102298140525818, -0.1238902136683464, 0.4899742901325226, -0.5265252590179443, 0.3260178565979004, -0.12509843707084656, 1.1992902755737305, 0.19673359394073486, -0.0011083632707595825, -0.26022017002105713, -0.5550849437713623, 0.35647985339164734, -0.04140327870845795, 0.007367141544818878, 0.3231639266014099, -0.3715403974056244, 0.7475510835647583, 0.17422181367874146, 0.5773825645446777, -0.14649246633052826, -0.19665805995464325, 1.1068930625915527, -0.47431057691574097, -0.8751435279846191, 0.04203425347805023, -0.3039831519126892, -0.2656412422657013, 0.2511122226715088, 0.18585160374641418, -0.5049974918365479, 1.133144497871399, 1.087762713432312, 0.47454214096069336, -0.2861271798610687, -0.3473700284957886, 0.5036086440086365, -0.5636644959449768, -0.2481873631477356, -1.3849936723709106, 0.2466442584991455, 0.3674991726875305, 0.10060765594244003, -0.1654566526412964, -0.01102706789970398, 0.018162719905376434, 0.38604679703712463, -1.2073818445205688, -0.7801533341407776, 0.030887790024280548, -0.34223905205726624, 0.3827880918979645, 0.00878156814724207, -0.767231285572052, -0.33049821853637695, -0.2017669975757599, -0.244875967502594, 0.12885846197605133, -0.09556358307600021, 1.0886940956115723, -0.5890957713127136, 0.011869444511830807, 0.08877821266651154, 0.20973363518714905, 0.13484729826450348, 0.8540616035461426, -0.6376922726631165, -0.04612436890602112, -0.8188169598579407, 0.7640909552574158, 0.9592040777206421, 0.04661634564399719, -0.5190085172653198, 0.06363913416862488, 0.14511990547180176, -0.9311305284500122, -0.17183098196983337, 0.7151093482971191, 0.28524765372276306, -0.570616602897644, 0.8834987282752991, 0.5313228368759155, -1.024649739265442, -1.0090100765228271, 0.1350732296705246, -0.2686730623245239, -0.08880583941936493, -0.20712508261203766, 0.5994046926498413, 0.357674777507782, 0.8816569447517395, 0.4976484775543213, 0.4474520683288574, 1.4227157831192017, -0.2891083359718323, -0.04598909616470337, 0.6415021419525146, 1.1424624919891357, 1.4061288833618164, 0.42355355620384216, -0.11144713312387466, 1.2547190189361572, -0.8290610909461975, -0.5679475665092468, 0.2718532681465149, -0.42856791615486145, -0.06090711057186127, 0.17454048991203308, -0.07917949557304382, 1.009490728378296, 0.5530897378921509, 1.5938022136688232, -0.2204446792602539, 0.08950889855623245, -0.22655615210533142, -0.4185970723628998, 0.8540176153182983, -0.19037485122680664, 0.21682190895080566, 0.741719126701355, -0.5875426530838013, -0.5267218351364136, 0.2436027079820633, 0.7288328409194946, -0.036004431545734406, -0.13305647671222687, -0.6774539351463318, 0.010645764879882336, -0.8251749277114868, 1.2451857328414917, 1.10565984249115, 0.11899452656507492, 0.08381384611129761, -0.24411271512508392, 0.5114110708236694, 0.2239910364151001, 0.47286736965179443, 0.18100501596927643, 0.016860712319612503, -0.030520271509885788, -0.4795166552066803, 0.10960575938224792, -0.057727668434381485, 0.32829493284225464, 0.5342772006988525, -0.017340555787086487, 0.18725436925888062, 0.5182944536209106, 0.3702002167701721, -0.5031284093856812, -1.0848838090896606, -0.9245647192001343, -0.05784664303064346, -1.1867213249206543, -0.2584794759750366, 0.5394152402877808, -0.2765626609325409, -0.7156051397323608, -0.6927009224891663, -0.4819013476371765, 0.21391561627388, -0.26421454548835754, -0.45240774750709534, -0.4953547716140747, 0.4607362449169159, 0.6717039942741394, -0.030255142599344254, 1.0095405578613281, 0.6370205879211426, 0.004274459555745125, -0.5588639974594116, 0.4707372188568115, -0.10332292318344116, 1.368169903755188, -0.2898190915584564, -0.07662627100944519, -1.5311280488967896, 0.3438338339328766, 0.8044732213020325, 0.5837382078170776, -1.6481894254684448, 0.7043624520301819, 0.09719587862491608, -0.9284988641738892, 1.1126154661178589, -0.26525795459747314, 0.12615934014320374, -0.39098191261291504, 0.10963982343673706, -0.9104522466659546, 0.21244558691978455, 0.818740725517273, -0.24871866405010223, 0.8888261318206787, 1.1254651546478271, 0.10399658977985382, -0.4501444101333618, -0.0017598308622837067, -0.21329118311405182, 0.28838640451431274, -1.1931527853012085, -0.00495428591966629, -0.839850902557373, -0.9545954465866089, -0.5026451349258423, 0.8729168772697449, -0.4158162772655487, -1.1112309694290161, 0.14388611912727356, -0.5639665126800537, -0.1352129876613617, 0.28079211711883545, -0.5596585273742676, -0.09456751495599747, -0.3444574475288391, -0.5502641201019287, -1.132556438446045, 0.1486441195011139, 0.3400205969810486, -0.49110156297683716, 0.3251650333404541, -0.8221296072006226, 0.04732741415500641, -0.21295130252838135, -0.25653940439224243, 0.5842300653457642, 0.0053891390562057495, 0.36251676082611084], "b42d48c1-08ff-42a5-bdb4-9dd6f364a027": [-0.24006427824497223, 0.30538371205329895, -0.3785565495491028, -0.20998859405517578, 0.4869595468044281, 0.08979880064725876, 0.271226167678833, 0.5419683456420898, -0.39054617285728455, -0.611391544342041, -0.34386417269706726, -0.7477245330810547, -0.7500051856040955, 0.5963791608810425, 0.4591209888458252, 0.8136762380599976, 0.6713247895240784, -0.3423074185848236, 0.029997490346431732, -0.19817304611206055, 0.344777911901474, 0.08685790002346039, 0.14493633806705475, 0.9859805107116699, -0.2942439615726471, -0.1292315274477005, 0.29342877864837646, -0.4815390408039093, -1.4105310440063477, -0.1085864007472992, 0.03725997731089592, -0.3382030427455902, -0.12985804677009583, -0.027733653783798218, 0.0227886363863945, -0.23478548228740692, -0.5771887302398682, -0.340780645608902, -0.023700419813394547, -0.2961384654045105, -0.8515681624412537, -0.879082441329956, -0.015086755156517029, 0.34456488490104675, -0.5662204027175903, 0.3983742296695709, -0.8109585642814636, 0.7941626310348511, -0.9303027391433716, 0.3074761927127838, -1.3598324060440063, 0.37394553422927856, 0.44724270701408386, 0.16861821711063385, 0.5485285520553589, 0.6750898361206055, 0.14466053247451782, -0.7226524949073792, 0.007401071488857269, -0.5765485763549805, 0.4838760495185852, -0.0916915237903595, 0.6706773638725281, 0.08064732700586319, 0.8122173547744751, -0.8392336368560791, 0.3514077961444855, 0.7696258425712585, -0.9677736759185791, -0.7200894951820374, -0.20259352028369904, 0.1652553379535675, 0.13703428208827972, -0.035474397242069244, 0.8423687219619751, -0.2189517617225647, -0.08895070850849152, 0.32379040122032166, 0.8798264861106873, 0.9829329252243042, 0.08239659667015076, 0.4907916188240051, -0.14853373169898987, 1.5026243925094604, -0.39790016412734985, -0.04740302264690399, -0.5159674286842346, -0.7175485491752625, -0.7760058045387268, 0.8560982942581177, -0.42215099930763245, -0.156683549284935, 0.8118907809257507, 0.6449525952339172, 0.30400577187538147, -0.2776457667350769, 0.3994591236114502, 0.15084455907344818, 0.5568545460700989, 0.2502332925796509, -0.9566726088523865, -1.0997867584228516, 0.08548322319984436, 0.030511368066072464, -1.3225553035736084, -1.1873031854629517, -0.5708211064338684, -0.2435658574104309, 0.2994818389415741, 0.37325453758239746, -0.20630094408988953, -0.7272356152534485, -0.7335566878318787, 0.07540753483772278, -0.9658232927322388, 1.4177985191345215, 0.3496468961238861, 0.08710593730211258, -0.32180461287498474, -0.14847716689109802, 0.8945502638816833, 1.2868472337722778, 0.744205117225647, 1.2230746746063232, 0.23023253679275513, 0.8991192579269409, 0.634445071220398, 0.5834389925003052, -0.7721645832061768, -1.1332252025604248, 0.2055618315935135, 1.0721548795700073, -0.16475649178028107, -0.12035150825977325, -0.3593260943889618, -0.36056557297706604, -0.29744279384613037, 0.3108777105808258, 0.23501256108283997, -0.02650092914700508, 0.0707898661494255, -0.21508298814296722, 0.5669186115264893, 0.24416586756706238, 0.5715709328651428, -0.21006599068641663, -0.10097456723451614, -0.9290567636489868, -0.26861512660980225, 0.2928435802459717, -0.21136297285556793, 0.10252182185649872, 0.7811445593833923, -0.9310382008552551, 0.433064341545105, 0.901196300983429, 0.5210240483283997, 0.510857105255127, -1.2991774082183838, 0.8374614715576172, 0.7666390538215637, 0.1743924766778946, -0.6744962334632874, 0.43114402890205383, -0.3910583257675171, -0.4380047619342804, 0.5407456159591675, -0.6331431269645691, 0.21096187829971313, 0.024015124887228012, -0.48391470313072205, -0.8351043462753296, 0.9465112090110779, -0.5710111856460571, 0.08520449697971344, 0.5107330679893494, 1.3196470737457275, 0.10838931798934937, -0.21504364907741547, -0.6053145527839661, -1.0209441184997559, 0.8631208539009094, -0.5603365898132324, -0.7586142420768738, -0.6518509387969971, -0.3385002613067627, 1.3244898319244385, -0.23310250043869019, -0.11713263392448425, -0.0360693484544754, -1.1263383626937866, -0.6828324198722839, -0.08936235308647156, 0.3968683183193207, 1.1743532419204712, -0.11769760400056839, -0.29140162467956543, -0.21852543950080872, 0.0541636198759079, 0.5105341672897339, -0.13804006576538086, 0.3628107011318207, -0.3190956115722656, -0.9429345726966858, -1.0377212762832642, 0.9069851040840149, 0.6193476319313049, -0.28239011764526367, 0.21605096757411957, 0.18884308636188507, 0.11570391058921814, 0.11708340048789978, 0.8255681395530701, -0.26481980085372925, 0.6635868549346924, 0.3130412697792053, 0.19745847582817078, -0.6138558387756348, 1.1588780879974365, -1.3295793533325195, 0.26303738355636597, -0.292131632566452, -0.6685301065444946, 0.5416996479034424, -0.02997732162475586, 1.472640872001648, 1.1691139936447144, -0.8906470537185669, -0.40905001759529114, 0.9273337125778198, 0.259620726108551, 0.037515901029109955, 0.1346278339624405, 0.3120725452899933, -0.25111374258995056, -0.29004934430122375, 0.046323906630277634, -0.6089262366294861, 0.5579278469085693, -0.9188566207885742, 0.47780516743659973, 1.109960913658142, -0.0799938440322876, 0.8255888223648071, 0.23073026537895203, 0.11350242793560028, 0.18791526556015015, -0.3119587302207947, -0.3966035544872284, 0.38834208250045776, -0.31159651279449463, -0.2652199864387512, 0.637871503829956, -0.6756273508071899, 0.6734465956687927, -0.5106095671653748, -0.7984007000923157, -0.146466463804245, 1.073681116104126, 0.8150247931480408, -0.4179571270942688, 0.6591846942901611, 0.3947722315788269, -0.12104712426662445, -0.2554497718811035, -1.772430181503296, -1.0548237562179565, -0.38126665353775024, 0.5939537286758423, 0.26974713802337646, 0.4332483112812042, -0.2925834059715271, -0.5855865478515625, -0.5349687337875366, -0.3541073799133301, -0.26141035556793213, 0.8641384840011597, 0.3766922056674957, 0.21177983283996582, -0.6653238534927368, -0.39710164070129395, 1.2359648942947388, -0.9773411154747009, -1.107994556427002, -0.45780807733535767, -0.436612069606781, 0.2551754415035248, -0.609453558921814, -0.053188636898994446, 0.2519037127494812, 0.1053956001996994, 0.7107115983963013, -0.7601565718650818, 0.4389893710613251, 1.2729688882827759, 0.6614986062049866, 0.49079203605651855, 0.3091438114643097, 0.4475421905517578, 0.03725286200642586, 0.17263594269752502, 0.8207749128341675, 0.24139270186424255, -0.05109374225139618, -0.4336324632167816, 0.25067150592803955, -0.27603045105934143, -0.8398329615592957, -4.083515167236328, 0.14011432230472565, -0.21191535890102386, -0.8217175006866455, -0.09879916906356812, 0.2882745862007141, 0.5213228464126587, -0.51981520652771, -0.9826869964599609, -0.1775851547718048, -0.3804624080657959, -0.069985032081604, 0.47084662318229675, 0.5764493346214294, 0.15644484758377075, 0.4768191874027252, 0.2218591272830963, -0.8011765480041504, -0.005242399871349335, 0.34462684392929077, -0.22688408195972443, -1.2197389602661133, -0.5385159254074097, 0.16407907009124756, 0.06510759890079498, 0.8613642454147339, -1.0589802265167236, 1.0264595746994019, -0.7173986434936523, -0.31815406680107117, 0.4405752420425415, -0.8283321261405945, -0.2460218071937561, -0.3825407922267914, 0.6269521713256836, -0.8347883820533752, 0.406385213136673, -0.04110345244407654, 0.09212866425514221, -0.3097708821296692, -0.9528145790100098, -0.8413193225860596, -0.3388751447200775, -0.8218205571174622, 0.9586982131004333, 0.0693596750497818, -0.14755719900131226, -0.3782177269458771, 0.0019084447994828224, 0.7755107879638672, 0.26512759923934937, -0.439239501953125, 0.09646368026733398, 0.10653296858072281, -0.49475154280662537, -0.5693714022636414, 0.10378465056419373, -0.043995313346385956, -0.5691835880279541, -0.12264716625213623, 0.16648976504802704, -0.7053169012069702, -0.34868741035461426, -0.868172824382782, -0.07727650552988052, -0.39651966094970703, -0.9969222545623779, -0.4177324175834656, 0.7443092465400696, 0.8558735847473145, -0.36268413066864014, 0.4712045192718506, -0.5232686996459961, -1.4383820295333862, -0.06643105298280716, -0.28123655915260315, -0.6959706544876099, -0.19175373017787933, 0.04235681891441345, 0.5952793955802917, -0.31884634494781494, -0.22069953382015228, 0.01587119698524475, 0.22242861986160278, -0.26165440678596497, -0.5768809914588928, -0.2565566599369049, -0.8688227534294128, -0.5719932317733765, -0.7732101082801819, 0.8825991749763489, -0.6176266670227051, 0.22191917896270752, -0.0061882492154836655, 0.5610531568527222, 0.542751669883728, 0.14668302237987518, -0.36833229660987854, 0.6171588897705078, -0.05307787284255028, 0.4515528380870819, -0.2824009358882904, 0.4933030903339386, -0.5462300777435303, 0.014133159071207047, 0.16415981948375702, -0.658301591873169, 0.18657247722148895, 0.10609675943851471, -0.056223660707473755, 0.23596882820129395, -0.06905125826597214, 0.25970086455345154, -0.7587273716926575, 0.5142822265625, -0.31941717863082886, 0.27476003766059875, 0.49557942152023315, 0.3281192183494568, 0.2892191410064697, -0.8912181258201599, 0.49262866377830505, -1.1451621055603027, -0.3550463020801544, -1.4769583940505981, 0.1539682149887085, 0.01543792337179184, -0.4136081635951996, 0.14732345938682556, -0.1388881951570511, -0.37688565254211426, 0.02913372963666916, 0.6136813163757324, 0.33326494693756104, 0.28512120246887207, -0.019959457218647003, -0.5567573308944702, -0.5671983361244202, 1.0626622438430786, -0.08682700991630554, -0.03126952052116394, 0.6098830103874207, 0.32288920879364014, 0.6906895637512207, 0.8230740427970886, 0.6207132935523987, -0.8626758456230164, 0.14430293440818787, 0.16525602340698242, -0.06377518177032471, -0.10805945098400116, -0.023096255958080292, 0.13449925184249878, -0.9981237053871155, -0.2360149472951889, -0.7558766603469849, 0.6924138069152832, 0.22238501906394958, 0.43986082077026367, -0.4344537556171417, 0.018932141363620758, -0.6139705777168274, -0.008148029446601868, 0.21017567813396454, -0.527532696723938, 1.0327212810516357, -0.08477932959794998, -0.1388912945985794, -0.1458713263273239, -0.2174811065196991, 0.6571218371391296, 0.0421595573425293, -0.6727344989776611, 0.30642589926719666, -0.023170268163084984, 0.6180644631385803, 0.55136638879776, -0.077189140021801, -0.3468460738658905, 0.21414747834205627, -0.15552663803100586, -0.0961264818906784, 0.5949609875679016, 0.5012906789779663, 0.46320194005966187, 0.16410094499588013, 0.221653014421463, -0.24308915436267853, -0.5695122480392456, 0.032583437860012054, 0.6269474625587463, 0.1004100888967514, -0.037411484867334366, -0.05949102342128754, -0.7089617252349854, -1.1685236692428589, 0.19702914357185364, -0.13570445775985718, 0.5408076047897339, -0.5146651864051819, -0.10792181640863419, -0.09567144513130188, -0.2483530044555664, 0.35380029678344727, 0.18296733498573303, -1.134598731994629, 0.6316187381744385, 0.3868139088153839, 0.18608075380325317, 0.2985888719558716, -0.052722543478012085, -0.5747603178024292, -0.9615517258644104, 0.37439021468162537, 0.040093302726745605, -0.6995888948440552, -0.1079852506518364, -0.058414943516254425, -0.37281525135040283, -0.22084088623523712, 0.7856659889221191, 0.6382932662963867, 0.09929022192955017, -0.42031192779541016, -0.7706323862075806, 0.45339611172676086, 0.3603224456310272, 0.11089058220386505, 0.4828372299671173, -0.38556236028671265, 0.2077786773443222, -0.17960433661937714, 0.4505694806575775, 0.6537736654281616, 0.05342034995555878, 0.13908952474594116, -0.3759373128414154, 0.04084716737270355, -0.15722432732582092, 1.4220452308654785, 0.14633722603321075, 0.22470180690288544, -0.4274832010269165, -0.5209118127822876, 0.41017186641693115, -0.10920484364032745, 0.11687867343425751, 0.0590561181306839, -0.06109760329127312, 0.9057248830795288, 0.6893892288208008, 0.9542210102081299, -0.5254745483398438, -0.05387961491942406, 1.0159006118774414, -0.6514694094657898, -1.2647238969802856, 0.06822780519723892, -0.2877967655658722, -0.471981942653656, 0.10461267828941345, 0.16677230596542358, -0.3168666958808899, 0.8456444144248962, 1.2868927717208862, 0.4684814512729645, -0.4513794183731079, -0.5870999693870544, 0.30974042415618896, -0.2069520801305771, -0.35989707708358765, -1.0945532321929932, -0.0005857348442077637, -0.02119629830121994, 0.2753031253814697, -0.3702549338340759, -0.13748133182525635, 0.10027474164962769, 0.6229077577590942, -1.2051070928573608, -0.7261322736740112, 0.7750446200370789, -0.13215063512325287, 0.4045119285583496, -0.02999843657016754, -1.3379470109939575, 0.07996410131454468, 0.23943805694580078, -0.3629376292228699, 0.24554359912872314, -0.012968868017196655, 0.7339698076248169, -0.4188539385795593, -0.11757226288318634, 0.049750253558158875, 0.033397793769836426, 0.4318472445011139, 1.0813734531402588, -0.9524993300437927, 0.14231188595294952, -0.8580901026725769, 0.7588856220245361, 0.8309820890426636, -0.13721878826618195, -0.6923379898071289, 0.5564523339271545, 0.13449349999427795, -1.0223605632781982, -0.2164047211408615, 0.47079896926879883, 0.278363972902298, -0.7261900901794434, 0.6186853051185608, 0.38393348455429077, -0.8327497243881226, -0.8226007223129272, 0.02619536966085434, -0.635489821434021, 0.1198001503944397, -0.17788834869861603, 0.4777528941631317, 0.0960354208946228, 0.960776686668396, 0.38545987010002136, 0.40497517585754395, 1.3654826879501343, -0.44971534609794617, -0.09773266315460205, 0.5527775287628174, 1.0530850887298584, 1.3571466207504272, 0.6029189825057983, 0.018909603357315063, 1.0267274379730225, -0.5324013233184814, -0.4313819706439972, 0.2404642403125763, -0.4371626675128937, -0.080734483897686, 0.5514461398124695, -0.32987236976623535, 0.7826775908470154, 0.4963783919811249, 1.6009345054626465, -0.3744444251060486, 0.17386183142662048, -0.047389134764671326, -0.37054598331451416, 0.8078495264053345, 0.5637908577919006, -0.01823195442557335, 0.8511033654212952, -0.4300459623336792, -0.21818585693836212, -0.06357866525650024, 0.20337286591529846, -0.06610547006130219, 0.32977092266082764, -0.5479514598846436, -0.201162651181221, -0.4799889624118805, 1.041340947151184, 0.683433473110199, 0.21739763021469116, 0.019195936620235443, -0.04900914058089256, 0.597948431968689, -0.1384967565536499, 0.6631994247436523, 0.2704337239265442, 0.005870550870895386, 0.051758717745542526, -0.5992546081542969, -0.0122053362429142, -0.20970425009727478, -0.02014068514108658, 0.4601081907749176, -0.05184929817914963, 0.3314352035522461, 0.5058990120887756, 0.26081639528274536, -0.6305959224700928, -1.0081697702407837, -0.6463250517845154, -0.4051019549369812, -1.0706329345703125, 0.028229501098394394, 0.4621347486972809, -0.3828146457672119, -0.6227554678916931, -0.8221293687820435, -0.3134651780128479, 0.24040910601615906, -0.2927871346473694, -0.5390816926956177, -0.2763324975967407, 0.162298783659935, 0.32989415526390076, -0.11456255614757538, 1.1041404008865356, 0.8627009987831116, 0.3463514745235443, -0.33779022097587585, 0.5501843094825745, 0.08599461615085602, 1.4560507535934448, -0.24337275326251984, 0.23388734459877014, -1.3246073722839355, 0.27465206384658813, 0.9495365619659424, 0.4591343402862549, -1.2838504314422607, 1.2587202787399292, 0.005892425775527954, -0.5981373190879822, 0.8916724920272827, -0.0052984245121479034, 0.1476273387670517, -0.6043399572372437, -0.0359656885266304, -0.6780831813812256, 0.04988136142492294, 0.46145734190940857, -0.41822680830955505, 0.5869549512863159, 1.0468789339065552, 0.09392957389354706, -0.23388825356960297, -0.08550088107585907, -0.24238216876983643, 0.3419654667377472, -1.0872774124145508, 0.11008410155773163, -0.6745108366012573, -1.0460305213928223, -0.4031579792499542, 0.3534703254699707, -0.21250896155834198, -0.9520624876022339, 0.09367216378450394, -1.012244701385498, -0.05162627995014191, 0.4592117965221405, -0.5992698669433594, 0.029815346002578735, -0.5104010105133057, -0.8519092798233032, -0.994428277015686, 0.017254048958420753, 0.1221967488527298, -0.6019377708435059, 0.3838115930557251, -0.8413183689117432, -0.05210120975971222, -0.33042994141578674, -0.33598750829696655, 0.9293786883354187, -0.10808195173740387, 0.45022109150886536], "a4892a1f-2218-4bfe-b691-4162b1d4bf80": [-0.19797728955745697, 0.49725234508514404, -0.47434061765670776, 0.008335867896676064, 0.8813934326171875, -0.27094948291778564, 0.35857337713241577, 0.34124326705932617, -0.35739800333976746, -0.45839303731918335, -0.4371912479400635, -0.1504851132631302, -0.8836485147476196, 0.6662365198135376, 0.41790398955345154, 0.8205283880233765, 0.6545398235321045, -0.2391338348388672, -0.060967668890953064, -0.06406234204769135, 0.11106143891811371, 0.35279619693756104, -0.38929125666618347, 0.7009615302085876, -0.1894109845161438, -0.053480640053749084, 0.5387342572212219, 0.012753711082041264, -1.3695049285888672, 0.26060304045677185, 0.451315313577652, -0.29234904050827026, -0.20331351459026337, 0.058912381529808044, 0.052649155259132385, 0.24358046054840088, -0.7383682131767273, -0.1593717783689499, -0.17054884135723114, 0.2097107172012329, -0.7835239768028259, -0.28772595524787903, -0.731836199760437, -0.09763595461845398, -0.9430801868438721, -0.19408172369003296, -0.9335600733757019, 0.6042866110801697, -0.4087543487548828, -0.0980992540717125, -1.5449237823486328, 0.39464402198791504, 0.04188987612724304, 0.32631808519363403, 0.5833421945571899, 0.8831766843795776, 0.23258216679096222, -1.159224510192871, -0.16988490521907806, -0.45136114954948425, 0.009138643741607666, -0.12317150831222534, 0.6376023292541504, -0.2632685899734497, 0.41173332929611206, -0.6254844069480896, 0.12217438220977783, 0.5221501588821411, -1.3027998208999634, -0.6892744898796082, -0.010629607364535332, -0.024669017642736435, -0.08398687839508057, -0.4734582304954529, 0.8048210740089417, -0.507555365562439, -0.2508479654788971, 0.6799027323722839, 0.7450211048126221, 0.6474940180778503, 0.25820213556289673, 0.4943586587905884, -0.1844082474708557, 1.0881134271621704, -0.19897247850894928, -0.45237213373184204, -0.6279658079147339, -0.22644753754138947, -0.7741527557373047, 0.7229689955711365, -0.388448566198349, -0.4615383446216583, 0.6934130191802979, 0.4820656478404999, 0.3186323344707489, -0.0799415186047554, 0.7343844175338745, 0.42557623982429504, 0.4290268123149872, 0.4662543833255768, -0.4929659366607666, -0.8214967250823975, -0.08006548881530762, 0.04470662772655487, -1.3982515335083008, -1.1848995685577393, -0.618670642375946, -0.04342891275882721, 0.09632150828838348, 0.054957423359155655, 0.010258767753839493, -0.7553325295448303, -0.4257403314113617, -0.3604890704154968, -1.04410982131958, 1.344651460647583, 0.39842724800109863, 0.1723378300666809, 0.027516379952430725, 0.07532145082950592, 1.0226671695709229, 1.0143544673919678, 0.26713886857032776, 1.261892318725586, 0.4094926714897156, 0.6704757213592529, 0.41216278076171875, 0.8189578056335449, -0.7507456541061401, -1.0927760601043701, 0.0732087790966034, 1.2666927576065063, 0.1974140852689743, -0.1867528110742569, -0.09899836778640747, -0.13414591550827026, -0.41884541511535645, 0.28892382979393005, 0.4964875280857086, -0.37395763397216797, -0.06363430619239807, -0.10830524563789368, 0.4597558379173279, -0.022312449291348457, 0.7146914005279541, 0.32311826944351196, -0.06143946200609207, -0.6279737949371338, -0.3590549826622009, 0.333424836397171, 0.42770081758499146, 0.524284303188324, 1.0506978034973145, -0.9283621907234192, -0.027810191735625267, 0.518610954284668, 0.0797019824385643, 0.4235266149044037, -1.3129706382751465, 0.49508604407310486, 0.5398369431495667, -0.05390702933073044, -0.47318390011787415, 0.18055066466331482, -0.13537748157978058, -0.17077620327472687, 0.5543458461761475, -0.5442925095558167, 0.4486314058303833, 0.4453468918800354, -0.5745571851730347, -0.879475474357605, 0.9288979172706604, -0.3950258791446686, -0.3530142307281494, 0.6647456884384155, 1.4933966398239136, -0.17190399765968323, 0.49561306834220886, -0.24677108228206635, -1.1500718593597412, 0.9609755873680115, -0.42307859659194946, -0.613998293876648, -0.38392066955566406, -0.3657717704772949, 1.1926180124282837, -0.32355034351348877, 0.07711184769868851, -0.08614737540483475, -1.196869969367981, -0.20586885511875153, 0.38932737708091736, 0.34063270688056946, 0.9862402677536011, 0.2735497057437897, -0.10200975835323334, 0.3668367266654968, 0.17485874891281128, 0.5001879334449768, -0.15104049444198608, 0.19518382847309113, -0.12820903956890106, -1.1664589643478394, -1.2365992069244385, 0.7516592741012573, 0.6193311810493469, 0.3333533704280853, 0.5706186294555664, 0.115476593375206, -0.284936785697937, -0.010684095323085785, 0.9114190340042114, -0.37818875908851624, 0.8622191548347473, 0.2047172486782074, -0.02823731303215027, -0.4316873848438263, 1.0395456552505493, -1.0884897708892822, 0.6941704750061035, -0.3621569573879242, -0.8352028131484985, 0.49082767963409424, -0.18199466168880463, 1.6191601753234863, 0.9497752785682678, -0.680061399936676, -0.2699601650238037, 0.9587210416793823, 0.6560301184654236, -0.2233976423740387, 0.3357495069503784, 0.06197579950094223, -0.22250980138778687, -0.322052538394928, 0.03812166675925255, -0.5468190908432007, 1.1759674549102783, -0.5375446081161499, 0.3187289834022522, 1.3362935781478882, -0.04128854721784592, 0.8801746964454651, 0.33943691849708557, 0.2513578236103058, 0.25381630659103394, -0.3524857759475708, -0.4374602437019348, -0.18051958084106445, -0.385283887386322, -0.5743635892868042, 0.5036278963088989, -1.0888879299163818, 0.7618525624275208, -0.7123859524726868, -1.0735154151916504, 0.3460388481616974, 0.662642240524292, 0.7915046811103821, -0.49716731905937195, 0.4018428921699524, 0.12060052901506424, -0.03765442967414856, -0.16617442667484283, -1.412330985069275, -0.18499697744846344, -0.05240141600370407, 0.3342941701412201, 0.20105578005313873, 0.26025712490081787, -0.22207295894622803, -0.6505259871482849, -0.46004751324653625, -0.0867089107632637, 0.0419597402215004, 1.0112271308898926, 0.4391001760959625, -0.11766648292541504, -0.828362762928009, -0.08110304176807404, 1.0274996757507324, -0.8586252927780151, -1.1668766736984253, -0.25772494077682495, -0.3640642464160919, 0.3197638988494873, -0.6215194463729858, -0.42069610953330994, 0.5136934518814087, 0.16879862546920776, 0.6651599407196045, -0.4985918700695038, 0.6538000702857971, 0.9929394721984863, -0.04497280716896057, 0.24639073014259338, 0.4097280502319336, 0.7571264505386353, 0.0331159308552742, 0.16782116889953613, 0.4256797432899475, 0.6112145781517029, -0.13882577419281006, -0.4502342641353607, -0.203901469707489, 0.20898586511611938, -0.8519625663757324, -4.236074447631836, 0.1911458671092987, -0.17065277695655823, -1.0108489990234375, 0.1414577066898346, 0.5487108826637268, 0.21408623456954956, -0.8413257598876953, -0.789114236831665, 0.33397170901298523, 0.04074876010417938, -0.2418607473373413, 0.7188724279403687, 0.248590350151062, 0.1577567756175995, 0.5284824371337891, -0.015260398387908936, -0.4283169209957123, -0.0051308274269104, 0.05840447545051575, -0.2673426866531372, -1.1691185235977173, -0.2555164098739624, 0.15510936081409454, -0.03961171954870224, 0.825505793094635, -0.9227199554443359, 0.8596747517585754, -0.8898217678070068, -0.4278581738471985, 0.4942901134490967, -0.910426139831543, -0.14930970966815948, -0.3077741861343384, 0.22833317518234253, -0.84046471118927, 0.4618074297904968, 0.0004150792956352234, 0.0078061893582344055, -0.21137931942939758, -0.7353682518005371, -0.4968734085559845, 0.01281873881816864, -0.5960421562194824, 0.8239302635192871, -0.30500489473342896, -0.7121353149414062, -0.3773373067378998, 0.08105183392763138, 0.5908070802688599, -0.18760140240192413, -0.3168535828590393, 0.1789594292640686, 0.4803466498851776, -0.45132437348365784, -0.023979168385267258, -0.001445092260837555, -0.3899836838245392, -0.7751694321632385, 0.05839639902114868, 0.5640592575073242, -0.7377778887748718, -0.8581987619400024, -0.709811270236969, -0.34519222378730774, -0.7617024779319763, -0.7756808996200562, -0.7141352891921997, 0.9651734828948975, 0.9835124611854553, -0.34011194109916687, 0.3473343253135681, -0.09919457882642746, -1.4528234004974365, 0.5504338145256042, -0.7168376445770264, -0.4481198191642761, -0.2863743305206299, -0.03493208438158035, 0.5034546256065369, -0.46623170375823975, 0.021222993731498718, 0.40427166223526, 0.21977978944778442, -0.42392590641975403, -0.5407772660255432, 0.06674560159444809, -0.5856136083602905, -0.8641076683998108, -0.9053822755813599, 1.2205594778060913, -0.31986671686172485, 0.336902379989624, -0.2207460254430771, 0.45400166511535645, 0.7107840776443481, 0.20922577381134033, -0.350811630487442, 0.3746670186519623, 0.2372651994228363, 0.5842483043670654, -0.4681837558746338, 0.2456512749195099, -0.6088840961456299, 0.22817975282669067, 0.03520964831113815, -0.3061607778072357, -0.12205056846141815, 0.08527769148349762, -0.12754946947097778, 0.20320835709571838, -0.4619683027267456, 0.21191561222076416, -0.697640061378479, -0.048519693315029144, -0.3980179727077484, 0.24442575871944427, 0.6389840245246887, 0.5130283832550049, -0.1252029985189438, -0.8554027080535889, 0.3111701011657715, -0.5163558125495911, -0.6011483669281006, -1.381563425064087, 0.008853055536746979, -0.012216104194521904, 0.046798862516880035, 0.16767318546772003, 0.002889302559196949, -0.587570071220398, -0.2991127371788025, 0.520034909248352, -0.056958213448524475, 0.8860299587249756, -0.12181529402732849, -0.16584761440753937, -0.4794561564922333, 0.9821163415908813, -0.06501298397779465, 0.2643973231315613, 0.0901266559958458, 0.36358171701431274, 0.5175449252128601, 0.5567538738250732, 0.7328113317489624, -0.27151525020599365, 0.026307791471481323, -0.06304682791233063, -0.09779505431652069, 0.057352036237716675, -0.5162655115127563, 0.37574252486228943, -0.6072289943695068, -0.17840248346328735, -0.33460643887519836, 0.5338541269302368, -0.09606729447841644, -0.34098103642463684, -0.9271888732910156, 0.38308200240135193, -0.4452058970928192, -0.40858760476112366, 0.17244885861873627, 0.09555017948150635, 1.2222356796264648, -0.25433966517448425, -0.36235564947128296, 0.2543542683124542, -0.14098496735095978, 0.5529740452766418, 0.035524219274520874, -0.6618890166282654, 0.31655898690223694, -0.47183623909950256, 0.5050596594810486, 0.15610074996948242, -0.161054790019989, -0.20027762651443481, 0.15171891450881958, 0.07403342425823212, -0.10210172086954117, 0.2104518711566925, 0.5193297863006592, 0.6801556348800659, -0.12240979075431824, 0.30565905570983887, -0.3355473279953003, -0.13999773561954498, -0.3858311176300049, 0.5416618585586548, 0.34104710817337036, -0.30542030930519104, 0.38883480429649353, -0.9010676741600037, -1.3432945013046265, 0.08006951212882996, 0.2596180737018585, 0.6426280736923218, -0.381370484828949, -0.33197423815727234, -0.04758943244814873, -0.3566012978553772, 0.09411939978599548, -0.17764031887054443, -1.3963472843170166, 0.6720364093780518, 0.15743140876293182, -0.4222136437892914, 0.2624458372592926, -0.24621768295764923, -0.5205717086791992, -1.1180298328399658, 0.06850653141736984, 0.42902350425720215, -0.9956673383712769, -0.4642939269542694, 0.22834184765815735, -0.29381290078163147, -0.18818897008895874, 0.49321094155311584, 0.4563741087913513, 0.21939998865127563, -0.17124497890472412, -0.6491174697875977, 0.834595799446106, -0.0304403193295002, 0.013667542487382889, 0.5426700115203857, -0.6731716394424438, 0.9321425557136536, -0.48192477226257324, 0.4030820429325104, 0.6433521509170532, -0.29096564650535583, 0.8036372065544128, -0.5295969247817993, 0.3543279767036438, -0.42086291313171387, 1.2494909763336182, 0.004796786233782768, 0.04578717052936554, -0.1898750364780426, -0.9350143671035767, -0.0512772798538208, -0.052639707922935486, -0.3017426133155823, 0.08199938386678696, -0.13993476331233978, 0.7576485872268677, 0.23686930537223816, 0.4756454825401306, -0.1814681738615036, -0.1086675226688385, 0.9485465884208679, -0.44264787435531616, -0.9133754372596741, -0.2670115828514099, -0.5699648857116699, -0.22558118402957916, 0.40305376052856445, 0.13169899582862854, -0.630950391292572, 1.0538136959075928, 1.2144544124603271, 0.34664422273635864, -0.3201066851615906, -0.6652119159698486, 0.5489220023155212, -0.3477039337158203, -0.51202392578125, -0.8018349409103394, 0.5107801556587219, 0.2163279950618744, 0.09453213959932327, -0.014241965487599373, -0.1191241443157196, -0.1442461460828781, 0.21059709787368774, -1.1359467506408691, -0.7682085037231445, 0.3444938659667969, 0.07927976548671722, -0.328991562128067, 0.038706667721271515, -0.8510738611221313, -0.3148294985294342, -0.06780791282653809, -0.3227546811103821, 0.47893399000167847, -0.6893093585968018, 1.0009456872940063, -0.48498934507369995, -0.06469273567199707, 0.14442366361618042, 0.039808765053749084, 0.25206661224365234, 0.9155181646347046, -0.8095038533210754, -0.19599118828773499, -0.577570915222168, 0.9409012198448181, 1.0106322765350342, 0.4827457070350647, -0.45534825325012207, -0.04129720479249954, 0.17420047521591187, -0.8839772343635559, 0.09003184735774994, 0.3818170428276062, 0.2920931875705719, -0.3459637463092804, 0.778953492641449, 0.7048333287239075, -1.0673205852508545, -0.8991383910179138, 0.04353471100330353, -0.4906615912914276, -0.5497872829437256, -0.3374881148338318, 0.3614954948425293, 0.20896941423416138, 0.9840988516807556, 0.373018741607666, 0.3798770606517792, 1.199768304824829, -0.1712234914302826, 0.25168848037719727, 0.811514675617218, 0.796732485294342, 1.3375451564788818, 0.21722082793712616, 0.13254523277282715, 1.0685067176818848, -0.9305673241615295, -1.1239166259765625, 0.6293249726295471, -0.42275214195251465, -0.10177575796842575, 0.009496142156422138, -0.22288815677165985, 0.7122452259063721, 0.5320484638214111, 1.6682852506637573, 0.04352005571126938, 0.3475201725959778, 0.05594692379236221, -0.43325677514076233, 0.6005710363388062, 0.12467794120311737, -0.28203991055488586, 0.469058632850647, -0.6121731996536255, -0.6355364322662354, 0.1028243899345398, 0.46090278029441833, 0.09910380840301514, 0.1257525384426117, -0.8483217358589172, -0.33010777831077576, -0.5600470304489136, 0.9088191390037537, 1.048332691192627, -0.017111610621213913, -0.019458428025245667, 0.17238615453243256, 0.5304189920425415, 0.20392313599586487, 0.254154235124588, 0.10513886064291, 0.0658230260014534, 0.34402790665626526, -0.38872790336608887, 0.0017942041158676147, 0.07213753461837769, 0.11475318670272827, 0.4693628251552582, -0.08689960837364197, 0.08677225559949875, 0.6281846761703491, 0.7968202233314514, -0.26523956656455994, -0.8873462677001953, -0.9674748778343201, 0.07095406949520111, -1.2031623125076294, -0.15647324919700623, 0.08926557004451752, -0.3132361173629761, -0.826072096824646, -0.3647763133049011, -0.6383280754089355, 0.3569870591163635, -0.24184691905975342, -0.4424203932285309, -0.5113108158111572, 0.49506688117980957, 0.17874068021774292, 0.14499568939208984, 1.0842750072479248, 0.7927201390266418, 0.07391506433486938, 0.0245441272854805, 0.753063976764679, 0.056156739592552185, 1.1146427392959595, -0.16409987211227417, 0.16099657118320465, -1.2814007997512817, 0.1004059910774231, 1.0708258152008057, 0.4928980767726898, -1.189430832862854, 0.9541237950325012, 0.09834781289100647, -1.1341592073440552, 1.1471083164215088, 0.2894349992275238, -0.10514341294765472, -0.34460556507110596, -0.14902527630329132, -0.7452399134635925, 0.21434850990772247, 0.6745449900627136, -0.300645112991333, 0.48610565066337585, 1.4039435386657715, 0.05897202342748642, 0.005005553364753723, -0.05796706676483154, -0.3447648286819458, 0.23453465104103088, -0.9526126980781555, -0.023398008197546005, -0.6904765963554382, -1.2832822799682617, -0.335554838180542, 0.6944803595542908, -0.4145004451274872, -1.0029914379119873, 0.07926551252603531, -0.7197622060775757, -0.07140734791755676, 0.2749295234680176, -0.03723490610718727, -0.06838174164295197, -0.6873546242713928, -0.8619467616081238, -1.0118945837020874, 0.21465210616588593, 0.2575852870941162, -0.24691015481948853, 0.5259200930595398, -0.636218786239624, 0.19675631821155548, -0.0920286551117897, 0.23524987697601318, 0.4142985939979553, -0.1822381317615509, 0.7631132006645203], "e043659e-e9a0-4c87-8095-875bfdf7221a": [-0.2894490957260132, 0.1159331351518631, -0.35606786608695984, -0.008969034999608994, 0.8923561573028564, -0.20471230149269104, 0.22265775501728058, 0.6870631575584412, -0.3317326009273529, -0.6043395400047302, -0.24627943336963654, 0.017674148082733154, -0.8687284588813782, 0.33511897921562195, 0.366707444190979, 0.8957668542861938, 0.7455962300300598, -0.2511429488658905, -0.08962187170982361, -0.14156006276607513, 0.06466872245073318, 0.18172156810760498, -0.23014067113399506, 0.8828582167625427, 0.11817821860313416, 0.022713012993335724, 0.2636750042438507, -0.06348303705453873, -1.3962098360061646, 0.11275896430015564, 0.3567933142185211, -0.3519051969051361, 0.03269124776124954, -0.09587057679891586, -0.04589753970503807, 0.06837102770805359, -0.6588243246078491, -0.3943968415260315, 0.02230669930577278, -0.10711707174777985, -0.8060999512672424, -0.5057625770568848, -0.3877219557762146, -0.13938908278942108, -0.6800447702407837, 0.25574803352355957, -1.216221809387207, 0.6863752007484436, -0.40913185477256775, -0.03490819036960602, -1.4602662324905396, 0.29436588287353516, 0.13769283890724182, 0.7436165809631348, 0.4026731550693512, 1.1410595178604126, 0.02557751163840294, -0.839570939540863, 0.12459094822406769, -0.42999640107154846, 0.1886812448501587, -0.19391962885856628, 0.435401052236557, 0.004815674386918545, 0.4139522314071655, -0.6554348468780518, -0.2521335780620575, 0.6895400285720825, -1.593622088432312, -0.6707370281219482, -0.2794362008571625, 0.35658398270606995, 0.3722629249095917, -0.2790754735469818, 0.8407211899757385, -0.4941130578517914, -0.4434130787849426, 0.2632776200771332, 1.2237342596054077, 0.41277870535850525, -0.21423351764678955, 0.3977420926094055, -0.37158480286598206, 0.742597222328186, -0.6367005705833435, -0.12387627363204956, -0.4522864818572998, -0.4218420088291168, -0.903775691986084, 0.7560876607894897, -0.7882913947105408, -0.5147531032562256, 0.6644452810287476, 0.35228145122528076, 0.21843303740024567, -0.30797079205513, 0.6574102640151978, 0.5104592442512512, 0.4799545407295227, 0.27219581604003906, -0.6853064298629761, -1.0761752128601074, -0.007864177227020264, -0.24464106559753418, -1.336940050125122, -1.0600485801696777, -0.7281572222709656, 0.14520296454429626, 0.36756953597068787, 0.1758890450000763, -0.03376273065805435, -0.9549914002418518, -0.5194933414459229, -0.03354351222515106, -1.0495469570159912, 1.0739257335662842, 0.5304917693138123, 0.24411502480506897, -0.2514609396457672, -0.16882672905921936, 1.0406043529510498, 1.0375041961669922, 0.4970070719718933, 1.4043536186218262, 0.39476820826530457, 0.64128178358078, 0.2287798523902893, 0.5972098112106323, -0.7321244478225708, -1.078310489654541, 0.12437186390161514, 1.132763147354126, 0.20491968095302582, -0.15590496361255646, 0.04190267622470856, -0.47772303223609924, 0.0639166533946991, 0.20529955625534058, 0.2821458876132965, -0.466046005487442, 0.16993080079555511, 0.07226542383432388, 0.4941811263561249, 0.005197932943701744, 0.7276951670646667, 0.49617862701416016, -0.38257649540901184, -0.7454290390014648, -0.6184971332550049, 0.75154048204422, 0.06708531081676483, 0.32460644841194153, 0.8725602626800537, -0.808501124382019, 0.06830576807260513, 0.7942435145378113, 0.118064284324646, 0.4134747087955475, -1.230560541152954, 0.8144639730453491, 0.7919609546661377, 0.05870615690946579, -0.5323616862297058, 0.3808666467666626, -0.19329920411109924, -0.2631216049194336, 0.6538342237472534, -0.22106559574604034, 0.2893989086151123, 0.3350771367549896, -0.5010640621185303, -0.9356346130371094, 0.8072630763053894, -0.5120716094970703, -0.4621053636074066, 0.488873690366745, 1.3208781480789185, 0.0866304561495781, -0.04845447093248367, -0.7311722636222839, -1.1582350730895996, 1.0594085454940796, -0.027941174805164337, -0.6624640822410583, -0.4018961191177368, -0.22082871198654175, 1.2871063947677612, -0.14232301712036133, -0.4262939989566803, 0.23053058981895447, -1.2993745803833008, -0.7698640823364258, -0.022579308599233627, 0.7251611351966858, 0.9999059438705444, -0.14193299412727356, -0.0983947366476059, 0.6180149912834167, -0.009857701137661934, 0.7020910978317261, 0.14134180545806885, 0.4755100905895233, -0.24354273080825806, -0.9960088133811951, -0.9448250532150269, 0.7795019745826721, 0.7341498732566833, 0.020067311823368073, 0.5315282940864563, 0.05766190215945244, 0.13783518970012665, 0.2752511501312256, 0.8033431768417358, -0.35769498348236084, 1.0095514059066772, 0.4561210870742798, 0.08433246612548828, -0.49707460403442383, 0.7185857892036438, -1.3731142282485962, 0.5002215504646301, -0.2666913568973541, -1.1074413061141968, 0.631305992603302, -0.3002151846885681, 1.3885221481323242, 1.1355230808258057, -0.3738512396812439, -0.24532052874565125, 0.8483942747116089, 0.5437985062599182, 0.046908020973205566, 0.5874627828598022, 0.19559592008590698, -0.2086954116821289, -0.151418074965477, -0.2424442321062088, -0.30922144651412964, 1.0653760433197021, -0.5521848201751709, 0.4620527923107147, 1.1193352937698364, 0.030854033306241035, 0.8876619935035706, 0.32570376992225647, 0.32450369000434875, 0.01875261217355728, -0.3708861768245697, -0.6280708312988281, -0.17746159434318542, -0.4845130741596222, -0.5885635018348694, 0.5441502332687378, -0.34461429715156555, 0.6890520453453064, -0.4280455410480499, -0.7462906241416931, 0.23919592797756195, 0.9365294575691223, 0.8440912961959839, -0.3607656955718994, 0.6810206174850464, 0.41529104113578796, -0.31556278467178345, -0.3884592354297638, -1.7050501108169556, -0.6420674324035645, 0.1780947595834732, 0.6360872983932495, 0.18749868869781494, 0.3261485695838928, -0.271129846572876, -0.430244117975235, -0.1800353080034256, -0.39240169525146484, -0.43917316198349, 1.354603886604309, 0.2649996876716614, -0.12968435883522034, -1.1132676601409912, -0.3468363583087921, 0.8993997573852539, -0.8904989361763, -1.3563536405563354, -0.7065433263778687, -0.3632071018218994, 0.4550016522407532, -0.5142481327056885, -0.1496283859014511, 0.40839383006095886, 0.44814401865005493, 0.6307972073554993, -0.29998624324798584, 0.5100380778312683, 1.0767263174057007, 0.3019939363002777, 0.5068270564079285, 0.5950718522071838, 0.4535873532295227, -0.16409943997859955, 0.10654749721288681, 0.3317739963531494, 0.49798518419265747, -0.29671531915664673, -0.2890698313713074, 0.13514657318592072, -0.038781944662332535, -0.28880780935287476, -4.057199478149414, 0.1618266999721527, -0.1067856177687645, -0.9733673334121704, 0.19595381617546082, 0.04222995042800903, 0.2601119577884674, -0.8018954992294312, -0.6119963526725769, 0.2997897267341614, 0.018530085682868958, -0.026646874845027924, 0.9435231685638428, 0.19673603773117065, 0.18960396945476532, 0.4676437973976135, 0.013928823173046112, -0.8276825547218323, -0.05854842811822891, 0.5877237319946289, -0.49854618310928345, -1.372109293937683, -0.25506365299224854, -0.08631150424480438, 0.053397856652736664, 0.8460724353790283, -1.0106534957885742, 0.8165653347969055, -0.821901798248291, -0.34940457344055176, 0.46961790323257446, -0.4333886206150055, 0.10713405907154083, -0.053922198712825775, 0.032720670104026794, -0.8294663429260254, 0.822870671749115, 0.2615261375904083, 0.12929199635982513, -0.34892627596855164, -0.7614613771438599, -0.42307165265083313, -0.3710351586341858, -0.31390222907066345, 0.7107102870941162, -0.11012795567512512, -0.24041832983493805, -0.08521374315023422, 0.38201454281806946, 0.696434736251831, -0.2324466109275818, -0.14183905720710754, -0.05891665816307068, 0.1172926053404808, -0.2172876000404358, -0.5027364492416382, 0.20501035451889038, -0.13372881710529327, -0.6191409826278687, -0.2071402668952942, 0.3186712861061096, -0.8840612769126892, -0.6343323588371277, -0.8445712924003601, -0.29522794485092163, -0.8132426738739014, -0.7865784168243408, -0.5601805448532104, 0.808696985244751, 0.8320156335830688, -0.16600549221038818, 0.6310437321662903, -0.11412384361028671, -1.5995405912399292, 0.4187964200973511, -0.5236966013908386, -0.55426424741745, -0.3234940767288208, -0.3724310100078583, 0.40874338150024414, -0.32658612728118896, -0.14773403108119965, -0.1387498676776886, 0.6471263766288757, -0.4217255711555481, -0.7378389239311218, 0.18253612518310547, -1.000565767288208, -0.9042115211486816, -0.8383475542068481, 1.004265308380127, -0.6201610565185547, 0.1921607255935669, 0.18672344088554382, 0.3501777648925781, 0.36764201521873474, -0.15222157537937164, -0.3322215974330902, 0.525397539138794, 0.08242000639438629, 0.7401651740074158, -0.8192030787467957, 0.19969452917575836, -0.312306672334671, 0.5433424115180969, -0.37186604738235474, -0.7636992931365967, 0.03640928864479065, 0.2102261632680893, 0.2051553726196289, 0.09475307911634445, 0.1538095772266388, 0.3812248408794403, -0.956905722618103, 0.05264177918434143, -0.6647450923919678, 0.3470730781555176, 0.7614938020706177, 0.37963202595710754, -0.07373478263616562, -0.8114734888076782, 0.511327862739563, -0.7068681120872498, -0.5279927849769592, -1.5110790729522705, 0.3399198353290558, -0.21253769099712372, 0.16391579806804657, -0.21130278706550598, -0.23018936812877655, -0.32286500930786133, -0.02468186244368553, 0.5349875688552856, 0.019538745284080505, 0.2959159016609192, -0.43221592903137207, -0.3032644987106323, -0.4239403009414673, 1.0787887573242188, -0.24715837836265564, 0.2286091446876526, 0.004399701952934265, -0.07114077359437943, 0.3234165906906128, 0.8450735807418823, 0.5878500938415527, -0.6168313026428223, 0.41849398612976074, -0.3716823160648346, -0.15076430141925812, 0.027593357488512993, -0.12259460240602493, 0.20819340646266937, -0.4866979718208313, 0.09160798788070679, -0.5687360763549805, 0.40902501344680786, -0.09346558153629303, 0.2922784686088562, -0.8465591669082642, 0.2372368574142456, -0.6157050728797913, 0.14010228216648102, -0.08436763286590576, -0.45222413539886475, 1.1179314851760864, -0.4218216836452484, -0.13268333673477173, 0.01913035660982132, 0.09778961539268494, 0.7884533405303955, -0.08959808945655823, -0.45747631788253784, 0.16784992814064026, -0.5642809271812439, 0.7439179420471191, 0.2888520658016205, 0.09019792079925537, -0.09844866394996643, 0.4332275092601776, -0.1189231127500534, -0.23269109427928925, 0.4706993103027344, 0.46012791991233826, 0.9361019730567932, -0.06999123096466064, 0.3172347843647003, -0.16218292713165283, -0.16960617899894714, -0.35484397411346436, 0.6752880811691284, -0.035030148923397064, -0.27645570039749146, 0.28286680579185486, -0.9365556836128235, -1.5559277534484863, -0.10100185871124268, 0.20520862936973572, 0.5243362188339233, 0.1049431562423706, -0.5025565028190613, -0.10459324717521667, -0.4288085699081421, 0.0814766138792038, -0.04700973629951477, -1.3310333490371704, 0.589995265007019, 0.2423456311225891, -0.4837152361869812, 0.164718896150589, 0.30640172958374023, -0.4840642511844635, -0.9565828442573547, 0.1924910843372345, 0.09832831472158432, -0.8555482625961304, -0.3032959997653961, 0.12385547161102295, -0.26736199855804443, -0.31495198607444763, 0.635356068611145, 0.2784446179866791, 0.010648384690284729, -0.21600614488124847, -0.4916900098323822, 0.9144827723503113, -0.30356454849243164, -0.05109492689371109, 0.793448805809021, -0.2813173532485962, 0.503994345664978, -0.6295424699783325, 0.32646897435188293, 1.025224208831787, -0.3352327346801758, 0.4060785472393036, -0.5530321598052979, 0.6603660583496094, -0.2550261616706848, 1.1406524181365967, 0.36033591628074646, -0.06731449067592621, -0.3019702434539795, -0.865864634513855, 0.16259075701236725, -0.11754526197910309, -0.2248912900686264, -0.3495677709579468, -0.038804564625024796, 0.6473036408424377, 0.0235760360956192, 0.37070995569229126, -0.09501081705093384, -0.09197328984737396, 0.8410136103630066, -0.1583731472492218, -0.9661949276924133, -0.21840167045593262, -0.5427683591842651, 0.0405290387570858, 0.45006078481674194, 0.08665918558835983, -0.8808600306510925, 1.465651512145996, 1.126413106918335, 0.3407810926437378, -0.42511165142059326, -0.46181607246398926, 0.45889005064964294, -0.4203487038612366, 0.025412119925022125, -0.9288870692253113, 0.098371222615242, 0.10180827975273132, 0.12924426794052124, -0.11620418727397919, -0.07337839901447296, -0.19178526103496552, 0.29628634452819824, -1.4287959337234497, -0.644938588142395, 0.23965631425380707, -0.2930157780647278, 0.3784283399581909, 0.21044036746025085, -1.1850312948226929, -0.38643306493759155, 0.13387124240398407, -0.07822585105895996, 0.33561232686042786, -0.36365488171577454, 1.1833754777908325, -0.4876672923564911, -0.07988201826810837, 0.2850906252861023, -0.09018218517303467, 0.13089519739151, 1.1221383810043335, -0.8913586139678955, -0.18805697560310364, -0.8639444708824158, 0.9752922654151917, 0.9171656966209412, 0.32020190358161926, -0.34195399284362793, -0.17982271313667297, 0.16026324033737183, -0.8777320384979248, -0.13222074508666992, 0.7402067184448242, 0.13682842254638672, -0.5407178997993469, 0.7545811533927917, 0.5406002998352051, -0.8340309262275696, -0.9996988773345947, 0.31471991539001465, -0.12298373132944107, -0.5073413848876953, -0.23895421624183655, 0.6596065163612366, 0.18591853976249695, 0.8583977818489075, 0.17691543698310852, 0.44056588411331177, 1.4558703899383545, -0.4646730124950409, 0.1297023892402649, 0.6866322755813599, 0.9504621028900146, 1.2848310470581055, 0.4740714728832245, 0.0992131233215332, 1.2381956577301025, -1.0362296104431152, -0.8284786343574524, 0.5856914520263672, -0.4090135991573334, 0.22202163934707642, 0.1378759890794754, -0.29999372363090515, 1.2224090099334717, 0.5549712181091309, 1.433350920677185, -0.13691116869449615, 0.1329081952571869, 0.007480904459953308, -0.17065975069999695, 0.7858553528785706, -0.04473251849412918, -0.00330410897731781, 0.3650318384170532, -0.5265116691589355, -0.3417115807533264, 0.30149704217910767, 0.5110800862312317, 0.0400419682264328, 0.02434985712170601, -0.9355906248092651, -0.24467015266418457, -0.7538602948188782, 0.8522166013717651, 1.127333164215088, -0.042975664138793945, 0.23790809512138367, -0.024540212005376816, 0.6402871608734131, 0.05212322622537613, 0.3302121162414551, 0.19730708003044128, -0.11497615277767181, 0.15751929581165314, -0.2667974829673767, 0.22005131840705872, 0.09760923683643341, 0.3071526288986206, 0.44772499799728394, -0.02149399369955063, 0.18487101793289185, 0.5714878439903259, 0.2606492042541504, -0.3250122368335724, -1.0458979606628418, -0.8201096057891846, -0.10124680399894714, -1.3428819179534912, -0.20819120109081268, 0.4455200433731079, -0.139926016330719, -0.9059816002845764, -0.5551739931106567, -0.5979852676391602, 0.23666685819625854, -0.06491918861865997, -0.298141747713089, -0.026400968432426453, 0.49205857515335083, 0.4434967041015625, 0.24606335163116455, 1.1222925186157227, 0.23779116570949554, -0.06880183517932892, -0.26608556509017944, 0.4621894359588623, 0.25219815969467163, 1.3720296621322632, -0.16025766730308533, -0.18019214272499084, -1.2896397113800049, 0.346233606338501, 1.233001470565796, 0.5367387533187866, -1.4426255226135254, 0.9246591329574585, -0.018737971782684326, -0.7634233832359314, 0.8683054447174072, -0.04710043966770172, 0.09157231450080872, -0.2672094404697418, -0.19834336638450623, -0.552160382270813, 0.18532340228557587, 0.6553027033805847, -0.7818976640701294, 0.5308948159217834, 1.1299303770065308, 0.11539998650550842, -0.300202339887619, -0.11339576542377472, 0.005059882998466492, 0.3686460554599762, -0.8458197116851807, 0.00390532985329628, -0.9843764901161194, -1.0353751182556152, -0.4982328414916992, 0.6928371787071228, -0.3230378031730652, -1.1325397491455078, -0.16561856865882874, -0.6134684085845947, -0.17937247455120087, 0.5105383396148682, -0.404960960149765, -0.19284814596176147, -0.4449118375778198, -1.0453217029571533, -1.0818153619766235, 0.014408018440008163, 0.24714452028274536, -0.28414446115493774, 0.35891690850257874, -0.6097794771194458, 0.23264917731285095, -0.3526346683502197, 0.03740017116069794, 0.4025060832500458, -0.3250007629394531, 0.5482810139656067], "122d9186-a52b-4223-b806-d42a8563c93e": [-0.34740471839904785, 0.11409515142440796, -0.27597343921661377, -0.30938220024108887, 0.6428726315498352, 0.07159507274627686, 0.4535805284976959, 0.644493818283081, -0.7310881018638611, -0.4496349096298218, -0.24342039227485657, -0.4857702851295471, -0.7036083340644836, 0.05602121353149414, 0.3835010528564453, 0.9834582209587097, 0.8337769508361816, -0.16978679597377777, 0.17096774280071259, -0.051474496722221375, 0.1492934674024582, 0.4042298197746277, -0.12579254806041718, 1.0963650941848755, -0.10206368565559387, 0.09278228878974915, 0.4150818884372711, -0.09332159906625748, -1.481748104095459, 0.0014627501368522644, 0.22330571711063385, -0.22012509405612946, 0.10846364498138428, -0.24556231498718262, 0.08908598124980927, -0.20492325723171234, -0.5754594802856445, -0.5472434759140015, 0.06102800369262695, -0.13325797021389008, -0.8424773812294006, -0.6756113171577454, -0.19857987761497498, 0.2093653380870819, -0.6838834881782532, 0.29387083649635315, -1.196184754371643, 0.7749012112617493, -0.7055604457855225, 0.10711035132408142, -1.741086721420288, 0.5844591856002808, 0.16226820647716522, 0.1173660159111023, 0.5998919010162354, 0.7143387198448181, 0.07207342237234116, -0.5409650206565857, 0.023687344044446945, -0.33541834354400635, 0.09930693358182907, 0.07119728624820709, 0.9407355785369873, 0.10536877810955048, 0.42997580766677856, -1.0562992095947266, 0.2738484740257263, 1.0726152658462524, -1.1470985412597656, -0.45146647095680237, -0.5620738863945007, 0.05244185030460358, 0.2612992525100708, 0.008503451943397522, 0.4579874277114868, -0.5636800527572632, -0.132412388920784, 0.5065033435821533, 0.7766607403755188, 0.8620405793190002, -0.39014512300491333, 0.3495129346847534, -0.12485011667013168, 1.078714370727539, -0.28454428911209106, -0.17242875695228577, -0.5165367126464844, -0.5097071528434753, -0.8000723123550415, 0.5489695072174072, -0.02980900928378105, -0.533777117729187, 0.5066620111465454, 0.6996890902519226, 0.36068195104599, -0.005233243107795715, 0.5768114328384399, 0.29011043906211853, 0.373792439699173, 0.19828683137893677, -0.5149128437042236, -1.0556843280792236, 0.24009546637535095, -0.2578473687171936, -1.4950941801071167, -1.2625036239624023, -0.6583812236785889, 0.31419023871421814, 0.11917217075824738, 0.17171496152877808, -0.23905616998672485, -0.6072590947151184, -0.39647960662841797, 0.1394663155078888, -1.0192835330963135, 1.310589075088501, 0.44148215651512146, 0.4395110309123993, -0.2540607452392578, 0.07755710184574127, 0.8230553865432739, 1.3274108171463013, 0.6321245431900024, 1.3693095445632935, -0.12836526334285736, 0.5319446921348572, 0.27916818857192993, 0.6984538435935974, -0.6937699913978577, -1.1925338506698608, 0.3750182092189789, 0.973120927810669, 0.19949984550476074, -0.12459805607795715, -0.32650482654571533, -0.6359283924102783, -0.2701423764228821, 0.01141257956624031, 0.6727946400642395, -0.3623501658439636, 0.06720031797885895, -0.21241742372512817, 0.615451455116272, -0.09585342556238174, 1.1550164222717285, 0.12578019499778748, -0.1262264847755432, -1.0341646671295166, -0.28058359026908875, 0.6611986756324768, 0.22264574468135834, 0.6378628015518188, 0.4424876570701599, -1.0942575931549072, 0.6313807964324951, 0.8117925524711609, 0.44210514426231384, 0.1492375284433365, -1.064204216003418, 0.897154688835144, 0.649189293384552, 0.043503958731889725, -0.28717342019081116, 0.38754501938819885, -0.18012458086013794, -0.3079376220703125, 0.38845181465148926, -0.23592965304851532, 0.07970289885997772, 0.34425088763237, -0.5600927472114563, -1.08140230178833, 0.7360997200012207, -0.49926820397377014, 0.01535022258758545, 0.10565857589244843, 1.7147213220596313, -0.1635526865720749, 0.15909913182258606, -0.34674307703971863, -1.1415939331054688, 0.914394736289978, -0.42623481154441833, -0.4798964858055115, -0.8805230259895325, -0.26494336128234863, 1.1746101379394531, -0.07899433374404907, -0.5148171186447144, -0.09268632531166077, -1.087392807006836, -0.6718453764915466, -0.06309173256158829, 0.30252066254615784, 0.897439181804657, -0.08167575299739838, -0.16744482517242432, 0.07328109443187714, 0.0381108820438385, 0.48406311869621277, -0.12265251576900482, 0.25676000118255615, 0.011579252779483795, -1.1419227123260498, -0.9276589155197144, 1.008447527885437, 0.7334293127059937, -0.07745153456926346, 0.3657824993133545, 0.16278745234012604, -0.025922082364559174, -0.12517023086547852, 0.9839471578598022, -0.3313916325569153, 0.6674628257751465, 0.30026543140411377, 0.14581900835037231, -0.5157476663589478, 1.0335489511489868, -0.9643447995185852, 0.017673075199127197, -0.17348673939704895, -0.911095380783081, 0.6419685482978821, -0.11430995911359787, 1.4569346904754639, 0.9523673057556152, -0.733629047870636, -0.7659974098205566, 0.898040771484375, 0.48347336053848267, 0.04170667380094528, 0.27688562870025635, 0.12031500786542892, -0.34867528080940247, -0.48511800169944763, -0.020712288096547127, -0.2857748866081238, 0.7106388211250305, -0.8192993998527527, 0.2485964000225067, 1.2571051120758057, -0.28183409571647644, 0.7589446306228638, 0.7839035391807556, 0.03293193131685257, 0.2794259786605835, -0.24440117180347443, -0.5858389139175415, 0.0885503739118576, -0.582924485206604, -0.6235745549201965, 0.3563917875289917, -0.8112384676933289, 0.6771244406700134, -0.48035699129104614, -0.738758385181427, -0.12187288701534271, 0.6100003123283386, 0.8866921663284302, -0.228014275431633, 0.6687003374099731, 0.32947784662246704, -0.43973904848098755, -0.3513706624507904, -1.5743286609649658, -0.4928740859031677, -0.23085932433605194, 0.7643460631370544, 0.20564401149749756, 0.287008136510849, -0.5823724269866943, -0.11437508463859558, -0.46699512004852295, -0.28026092052459717, -0.4781663715839386, 0.992695689201355, 0.5105634331703186, -0.11001332104206085, -0.9718564748764038, -0.1958572417497635, 0.8080658316612244, -0.8887641429901123, -1.3865711688995361, -0.1832122802734375, -0.4171483516693115, 0.28559795022010803, -0.45574426651000977, -0.18373531103134155, 0.20325163006782532, 0.32615047693252563, 0.7238978743553162, -0.16464364528656006, 0.30204033851623535, 1.2889041900634766, 0.5652121305465698, 0.2184811681509018, 0.6152089834213257, 0.298674076795578, -0.5240800380706787, 0.012382790446281433, 0.4025711119174957, 0.5950220227241516, -0.033464353531599045, -0.39975082874298096, -0.013682741671800613, 0.016459841281175613, -0.7086478471755981, -4.124172687530518, 0.1909797638654709, 0.0483899787068367, -0.9430858492851257, 0.32291173934936523, -0.01396142691373825, 0.5089441537857056, -0.46466702222824097, -0.8615565299987793, 0.45324549078941345, -0.19562363624572754, -0.3027270436286926, 0.46714985370635986, 0.47417691349983215, 0.19565065205097198, 0.5650639533996582, 0.2936939001083374, -0.46857017278671265, -0.04284047707915306, 0.32557737827301025, -0.38976049423217773, -1.7247025966644287, -0.16908445954322815, 0.19679862260818481, 0.11639104783535004, 0.9213968515396118, -1.4403647184371948, 0.8697861433029175, -0.86418217420578, -0.20311513543128967, 0.2544921338558197, -0.7891756892204285, -0.03272444009780884, -0.019333723932504654, 0.06559468805789948, -0.7909826040267944, 0.645691454410553, -0.19319003820419312, 0.1651064157485962, -0.43850696086883545, -0.8592671155929565, -0.5266200304031372, -0.2358490526676178, -0.249873548746109, 0.7827162146568298, 0.2622631788253784, -0.43626201152801514, -0.2914607524871826, 0.1714271605014801, 0.48301324248313904, -0.10471093654632568, -0.054318200796842575, -0.06576623767614365, 0.016093332320451736, -0.3752720355987549, -0.8443065881729126, 0.11063478887081146, -0.011633366346359253, -0.537398636341095, -0.16537794470787048, 0.13883017003536224, -0.7085058689117432, -0.4673731029033661, -0.7348862886428833, -0.19364647567272186, -0.7144312262535095, -0.9976335763931274, -0.32551708817481995, 0.7662569284439087, 0.4491541087627411, -0.12380728125572205, 0.2704941928386688, -0.3361677825450897, -1.5042040348052979, 0.08801580965518951, -0.5584651827812195, -0.44275525212287903, -0.19689451158046722, -0.24083763360977173, 0.5763723254203796, -0.5401136875152588, 0.03972454369068146, -0.20665636658668518, 0.606939435005188, -0.2451833188533783, -0.6741126775741577, -0.2123565971851349, -1.0210621356964111, -0.7959102988243103, -0.48609811067581177, 1.094329595565796, -0.5818356275558472, 0.4002433121204376, 0.1391596496105194, 0.5439745187759399, 0.6315296292304993, 0.19923453032970428, -0.140884667634964, 0.5115631818771362, -0.07734659314155579, 0.6298309564590454, -0.5487627983093262, 0.2600873112678528, -0.47233670949935913, 0.27194759249687195, -0.042538758367300034, -0.5713437795639038, 0.08404959738254547, 0.2265152484178543, 0.35645580291748047, 0.12113042175769806, -0.14944568276405334, 0.3379858732223511, -0.9437785148620605, 0.0763382613658905, -0.14520829916000366, 0.3384495973587036, 0.7985333800315857, 0.22047686576843262, 0.2060009092092514, -0.9254913330078125, 0.5359600782394409, -0.8692625164985657, -0.44777828454971313, -1.1678284406661987, -0.07654658704996109, -0.5374879240989685, 0.19667275249958038, -0.13512468338012695, -0.12092526257038116, -0.11774960160255432, 0.18405219912528992, 0.2664337754249573, 0.2592777907848358, 0.38741767406463623, -0.2991179823875427, -0.4140692353248596, -0.550675094127655, 1.4875811338424683, 0.22459402680397034, -0.13478055596351624, 0.2115146666765213, 0.10487114638090134, 0.6008329391479492, 0.9441614747047424, 0.9127220511436462, -0.2700278162956238, 0.03309518098831177, 0.07583640515804291, 0.019274268299341202, 0.05401327461004257, -0.3552389144897461, 0.2649799585342407, -0.7024096846580505, -0.022777199745178223, -0.5894914865493774, 0.2699998915195465, -0.3023495674133301, -0.26967376470565796, -0.7896304726600647, 0.24867931008338928, -0.5192460417747498, -0.21430692076683044, 0.035630907863378525, -0.1547161042690277, 1.178178310394287, -0.2745243310928345, -0.018493197858333588, -0.17960244417190552, -0.2192460298538208, 0.5559689402580261, -0.21469524502754211, -0.7788665890693665, 0.8071509599685669, -0.0856906920671463, 0.6769980192184448, 0.462173730134964, 0.1412995308637619, -0.3740495443344116, 0.08155784755945206, 0.08692502975463867, -0.04643873870372772, 0.3424568772315979, 0.616732656955719, 0.9324497580528259, 0.4524248242378235, 0.2757895588874817, -0.2858588397502899, -0.280310720205307, -0.18085607886314392, 0.5229514837265015, 0.15803927183151245, 0.07121925055980682, -0.05136694014072418, -0.7775045037269592, -1.1755940914154053, 0.3201245367527008, 0.11593706905841827, 0.20061218738555908, -0.2920961380004883, -0.5515230894088745, -0.02317374385893345, -0.44773709774017334, 0.4553303122520447, 0.33764564990997314, -1.2704600095748901, 0.6505758762359619, 0.08055656403303146, 0.0627276599407196, 0.022589586675167084, 0.019612222909927368, -0.46527618169784546, -0.8783888816833496, 0.15001340210437775, -0.0632300153374672, -0.9184361100196838, 0.09456348419189453, 0.0084468312561512, -0.23455528914928436, -0.5928137302398682, 0.7399791479110718, 0.3597905933856964, 0.02207404375076294, -0.7929337024688721, -0.6742622256278992, 0.6915127635002136, -0.033060505986213684, -0.3124168813228607, 0.22141006588935852, -0.4902200698852539, 0.405852347612381, -0.6952970623970032, 0.4054754972457886, 0.7907840013504028, -0.07129953056573868, 0.21510295569896698, -0.620299756526947, 0.5959762930870056, 0.08015835285186768, 1.1791876554489136, -0.05483356490731239, -0.060113683342933655, -0.20718711614608765, -0.6454890370368958, 0.17043401300907135, 0.06277825683355331, 0.03299551084637642, 0.12928232550621033, 0.008588559925556183, 0.6287084221839905, 0.36993566155433655, 0.5457686185836792, -0.24530579149723053, 0.24856504797935486, 1.1399056911468506, -0.28844889998435974, -0.7720925211906433, -0.20192906260490417, -0.730872631072998, -0.3679189085960388, 0.085511215031147, -0.055870287120342255, -0.3106915354728699, 1.4064934253692627, 1.3824796676635742, 0.21981880068778992, -0.3050457835197449, -0.5545662641525269, 0.4670983850955963, -0.21565571427345276, -0.05316827446222305, -0.9944867491722107, -0.10928691923618317, 0.3490648865699768, 0.6605654954910278, -0.13973665237426758, -0.1958695501089096, -0.20060735940933228, 0.7129694223403931, -1.0746979713439941, -0.8334164619445801, 0.2052961140871048, -0.10075084865093231, 0.13157224655151367, 0.24595491588115692, -0.9858381748199463, -0.20184201002120972, 0.1063389778137207, -0.27829402685165405, 0.35297346115112305, -0.6327723860740662, 0.9621641039848328, -0.3485390245914459, 0.18228335678577423, 0.32032597064971924, -0.29958590865135193, 0.3762822151184082, 1.1283119916915894, -1.1398346424102783, 0.08264089375734329, -0.7288777232170105, 0.817186713218689, 0.8869987726211548, -0.17343182861804962, -0.7652479410171509, 0.10485859960317612, 0.4430866837501526, -0.7872280478477478, -0.25905489921569824, 0.6687448024749756, 0.02899768203496933, -0.7840122580528259, 0.9771739840507507, 0.42245736718177795, -0.8500464558601379, -0.6383745670318604, 0.09556947648525238, -0.4810977280139923, -0.5184313058853149, -0.13635465502738953, 0.32163774967193604, 0.15904715657234192, 1.039804220199585, 0.28273463249206543, 0.3376135528087616, 1.4734625816345215, -0.1298474669456482, -0.16626346111297607, 0.5574011206626892, 0.9588005542755127, 1.4181674718856812, 0.2983618378639221, 0.14500653743743896, 0.9904574155807495, -1.1852071285247803, -0.691733181476593, 0.34821853041648865, -0.5490418076515198, -0.25829291343688965, 0.14074824750423431, -0.1421743929386139, 1.1330221891403198, 0.3871057629585266, 1.7265828847885132, -0.0258367657661438, 0.23099997639656067, 0.003700338304042816, -0.5752040147781372, 0.8112847805023193, 0.6294400691986084, -0.3111169636249542, 0.8903773427009583, -0.4134216010570526, -0.17600780725479126, -0.07110872864723206, 0.5473004579544067, 0.09836888313293457, 0.1565043181180954, -0.6356627941131592, -0.4163275361061096, -0.5906344652175903, 1.0304210186004639, 1.0017764568328857, 0.10772554576396942, -0.13546127080917358, 0.06373216956853867, 0.42041638493537903, 0.09855350852012634, 0.3895784616470337, 0.10174891352653503, -0.14128521084785461, 0.26374951004981995, -0.20895643532276154, -0.19871075451374054, -0.09665428847074509, -0.27566760778427124, 0.23289340734481812, 0.15045057237148285, 0.3601396381855011, 0.2184491753578186, 0.280590683221817, -0.5448192358016968, -1.0861377716064453, -0.6638756394386292, -0.013621300458908081, -1.2098640203475952, -0.2526472210884094, 0.3021271228790283, -0.3508892059326172, -0.41445136070251465, -0.6223002672195435, -0.2594184875488281, 0.21983441710472107, -0.2855796217918396, -0.43284085392951965, -0.13768057525157928, 0.35537299513816833, 0.1035536676645279, 0.31796473264694214, 0.9844129085540771, 0.7001397609710693, 0.048839278519153595, 0.20559780299663544, 0.6352879405021667, 0.14016562700271606, 1.2014597654342651, -0.11359082162380219, -0.20849649608135223, -1.0028176307678223, 0.19701550900936127, 0.9017731547355652, 0.6394394040107727, -1.2850475311279297, 0.9517170786857605, -0.04118668660521507, -0.43906158208847046, 0.9570927619934082, 0.09719033539295197, 0.12980899214744568, -0.5745938420295715, -0.2429705411195755, -0.5466824769973755, 0.13342897593975067, 0.6997718214988708, -0.447855681180954, 0.3832058906555176, 0.9722095727920532, 0.056789979338645935, -0.2810145318508148, 0.06274599581956863, -0.2891654670238495, 0.34135356545448303, -1.1191195249557495, 0.2565472424030304, -0.8389937877655029, -1.228116750717163, -0.4191000163555145, 0.49484536051750183, -0.16875682771205902, -1.1354339122772217, -0.1810372769832611, -0.5496671199798584, -0.597173810005188, 0.5830323100090027, -0.21547767519950867, 0.32224351167678833, -0.5657260417938232, -0.8873909115791321, -1.006453514099121, -0.04246135801076889, 0.29410767555236816, -0.3762072026729584, 0.27102261781692505, -0.2532140016555786, 0.009439460933208466, -0.37906613945961, 0.2458725869655609, 0.8279971480369568, -0.11616241931915283, 0.4259922504425049], "9030c3b5-ba90-48a4-99dd-08c955bacadd": [-0.12446937710046768, 0.09124480187892914, -0.3686874806880951, 0.12550640106201172, 0.6339041590690613, -0.05670757591724396, 0.7303268313407898, 0.5842411518096924, -0.02531924843788147, -0.6166934967041016, -0.4735261797904968, -0.46873563528060913, -0.777666449546814, 0.4004735052585602, 0.3518540859222412, 0.8720437288284302, 0.7030162215232849, 0.0063513703644275665, -0.07544273138046265, 0.08276655524969101, 0.20246849954128265, 0.38293468952178955, -0.016984112560749054, 0.8146809339523315, 0.11551603674888611, 0.03774448484182358, 0.37824511528015137, -0.023873988538980484, -1.5513825416564941, -0.0668499618768692, 0.0896482989192009, -0.20012705028057098, -0.02305636927485466, -0.25588077306747437, 0.0791965126991272, -0.19278869032859802, -0.7652365565299988, -0.32687312364578247, 0.07157041132450104, -0.2731378674507141, -0.9467934370040894, -0.41038596630096436, -0.10298136621713638, 0.18141533434391022, -0.5952784419059753, -0.08328722417354584, -0.9705354571342468, 0.3430812656879425, -0.8718222379684448, 0.12932416796684265, -1.2950868606567383, 0.14588086307048798, 0.1506747603416443, 0.17951805889606476, 0.534576416015625, 0.6734237670898438, -0.15303000807762146, -0.709827184677124, -0.17921961843967438, -0.7247673869132996, 0.6072643399238586, -0.16001734137535095, 0.4445144236087799, 0.031354594975709915, 0.8359867334365845, -0.8114460706710815, -0.04592502862215042, 0.7102031707763672, -1.2668988704681396, -0.6436310410499573, 0.014848846942186356, 0.18333259224891663, 0.5317818522453308, 0.10546678304672241, 0.6723294854164124, -0.22767654061317444, -0.03895697742700577, 0.6925342679023743, 0.9500433206558228, 0.8710994720458984, 0.15981611609458923, 0.563977837562561, 0.03789541870355606, 1.1070177555084229, -0.07321690768003464, -0.42378097772598267, -0.4769190847873688, -0.6170272827148438, -0.576501727104187, 0.8525963425636292, -0.5343425869941711, -0.5266169309616089, 0.9385955929756165, 0.7009823322296143, 0.441295325756073, -0.09290695190429688, 0.6043061017990112, 0.16419954597949982, 0.47381022572517395, 0.10166003555059433, -0.8431139588356018, -0.6250946521759033, -0.009301844984292984, 0.31950297951698303, -1.298034906387329, -0.7741708159446716, -0.43639805912971497, -0.06496135145425797, 0.36331021785736084, 0.1989731639623642, -0.0773085206747055, -0.548422634601593, -0.28319743275642395, -0.057420168071985245, -0.9141512513160706, 1.421732783317566, 0.3733867108821869, 0.06604880839586258, -0.10046149045228958, -0.3128250539302826, 1.0252466201782227, 0.9993842244148254, 0.4484966993331909, 1.406738519668579, 0.30747655034065247, 0.9095510244369507, 0.0331413634121418, 0.40120601654052734, -0.44433245062828064, -1.2318637371063232, 0.3726508617401123, 1.0250802040100098, 0.11508026719093323, -0.22270527482032776, -0.3320862054824829, -0.42670494318008423, 0.03764164820313454, 0.06591717898845673, 0.3255062699317932, -0.3244320750236511, -0.21546821296215057, -0.37228697538375854, 0.3819153606891632, -0.2393617480993271, 0.7663237452507019, -0.19719406962394714, -0.11240166425704956, -0.8204165101051331, -0.25697433948516846, 0.7837046980857849, -0.08550025522708893, 0.33801376819610596, 0.6374288201332092, -0.8916942477226257, 0.3336681127548218, 0.8938390612602234, 0.27660998702049255, 0.24391388893127441, -1.0950980186462402, 1.026761531829834, 0.7401452660560608, -0.038343608379364014, -0.5435498952865601, 0.15261277556419373, -0.18717780709266663, -0.22885265946388245, 0.5653312802314758, -0.3669945299625397, 0.3301817774772644, 0.11057624220848083, -0.5843563079833984, -1.1612616777420044, 1.148903727531433, -0.22761376202106476, -0.10769736021757126, 0.3126812279224396, 1.4671893119812012, 0.20062005519866943, 0.0858309417963028, -0.26089125871658325, -1.1082770824432373, 1.0333645343780518, -0.40518811345100403, -0.5842111706733704, -0.49817198514938354, -0.4117344915866852, 1.5024207830429077, -0.1829405426979065, -0.23351150751113892, 0.05118131265044212, -1.3573939800262451, -1.3932424783706665, -0.34484151005744934, 0.1036098301410675, 1.1828134059906006, -0.10891668498516083, -0.4918613135814667, 0.07906436920166016, -0.07158096879720688, 0.6861984729766846, 0.026608362793922424, 0.28159287571907043, 0.22256717085838318, -0.994867205619812, -1.0251305103302002, 1.0763574838638306, 0.7116210460662842, -0.20520547032356262, 0.16824764013290405, -0.0057465555146336555, 0.24125555157661438, -0.011027518659830093, 0.5360345840454102, -0.46186399459838867, 0.7510957717895508, 0.051328495144844055, 0.2197834700345993, -0.8261429071426392, 0.7948415279388428, -1.188037633895874, 0.21116062998771667, -0.20854362845420837, -0.7234888076782227, 0.5553056597709656, -0.13133592903614044, 1.2883554697036743, 1.152496337890625, -0.5020971298217773, -0.06476817280054092, 0.4956711232662201, 0.37129658460617065, -0.2927537262439728, 0.29401615262031555, 0.24243178963661194, -0.21448904275894165, -0.16558487713336945, 0.06623899936676025, -0.4830241799354553, 0.9029993414878845, -0.7527968287467957, 0.410260409116745, 1.0841230154037476, -0.32690954208374023, 0.5752866268157959, 0.41204941272735596, -0.0331401489675045, 0.1158887967467308, -0.1416785567998886, -0.6789831519126892, 0.11333340406417847, -0.5400592088699341, -0.5045510530471802, 0.6376806497573853, -0.6630220413208008, 0.5572112798690796, -0.38858532905578613, -0.594014048576355, -0.005950313061475754, 0.8392645120620728, 0.8070777058601379, -0.5591211915016174, 0.7004349827766418, 0.4063417315483093, 0.10996055603027344, 0.020346015691757202, -1.3018008470535278, -0.9321161508560181, -0.09050028026103973, 0.8073631525039673, 0.32155197858810425, 0.40250712633132935, -0.24717727303504944, -0.3550184369087219, -0.41001930832862854, -0.3524309992790222, -0.36221447587013245, 0.9309746026992798, 0.24198724329471588, 0.337420254945755, -0.9080020189285278, -0.42567357420921326, 1.1353055238723755, -1.1019868850708008, -0.8616349697113037, -0.12612199783325195, -0.20281854271888733, 0.5573890209197998, -0.3719252347946167, -0.20597834885120392, 0.2634868025779724, 0.528193473815918, 0.6729023456573486, -0.7228419184684753, 0.3694455325603485, 1.7272404432296753, 0.5606452226638794, 0.5856427550315857, 0.3861492872238159, 0.32008498907089233, 0.18466107547283173, 0.03504571318626404, 0.5547995567321777, 0.5026708245277405, -0.13427025079727173, -0.3634827435016632, 0.0013516321778297424, -0.3629101514816284, -0.786272406578064, -4.293156623840332, 0.18217810988426208, -0.2560729384422302, -0.7089745998382568, 0.37987858057022095, 0.14547167718410492, 0.08635760843753815, -0.611732006072998, -0.7613381147384644, 0.04015018418431282, -0.2550514340400696, 0.025720447301864624, 0.3606889545917511, 0.1406669318675995, 0.05586951598525047, 0.11575470119714737, -0.24875834584236145, -0.7008596658706665, -0.32422706484794617, 0.23411723971366882, -0.30555665493011475, -1.0693092346191406, -0.12396465241909027, -0.15179485082626343, 0.4742727279663086, 0.6350562572479248, -0.9951325058937073, 1.435626745223999, -0.6315267086029053, -0.41424810886383057, 0.5002775192260742, -0.6752127408981323, -0.4325837194919586, -0.1818544715642929, 0.16232939064502716, -0.7240987420082092, 0.5428371429443359, -0.2713087201118469, -0.17811015248298645, -0.2679561376571655, -0.6703070998191833, -1.009580373764038, 0.20309597253799438, -0.5631511211395264, 0.7995748519897461, -0.3839462101459503, -0.46338069438934326, -0.47825682163238525, -0.08377526700496674, 0.664278507232666, 0.15153604745864868, -0.3240496516227722, 0.24659103155136108, 0.3687848150730133, -0.05186888575553894, -0.5452697277069092, 0.23316723108291626, -0.09406720101833344, -0.6475012898445129, -0.3023942708969116, 0.2025020569562912, -0.8571777939796448, -0.3598775267601013, -0.772682249546051, -0.09102773666381836, -0.5902872681617737, -0.7757605910301208, -0.6362425684928894, 0.9828428626060486, 0.7517967820167542, -0.39515429735183716, 0.6085250973701477, -0.371815025806427, -1.3780163526535034, -0.1594063937664032, -0.25895050168037415, -0.6182167530059814, -0.2503945827484131, -0.12175661325454712, 0.03183082118630409, -0.5285282731056213, -0.39671218395233154, 0.04171184450387955, 0.46525901556015015, -0.26045528054237366, -0.8189127445220947, 0.4052978456020355, -0.7210130095481873, -0.49339643120765686, -0.22362427413463593, 1.0178284645080566, -0.3577861487865448, -0.0952857956290245, -0.47169268131256104, 0.373818963766098, 0.3888695240020752, 0.028310831636190414, -0.42089998722076416, 0.3330625295639038, 0.18513649702072144, 0.7119063138961792, -0.5037835240364075, 0.22100873291492462, -0.2742548882961273, -0.13947242498397827, 0.07047255337238312, -0.6662107110023499, -0.18051104247570038, 0.3341182768344879, 0.1665254831314087, 0.041953567415475845, -0.05617447942495346, 0.47438085079193115, -0.32095810770988464, -0.1544649749994278, -0.0933755487203598, 0.11760861426591873, 0.5723146796226501, 0.4739808142185211, 0.05278468504548073, -0.7060880064964294, 0.49521559476852417, -0.660030722618103, -0.3697024881839752, -1.6235129833221436, 0.10125096887350082, 0.1636153608560562, 0.031404800713062286, 0.3686600625514984, 0.07187660038471222, -0.017052169889211655, -0.11151622235774994, 0.49081581830978394, -0.12773993611335754, 0.5488600134849548, -0.39603811502456665, -0.6447640061378479, -0.2931748926639557, 0.8482496738433838, -0.33484071493148804, 0.18305334448814392, 0.16389034688472748, 0.3813836872577667, 0.4349704086780548, 0.5563441514968872, 0.6874738335609436, -0.8296321034431458, 0.3482453525066376, -0.1526518166065216, 0.048382893204689026, -0.1102997362613678, -0.24141383171081543, 0.6497248411178589, -0.7061365842819214, -0.23758098483085632, -0.8513814210891724, 0.4751451909542084, 0.06285060942173004, 0.025935940444469452, -0.5464836359024048, -0.03421241044998169, -0.8464142680168152, -0.09829708188772202, 0.04372679442167282, -0.40221017599105835, 1.1310755014419556, -0.12466564774513245, -0.13356351852416992, -0.33190909028053284, -0.1325705349445343, 0.7008706331253052, 0.025888517498970032, -0.830277144908905, 0.2044629007577896, -0.10135533660650253, 0.6182651519775391, 0.19725653529167175, 0.08456997573375702, 0.03297498822212219, 0.2817499041557312, -0.04364347457885742, -0.04976459592580795, 0.8016397356987, 0.5493887662887573, 0.705498218536377, -0.15099503099918365, 0.4442019462585449, -0.14146491885185242, -0.23199009895324707, -0.2989524304866791, 0.3053264915943146, 0.13265343010425568, -0.2608083486557007, 0.2638310194015503, -0.9908405542373657, -1.3074955940246582, 0.3593142032623291, 0.20235969126224518, 0.4179205894470215, -0.3082275688648224, -0.37966814637184143, 0.08351380378007889, -0.3440663814544678, 0.49383533000946045, 0.39792707562446594, -1.1978209018707275, 0.625404953956604, 0.44185489416122437, -0.31034326553344727, 0.3783254325389862, 0.03083883225917816, -0.5843052864074707, -0.8234655857086182, 0.09260661154985428, 0.1929350346326828, -1.0688598155975342, -0.36073336005210876, -0.11974918097257614, -0.008000610396265984, -0.046731289476156235, 0.6535261869430542, 0.46800678968429565, 0.15726810693740845, -0.1537960171699524, -0.6592516899108887, 0.7024073004722595, -0.07439448684453964, -0.03376183286309242, 0.5446481704711914, -0.6920132637023926, 0.5000089406967163, -0.3187679052352905, 0.5339874029159546, 0.9324849843978882, 0.05800922214984894, 0.1297570765018463, -0.7782817482948303, 0.23197942972183228, -0.22586359083652496, 1.1372302770614624, 0.4611395597457886, -0.04784095287322998, -0.16380716860294342, -0.8914151191711426, 0.28601381182670593, -0.06314480304718018, -0.08994381874799728, 0.04290717840194702, -0.3118332028388977, 0.7343211770057678, 0.4594174027442932, 0.7129162549972534, -0.47348552942276, -0.05649229511618614, 1.169518232345581, -0.7708781957626343, -0.9440417885780334, 0.25036296248435974, -0.5423227548599243, -0.0477907657623291, 0.6710748672485352, 0.005471751093864441, -0.8635537624359131, 0.9352219104766846, 1.1201070547103882, 0.35455381870269775, -0.3560727834701538, -0.7681463956832886, 0.4557822048664093, -0.5252628326416016, -0.4044279158115387, -1.1970661878585815, -0.09183070063591003, -0.128327414393425, 0.28626570105552673, -0.43366527557373047, -0.13107985258102417, 0.04520655423402786, 0.6890903115272522, -1.247598648071289, -0.5303723812103271, 0.7017789483070374, -0.20631015300750732, 0.5780979990959167, 0.12436029314994812, -1.0442456007003784, -0.16015543043613434, -0.10860680043697357, -0.3642005920410156, 0.08907996863126755, -0.2624787986278534, 0.8934600949287415, -0.28551942110061646, 0.13002198934555054, 0.022369176149368286, 0.0383809357881546, 0.7516952753067017, 0.932633101940155, -0.6501337289810181, 0.43007132411003113, -0.9229828119277954, 0.6569302082061768, 1.1082388162612915, 0.2978697717189789, -0.43643277883529663, 0.2048879861831665, -0.04255925863981247, -1.0396349430084229, 0.12842409312725067, 0.2986448407173157, 0.2675289511680603, -0.5505996346473694, 0.6946051120758057, 0.3375420868396759, -0.9602007269859314, -0.6990435719490051, 0.0004888772964477539, -0.5944775342941284, -0.3765711188316345, -0.1653110831975937, 0.3305900990962982, 0.3453401029109955, 0.6593238711357117, 0.4493086338043213, 0.2149183452129364, 1.3628281354904175, -0.40648218989372253, -0.09043681621551514, 0.5350193381309509, 1.304497480392456, 1.2650914192199707, 0.34198740124702454, -0.18634608387947083, 1.1672098636627197, -0.6606399416923523, -0.6221839189529419, 0.2356107234954834, -0.286824107170105, 0.2466159164905548, 0.11054931581020355, -0.2112160623073578, 1.0889064073562622, 0.554548978805542, 1.5522239208221436, -0.4211554229259491, 0.3520795702934265, -0.0018541961908340454, -0.3018760085105896, 0.7616480588912964, 0.451304167509079, -0.09579575061798096, 0.9451974630355835, -0.4526456892490387, -0.5386054515838623, -0.00693897157907486, 0.2624651789665222, 0.04148785024881363, 0.13619226217269897, -0.3927004933357239, -0.2841888666152954, -0.6594265699386597, 0.7602874040603638, 1.1197236776351929, -0.2114265263080597, 0.2621361315250397, -0.24373815953731537, 0.4991147518157959, -0.009899824857711792, 0.566861629486084, 0.007702145725488663, -0.26238319277763367, 0.06254162639379501, -0.7127197980880737, -0.13990874588489532, -0.10542144626379013, 0.055817440152168274, 0.7006164789199829, -0.3610381484031677, 0.09094907343387604, 0.14503228664398193, 0.29397666454315186, -0.2538526952266693, -0.9831241369247437, -0.6162642240524292, -0.06260989606380463, -1.1741639375686646, 0.2527342736721039, 0.32880592346191406, -0.6799389719963074, -0.7011247873306274, -0.7102960348129272, -0.44947105646133423, 0.10258738696575165, -0.5873262882232666, -0.5134828090667725, -0.5702298879623413, 0.2203902304172516, 0.3943743109703064, -0.06679441779851913, 1.0945501327514648, 0.9108871221542358, 0.042606182396411896, -0.03170185908675194, 0.44526833295822144, 0.2477576732635498, 1.1964187622070312, -0.08531676977872849, 0.46498286724090576, -1.5031054019927979, 0.6352053880691528, 0.858581006526947, 0.6354564428329468, -1.22958505153656, 0.6769128441810608, 0.06412695348262787, -0.685122013092041, 0.8347606062889099, 0.22386999428272247, 0.34287190437316895, -0.6576687693595886, -0.047137513756752014, -0.7613092064857483, -0.13031905889511108, 0.834011435508728, -0.5856013298034668, 0.7757968902587891, 1.0798782110214233, 0.3746350109577179, -0.6384965777397156, -0.17855216562747955, 0.05271885544061661, 0.350016713142395, -1.0583581924438477, 0.39691218733787537, -0.6665447354316711, -1.3769508600234985, -0.6542823910713196, 0.43994900584220886, -0.12059514224529266, -1.1161961555480957, 0.14723879098892212, -0.8125312328338623, -0.05939817428588867, 0.05596116557717323, -0.47327563166618347, 0.10680858790874481, -0.3467855155467987, -0.36288589239120483, -1.0565227270126343, 0.2967531383037567, 0.19024083018302917, -0.4295900762081146, 0.18049249053001404, -1.0144128799438477, 0.1977125108242035, -0.5983487963676453, -0.1653631031513214, 0.7107069492340088, -0.08246771991252899, 0.5205360054969788], "f60a00a0-3ba2-46c7-8cad-cd05df08c6af": [0.1497381180524826, 0.4276582896709442, -0.37381511926651, -0.044285841286182404, 0.9292570948600769, -0.31662407517433167, 0.42818814516067505, 0.5195761919021606, -0.13228124380111694, -0.6103870272636414, -0.22756077349185944, -0.7009626030921936, -0.7363510727882385, 0.5004677772521973, 0.3310917317867279, 0.8813714981079102, 0.6667762994766235, 0.07823848724365234, 0.036711037158966064, -0.06338144838809967, 0.1366628259420395, 0.2513696253299713, -0.3197966516017914, 0.8163341879844666, 0.34478944540023804, 0.14104405045509338, 0.4467155635356903, -0.2283773124217987, -1.2275830507278442, 0.3673991858959198, 0.32162997126579285, -0.454178124666214, 0.1518416404724121, -0.24551445245742798, -0.11868023872375488, -0.5357286930084229, -0.7148115038871765, -0.5138813257217407, 0.18240895867347717, -0.3364982604980469, -0.5029529333114624, -0.6468184590339661, -0.11768282949924469, 0.20765340328216553, -0.9651387333869934, 0.09848711639642715, -1.1858046054840088, 0.6330811381340027, -0.7222455143928528, 0.37100595235824585, -1.4701738357543945, 0.49289944767951965, 0.1001817062497139, 0.14639067649841309, 0.4836919903755188, 0.9357579946517944, 0.10876971483230591, -0.4909389615058899, -0.017932524904608727, -0.5016894340515137, -0.06898167729377747, 0.09301280975341797, 0.7964076995849609, 0.13087962567806244, 0.5185848474502563, -0.7963556051254272, 0.023886598646640778, 0.4357527196407318, -1.3324586153030396, -0.6524146795272827, -0.12465692311525345, 0.06437751650810242, 0.1573488861322403, -0.369336873292923, 0.6585478782653809, -0.4587392210960388, 0.020975373685359955, 0.08001047372817993, 0.8815041184425354, 0.8713060021400452, 0.0029639415442943573, 0.47684288024902344, -0.3985496461391449, 1.082896113395691, -0.03637196123600006, -0.2990354895591736, -0.7619893550872803, -0.24099543690681458, -0.6578250527381897, 0.8695782423019409, -0.5840071439743042, -0.18024641275405884, 0.8392396569252014, 0.7968641519546509, 0.4967572093009949, -0.36810430884361267, 0.9390270709991455, 0.2344757318496704, 0.5111126899719238, 0.10142087191343307, -0.9591277837753296, -1.0068703889846802, -0.12937290966510773, 0.2459583282470703, -1.0215630531311035, -0.5779283046722412, -0.823672890663147, -0.09147438406944275, -0.12462005764245987, 0.19389255344867706, -0.15658098459243774, -0.9053133726119995, -0.4195612370967865, -0.03441166132688522, -0.7739832401275635, 1.5178035497665405, 0.438288152217865, 0.29462552070617676, -0.4654604196548462, -0.03589871898293495, 0.9532005190849304, 1.235445499420166, 0.8909788727760315, 1.2607730627059937, 0.08180716633796692, 0.7074807286262512, 0.39195773005485535, 1.0885556936264038, -0.5882881879806519, -1.1636133193969727, 0.45638662576675415, 1.035951852798462, 0.1879851222038269, -0.06482786685228348, -0.3287769854068756, -0.4010900855064392, -0.07305783778429031, -0.006477020680904388, 0.25144338607788086, -0.24092556536197662, 0.2924368679523468, -0.348538339138031, 0.5874007940292358, -0.003331044688820839, 0.6198336482048035, 0.16702821850776672, 0.07480420172214508, -1.033709168434143, -0.293189138174057, 0.731707751750946, 0.4441135823726654, 0.7351707816123962, 0.5532205104827881, -0.8394174575805664, 0.29639923572540283, 1.0501044988632202, -0.05769040435552597, 0.01816658303141594, -1.2346941232681274, 0.7735809683799744, 0.8047292828559875, -0.18145155906677246, -0.4635254740715027, -0.09138825535774231, -0.5366097688674927, -0.1766565889120102, 0.388357013463974, -0.15872077643871307, 0.25071626901626587, 0.6022166013717651, -0.3675677180290222, -0.569564700126648, 0.8831356763839722, -0.266702264547348, -0.38879919052124023, 0.3333907127380371, 1.207663655281067, 0.3022615313529968, 0.4688742160797119, 0.05912719666957855, -1.0256649255752563, 0.8499038219451904, -0.257146418094635, -0.33978271484375, -0.6397075057029724, -0.31049394607543945, 1.3508033752441406, -0.22420760989189148, -0.4964466094970703, 0.0030305348336696625, -1.281158447265625, -0.6648429036140442, -0.11787087470293045, 0.46766000986099243, 1.0706355571746826, -0.010284677147865295, -0.3212190568447113, 0.27268728613853455, 0.1514606475830078, 0.7155346274375916, -0.05283292755484581, 0.3384331464767456, -0.39520207047462463, -1.1246016025543213, -0.983215868473053, 0.7881315350532532, 0.3406342566013336, -0.1449921578168869, 0.32546165585517883, -0.11463875323534012, 0.10077714920043945, 0.04940450191497803, 0.8730443120002747, -0.40600651502609253, 0.558501124382019, 0.4273544251918793, 0.3484152555465698, -0.6216686964035034, 0.9813499450683594, -1.0611720085144043, 0.05061740800738335, -0.3722369968891144, -1.0459957122802734, 0.5092942714691162, -0.1769903302192688, 1.4883003234863281, 0.8247897028923035, -0.7894617319107056, -0.43886131048202515, 0.6026841998100281, 0.40369749069213867, -0.37273943424224854, 0.18136745691299438, 0.5790485739707947, -0.14714206755161285, -0.599048912525177, -0.18614515662193298, -0.32164889574050903, 1.009831190109253, -0.8318490982055664, 0.43320736289024353, 1.337409496307373, -0.4261743128299713, 0.7627274394035339, 0.522874116897583, -0.10147712379693985, 0.5656487345695496, -0.3304259181022644, -0.682996928691864, 0.03176376223564148, -0.5376278162002563, -0.6018334627151489, 0.6338616609573364, -0.7354061603546143, 1.057701826095581, -0.8477522730827332, -0.9222683906555176, 0.09396646916866302, 0.6745936870574951, 0.7461965680122375, -0.5375072956085205, 0.6798337697982788, 0.5951720476150513, -0.19310829043388367, -0.24764575064182281, -1.8041765689849854, -0.6719635725021362, -0.31553542613983154, 0.47384530305862427, 0.09812551736831665, 0.10806409269571304, -0.14129620790481567, -0.15557004511356354, -0.3344157040119171, -0.6236184239387512, -0.3279885947704315, 0.758838951587677, 0.416338711977005, -0.1137884184718132, -0.8739534020423889, -0.49306079745292664, 1.3186368942260742, -1.1538174152374268, -1.3602880239486694, -0.2940066158771515, -0.6698285341262817, 0.14226070046424866, -0.5892623662948608, -0.06399869173765182, 0.3772223889827728, 0.3535796105861664, 0.42505884170532227, -0.6247406005859375, 0.41571420431137085, 1.5769559144973755, 0.43002232909202576, 0.4417608976364136, 0.35612383484840393, 0.5138709545135498, -0.18366512656211853, 0.0726449191570282, 0.6239339113235474, 0.41595959663391113, -0.116553895175457, -0.6358348727226257, -0.13606569170951843, -0.2682146728038788, -0.6014764904975891, -4.1651740074157715, 0.2396281510591507, -0.21206623315811157, -0.5695263147354126, 0.21859851479530334, 0.2773072421550751, 0.25142693519592285, -0.5996871590614319, -0.6421001553535461, 0.254878968000412, -0.608167290687561, -0.08937793970108032, 0.48896485567092896, 0.5612449049949646, 0.21933259069919586, 0.579266369342804, -0.08217830210924149, -0.8100724816322327, 0.050564318895339966, 0.4550909399986267, -0.06693831831216812, -1.4276636838912964, -0.13592511415481567, 0.2729342579841614, 0.025824688374996185, 0.7477267384529114, -1.338405728340149, 0.9869247674942017, -0.8547818660736084, -0.3329404890537262, 0.4002336263656616, -0.522145688533783, -0.4633365273475647, -0.2778836190700531, 0.034378476440906525, -0.7304263710975647, 0.6772633790969849, -0.14117664098739624, -0.18088597059249878, -0.2132824808359146, -0.8552698493003845, -0.3906835913658142, -0.24529272317886353, -0.4406602084636688, 0.8192272782325745, -0.18993274867534637, -0.39322710037231445, -0.24227374792099, 0.08912196755409241, 0.6021975874900818, -0.16456186771392822, -0.21184903383255005, 0.09111708402633667, 0.0794481560587883, -0.4162466526031494, -0.8535414934158325, 0.26980116963386536, 0.12571430206298828, -0.41932812333106995, -0.2838274836540222, 0.08492310345172882, -0.7994986176490784, -0.2962970733642578, -0.7582149505615234, -0.2562519907951355, -0.46504896879196167, -1.0046288967132568, -0.6156572699546814, 0.6025694012641907, 0.6472895741462708, -0.4169793128967285, 0.38636237382888794, -0.1270952969789505, -1.5975136756896973, 0.20161403715610504, -0.5812604427337646, -0.5610032081604004, -0.4299696087837219, -0.006628233939409256, 0.4770766496658325, -0.16803061962127686, -0.2455361783504486, -0.062478989362716675, 0.160780131816864, -0.3168944716453552, -0.5307717323303223, -0.15818162262439728, -0.7076834440231323, -0.8772412538528442, -0.6451137661933899, 0.9920122623443604, -0.44290924072265625, 0.06735210120677948, -0.02150607854127884, 0.5154323577880859, 0.5257266759872437, 0.3920355439186096, -0.3935973644256592, 0.5885062217712402, -0.017471306025981903, 0.38969093561172485, -0.36700499057769775, 0.3792930245399475, -0.5771880149841309, -0.014283915981650352, 0.0086006885394454, -0.6718453168869019, 0.05747994780540466, 0.1163858100771904, -0.019611187279224396, 0.24451929330825806, -0.5137654542922974, 0.34394371509552, -0.6208823323249817, 0.17026975750923157, -0.286642849445343, 0.2469458431005478, 0.653689980506897, 0.4647575616836548, 0.1335601806640625, -0.620265007019043, 0.3275776207447052, -0.7600809931755066, -0.8108766078948975, -1.328922986984253, 0.1950943022966385, -0.13733337819576263, -0.19723646342754364, 0.1284412145614624, 0.13695912063121796, -0.4594280421733856, 0.16921091079711914, 0.35016193985939026, 0.13284064829349518, 0.7818655371665955, -0.2907627820968628, -0.4424619972705841, -0.22888337075710297, 1.1720175743103027, -0.13702036440372467, -0.0910119041800499, 0.438628613948822, 0.4046035706996918, 0.6416063904762268, 0.8099168539047241, 0.5678242444992065, -0.4449094235897064, 0.07263445854187012, 0.049432724714279175, 0.1870860904455185, 0.015145393088459969, -0.341469943523407, 0.6566329598426819, -0.5740218162536621, 0.03665807843208313, -0.6163129806518555, 0.40812087059020996, -0.26487553119659424, -0.14627045392990112, -0.8907008171081543, 0.7210617661476135, -0.45005273818969727, -0.6915656924247742, -0.10897667706012726, -0.1261068880558014, 1.2189831733703613, -0.4794284999370575, 0.22710752487182617, -0.12379592657089233, -0.06673018634319305, 0.8208719491958618, 0.041763752698898315, -0.5622708797454834, 0.7964745759963989, -0.04619211703538895, 0.8758885264396667, 0.30579736828804016, 0.32680797576904297, -0.03958508372306824, 0.11043133586645126, -0.37319135665893555, -0.25800031423568726, 0.42447078227996826, 0.46734002232551575, 0.6584991812705994, -0.17667025327682495, 0.2767353653907776, -0.07516427338123322, -0.6652237176895142, -0.15071019530296326, 0.5731334686279297, 0.09444640576839447, -0.044676072895526886, 0.22996439039707184, -0.9987057447433472, -1.4568766355514526, 0.007168032228946686, 0.294394850730896, 0.27739274501800537, -0.007999997586011887, -0.45139196515083313, -0.2252259999513626, -0.48393866419792175, 0.22065553069114685, 0.22526203095912933, -1.353076457977295, 0.8575088977813721, 0.19454339146614075, -0.2167820930480957, -0.052433036267757416, -0.0687347799539566, -0.7162246108055115, -0.7950057983398438, 0.06145024672150612, 0.04544459655880928, -1.0246306657791138, 0.005507532507181168, -0.20440185070037842, 0.07379904389381409, -0.29015204310417175, 0.33501437306404114, 0.7336358428001404, -0.00576348602771759, -0.17302264273166656, -0.6957236528396606, 0.5197550654411316, -0.25408947467803955, -0.014640673995018005, 0.31587111949920654, -0.4951227903366089, 0.3272431790828705, -0.4285978674888611, 0.4431855380535126, 0.7635721564292908, 0.30501997470855713, 0.1599387675523758, -0.4536467492580414, 0.6439746618270874, 0.22233396768569946, 1.095455527305603, 0.049729123711586, -0.1664813756942749, -0.4431735575199127, -0.8759252429008484, 0.16498643159866333, 0.16967643797397614, -0.4958065152168274, 0.13204792141914368, -0.22454038262367249, 0.7885280251502991, 0.24226674437522888, 0.45695960521698, -0.568188488483429, -0.01865455135703087, 1.1324913501739502, -0.7459709048271179, -0.8435463309288025, -0.1396091878414154, -0.3450523018836975, -0.14705681800842285, 0.49757635593414307, 0.24606695771217346, -0.8241467475891113, 1.42563796043396, 1.1455684900283813, 0.5460608005523682, -0.2436646819114685, -0.4957458972930908, 0.6404520273208618, -0.3288950026035309, -0.1739381104707718, -1.173464298248291, 0.15901468694210052, 0.6595985293388367, 0.2978813648223877, -0.13840752840042114, -0.45341789722442627, -0.06704683601856232, 0.6491217017173767, -0.9324260950088501, -0.64593905210495, 0.3692789077758789, 0.1746206283569336, 0.3899294137954712, 0.0376344732940197, -0.7615018486976624, -0.3214361071586609, -0.14712175726890564, -0.104856938123703, 0.2678977847099304, -0.5976465940475464, 1.0167914628982544, -0.38650238513946533, -0.11807189881801605, 0.3267446458339691, 0.15239673852920532, 0.5498176217079163, 1.1480246782302856, -0.9345258474349976, -0.03358817845582962, -0.545559287071228, 0.9281880259513855, 0.7795282602310181, 0.11906538903713226, -0.34698978066444397, 0.12346567958593369, 0.3963819742202759, -0.8928325176239014, 0.294034868478775, 0.399422287940979, -0.04806762933731079, -0.5013947486877441, 0.4913426339626312, 0.7162339687347412, -1.0479271411895752, -0.7177928686141968, 0.29815611243247986, -0.569003701210022, 0.03724588453769684, -0.0461077019572258, 0.6533704400062561, -0.025208815932273865, 1.0465679168701172, 0.2643892765045166, 0.4748876392841339, 1.5088073015213013, -0.24025578796863556, -0.4435344338417053, 0.737520694732666, 1.2384305000305176, 1.1420824527740479, 0.5039224624633789, 0.02639278769493103, 1.0495249032974243, -0.4578385055065155, -0.7836160063743591, 0.20564328134059906, -0.706933319568634, 0.15836763381958008, 0.2503095865249634, 0.34228694438934326, 0.9961003065109253, 0.3280719816684723, 1.499770164489746, -0.24265184998512268, 0.004777615889906883, -0.13026580214500427, -0.4592670798301697, 0.7748751640319824, 0.15211156010627747, -0.353866308927536, 1.0803709030151367, -0.5781311988830566, -0.5881876945495605, 0.32711368799209595, 0.4498785138130188, 0.00041475147008895874, -0.06606580317020416, -0.5908412933349609, -0.2739451229572296, -0.5865645408630371, 1.1443774700164795, 1.0305871963500977, -0.09108814597129822, 0.0019295569509267807, -0.06902734190225601, 0.4382789134979248, 0.13097649812698364, 0.31342384219169617, -0.1788787841796875, 0.02006884291768074, -0.08021494746208191, -0.5000972747802734, 0.12028421461582184, -0.10962989181280136, 0.19011391699314117, 0.3050007224082947, 0.03502817451953888, -0.07671910524368286, 0.0740504264831543, 0.8602341413497925, -0.4832667112350464, -1.0744924545288086, -0.8334484696388245, -0.019558481872081757, -1.1441607475280762, 0.162739098072052, 0.04013640433549881, -0.2833251953125, -0.4720611572265625, -0.8498592376708984, -0.5208559036254883, 0.430314838886261, -0.21468698978424072, -0.32732680439949036, -0.46834322810173035, 0.11412723362445831, 0.6186425089836121, 0.007304033264517784, 0.9021121859550476, 0.6741194725036621, -0.10799538344144821, -0.07260842621326447, 0.41791388392448425, 0.027656467631459236, 1.1181222200393677, -0.29537078738212585, 0.250294029712677, -1.4470109939575195, 0.6119264364242554, 0.8327549695968628, 0.7923393249511719, -1.3967845439910889, 0.7149866819381714, -0.232390359044075, -1.0050665140151978, 1.1270395517349243, 0.2333194762468338, 0.09120534360408783, -0.1723831295967102, -0.0824691653251648, -0.7970787882804871, 0.09897421300411224, 0.8915609121322632, -0.39847332239151, 0.5524901151657104, 0.6786725521087646, -0.2062378078699112, -0.334651380777359, 0.012024655938148499, -0.29292935132980347, 0.39385756850242615, -1.0400586128234863, 0.019748631864786148, -0.4709196090698242, -1.011749267578125, -0.3996559977531433, 0.6602586507797241, -0.28046855330467224, -0.7374529242515564, 0.10345911979675293, -0.3819276690483093, -0.24428072571754456, 0.28562065958976746, -0.46312713623046875, 0.04668499529361725, -0.680080771446228, -0.6812209486961365, -0.9935786128044128, 0.18088385462760925, 0.08114065229892731, -0.3862036168575287, 0.25305700302124023, -0.6538341045379639, -0.14001356065273285, -0.037876904010772705, 0.034357018768787384, 0.6356409192085266, -0.12266452610492706, 0.30860257148742676], "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17": [0.08822320401668549, 0.4308374524116516, -0.5114268660545349, -0.20929083228111267, 0.7447338700294495, -0.4910426437854767, 0.4932709038257599, 0.7073426246643066, -0.4362832009792328, -0.4309512972831726, -0.24559757113456726, -0.2949277460575104, -0.6205833554267883, 0.4135356545448303, 0.5885472297668457, 0.7569813132286072, 0.7043378949165344, -0.3197023272514343, -0.08626028895378113, -0.2100096493959427, 0.12836381793022156, -0.16995400190353394, -0.3898193836212158, 0.8420801162719727, 0.3430023193359375, 0.0690028965473175, 0.18476150929927826, 0.005510043818503618, -1.4819620847702026, 0.2152562439441681, 0.23611976206302643, -0.2577632665634155, 0.009944029152393341, 0.025087878108024597, 0.16605490446090698, -0.3504346013069153, -0.9526892304420471, -0.334665447473526, 0.323380708694458, -0.3149617314338684, -0.6731871366500854, -0.8982625603675842, -0.487576961517334, -0.0693134069442749, -0.7834358811378479, 0.09964701533317566, -0.957456648349762, 0.788702666759491, -0.9280846118927002, 0.25074848532676697, -1.3899890184402466, 0.3239520192146301, 0.052198924124240875, 0.5414232611656189, 0.4663066267967224, 0.9864971041679382, 0.02525698021054268, -0.8490537405014038, -0.04566248133778572, -0.47420182824134827, 0.2872201204299927, -0.4345366358757019, 0.6477928161621094, 0.09466377645730972, 0.37779343128204346, -0.5942659974098206, -0.05976720154285431, 0.5243040323257446, -1.2404659986495972, -0.9780755639076233, -0.06596557050943375, 0.5549729466438293, 0.047944217920303345, -0.3139614462852478, 0.4611316919326782, -0.37188902497291565, -0.36120542883872986, 0.09289021790027618, 0.9682707190513611, 0.8509619832038879, -0.14634273946285248, 0.28974175453186035, -0.06617942452430725, 1.0873684883117676, -0.540642499923706, -0.1830461323261261, -0.6907547116279602, -0.19135938584804535, -0.5690826177597046, 0.6843088269233704, -0.4437543749809265, -0.26599547266960144, 0.8709625005722046, 0.6660052537918091, 0.42097780108451843, -0.36164912581443787, 0.655945360660553, 0.36376264691352844, 0.586701512336731, -0.008622273802757263, -0.5617007613182068, -1.094536304473877, -0.026597559452056885, -0.14756688475608826, -1.1700990200042725, -0.7094389796257019, -0.7441484928131104, 0.05358387157320976, 0.10700714588165283, 0.2821544408798218, -0.08008240908384323, -1.0011671781539917, -0.5131832361221313, -0.23570159077644348, -0.758183479309082, 1.2844204902648926, 0.5116931200027466, 0.288972944021225, -0.39076924324035645, 0.002857942134141922, 0.9940059781074524, 1.052506446838379, 0.5494384765625, 1.2087613344192505, 0.22760538756847382, 0.7652771472930908, 0.47172632813453674, 0.7639668583869934, -0.40022528171539307, -1.096764326095581, 0.2838178873062134, 0.8438461422920227, 0.2008146494626999, -0.07474611699581146, -0.34173455834388733, -0.35344207286834717, -0.026899881660938263, 0.3077939450740814, 0.3787686824798584, -0.6010545492172241, -0.25197461247444153, -0.4211394190788269, 0.3607201874256134, -0.003989076241850853, 0.732460618019104, 0.20492488145828247, 0.16641104221343994, -1.105963945388794, -0.13010123372077942, 0.5735458135604858, 0.4049132168292999, 0.4077213704586029, 0.7552499771118164, -0.7779208421707153, 0.12829899787902832, 0.9161274433135986, -0.26990824937820435, 0.3114056885242462, -1.2037798166275024, 0.7509337067604065, 0.6337472796440125, -0.07564551383256912, -0.606410562992096, -0.04094681888818741, -0.36607426404953003, -0.1962927281856537, 0.3940127491950989, -0.21308450400829315, 0.09865729510784149, 0.3084680736064911, -0.4849131405353546, -0.7789430022239685, 0.7700240612030029, -0.3228316605091095, -0.3773922920227051, 0.48060762882232666, 1.2164126634597778, 0.2795478403568268, 0.05345149338245392, -0.3528566360473633, -0.9824693202972412, 0.9169910550117493, 0.062398504465818405, -0.6227319240570068, -0.21214468777179718, -0.31268155574798584, 1.6029231548309326, -0.10486683994531631, -0.3943236470222473, 0.11574240773916245, -1.292270541191101, -0.6616169810295105, -0.1638023406267166, 0.6234462261199951, 1.0106804370880127, -0.20279496908187866, -0.2992340922355652, 0.16670185327529907, 0.28081032633781433, 0.7682716846466064, -0.1097189337015152, 0.31211408972740173, -0.20271608233451843, -1.0441620349884033, -1.094506025314331, 0.7301473617553711, 0.6871488690376282, 0.012534067034721375, 0.20209284126758575, 0.062360476702451706, 0.10763569176197052, -0.15516822040081024, 0.7208673357963562, -0.3919299840927124, 0.9191612601280212, 0.3597687780857086, 0.5774286985397339, -0.7348019480705261, 0.842808187007904, -1.3229186534881592, 0.6145874261856079, -0.6897749900817871, -1.287543773651123, 0.45990270376205444, -0.25129207968711853, 1.6604034900665283, 1.0048222541809082, -0.7200074195861816, -0.3142125904560089, 0.6320874691009521, 0.43161094188690186, -0.3178524971008301, 0.2676033675670624, 0.4820484519004822, -0.21502143144607544, -0.2657616138458252, 0.049714189022779465, -0.34437015652656555, 0.8431214094161987, -0.725997805595398, 0.582517147064209, 1.2190908193588257, 0.02998354472219944, 0.5638430118560791, 0.35014596581459045, 0.0885947197675705, 0.06342904269695282, -0.5272238254547119, -0.8172634840011597, -0.04271923750638962, -0.5035133361816406, -0.5249783992767334, 0.5243475437164307, -0.5806751251220703, 0.9469426870346069, -0.3457304835319519, -1.0797398090362549, 0.13402093946933746, 0.8026837110519409, 0.777133047580719, -0.45201098918914795, 0.8492431044578552, 0.8143450021743774, -0.08402831852436066, -0.5342457294464111, -1.8132903575897217, -0.6293061971664429, -0.13016703724861145, 0.4083394706249237, 0.27848121523857117, 0.31347304582595825, -0.1612885594367981, -0.20585009455680847, -0.13483229279518127, -0.4967234134674072, -0.3998035788536072, 1.2459162473678589, 0.3153688609600067, -0.002323828637599945, -0.8198415040969849, -0.5568135976791382, 1.0732077360153198, -0.9269255995750427, -1.2280020713806152, -0.45592814683914185, -0.46788325905799866, 0.4331100285053253, -0.5237482786178589, -0.14838214218616486, 0.467040479183197, 0.48696085810661316, 0.5918461084365845, -0.4671870172023773, 0.33483684062957764, 1.2922276258468628, 0.4994181990623474, 0.3362739682197571, 0.2658030688762665, 0.40822646021842957, 0.07904413342475891, 0.12458790838718414, 0.7440043687820435, 0.45292264223098755, -0.2586289048194885, -0.32701998949050903, -0.23867668211460114, -0.43927037715911865, -0.40443184971809387, -4.219783306121826, 0.3082507252693176, -0.13627979159355164, -0.5990361571311951, 0.05148138478398323, 0.4762626886367798, 0.15404334664344788, -0.7276171445846558, -0.6279338002204895, 0.0890234112739563, -0.13023781776428223, -0.10857787728309631, 0.4771936237812042, 0.3402985632419586, 0.20777836441993713, 0.48130619525909424, 0.007022187113761902, -0.9144799709320068, 0.19204136729240417, 0.44198593497276306, -0.0961371511220932, -1.299106478691101, -0.1251170039176941, 0.049867697060108185, 0.1633911430835724, 0.4271654486656189, -0.9347277879714966, 1.069474697113037, -0.7714570164680481, -0.3852290213108063, 0.38932305574417114, -0.5550580024719238, -0.15943996608257294, -0.23877432942390442, 0.08872842788696289, -0.8318319916725159, 0.6610243916511536, -0.051381081342697144, 0.17245495319366455, -0.33035120368003845, -0.6799048185348511, -0.5625274181365967, -0.2735394835472107, -0.7661848068237305, 0.8835945129394531, 0.03514331579208374, -0.43394967913627625, -0.12745146453380585, 0.4250510036945343, 0.6934101581573486, -0.11942209303379059, -0.5260290503501892, -0.2076398879289627, 0.15543726086616516, -0.0721670612692833, -0.47426658868789673, -0.10766426473855972, -0.014126144349575043, -0.3206074833869934, 0.028496041893959045, 0.2018774300813675, -0.7403938174247742, -0.42643600702285767, -0.9050126671791077, -0.21700403094291687, -0.507085919380188, -0.9206730127334595, -0.9704475402832031, 0.7226015329360962, 1.060823678970337, -0.464593768119812, 0.5751674771308899, -0.15840892493724823, -1.624699354171753, -0.009004391729831696, -0.5245618224143982, -0.5353550314903259, -0.42956507205963135, -0.18715378642082214, 0.276172935962677, -0.26890385150909424, -0.24867412447929382, 0.02947753667831421, 0.2741062641143799, -0.34565165638923645, -1.0459785461425781, -0.027802281081676483, -0.7646440863609314, -0.8097180724143982, -0.7162569165229797, 0.8065670728683472, -0.6229941844940186, -0.11526940017938614, 0.4061078429222107, 0.32700014114379883, 0.2984515428543091, 0.19124658405780792, -0.5148006081581116, 0.4354728162288666, 0.11801609396934509, 0.7043947577476501, -0.7311062812805176, 0.16528871655464172, -0.4827721416950226, 0.1605399250984192, 0.05511946231126785, -0.5889935493469238, -0.12654036283493042, 0.29308193922042847, -0.07744689285755157, 0.32532358169555664, -0.22579626739025116, 0.38814839720726013, -0.6904783844947815, 0.002398489974439144, -0.5361026525497437, 0.32270246744155884, 0.38172662258148193, 0.43052953481674194, -0.04070837050676346, -0.48264771699905396, 0.4816080927848816, -0.5594675540924072, -0.5166852474212646, -1.337580919265747, 0.17525829374790192, 0.09597183018922806, -0.1905294507741928, -0.05719227343797684, -0.2061641812324524, -0.6057404279708862, -0.1424272358417511, 0.6912655234336853, 0.11475037038326263, 0.6864829063415527, -0.31553301215171814, -0.34681230783462524, -0.2822217047214508, 0.7758559584617615, -0.11238662898540497, 0.29368406534194946, 0.10733727365732193, 0.32870709896087646, 0.5280368328094482, 0.6160075664520264, 0.5717253684997559, -0.6660007238388062, 0.4500899314880371, -0.4463696777820587, -0.14355064928531647, 0.09274549782276154, -0.2196653187274933, 0.2949742078781128, -0.5868209600448608, 0.3372742235660553, -0.6519131660461426, 0.7242305278778076, -0.1472044289112091, 0.06613096594810486, -0.9231305718421936, 0.41546764969825745, -0.406974732875824, -0.23108667135238647, -0.03838864713907242, -0.5353430509567261, 1.1721769571304321, -0.5091461539268494, 0.15474700927734375, 0.1012057363986969, -0.13123290240764618, 0.8016772866249084, 0.007737994194030762, -0.7710537910461426, 0.24986670911312103, -0.42691826820373535, 0.7612773776054382, 0.2995552122592926, 0.15350240468978882, -0.04222342371940613, 0.19888988137245178, -0.1290484070777893, -0.1418834626674652, 0.5621639490127563, 0.6778852343559265, 0.7409161925315857, 0.037376537919044495, 0.25668084621429443, -0.15360423922538757, -0.4499896466732025, 0.000762641429901123, 0.7289342284202576, 0.25507062673568726, -0.39773669838905334, 0.1140279471874237, -0.769906759262085, -1.2478747367858887, -0.08939041942358017, 0.1841261386871338, 0.7748655080795288, 0.22352822124958038, -0.33628690242767334, -0.2197338044643402, -0.1366170197725296, 0.06741239875555038, -0.17640134692192078, -1.2124040126800537, 0.7598972320556641, 0.18742811679840088, -0.39809995889663696, -0.026516005396842957, 0.10361185669898987, -0.5580408573150635, -0.6854689121246338, 0.27804034948349, 0.1327463984489441, -0.8745750784873962, -0.3371679484844208, -0.24586039781570435, 0.07275155931711197, -0.09222985059022903, 0.34019213914871216, 0.576452374458313, -0.20870259404182434, 0.012317866086959839, -0.7373740673065186, 0.8946182727813721, -0.2948072552680969, -0.07982271164655685, 0.5502498149871826, -0.34110426902770996, 0.41357895731925964, -0.47984033823013306, 0.24836647510528564, 0.9053220152854919, 0.1602911502122879, 0.36851733922958374, -0.5006163716316223, 0.5786700248718262, -0.028241988271474838, 1.2879252433776855, -0.029725966975092888, -0.3568122982978821, -0.36262670159339905, -0.8034375309944153, 0.5763659477233887, 0.3202880024909973, -0.289595365524292, 0.12621335685253143, -0.018973564729094505, 0.7324203848838806, 0.2095640003681183, 0.7523882985115051, -0.18741163611412048, -0.009560514241456985, 1.0970476865768433, -0.41922566294670105, -0.7910404205322266, -0.2542734742164612, -0.4455949068069458, -0.017912419512867928, 0.5139521956443787, 0.25535836815834045, -0.8810875415802002, 1.0381957292556763, 1.2373377084732056, 0.6310594081878662, -0.20091237127780914, -0.4177985191345215, 0.6937354803085327, -0.35259684920310974, -0.3644367456436157, -1.3505051136016846, 0.05309799313545227, 0.4806593954563141, 0.40666958689689636, -0.2635059356689453, -0.26504531502723694, -0.31990107893943787, 0.5789617300033569, -0.9753705859184265, -0.7599449157714844, 0.26041626930236816, -0.1092294454574585, 0.388494074344635, 0.06615594029426575, -0.9718289375305176, 0.05199422314763069, -0.22503717243671417, -0.1059555858373642, 0.21819090843200684, -0.25345128774642944, 0.9400801062583923, -0.4554159939289093, -0.2863404452800751, 0.25807178020477295, 0.16476638615131378, 0.5210328102111816, 1.0926883220672607, -0.8683244585990906, 0.020354053005576134, -0.9935275912284851, 1.014803409576416, 0.8484007716178894, 0.4586274027824402, -0.3746168613433838, -0.006810915656387806, 0.45929625630378723, -0.923750102519989, 0.13162219524383545, 0.41944244503974915, 0.004201987758278847, -0.44922977685928345, 0.6914268732070923, 0.6073022484779358, -0.9631192088127136, -1.185580849647522, 0.20834368467330933, -0.05393923074007034, -0.10400238633155823, -0.10653969645500183, 0.6309744119644165, 0.4490029215812683, 0.788865864276886, 0.46647003293037415, 0.6261225342750549, 1.3203188180923462, -0.331216424703598, -0.08490094542503357, 0.9166898727416992, 1.0711798667907715, 1.4081544876098633, 0.2811398506164551, 0.2146911323070526, 0.977188229560852, -0.6288071870803833, -0.5271254777908325, 0.27364403009414673, -0.3162204623222351, 0.0710286796092987, 0.21706782281398773, 0.09675772488117218, 0.9023855924606323, 0.4398482143878937, 1.4431530237197876, -0.27206698060035706, 0.008484352380037308, -0.3174631893634796, -0.47728458046913147, 0.896294116973877, -0.18466070294380188, -0.056991614401340485, 0.939782440662384, -0.4997178912162781, -0.5397655963897705, 0.3012215495109558, 0.5850383043289185, -0.33614012598991394, -0.07403375208377838, -0.6053784489631653, -0.2890930771827698, -0.5107895135879517, 1.2459707260131836, 1.053767204284668, -0.15551123023033142, 0.21686381101608276, -0.23132610321044922, 0.4292756915092468, 0.041815005242824554, 0.379469633102417, -0.06733449548482895, 0.1327323317527771, -0.08468431979417801, -0.4010096490383148, 0.18840391933918, -0.021663954481482506, 0.10574810951948166, 0.6081503629684448, 0.09079544246196747, -0.10080894827842712, 0.34956809878349304, 0.5987461805343628, -0.5217429399490356, -0.9037709832191467, -0.9544330835342407, 0.07253633439540863, -1.3069393634796143, -0.012253571301698685, 0.5017027854919434, -0.3641410171985626, -0.738110363483429, -0.5481910705566406, -0.14336705207824707, 0.17213812470436096, -0.1473672240972519, -0.3238860070705414, -0.20679739117622375, 0.44954487681388855, 0.4273568391799927, 0.09247154742479324, 0.917064368724823, 0.44072920083999634, -0.07636755704879761, -0.16061192750930786, 0.1895333081483841, 0.02583305910229683, 1.2529441118240356, -0.24406957626342773, 0.14206546545028687, -1.391905426979065, 0.43476179242134094, 0.9302663803100586, 0.7310970425605774, -1.4163217544555664, 0.861648678779602, -0.047897450625896454, -0.9138506054878235, 1.0453274250030518, -0.1469891220331192, -0.16241222620010376, -0.25247257947921753, 0.22205978631973267, -0.9219661951065063, 0.12188747525215149, 0.37626343965530396, -0.330088347196579, 0.6130672693252563, 1.0881181955337524, 0.08363998681306839, -0.4492453932762146, 0.12803080677986145, -0.20557229220867157, 0.5240097641944885, -1.0315399169921875, 0.02326171100139618, -0.7703291773796082, -0.8853982090950012, -0.5573509335517883, 0.8095754981040955, -0.3835655152797699, -0.9509625434875488, -0.07363706827163696, -0.6672196388244629, -0.2801417112350464, 0.20286376774311066, -0.35027876496315, -0.058186136186122894, -0.3372804522514343, -0.5982838273048401, -1.0870988368988037, 0.014948317781090736, 0.12866155803203583, -0.420104056596756, 0.3943236172199249, -0.6645557880401611, -0.01669365167617798, -0.34030723571777344, -0.2122204303741455, 0.5531319975852966, -0.06378726661205292, 0.3493454158306122], "edd49718-78ae-4333-94e6-2ffda9a60166": [0.09997543692588806, 0.273234099149704, -0.006997339427471161, -0.46940141916275024, 0.8817930817604065, -0.5239109396934509, 0.4177076518535614, 0.4359897971153259, -0.46766144037246704, -0.35360169410705566, -0.17249837517738342, -0.5902091264724731, -0.7957356572151184, 0.5877879858016968, 0.4627484381198883, 0.9660952687263489, 0.5867052674293518, 0.14777882397174835, -0.14348754286766052, -0.3537711501121521, 0.20697851479053497, 0.0804782509803772, -0.21825473010540009, 0.8924880623817444, 0.44478848576545715, -0.025418054312467575, 0.2280004769563675, -0.10584361106157303, -1.1909781694412231, 0.31259241700172424, 0.3696858286857605, -0.3166070282459259, 0.06528322398662567, -0.1491963416337967, 0.1432769000530243, -0.3878355920314789, -0.734997034072876, -0.4141818881034851, 0.1570107489824295, -0.109569251537323, -0.6659165620803833, -0.7948998808860779, -0.4095529317855835, 0.05372922867536545, -1.0244848728179932, -0.07474242895841599, -1.0920666456222534, 0.7017115950584412, -0.8481809496879578, 0.09247875213623047, -1.4152493476867676, 0.4325500726699829, -0.04754851758480072, 0.23956146836280823, 0.4853293299674988, 0.9620534777641296, -0.036540187895298004, -0.5928200483322144, -0.2017132192850113, -0.33983826637268066, -0.06781944632530212, -0.22312653064727783, 0.48262685537338257, 0.1289961189031601, 0.4654289186000824, -0.5460391044616699, 0.006029769778251648, 0.5309032797813416, -1.307797908782959, -0.5695111751556396, -0.04525383561849594, 0.1796017289161682, 0.35470882058143616, -0.2664453387260437, 0.46106767654418945, -0.48729100823402405, -0.04271814227104187, -0.027505330741405487, 0.8056825399398804, 0.7955478429794312, -0.1262618899345398, 0.5237648487091064, -0.2847093343734741, 0.8919888138771057, -0.10100075602531433, -0.6160670518875122, -0.7652872800827026, -0.23280158638954163, -0.33613044023513794, 0.8087635636329651, -0.3783699572086334, -0.39673179388046265, 0.8557800054550171, 0.8020800948143005, 0.4438107907772064, -0.4505278170108795, 1.0108847618103027, 0.485698938369751, 0.4968703091144562, 0.09205146133899689, -0.9528583884239197, -1.1055998802185059, 0.11826379597187042, 0.21935328841209412, -1.192018747329712, -0.9414762258529663, -0.8016190528869629, -0.1361699253320694, 0.277804970741272, 0.2967680096626282, -0.2735963463783264, -0.9388534426689148, -0.2977747321128845, 0.010056044906377792, -0.8450037240982056, 1.3938119411468506, 0.43647992610931396, 0.2016524225473404, -0.4677153527736664, 0.07218490540981293, 0.8376352787017822, 1.179004430770874, 0.7096642255783081, 1.335623860359192, 0.10579051077365875, 0.9586673974990845, 0.3470865488052368, 1.2110319137573242, -0.5071777105331421, -1.0250777006149292, 0.4905008375644684, 0.9331265687942505, 0.4402172863483429, 0.1346898078918457, -0.0647832602262497, -0.46476903557777405, 0.12013255059719086, 0.11467117071151733, 0.6349937319755554, -0.3550572693347931, 0.027760107070207596, -0.6538872122764587, 0.2762376666069031, -0.04949859902262688, 0.7985213398933411, 0.05056995153427124, 0.10262571275234222, -1.0238828659057617, -0.0775199681520462, 0.6871828436851501, 0.4334161877632141, 0.6772538423538208, 0.6141268014907837, -0.7417370676994324, 0.16448435187339783, 0.7068848609924316, -0.24950197339057922, -0.009886328130960464, -1.028526782989502, 0.7061945796012878, 0.7246637344360352, 0.11109431087970734, -0.3902377188205719, -0.05120718479156494, -0.7471523880958557, -0.07999610900878906, 0.32124730944633484, 0.11856833100318909, 0.18020698428153992, 0.7169066071510315, -0.4756888449192047, -0.5312826633453369, 1.0506806373596191, -0.1688181459903717, -0.42490771412849426, 0.4245679974555969, 1.149228572845459, 0.2980939745903015, 0.5385454893112183, -0.005223773419857025, -1.013617753982544, 1.0042328834533691, -0.3265451490879059, -0.4714389145374298, -0.5057314038276672, -0.3719983696937561, 1.2561533451080322, -0.10006212443113327, -0.35672083497047424, 0.10622870922088623, -1.3256348371505737, -0.5301569700241089, -0.017888229340314865, 0.4376637041568756, 1.0972518920898438, -0.10042838007211685, -0.2741610109806061, 0.33609890937805176, 0.1696300208568573, 0.9167977571487427, -0.33849865198135376, 0.2566945254802704, -0.22011879086494446, -1.1403387784957886, -1.1054637432098389, 0.7853478193283081, 0.30227428674697876, -0.22655834257602692, 0.08343477547168732, -0.14268425107002258, -0.20549613237380981, 0.06699545681476593, 0.7749497294425964, -0.3291504979133606, 0.5581172704696655, 0.3457649052143097, 0.4709925055503845, -0.5490360260009766, 0.7981106042861938, -1.1623858213424683, 0.10429392755031586, -0.49394530057907104, -1.2155548334121704, 0.5806253552436829, -0.29403477907180786, 1.3806171417236328, 0.9277361631393433, -0.8111887574195862, -0.4661644995212555, 0.6739585995674133, 0.32834020256996155, -0.19616301357746124, 0.3938451409339905, 0.6273351907730103, -0.28476765751838684, -0.537198543548584, -0.07212656736373901, -0.3261958658695221, 0.9840949773788452, -0.736724853515625, 0.49043142795562744, 1.2972315549850464, -0.11735633760690689, 0.7013552188873291, 0.5512540340423584, -0.0777387022972107, 0.28833240270614624, -0.1420256793498993, -0.4834897518157959, -0.1676112562417984, -0.38602763414382935, -0.5814986228942871, 0.525772750377655, -0.9581225514411926, 0.9122384786605835, -0.6151093244552612, -0.9398511648178101, 0.23198817670345306, 0.7566981911659241, 0.6904390454292297, -0.48978906869888306, 0.7130608558654785, 0.43403172492980957, -0.17532356083393097, -0.42292943596839905, -1.8348432779312134, -0.6808089017868042, -0.023108039051294327, 0.3903930187225342, 0.2968448996543884, 0.19339856505393982, -0.15534508228302002, 0.020303523167967796, -0.13487966358661652, -0.49860480427742004, -0.36926761269569397, 0.79643714427948, 0.24316714704036713, -0.06489884853363037, -0.8057961463928223, -0.653419554233551, 1.1390235424041748, -0.919927179813385, -1.374733805656433, -0.3789874315261841, -0.8380019068717957, 0.34260764718055725, -0.4497244358062744, -0.01828444004058838, 0.4119153618812561, 0.6234331130981445, 0.6420081853866577, -0.39522629976272583, 0.4169016480445862, 1.3586058616638184, 0.3481186032295227, 0.32089248299598694, 0.38940417766571045, 0.45181676745414734, -0.09529329091310501, 0.2942962348461151, 0.8955400586128235, 0.6613299250602722, -0.20044741034507751, -0.4613925814628601, -0.1410125494003296, -0.3964753746986389, -0.338121235370636, -4.200243949890137, 0.3238823413848877, 0.07421644032001495, -0.18411868810653687, 0.05909495800733566, 0.4962276816368103, 0.5262781381607056, -0.509762704372406, -0.565743625164032, 0.42731228470802307, -0.20027735829353333, 0.053546879440546036, 0.5072199106216431, 0.6286727786064148, 0.06585745513439178, 0.4092376232147217, -0.2926132082939148, -0.7771862745285034, 0.010207317769527435, 0.5191640853881836, -0.19783149659633636, -1.2359552383422852, -0.0010335743427276611, 0.08955713361501694, 0.2208685278892517, 0.7268133759498596, -1.114192008972168, 0.8324587941169739, -0.9316268563270569, -0.3046306371688843, 0.47095364332199097, -0.752772867679596, -0.11222073435783386, -0.14834843575954437, 0.06008989363908768, -0.8351710438728333, 0.6418330073356628, -0.20217972993850708, -0.1430378556251526, -0.058200154453516006, -0.8189601302146912, -0.5154403448104858, -0.35601890087127686, -0.5828095078468323, 0.8897282481193542, -0.06703630089759827, -0.4555283486843109, -0.24428315460681915, 0.2573665976524353, 0.6072254180908203, -0.08782701194286346, -0.4171181917190552, -0.08966930210590363, 0.07497379928827286, -0.2701568603515625, -0.8032410740852356, 0.20818307995796204, -0.2882286310195923, -0.3510129153728485, -0.2601412236690521, 0.1273665875196457, -0.783277153968811, -0.3682474195957184, -0.8664072155952454, -0.3329242765903473, -0.4118717610836029, -1.0240083932876587, -0.7231389880180359, 0.6839663982391357, 0.790244460105896, -0.3689630627632141, 0.4339192509651184, 0.027078703045845032, -1.5552873611450195, -0.19011476635932922, -0.6660829782485962, -0.37149906158447266, -0.22950494289398193, -0.1972816437482834, 0.24252872169017792, -0.22076287865638733, -0.24841688573360443, 0.002823084592819214, 0.34100931882858276, -0.15214908123016357, -0.7349317073822021, 0.07108485698699951, -0.6169342994689941, -0.9027326107025146, -0.5608659386634827, 0.9402245283126831, -0.5129212141036987, -0.04339461401104927, 0.11836172640323639, 0.37933287024497986, 0.4993416965007782, 0.3407456874847412, -0.5466734170913696, 0.39018991589546204, 0.1218397468328476, 0.7318685054779053, -0.5732410550117493, 0.17908251285552979, -0.4541558623313904, -0.0458129458129406, 0.01825127750635147, -0.6219238638877869, 0.22439248859882355, 0.2846217751502991, -0.06593108922243118, 0.27663832902908325, -0.33112844824790955, 0.25308912992477417, -0.6725097894668579, 0.26351267099380493, -0.4346470534801483, 0.2784837782382965, 0.3961835205554962, 0.21527116000652313, 0.12579789757728577, -0.3476554751396179, 0.3038482367992401, -0.7084965109825134, -0.737769603729248, -1.5753287076950073, 0.11634885519742966, -0.2639722526073456, -0.24097347259521484, 0.12873926758766174, -0.05548752099275589, -0.3861089050769806, -0.1651453673839569, 0.500766396522522, 0.21794664859771729, 0.8722971081733704, -0.3005264103412628, -0.15576237440109253, -0.15889322757720947, 1.106197476387024, -0.1988866925239563, 0.1181076318025589, 0.1768520027399063, 0.2570135295391083, 0.752403974533081, 0.973698616027832, 0.5979006886482239, -0.3884437680244446, 0.01179473102092743, -0.15841242671012878, 0.061733197420835495, 0.2811146378517151, -0.24588032066822052, 0.28216344118118286, -0.7505311965942383, 0.030469074845314026, -0.5365581512451172, 0.49789711833000183, -0.010034803301095963, -0.34234440326690674, -0.9374493956565857, 0.5693325996398926, -0.42605534195899963, -0.5198830366134644, -0.2632122039794922, -0.30468377470970154, 0.9925647377967834, -0.43332624435424805, 0.2544069290161133, -0.11781343072652817, -0.22976316511631012, 0.6895039677619934, 0.10932770371437073, -0.5639308094978333, 0.3952249586582184, -0.1449783593416214, 0.7375965714454651, 0.3485894501209259, 0.2641226649284363, -0.15544584393501282, 0.295429527759552, -0.22803077101707458, -0.12248747050762177, 0.5813750624656677, 0.6696990728378296, 0.7626451253890991, 0.2142852544784546, 0.3697546720504761, -0.09278818964958191, -0.48435360193252563, -0.1605168879032135, 0.6533797383308411, 0.26427891850471497, -0.1293799877166748, -0.004876249469816685, -1.0100587606430054, -1.5163495540618896, 0.04975366219878197, 0.33057349920272827, 0.37961605191230774, 0.16134710609912872, -0.4018055200576782, 0.07431574910879135, -0.35625892877578735, -0.21577033400535583, 0.046090222895145416, -1.2284886837005615, 0.8684114217758179, 0.2337493896484375, -0.4394177794456482, -0.04177656024694443, 0.1392332911491394, -0.7941200733184814, -0.8732864856719971, 0.15131694078445435, 0.3854648470878601, -1.1258454322814941, -0.025895586237311363, -0.3537752628326416, 0.190639466047287, -0.11573178321123123, 0.3778407573699951, 0.6828808188438416, 0.030033349990844727, -0.38082945346832275, -0.7834658622741699, 0.8420629501342773, -0.1697065234184265, 0.01966361701488495, 0.15856903791427612, -0.4304471015930176, 0.673632800579071, -0.4498794972896576, 0.21367764472961426, 0.7951076626777649, 0.10944189131259918, 0.3859234154224396, -0.7160476446151733, 0.7033212780952454, -0.04629058390855789, 1.2261289358139038, -0.17532970011234283, -0.2572500705718994, -0.35932254791259766, -0.9048984050750732, -0.026072941720485687, 0.39839115738868713, -0.4554421305656433, 0.19028794765472412, -0.22745381295681, 0.7142261862754822, 0.07830582559108734, 0.4894144833087921, -0.3536013960838318, -0.041909389197826385, 1.1649104356765747, -0.8385784029960632, -0.6765674352645874, -0.38039425015449524, -0.5681532621383667, -0.17723876237869263, 0.3734242916107178, 0.22183822095394135, -0.5168663859367371, 1.2756842374801636, 0.9487739205360413, 0.4544339179992676, -0.19718989729881287, -0.42227140069007874, 0.5898405909538269, -0.5093022584915161, -0.2582356929779053, -1.4542169570922852, 0.36188235878944397, 0.732305109500885, 0.3325953483581543, -0.2998507618904114, -0.3524707853794098, -0.06879108399152756, 0.6319275498390198, -0.9731353521347046, -0.5727826356887817, 0.2456667125225067, 0.10724054276943207, 0.4556694030761719, -0.013945754617452621, -0.9728490710258484, -0.05508162081241608, -0.02389615774154663, -0.1174916923046112, 0.3058483302593231, -0.3893530070781708, 1.106738567352295, -0.3598986268043518, -0.2668701112270355, 0.04150696098804474, 0.026104025542736053, 0.7987759113311768, 1.2051072120666504, -0.8938328623771667, 0.02682504802942276, -0.7655041813850403, 0.922165036201477, 0.8525431752204895, 0.2722770571708679, -0.3837185204029083, 0.06395230442285538, 0.13053682446479797, -0.7924016714096069, 0.10208204388618469, 0.45595401525497437, -0.07279174774885178, -0.5026736259460449, 0.6779890060424805, 0.7195187211036682, -0.9661887288093567, -0.9003496766090393, 0.2856594920158386, -0.31482815742492676, -0.06301979720592499, -0.05422870069742203, 0.4374770224094391, 0.042225584387779236, 0.8381249308586121, 0.32007426023483276, 0.6371229887008667, 1.4841516017913818, -0.38200458884239197, -0.10950303077697754, 1.0091475248336792, 1.0935990810394287, 1.15900456905365, 0.4011944532394409, 0.08842255175113678, 0.9875929951667786, -0.5664401054382324, -0.6920009851455688, 0.21754321455955505, -0.6009114980697632, -0.10061723738908768, 0.4297094941139221, -0.04188878834247589, 1.0882054567337036, 0.37013357877731323, 1.49955415725708, -0.3066675364971161, 0.0833749994635582, -0.26019322872161865, -0.8384900093078613, 0.8706509470939636, -0.06928612291812897, -0.3262510597705841, 1.106685757637024, -0.7980712056159973, -0.4999341070652008, 0.42754462361335754, 0.7065218091011047, -0.26655471324920654, -0.006437249481678009, -0.6517691612243652, -0.29535722732543945, -0.7769685387611389, 1.1202561855316162, 0.9407624006271362, -0.006760012358427048, 0.007351808249950409, -0.14935868978500366, 0.5658493041992188, 0.10988825559616089, 0.44359463453292847, -0.008324585855007172, 0.0056052543222904205, -0.11751298606395721, -0.43763017654418945, 0.24370136857032776, -0.17753423750400543, 0.14386789500713348, 0.4170626699924469, 0.1069718599319458, 0.021554239094257355, 0.3137442171573639, 0.843431830406189, -0.5595918893814087, -0.9410202503204346, -0.7951335906982422, -0.12234832346439362, -1.2919777631759644, -0.11691882461309433, 0.2525787353515625, -0.27923810482025146, -0.5838228464126587, -0.563984751701355, -0.4407716989517212, 0.343296617269516, -0.11506865918636322, -0.4766184985637665, -0.3507228195667267, 0.16009047627449036, 0.5835258960723877, -0.017648156732320786, 0.7568092346191406, 0.7154165506362915, -0.07277321815490723, -0.18713214993476868, 0.4556885361671448, -0.10954318940639496, 1.2326102256774902, -0.26332128047943115, 0.18001854419708252, -1.2860298156738281, 0.26640647649765015, 0.6920496821403503, 0.6826440095901489, -1.414467215538025, 0.9817941188812256, -0.10470344126224518, -1.0487293004989624, 1.2007248401641846, -0.10304014384746552, -0.18327143788337708, -0.45849937200546265, -0.03557524085044861, -0.7069247961044312, 0.14187130331993103, 0.5252716541290283, -0.44525331258773804, 0.4948221445083618, 0.9628392457962036, -0.1941426694393158, -0.33463627099990845, 0.016863729804754257, -0.13365808129310608, 0.4455547034740448, -1.1878362894058228, 0.06819503754377365, -0.6309205293655396, -0.968350350856781, -0.47375956177711487, 0.6979939937591553, -0.3626449704170227, -0.8524198532104492, 0.026761827990412712, -0.44011542201042175, -0.24916228652000427, 0.22812707722187042, -0.3411470055580139, 0.2745891213417053, -0.4177815616130829, -0.5886819958686829, -1.0252864360809326, 0.14844375848770142, -0.018859967589378357, -0.18663445115089417, 0.2143212854862213, -0.7327261567115784, -0.2546350955963135, -0.2155257761478424, -0.18635569512844086, 0.5526039600372314, -0.11567847430706024, 0.3553195595741272], "c907930f-94ca-477b-9bea-a98af3354b65": [-0.2537628710269928, 0.05004534125328064, -0.2974563539028168, -0.28375157713890076, 0.5409954786300659, -0.21646000444889069, 0.5485934615135193, 0.6961070895195007, -0.21705219149589539, -0.6284550428390503, -0.17240744829177856, -0.36991024017333984, -0.7421291470527649, 0.434459388256073, 0.2726222574710846, 0.7823167443275452, 0.6388479471206665, -0.2729021906852722, -0.21160054206848145, -0.12040965259075165, 0.026968583464622498, 0.17927990853786469, -0.25239166617393494, 0.9700248837471008, 0.1967090368270874, 0.04531228542327881, 0.29875344038009644, -0.16653193533420563, -1.3411433696746826, -0.05003628879785538, 0.21869204938411713, -0.21368065476417542, -0.030654383823275566, -0.09621097892522812, -0.024528291076421738, -0.2763515114784241, -0.7795664072036743, -0.45507732033729553, 0.20923008024692535, -0.3504520654678345, -0.8111759424209595, -0.8189242482185364, -0.22975924611091614, 0.15805712342262268, -0.8101761341094971, -0.035582493990659714, -1.0584731101989746, 0.8039666414260864, -1.009742259979248, -0.014610141515731812, -1.412442922592163, 0.46145904064178467, -0.005045585334300995, 0.36108094453811646, 0.3683313727378845, 0.7302664518356323, -0.007510566618293524, -0.7533424496650696, -0.11790063232183456, -0.6592540740966797, 0.2896711826324463, -0.14355450868606567, 0.7004496455192566, 0.009048989042639732, 0.5644617080688477, -0.6395565271377563, 0.12201294302940369, 0.592293381690979, -1.263429880142212, -0.59852534532547, -0.21221083402633667, 0.11929991841316223, 0.5589008331298828, -0.1375349760055542, 0.7930677533149719, -0.5463427305221558, -0.16051141917705536, 0.515191912651062, 0.8179925084114075, 0.665403425693512, 0.15886227786540985, 0.4451080858707428, 0.018820106983184814, 0.8848887085914612, -0.12864899635314941, -0.5492416620254517, -0.7318305373191833, -0.2141309380531311, -0.6081283092498779, 0.9940512776374817, -0.598546028137207, -0.2515433430671692, 0.9412571787834167, 0.7966709136962891, 0.34521013498306274, -0.2210799753665924, 0.39329880475997925, 0.38086703419685364, 0.45454534888267517, -0.022194355726242065, -0.8100531101226807, -0.8526737093925476, 0.07679980993270874, 0.06172442436218262, -1.3006476163864136, -0.7237063646316528, -0.42506036162376404, -0.12749573588371277, 0.3421022891998291, 0.06094928830862045, -0.04617250710725784, -0.9667118191719055, -0.4440453052520752, -0.36763954162597656, -0.7629221677780151, 1.4831771850585938, 0.6119029521942139, 0.26232782006263733, -0.21712855994701385, -0.3268800377845764, 0.9074580669403076, 0.8984713554382324, 0.6228659749031067, 1.3439311981201172, 0.3552159070968628, 0.7476544976234436, 0.15576007962226868, 0.5139524340629578, -0.4052303731441498, -1.2266108989715576, 0.47388172149658203, 1.0660722255706787, -0.000941254198551178, -0.05669050291180611, 0.0033676419407129288, -0.3235328793525696, -0.02521866001188755, -0.02421003021299839, 0.1960199773311615, -0.3300912380218506, -0.2523752450942993, -0.3698512315750122, 0.29999950528144836, 0.05232791602611542, 0.745248556137085, -0.27994656562805176, -0.02945207804441452, -0.699299693107605, 0.12470535933971405, 0.6067777872085571, 0.08390802145004272, 0.34901875257492065, 0.6852036714553833, -0.7555215358734131, 0.4024696946144104, 0.8832979202270508, -0.14782336354255676, 0.5052245855331421, -0.9720410704612732, 0.9609530568122864, 0.6721524596214294, 0.056377433240413666, -0.44563665986061096, 0.2799012064933777, -0.1443980634212494, -0.22629141807556152, 0.40761011838912964, -0.19099226593971252, 0.2691202163696289, 0.10560879856348038, -0.6558147668838501, -0.9044752717018127, 0.7450281381607056, -0.3853508234024048, -0.16890224814414978, 0.43676602840423584, 1.20526123046875, 0.09181604534387589, 0.26772719621658325, -0.2760167419910431, -1.0420124530792236, 0.9615211486816406, 0.16367289423942566, -0.768581748008728, -0.4866975247859955, -0.2668289244174957, 1.4711509943008423, -0.08930620551109314, -0.32555627822875977, 0.1634064018726349, -1.205348014831543, -1.18792724609375, -0.27664974331855774, 0.1971438229084015, 1.2289403676986694, -0.0158630833029747, -0.4925239682197571, 0.1128702312707901, 0.3103163242340088, 0.6657518148422241, 0.07708096504211426, 0.24750515818595886, 0.14173968136310577, -0.8668674230575562, -0.7946292161941528, 0.42529183626174927, 0.5157338380813599, -0.04134411737322807, 0.3219720125198364, 0.06332149356603622, 0.17180635035037994, -0.2245551347732544, 0.7828559279441833, -0.4132111370563507, 0.7401190400123596, 0.19006463885307312, 0.17340591549873352, -0.6339624524116516, 0.6371446251869202, -1.2348976135253906, -0.12868228554725647, -0.4478425681591034, -1.0607340335845947, 0.6530458331108093, -0.20263397693634033, 1.5135928392410278, 1.0235934257507324, -0.4588673412799835, -0.1796524077653885, 0.3965669274330139, 0.25710079073905945, -0.3520997166633606, 0.3128208816051483, 0.5411377549171448, -0.27858659625053406, 0.11673964560031891, -0.02174265682697296, -0.441841185092926, 0.8753308653831482, -0.8556118011474609, 0.5388314723968506, 0.9881329536437988, -0.3448677361011505, 0.8173208236694336, 0.42702195048332214, -0.04658208042383194, 0.10101117193698883, -0.3206062316894531, -0.3911517262458801, 0.10558360815048218, -0.5245845317840576, -0.5378753542900085, 0.6401348114013672, -0.47954195737838745, 0.717415452003479, -0.3399221897125244, -0.5643808841705322, -0.12167264521121979, 0.8216480016708374, 0.7645657062530518, -0.3360951840877533, 0.7299168705940247, 0.4633699655532837, 0.07983015477657318, -0.39017584919929504, -1.6886755228042603, -0.5907067656517029, 0.014981787651777267, 0.8635361790657043, 0.11351616680622101, 0.1923632025718689, -0.5184093117713928, -0.22594058513641357, -0.26917505264282227, -0.30843842029571533, -0.5305134057998657, 1.1417676210403442, 0.17749658226966858, 0.19759728014469147, -0.8453482389450073, -0.6706292033195496, 0.8688887357711792, -0.9714624285697937, -0.9729045033454895, -0.1727285385131836, -0.5575637221336365, 0.39547407627105713, -0.4885724186897278, -0.35914450883865356, 0.47476133704185486, 0.3413923382759094, 0.9463824033737183, -0.6711082458496094, 0.4207023084163666, 1.3447078466415405, 0.5167210698127747, 0.16324003040790558, 0.21517342329025269, -0.14690864086151123, -0.055788055062294006, 0.20322129130363464, 0.45047372579574585, 0.4269520044326782, -0.1714668571949005, -0.34001973271369934, -0.1130894273519516, -0.43502211570739746, -0.4477524757385254, -4.4094672203063965, 0.460784375667572, 0.1107063889503479, -0.6317816376686096, 0.2610336244106293, 0.3687133193016052, 0.2736806273460388, -0.6929763555526733, -0.5735055208206177, 0.17840248346328735, -0.28517037630081177, -0.002915523946285248, 0.8415772318840027, 0.2562863528728485, 0.003226283937692642, 0.3881596326828003, 0.14842328429222107, -0.7667953372001648, 0.042562223970890045, 0.3762757182121277, -0.36648085713386536, -1.2148375511169434, 0.03379959613084793, -0.1939811259508133, 0.27727699279785156, 0.5743400454521179, -0.8321098685264587, 1.302133560180664, -0.5491409301757812, -0.4265896677970886, 0.5283597111701965, -0.5253042578697205, -0.2022867351770401, -0.18327321112155914, 0.287565678358078, -0.5677375793457031, 0.5431262850761414, 0.11439886689186096, 0.059302061796188354, -0.5919492244720459, -0.3971460461616516, -0.9474012851715088, -0.3343932628631592, -0.6623950004577637, 1.1706769466400146, -0.10143055766820908, -0.1445477455854416, -0.117043137550354, 0.058749742805957794, 0.8742592334747314, 0.11783318221569061, -0.38643479347229004, 0.4958917498588562, 0.34277382493019104, -0.13620398938655853, -0.46567967534065247, 0.2392338514328003, 0.19600637257099152, -0.5249248743057251, -0.19460135698318481, 0.4705488681793213, -0.5733233690261841, -0.3688504993915558, -0.7084353566169739, 0.2288532257080078, -0.6045567989349365, -0.9152690768241882, -0.9315853118896484, 0.8872867822647095, 0.9840744137763977, -0.4117431938648224, 0.7678072452545166, -0.17685377597808838, -1.4854613542556763, -0.11855320632457733, -0.5328434109687805, -0.5185266137123108, -0.49317142367362976, -0.012194018810987473, 0.1811329424381256, -0.009216926991939545, -0.3793872892856598, -0.04298505187034607, 0.4627683460712433, -0.21770493686199188, -0.8160965442657471, 0.4937579333782196, -0.9067762494087219, -0.5767337083816528, -0.6216138601303101, 0.7956091165542603, -0.13046562671661377, -0.1524798572063446, 0.11862777173519135, 0.35354575514793396, 0.2969362139701843, 0.20154277980327606, -0.29469120502471924, 0.45849141478538513, -0.05763930454850197, 0.6555616855621338, -0.5580166578292847, 0.4295748770236969, -0.39287033677101135, -0.03134842962026596, 0.17525151371955872, -0.7546965479850769, -0.22397255897521973, 0.08863453567028046, -0.13347956538200378, 0.2785758078098297, -0.149468794465065, 0.4481980502605438, -0.6456559896469116, 0.04959467798471451, -0.317844033241272, 0.15310752391815186, 0.5748793482780457, 0.4416889548301697, 0.16235530376434326, -0.4594632685184479, 0.5620219707489014, -1.0439202785491943, -0.47343745827674866, -1.3961809873580933, 0.12563323974609375, -0.06990233063697815, -0.1208171397447586, 0.285653293132782, -0.32450011372566223, -0.30929678678512573, -0.1165383905172348, 0.5807639956474304, 0.2943004369735718, 0.577753484249115, 0.2670876085758209, -0.6925490498542786, -0.43663814663887024, 0.7334040999412537, -0.1184137836098671, 0.193243607878685, 0.18916556239128113, 0.13898003101348877, 0.688764214515686, 0.6637008786201477, 0.49675288796424866, -0.713093101978302, 0.39024829864501953, -0.22160044312477112, -0.19292005896568298, 0.03385225310921669, -0.34262514114379883, 0.32342419028282166, -0.8601948022842407, -0.1333821713924408, -0.7113478183746338, 0.7114642262458801, -0.12885302305221558, 0.11322614550590515, -0.36517393589019775, 0.09527814388275146, -0.8314593434333801, -0.3456396162509918, 0.03360508009791374, -0.5633058547973633, 1.2901512384414673, -0.35875317454338074, 0.08043144643306732, -0.17449910938739777, -0.43968650698661804, 0.8255214691162109, 0.1505274772644043, -0.9298258423805237, 0.4561999440193176, 0.09076587110757828, 0.5466533899307251, 0.12227927148342133, 0.08421465754508972, 0.12184087187051773, 0.473616361618042, -0.013543106615543365, -0.34965452551841736, 0.7560892701148987, 0.7149431705474854, 0.8624679446220398, -0.18583758175373077, 0.2223951816558838, -0.30743247270584106, -0.40934669971466064, 0.16278910636901855, 0.6234400272369385, -0.028363313525915146, -0.3178415596485138, 0.25382667779922485, -0.8662925958633423, -1.2282947301864624, -0.03797696530818939, 0.3699064254760742, 0.42836230993270874, -0.104416623711586, -0.23480603098869324, 0.15770289301872253, -0.3542858362197876, 0.28329455852508545, -0.07217082381248474, -1.085477352142334, 0.47725313901901245, 0.10433493554592133, -0.2663242816925049, 0.1908709704875946, 0.1464281976222992, -0.37647777795791626, -0.587162971496582, -0.08519750833511353, 0.12026552855968475, -0.8686842918395996, -0.3790200650691986, -0.28327131271362305, 0.028659027069807053, -0.11490225046873093, 0.29756301641464233, 0.4767593741416931, 0.12717127799987793, -0.3605591058731079, -0.6876266002655029, 1.0359405279159546, -0.05171539634466171, -0.2598821222782135, 0.38488879799842834, -0.25045546889305115, 0.5163028836250305, -0.2587255835533142, 0.40850114822387695, 0.8414215445518494, 0.1121320128440857, 0.08422684669494629, -0.6350269317626953, 0.43901529908180237, -0.08919109404087067, 1.2669111490249634, 0.4190140962600708, -0.03437652438879013, -0.3218833804130554, -0.7310162782669067, 0.2735832929611206, 0.1710849106311798, -0.1160094141960144, 0.3953363597393036, -0.2022627741098404, 0.6020281910896301, 0.46752721071243286, 0.7458848357200623, -0.4524616003036499, -0.1423839032649994, 0.9228334426879883, -0.552054762840271, -1.087996006011963, 0.020134542137384415, -0.6073514819145203, 0.013137614354491234, 0.5721208453178406, 0.19189758598804474, -0.7051906585693359, 0.9900568723678589, 1.3453798294067383, 0.29033124446868896, -0.38117989897727966, -0.6017025709152222, 0.3826885223388672, -0.6389989256858826, -0.3550422489643097, -1.4202522039413452, -0.14656716585159302, 0.3492324650287628, 0.46214383840560913, -0.20911568403244019, -0.3069629967212677, -0.1493965983390808, 0.45900729298591614, -1.125058889389038, -0.7106759548187256, 0.595786988735199, 0.027361780405044556, 0.5354729890823364, -0.22962301969528198, -1.1155531406402588, 0.07286781072616577, -0.16499783098697662, -0.337557315826416, 0.05039408430457115, 0.015747563913464546, 0.743526041507721, -0.17070265114307404, 0.10474885255098343, -0.05787203088402748, 0.03458601236343384, 0.5676107406616211, 0.7459484934806824, -0.870026707649231, 0.2569991648197174, -1.1090564727783203, 0.8529802560806274, 0.9411889910697937, 0.4421313405036926, -0.3036648631095886, -0.17038284242153168, 0.24619263410568237, -0.9872211217880249, 0.13834957778453827, 0.38730886578559875, -0.04775988310575485, -0.8104645609855652, 0.7764108180999756, 0.4349684715270996, -0.733318030834198, -1.0095443725585938, 0.05551491677761078, -0.357527494430542, -0.2362220734357834, -0.15639159083366394, 0.4985532760620117, 0.24302899837493896, 0.9462106227874756, 0.3337535560131073, 0.1832989901304245, 1.3333911895751953, -0.5872972011566162, -0.3732553720474243, 0.4124073386192322, 1.016440987586975, 1.142838716506958, 0.18259045481681824, -0.15722741186618805, 1.2160696983337402, -0.6496883630752563, -0.7081484794616699, 0.2546798884868622, -0.05361991748213768, -0.19834037125110626, 0.06201770901679993, 0.08117063343524933, 1.202996015548706, 0.4511786103248596, 1.5411770343780518, -0.17902375757694244, 0.12763053178787231, -0.0762823075056076, -0.40523919463157654, 0.8534705638885498, -0.045978620648384094, 0.08543623238801956, 0.83734530210495, -0.4945215582847595, -0.43830186128616333, 0.27513211965560913, 0.28657132387161255, -0.4758988916873932, 0.22500503063201904, -0.5241701602935791, -0.3530902862548828, -0.6602268815040588, 0.5791958570480347, 1.1701847314834595, -0.0010953731834888458, 0.19250120222568512, -0.19621264934539795, 0.340928852558136, -0.012789323925971985, 0.2706379294395447, 0.04985933378338814, -0.06072305887937546, -0.1779559850692749, -0.51115483045578, 0.14739245176315308, -0.28240931034088135, 0.18338482081890106, 0.7768957018852234, 0.09662283957004547, 0.13208214938640594, 0.08574117720127106, 0.17161248624324799, -0.7044283151626587, -0.899294912815094, -0.7242586016654968, -0.06102495640516281, -1.4586286544799805, 0.14381954073905945, 0.5209147930145264, -0.47161826491355896, -0.601395845413208, -0.575079619884491, -0.4346056580543518, 0.05685141682624817, -0.3353104591369629, -0.3860723078250885, -0.28970953822135925, 0.4028097987174988, 0.7144829630851746, 0.158035010099411, 0.972976803779602, 0.48369666934013367, 0.19395501911640167, -0.17976464331150055, 0.1385544389486313, -0.14290913939476013, 1.12428617477417, -0.038325145840644836, 0.19114646315574646, -1.671662449836731, 0.5701389312744141, 0.850265622138977, 0.62162846326828, -1.1429115533828735, 0.9014628529548645, -0.35751107335090637, -0.5920775532722473, 0.9958511590957642, 0.07513898611068726, 0.017204638570547104, -0.37179508805274963, 0.178007572889328, -0.7410337328910828, 0.052367646247148514, 0.6638652086257935, -0.699397623538971, 0.8170368671417236, 1.2554941177368164, 0.21798086166381836, -0.6839995980262756, 0.3552573323249817, 0.038584791123867035, 0.06603260338306427, -0.8667545318603516, 0.4209648072719574, -0.6177353858947754, -1.3058323860168457, -0.6082025766372681, 0.6511747241020203, -0.5739413499832153, -1.1166223287582397, -0.0612933523952961, -0.6951010823249817, 0.16339164972305298, 0.2129029929637909, -0.3043104112148285, 0.3079076409339905, -0.17331522703170776, -0.46717095375061035, -1.1658556461334229, -0.31890445947647095, 0.283610463142395, -0.21443209052085876, 0.24172547459602356, -0.8476330041885376, 0.24939866364002228, -0.35778477787971497, -0.1377353072166443, 0.5206931829452515, 1.9222497940063477e-06, 0.6235585808753967], "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb": [-0.25731492042541504, 0.09257566928863525, 0.1704576015472412, -0.38256627321243286, 0.7796028256416321, -0.562285840511322, 0.6626344919204712, 0.5802157521247864, -0.4423007071018219, -0.39318686723709106, -0.3156524896621704, -0.5226837396621704, -0.4900844097137451, 0.35078009963035583, 0.5987414717674255, 0.9921162128448486, 0.44870516657829285, -0.12081816792488098, -0.009715210646390915, -0.41876283288002014, -0.010488970205187798, -0.14021021127700806, -0.20911192893981934, 0.9098491668701172, 0.34581801295280457, 0.05930145084857941, 0.30786484479904175, 0.023958349600434303, -1.1037499904632568, 0.17341937124729156, 0.5593897700309753, -0.45495569705963135, 0.06282460689544678, -0.26720714569091797, -0.06273084133863449, -0.26991236209869385, -0.710559070110321, -0.34145957231521606, 0.059141501784324646, -0.30782341957092285, -0.5530208945274353, -0.3340917229652405, -0.23979200422763824, -0.02718050219118595, -0.8936141729354858, -0.1269836127758026, -1.0820783376693726, 0.6384702920913696, -0.6572673916816711, -0.16967394948005676, -1.6097344160079956, 0.5845035314559937, 0.12089315056800842, -0.2624022364616394, 0.6631955504417419, 0.8165426254272461, -0.2377665489912033, -0.5671988725662231, -0.11671651899814606, -0.2768757939338684, -0.3056796193122864, -0.05711035057902336, 0.5837310552597046, 0.09319579601287842, 0.36152517795562744, -0.9063072204589844, 0.2497749775648117, 0.7808029651641846, -1.4301692247390747, -0.7046787738800049, -0.40611204504966736, -0.03784924000501633, 0.23018187284469604, -0.460866779088974, 0.5065944194793701, -0.5492732524871826, -0.14238107204437256, 0.3333262503147125, 0.7493616938591003, 0.8182772994041443, -0.07468634843826294, 0.2730288803577423, -0.1779528260231018, 1.0272375345230103, 0.20439442992210388, -0.07945988327264786, -0.4093659520149231, -0.40806320309638977, -0.786594033241272, 0.9111983180046082, -0.30340465903282166, -0.3701893091201782, 0.6963272094726562, 0.5603410601615906, -0.050748661160469055, -0.1560899019241333, 0.8673878908157349, 0.3373766541481018, 0.5163123607635498, 0.31544315814971924, -0.5712636709213257, -0.8440514802932739, 0.07765819132328033, -0.14579246938228607, -1.273551106452942, -1.2418698072433472, -0.7491114139556885, -0.3598956763744354, -0.4132186770439148, 0.2965726852416992, -0.3589841425418854, -0.6494669914245605, -0.47756171226501465, 0.3335815668106079, -0.9495387077331543, 1.3214808702468872, 0.353272020816803, 0.024585820734500885, -0.4628063142299652, -0.002003666013479233, 1.1302820444107056, 1.053936243057251, 0.6517176032066345, 1.4636565446853638, -0.012133181095123291, 0.6243910789489746, 0.3943920433521271, 0.8827852606773376, -0.5224973559379578, -1.0311048030853271, 0.6290493607521057, 1.1926251649856567, 0.6042208075523376, -0.05161153897643089, -0.20919473469257355, -0.7132055163383484, -0.034133415669202805, 0.22600114345550537, 0.5479810237884521, -0.32452431321144104, -0.0064101871103048325, 0.12939538061618805, 0.19701239466667175, -0.20976883172988892, 0.9286688566207886, 0.04804790019989014, 0.027805417776107788, -0.8910261988639832, -0.18639549612998962, 0.7561207413673401, 0.5360310673713684, 0.6458374857902527, 0.48431965708732605, -1.1187231540679932, 0.18844667077064514, 0.9525600075721741, -0.13966470956802368, -0.20892690122127533, -1.0965206623077393, 0.4922570586204529, 0.4842528700828552, -0.15675577521324158, -0.06505227088928223, 0.08432312309741974, -0.3160810172557831, -0.2503319978713989, 0.08979720622301102, -0.40842849016189575, 0.10610762238502502, 0.4765320122241974, -0.3666367828845978, -0.8187806010246277, 0.546438455581665, -0.5467214584350586, -0.16194650530815125, 0.12041768431663513, 1.286505103111267, -0.07872762531042099, 0.4479828476905823, -0.2793164849281311, -1.0710362195968628, 0.8044291734695435, -0.4997876286506653, -0.3753478527069092, -0.7296872138977051, -0.2148376703262329, 1.2675864696502686, -0.299495667219162, -0.11735059320926666, -0.08170198649168015, -1.4432684183120728, -0.5027642250061035, -0.23962685465812683, 0.1916259229183197, 1.141565203666687, -0.11549840122461319, -0.2694738507270813, 0.42515742778778076, -0.07124405354261398, 0.6651351451873779, -0.18367454409599304, 0.4488668441772461, -0.02810649573802948, -1.0672003030776978, -0.9001503586769104, 1.0809811353683472, 0.46426689624786377, -0.14050936698913574, 0.10876072943210602, 0.2598400115966797, -0.2013344019651413, 0.0881919115781784, 0.7321033477783203, -0.240632101893425, 0.8609297275543213, 0.5818961262702942, 0.34218674898147583, -0.6593005061149597, 1.0256965160369873, -0.982359766960144, 0.2534448206424713, -0.11918296664953232, -0.8632363080978394, 0.3348194360733032, -0.47924917936325073, 1.3654617071151733, 0.7657778859138489, -0.8014819622039795, -0.283284455537796, 0.7713513374328613, 0.3999892473220825, -0.12247353047132492, 0.2765786647796631, 0.2702161967754364, -0.06707023829221725, -0.5306913256645203, 0.04775933176279068, -0.26615750789642334, 0.40145406126976013, -0.7919933795928955, 0.4636719226837158, 1.405627727508545, -0.2894517481327057, 0.9305154085159302, 0.5297646522521973, -0.06990863382816315, 0.2654493749141693, -0.33449509739875793, -0.5213714838027954, 0.011009447276592255, -0.4172603189945221, -0.619817316532135, 0.6305423974990845, -0.931467592716217, 0.8054889440536499, -0.6580296754837036, -1.0399978160858154, 0.3218050003051758, 0.4466630816459656, 0.8678244352340698, -0.17265987396240234, 0.6346436738967896, 0.5518901944160461, -0.41278931498527527, -0.4828245937824249, -1.7065134048461914, -0.7872309684753418, -0.06242871284484863, 0.36228302121162415, 0.21347518265247345, 0.3660280406475067, -0.5060968399047852, 0.22782810032367706, -0.12022257596254349, -0.5998473167419434, -0.3938906788825989, 0.37260901927948, 0.43112027645111084, -0.37868228554725647, -0.7728105783462524, -0.6260222792625427, 0.8779900074005127, -1.0433064699172974, -1.0796897411346436, -0.38503170013427734, -0.5298951864242554, 0.34082433581352234, -0.7618429064750671, -0.20830558240413666, 0.23294033110141754, 0.48992738127708435, 0.6617720127105713, -0.4771706759929657, 0.42093732953071594, 1.283808708190918, 0.2517050802707672, 0.3912357985973358, 0.4078129827976227, 0.34562626481056213, -0.07495942711830139, -0.07924973964691162, 0.25174930691719055, 0.4630110263824463, -0.2428005486726761, -0.3619937002658844, -0.35223332047462463, 0.04760304465889931, -0.36891210079193115, -4.517308712005615, 0.3851046562194824, 0.06700769811868668, -0.3713630437850952, 0.16511094570159912, 0.41134700179100037, 0.6605439186096191, -0.5039253234863281, -0.6882697939872742, 0.792773425579071, -0.2724221348762512, 0.11951183527708054, 0.1661306619644165, 0.7009952068328857, 0.07758955657482147, 0.7009499669075012, -0.05536995455622673, -0.7481222748756409, 0.054409295320510864, 0.44396498799324036, -0.16636145114898682, -0.943693995475769, -0.07938878983259201, -0.11420270055532455, 0.31995999813079834, 0.9823205471038818, -1.219024658203125, 0.9830026626586914, -0.734599232673645, -0.1576385200023651, 0.15457753837108612, -0.7031370401382446, -0.06173822283744812, 0.03969874233007431, 0.010964044369757175, -0.5040851831436157, 0.46352753043174744, -0.06265195459127426, 0.08002005517482758, -0.024004701524972916, -0.8782477378845215, -0.5554871559143066, -0.3377261757850647, -0.20998798310756683, 0.8953997492790222, 0.1298835724592209, -0.4605405032634735, -0.3810640275478363, 0.17474283277988434, 0.6601111888885498, 0.08345325291156769, -0.5756236910820007, -0.2411896288394928, -0.0486416220664978, -0.38065919280052185, -0.657816469669342, 0.10174643993377686, 0.08027251809835434, -0.713813304901123, -0.027897432446479797, 0.16215264797210693, -0.5129920244216919, -0.3047407567501068, -0.6247122287750244, -0.03264163061976433, -0.29225781559944153, -0.8594473004341125, -0.6231284737586975, 0.986071765422821, 0.9265538454055786, -0.2511883080005646, 0.5206509828567505, -0.14659152925014496, -1.4116712808609009, 0.07490312308073044, -0.5231567621231079, -0.48463377356529236, -0.37598368525505066, -0.14133508503437042, 0.5179399847984314, -0.385174959897995, 0.06878705322742462, 0.23209236562252045, 0.11581509560346603, -0.34847307205200195, -0.43446075916290283, -0.35294726490974426, -0.6692730784416199, -0.7852311730384827, -0.6445512771606445, 0.8947223424911499, -0.5529096722602844, 0.28615254163742065, 0.5151115655899048, 0.49276721477508545, 0.8221316337585449, 0.6467559933662415, -0.6625239253044128, 0.36481282114982605, -0.18378345668315887, 0.6847213506698608, -0.7538520693778992, 0.5509003400802612, -0.3092431426048279, 0.31121551990509033, -0.08837868273258209, -0.47819164395332336, 0.29377004504203796, 0.20256242156028748, 0.11462396383285522, 0.4200119078159332, -0.024709390476346016, 0.4023838937282562, -0.8434061408042908, 0.19599710404872894, -0.3815377652645111, 0.42030417919158936, 0.6048460602760315, 0.3790055215358734, -0.021855756640434265, -0.697433590888977, 0.11916004121303558, -0.7592816352844238, -0.5769370794296265, -1.5588176250457764, -0.10301357507705688, -0.23501479625701904, -0.2944549024105072, 0.36617037653923035, -0.1619722992181778, -0.17099201679229736, -0.060873519629240036, 0.37920257449150085, 0.19912901520729065, 0.46590515971183777, -0.14633101224899292, -0.34788697957992554, -0.4748694598674774, 0.9486953020095825, 0.08468788862228394, 0.37245407700538635, -0.08834587782621384, 0.035850197076797485, 0.8849101662635803, 0.9138175249099731, 0.7199388146400452, -0.15123961865901947, 0.006520092487335205, -0.22087495028972626, 0.14617162942886353, 0.14844714105129242, -0.1698455810546875, 0.11380169540643692, -0.675252377986908, 0.0009154975414276123, -0.8410603404045105, 0.7343472838401794, -0.40795791149139404, 0.1336950957775116, -0.9238643646240234, 0.16687537729740143, -0.6010556221008301, -0.22580350935459137, -0.13984668254852295, -0.003931490704417229, 1.158653974533081, -0.6678101420402527, 0.17220497131347656, -0.1986534297466278, -0.2957298755645752, 0.47436901926994324, -0.47026845812797546, -0.6036103963851929, 0.14554458856582642, -0.08692626655101776, 0.2582753896713257, 0.21035414934158325, -0.1479787677526474, -0.1949968934059143, 0.1381993293762207, -0.003725748509168625, -0.14137302339076996, 0.34635263681411743, 0.6968497037887573, 0.8366856575012207, 0.33287355303764343, 0.38613590598106384, -0.24710161983966827, -0.4083382487297058, 0.28998544812202454, 0.5649112462997437, 0.3438984155654907, -0.0875578299164772, -0.01702219992876053, -1.0085722208023071, -1.111380934715271, 0.11546807736158371, 0.3699696660041809, 0.2749074697494507, -0.09300495684146881, -0.17200708389282227, -0.31087347865104675, -0.4462197422981262, -0.14302045106887817, 0.2050708532333374, -1.0613031387329102, 0.36706703901290894, 0.2532349228858948, -0.14464031159877777, -0.3511280417442322, 0.09083205461502075, -0.32651209831237793, -0.5554717779159546, 0.47186318039894104, 0.1554110050201416, -0.43399521708488464, 0.23869773745536804, 0.02690676599740982, -0.09988876432180405, -0.21412496268749237, 0.24235978722572327, 0.4757212996482849, -0.25233232975006104, -0.3649044930934906, -0.4355490505695343, 0.5844415426254272, -0.23414011299610138, -0.42754489183425903, 0.23827078938484192, -0.435872346162796, 0.9254035353660583, -0.6347596049308777, 0.13731533288955688, 0.8618226051330566, 0.21234777569770813, 0.4745253324508667, -0.7517384886741638, 0.5315310955047607, 0.024512242525815964, 0.961182177066803, -0.3986780047416687, -0.22177425026893616, -0.3867672383785248, -0.8204002380371094, 0.2454891800880432, 0.11617150902748108, -0.31992673873901367, -0.007706768810749054, -0.1315218210220337, 0.8571044206619263, 0.27849280834198, 1.085235357284546, -0.06373618543148041, -0.2095535695552826, 0.9485810995101929, -0.8312567472457886, -0.9534464478492737, 0.1501428484916687, -0.6975516676902771, 0.0442863367497921, 0.09657533466815948, 0.26159408688545227, -0.424824982881546, 1.2551751136779785, 1.1469156742095947, 0.675960123538971, -0.17202621698379517, -0.35490596294403076, 0.5960609912872314, -0.33504441380500793, -0.4472402334213257, -0.8929198384284973, 0.37184271216392517, 0.6385381817817688, 0.2988509237766266, -0.13576297461986542, -0.4985295534133911, -0.329804390668869, 0.19889993965625763, -0.6070166230201721, -0.6748496294021606, 0.21307383477687836, 0.2769242823123932, 0.10536816716194153, 0.2780645489692688, -1.1627219915390015, -0.008609021082520485, 0.1449028104543686, -0.0475558266043663, 0.5081338882446289, -0.5800840854644775, 0.9081276655197144, -0.07517023384571075, -0.06255729496479034, 0.2534591853618622, -0.16016827523708344, 0.25532323122024536, 0.9598796367645264, -1.173789620399475, -0.0529060959815979, -0.643817126750946, 0.8977510929107666, 0.9215481877326965, 0.12700393795967102, -0.7477485537528992, 0.2177068591117859, 0.3272746801376343, -0.8760870695114136, 0.23204681277275085, 0.489701509475708, -0.16443011164665222, -0.46768638491630554, 0.5446804761886597, 0.5741449594497681, -1.290697693824768, -0.7945713996887207, -0.01412268728017807, -0.6624098420143127, -0.1260608583688736, 0.05059896409511566, 0.587944507598877, 0.18781930208206177, 1.0916833877563477, -0.16388696432113647, 0.48493480682373047, 1.339712142944336, -0.04089907929301262, -0.0434856116771698, 0.5172222852706909, 1.0092942714691162, 1.2266274690628052, 0.43556541204452515, 0.48910051584243774, 0.829893171787262, -0.4981672167778015, -0.7059912085533142, 0.19339479506015778, -0.3893466293811798, 0.0289154052734375, -0.011674687266349792, 0.06869165599346161, 1.0627644062042236, 0.2610327899456024, 1.4337670803070068, -0.41493839025497437, 0.1858946830034256, -0.3095051646232605, -0.6436764597892761, 0.7683170437812805, 0.4364885091781616, 0.11978526413440704, 0.825034499168396, -0.6376699805259705, -0.5984005331993103, -0.0005487799644470215, 0.24409812688827515, -0.108159638941288, 0.45448940992355347, -0.48348575830459595, -0.11396247893571854, -0.6431432366371155, 0.9940993189811707, 0.8954306840896606, -0.06397339701652527, 0.21864278614521027, 0.005992479622364044, 0.496051549911499, 0.3579009175300598, 0.25926530361175537, -0.10967893898487091, 0.13215474784374237, 0.045927681028842926, -0.23462191224098206, 0.12443190068006516, 0.4205128252506256, 0.1409938633441925, 0.6048550605773926, 0.2477145493030548, 0.29395151138305664, 0.2248680144548416, 0.8819396495819092, -0.7418421506881714, -1.1769386529922485, -0.3256751298904419, -0.6760692596435547, -0.9275908470153809, -0.07016240805387497, 0.15200240910053253, -0.37134015560150146, -0.6027489900588989, -0.4606212377548218, -0.5971051454544067, 0.20676374435424805, -0.33222830295562744, -0.4921395182609558, -0.07926325500011444, 0.1141805499792099, 0.2837534546852112, 0.34239089488983154, 0.6505144238471985, 0.7923125624656677, 0.0537978932261467, 0.10002447664737701, 0.151817187666893, 0.13988617062568665, 0.9145628809928894, 0.2576849162578583, 0.2513408362865448, -1.0835204124450684, 0.2258405089378357, 0.5107230544090271, 0.6545794010162354, -1.2885116338729858, 1.1615158319473267, -0.1972629725933075, -0.9470112323760986, 0.8488152623176575, -0.0974586009979248, -0.08828336745500565, -0.2420371174812317, 0.012676164507865906, -0.7432706356048584, -0.011112441308796406, 0.5177958011627197, -0.5604578256607056, 0.37946617603302, 0.7114649415016174, 0.1538867950439453, -0.4753548800945282, 0.1331375241279602, 0.07568634301424026, 0.17495961487293243, -1.0154023170471191, -0.1942109614610672, -0.4579258859157562, -0.9449477195739746, -0.6379401683807373, 0.91773521900177, -0.12972281873226166, -0.8531627058982849, -0.005454534199088812, -0.4714164137840271, -0.507002055644989, 0.2289886623620987, 0.06630999594926834, 0.21325978636741638, -0.5218153595924377, -0.8941279053688049, -0.7352749705314636, -0.11062158644199371, 0.05323795974254608, -0.12906426191329956, 0.2641589343547821, -0.5947394371032715, 0.1402696669101715, 0.20454341173171997, -0.16502419114112854, 0.3487042486667633, -0.001136086881160736, 0.351314902305603], "bf039726-614d-4d53-b16f-d119e7b18ae7": [-0.3399772644042969, 0.6250477433204651, -0.46445566415786743, 0.13602203130722046, 0.792362630367279, -0.6192295551300049, 0.835912823677063, 0.0050657689571380615, -0.36003467440605164, -0.49267086386680603, -0.4049623906612396, -0.052234724164009094, -0.9093902707099915, 0.5122777819633484, 1.0489615201950073, 1.0451233386993408, 0.5231057405471802, -0.46043744683265686, 0.2296629697084427, -0.3047105371952057, -0.33326587080955505, -0.2108343243598938, -0.1373627781867981, 0.614315390586853, 1.16228187084198, 0.2656415104866028, -0.21818670630455017, -0.03860027715563774, -1.0265398025512695, -0.14548146724700928, 0.3525451421737671, -0.82252037525177, -0.13959765434265137, -0.30979686975479126, 0.23623639345169067, -0.4353584349155426, -0.7378553152084351, -0.4654962420463562, 0.11452548205852509, -0.43126383423805237, -0.5862638354301453, -0.3243061900138855, -0.09248422086238861, 0.14338263869285583, -0.9257689714431763, -0.16874665021896362, -1.3123270273208618, 0.4931403398513794, -0.6636239290237427, 0.05893971025943756, -1.2853654623031616, 0.7772732377052307, -0.018383033573627472, -0.07942915707826614, 0.2790699601173401, 1.053218960762024, 0.05671729892492294, -0.8240885138511658, -0.08162009716033936, -0.3319055438041687, 0.2954367697238922, 0.08982004225254059, 0.43937450647354126, 0.16819754242897034, 0.11495361477136612, -0.6611315011978149, -0.4377894997596741, 0.6062017679214478, -1.0984063148498535, -0.43025413155555725, -0.5625779628753662, -0.22289010882377625, -0.08697421848773956, 0.03855122625827789, -0.04268322139978409, -0.18463510274887085, 0.18848717212677002, 0.4085594415664673, 0.7228044867515564, 1.0057449340820312, 0.12816783785820007, 0.8900268077850342, 0.04684313386678696, 1.1615612506866455, -0.08925274759531021, -0.2282346785068512, -0.43401435017585754, -0.3912193477153778, -0.701317548751831, 0.640913188457489, -0.6199753284454346, -0.8470795154571533, 0.40032950043678284, 0.49177128076553345, -0.034224733710289, -0.4605324864387512, 1.2074519395828247, 0.0867294892668724, 0.7449115514755249, 0.4995587468147278, -0.5161301493644714, -1.060908555984497, 0.15984511375427246, -0.39926454424858093, -1.27420175075531, -0.11901993304491043, -0.8684366345405579, -0.3467584252357483, -0.23706987500190735, -0.06863202899694443, -0.009122954681515694, -0.1046353429555893, -0.4469353258609772, 0.1957552284002304, -0.7694307565689087, 0.7973229885101318, 0.6267877817153931, 0.6542121171951294, -0.3513208031654358, 0.07963867485523224, 0.8358721137046814, 0.2800837755203247, 0.047226980328559875, 1.424688696861267, -0.08490754663944244, 0.39914488792419434, 0.5882441401481628, 0.7771617770195007, -0.530121922492981, -1.2786413431167603, 0.3558259606361389, 0.6194131970405579, 0.39483842253685, -0.08895086497068405, -0.41684260964393616, -0.5718221664428711, 0.10648003220558167, 0.22555312514305115, 0.4267582297325134, -0.8086624145507812, 0.03404700383543968, -0.18949909508228302, 0.20430070161819458, -0.44387346506118774, 0.6047270894050598, 0.36363470554351807, -0.3127334415912628, -0.7886906266212463, -0.20338895916938782, 0.7271692752838135, 0.516932487487793, 0.7809260487556458, 0.6002082824707031, -1.0060577392578125, 0.5412841439247131, 1.1135343313217163, -0.3808995187282562, 0.04506589472293854, -0.6586493253707886, 0.35825812816619873, 0.2015659511089325, -0.1215861588716507, -0.16607460379600525, -0.14794465899467468, -0.460838258266449, 0.09849630296230316, -0.07958319783210754, -0.09324592351913452, 0.00600200891494751, -0.06867220997810364, -0.3840559124946594, -1.264727234840393, 0.690764307975769, -0.24640676379203796, -0.3609570860862732, 0.4598083198070526, 1.4244369268417358, 0.22131209075450897, 0.46660465002059937, -0.4055854380130768, -0.9819366931915283, 0.6583403944969177, -0.012208905071020126, -0.1962137669324875, -0.22542618215084076, -0.5163391828536987, 1.363937497138977, -0.3700868487358093, 0.007382906973361969, 0.1278892606496811, -1.4579637050628662, -0.7466157078742981, -0.5610879063606262, 0.4793638586997986, 0.7997106909751892, -0.3927783966064453, 0.00646345317363739, 0.8223418593406677, -0.20125900208950043, 0.6436980366706848, -0.11551789939403534, 0.9951939582824707, 0.21423469483852386, -0.8723111748695374, -0.8083978295326233, 0.6942105889320374, 0.46086856722831726, -0.25066301226615906, -0.38781899213790894, 0.6597006916999817, -0.061716921627521515, 0.4978763461112976, 0.48137593269348145, -0.27241405844688416, 0.7223072052001953, 0.5441035032272339, 0.3709038496017456, -0.6411882042884827, 0.3788250982761383, -0.8518180847167969, 0.68472820520401, -0.2997417747974396, -0.7816648483276367, 0.19062304496765137, -0.5977441072463989, 1.2125821113586426, 0.7232465744018555, -0.5146378874778748, -0.23769015073776245, 0.25034281611442566, 0.5421068668365479, -0.24440613389015198, 0.13885252177715302, -0.22535477578639984, 0.15821872651576996, -0.15223892033100128, 0.6696341633796692, -0.06358428299427032, 0.5545090436935425, -0.9192631244659424, 0.2516315281391144, 1.22211754322052, -0.1503998339176178, 1.1350208520889282, 0.9030358791351318, -0.07190456241369247, 0.255309522151947, -0.38902029395103455, -0.4932732582092285, -0.6004594564437866, -0.6451544165611267, -0.6434376835823059, 0.26318466663360596, -0.8017705678939819, 0.9153340458869934, -0.5451840758323669, -1.1415499448776245, 0.5266238451004028, 0.6953186392784119, 0.8877496123313904, -0.4404919147491455, 0.831106424331665, 0.5956745147705078, -0.502311110496521, -0.4504249393939972, -1.2389461994171143, -0.5191465616226196, -0.26278355717658997, -0.2917421758174896, 0.32846683263778687, 0.9616712927818298, 0.053332358598709106, 0.4882711172103882, 0.05691695213317871, -0.6040281057357788, -0.4468315839767456, 0.8284561634063721, 0.5536324977874756, -0.23242947459220886, -0.5090128779411316, -0.18300074338912964, 0.8700122833251953, -1.1909770965576172, -1.0429739952087402, -0.5245026350021362, -0.3663463890552521, 0.31976357102394104, -0.49075445532798767, -0.5609358549118042, 0.28605344891548157, 0.6234377026557922, 0.7479611039161682, -0.28331905603408813, 0.07018116116523743, 1.3853933811187744, 0.08014039695262909, 0.29592353105545044, 0.06113538146018982, 0.7678803205490112, 0.10726267099380493, -0.09267297387123108, 0.21251830458641052, 0.17889416217803955, -0.5979465842247009, -0.38721585273742676, -0.5856664776802063, -0.14467673003673553, -0.27210503816604614, -4.385561943054199, 0.3890417814254761, -0.5567863583564758, -0.2700648307800293, 0.34728628396987915, 0.2940758764743805, 0.3175656199455261, -0.7856401205062866, -0.9868395924568176, 0.7684654593467712, -0.23902004957199097, -0.19652223587036133, 0.23733246326446533, 0.7257276177406311, 0.029440755024552345, 0.9041451215744019, -0.5367047786712646, -0.6976635456085205, 0.0884624570608139, 0.892848014831543, -0.24094420671463013, -0.7168696522712708, -0.2708379626274109, 0.07939714938402176, 0.2575139105319977, 0.14856384694576263, -1.0921295881271362, -0.07699459791183472, -1.0902992486953735, -0.010660536587238312, 0.16044670343399048, -0.5074478983879089, 0.03376872092485428, 0.5322733521461487, -0.0007397327572107315, -0.7525053024291992, 0.689988374710083, 0.41256439685821533, 0.5032248497009277, 0.022336341440677643, -0.5504370927810669, -0.5797315835952759, -0.2977151870727539, -0.0362367108464241, 0.7611750960350037, -0.47802844643592834, -0.37271642684936523, -0.03555143624544144, 0.03996923938393593, 0.49647170305252075, 0.17712686955928802, -0.3775310814380646, -0.5525528192520142, 0.5667555928230286, 0.2452162504196167, -0.4432884156703949, 0.1654077172279358, -0.22175759077072144, -0.8330141305923462, -0.2636842429637909, 0.10950948297977448, -0.8565540313720703, -0.9490925073623657, -0.6018579602241516, -0.0579766109585762, -0.5518276691436768, -0.6632202863693237, -0.8772447109222412, 0.6211404800415039, 1.0189805030822754, -0.4791593551635742, 0.961724042892456, 0.004282005131244659, -1.3305143117904663, 0.4179064631462097, -0.5037987232208252, 0.0834161639213562, -0.5688653588294983, -0.637260377407074, 0.42320871353149414, -0.60140061378479, -0.2914647161960602, 0.22265243530273438, -0.06670096516609192, -0.22088623046875, -0.6842413544654846, -0.2673530578613281, -0.49843427538871765, -0.7061044573783875, -0.4702720642089844, 1.017441749572754, -0.95535808801651, 0.12317390739917755, 0.8973788022994995, 0.5440685153007507, 0.3459511399269104, 0.2695550322532654, -0.585639238357544, 0.5887812376022339, -0.14641883969306946, 0.46415987610816956, -0.8910167217254639, 0.3306126892566681, -0.26984885334968567, 0.14658044278621674, -0.09714124351739883, -0.3374951481819153, 0.19159571826457977, 0.47493693232536316, 0.3222843408584595, 0.2669878900051117, -0.05379651486873627, -0.03523920476436615, -0.37205788493156433, -0.2092229723930359, -0.8951223492622375, 0.7376908659934998, 0.5114425420761108, -0.01041780412197113, -0.47013288736343384, -0.2558981776237488, 0.6654970049858093, -0.5079047083854675, -0.3257906436920166, -1.3649053573608398, 0.38341060280799866, 0.1585441529750824, 0.09219326823949814, 0.2905055582523346, 0.25279727578163147, -0.4432367980480194, -0.4559134244918823, -0.039150580763816833, -0.10042669624090195, 0.6479360461235046, -0.24741315841674805, 0.05319499969482422, -0.5130857825279236, -0.04240981489419937, -0.09790150821208954, 0.2477063536643982, -0.016476985067129135, 0.2846320569515228, -0.07088365405797958, 0.5070147514343262, 0.9094473123550415, -0.26743561029434204, 0.3252270817756653, -0.4676489531993866, -0.20077380537986755, -0.07011856883764267, -0.4230159819126129, 0.23845027387142181, -0.5438311696052551, 0.4172409772872925, -0.26720792055130005, 1.0973968505859375, -0.17466531693935394, 0.08268307149410248, -0.8993340730667114, 0.2916664779186249, -0.922703742980957, -0.35501447319984436, -0.10932518541812897, -0.2594870924949646, 1.32993745803833, -0.8553898334503174, 0.2140701711177826, -0.2334938496351242, 0.16380910575389862, 0.06824919581413269, -0.5545445680618286, -0.8147889971733093, -0.05831886827945709, -0.21068036556243896, 0.7087569236755371, 0.15519487857818604, 0.1381915658712387, -0.1279231309890747, 0.35540181398391724, 0.07705213874578476, 0.14905382692813873, -0.10866086184978485, 0.5161387920379639, 0.8660762310028076, -0.1293913722038269, 0.17208506166934967, -0.013785693794488907, -0.3636608421802521, -0.42950475215911865, 0.44037431478500366, 0.5295376777648926, -0.436928391456604, -0.0667123943567276, -0.8488327264785767, -1.1152263879776, 0.3037484288215637, 0.3857852816581726, 0.22297430038452148, -0.17097656428813934, 0.1122853234410286, -0.45455917716026306, -0.5306531190872192, -0.04103945568203926, -0.6872304677963257, -1.4592840671539307, 0.5188111066818237, -0.11820173263549805, -0.9113090634346008, -0.2603641152381897, -0.005482181906700134, -0.2118140161037445, -1.0262916088104248, 0.257235586643219, -0.18818670511245728, -0.5749174356460571, -0.1299552321434021, 0.30200496315956116, 0.2078864425420761, -0.5925125479698181, 0.6213452816009521, 0.14752580225467682, -0.5968995094299316, -0.17837725579738617, -0.5520862340927124, 0.6189167499542236, -0.4255279302597046, -0.42717245221138, 0.7661600112915039, -0.2876846194267273, 0.6805611252784729, -0.5443837642669678, -0.009086988866329193, 1.1057415008544922, 0.18176499009132385, 0.16552942991256714, -0.2056659311056137, 0.5690592527389526, -0.2900741994380951, 0.4800891876220703, 0.24232783913612366, -0.27851319313049316, -0.04394601285457611, -0.519809365272522, 0.4933108687400818, 0.5225565433502197, -0.6433834433555603, -0.41698741912841797, -0.03635600581765175, 0.739071249961853, 0.1828230768442154, 0.8722663521766663, 0.3630412817001343, -0.5943170189857483, 1.003889560699463, -0.864138662815094, -0.4027164876461029, -0.33842840790748596, -0.45996248722076416, 0.21296226978302002, 0.5443556904792786, 0.518591046333313, -0.9637103080749512, 0.6576352715492249, 0.655059278011322, 0.7445816397666931, 0.056132972240448, -0.396588534116745, 1.142317295074463, -0.30622923374176025, -0.5821585059165955, -0.6575440764427185, 0.29216402769088745, 0.7363182902336121, 0.5584981441497803, -0.3775383234024048, -0.6106560230255127, 0.0011194385588169098, 0.5950883626937866, -0.3917357623577118, -0.6681795120239258, -0.045878052711486816, -0.2499220073223114, 0.28655120730400085, 0.6618954539299011, -0.7195082902908325, -0.01927771605551243, 0.0657205730676651, 0.1511024534702301, 0.3048667311668396, -0.44149094820022583, 0.8855561017990112, -0.13195815682411194, 0.2105882614850998, 0.07800211012363434, -0.10165998339653015, 0.5995802879333496, 0.9507662653923035, -0.5802972912788391, 0.05017099902033806, -0.43802347779273987, 0.6884769201278687, 0.8920747637748718, 0.1563722789287567, -0.05037476122379303, 0.4299395680427551, -0.2485402226448059, -1.1184543371200562, 0.22492733597755432, 0.6095699071884155, 0.6862554550170898, -0.7682591080665588, 1.124794840812683, 0.751673698425293, -1.0637130737304688, -0.44244423508644104, 0.23815466463565826, -0.8587405681610107, -0.14026789367198944, 0.18337906897068024, 0.28136134147644043, 0.08531838655471802, 0.951391875743866, 0.061112526804208755, 0.5398060083389282, 1.0039615631103516, 0.14507107436656952, -0.10659360885620117, -0.09653811156749725, 1.0061917304992676, 1.183239221572876, 0.6361075639724731, 0.1415219008922577, 0.6398794651031494, -0.4419485032558441, -0.8754906058311462, -0.15092416107654572, -0.18341517448425293, 0.028032831847667694, -0.5038926601409912, -0.02712199091911316, 0.9208437204360962, 0.2395223081111908, 1.241640567779541, -0.1289912909269333, 0.2222825139760971, -0.19927319884300232, -0.08852367103099823, 0.9848821759223938, 0.26524466276168823, 0.19814035296440125, 0.5867231488227844, -0.32570916414260864, -0.6039434671401978, -0.08661423623561859, 0.6494733691215515, 0.0497879758477211, 0.14236968755722046, -0.42254409193992615, 0.04923592880368233, -0.9740868806838989, 1.04249107837677, 1.0496842861175537, -0.03299917280673981, 0.31011176109313965, 0.35159116983413696, 0.32893720269203186, 0.22160762548446655, 0.18527798354625702, -0.04913291335105896, -0.094853475689888, 0.233720064163208, -0.2416664958000183, -0.4177234172821045, 0.9933019280433655, 0.12406904995441437, 0.5031144022941589, -0.38305482268333435, -0.276803195476532, 0.3875862658023834, 1.3363674879074097, -0.4050348103046417, -1.233501672744751, -0.6389416456222534, -0.4069214463233948, -0.8846444487571716, -0.1480962485074997, 0.7793145775794983, -0.5597677230834961, -0.8692803382873535, -0.3341556489467621, -0.7341708540916443, -0.20656266808509827, 0.07947592437267303, -0.49473661184310913, -0.5585165023803711, 0.7317149043083191, 0.8608062863349915, 0.49246707558631897, 0.55217045545578, 0.8513961434364319, -0.09832257777452469, 0.21911418437957764, -0.037089429795742035, 0.15025411546230316, 0.8587234020233154, 0.06387835741043091, 0.4401826560497284, -0.9601660966873169, 0.5133732557296753, 0.39972439408302307, 0.47594332695007324, -1.616740107536316, 0.863308310508728, 0.016344040632247925, -0.9045125246047974, 0.5613396167755127, 0.09748487919569016, -0.10972219705581665, 0.08033262193202972, 0.11502350866794586, 0.13870711624622345, 0.10036951303482056, 0.6682286262512207, -0.6907712817192078, 0.6436722874641418, 0.5983636975288391, -0.13111256062984467, -0.315500944852829, 0.32856541872024536, 0.006455477327108383, 0.35276225209236145, -0.43303126096725464, -0.5593843460083008, -0.3139854669570923, -0.698501467704773, -0.7911614775657654, 0.9871223568916321, 0.37718603014945984, -0.5326781272888184, 0.25015437602996826, 0.3206615447998047, -0.3475804924964905, 0.588661789894104, -0.0501183420419693, -0.45542484521865845, -0.499644011259079, -1.302567481994629, -0.9268535375595093, 0.6841033697128296, 0.3945627212524414, -0.015920739620923996, 0.01864650845527649, -0.73121577501297, 0.49343031644821167, -0.39676567912101746, -0.428813636302948, 0.06539088487625122, -0.07165227830410004, 0.010781857185065746], "bcc6f32f-9b05-4747-bcff-29b82efce87d": [-0.17587649822235107, 0.7096060514450073, -0.31115609407424927, 0.17645785212516785, 0.8286933302879333, -0.720490038394928, 1.0878688097000122, -0.3694605529308319, -0.305948942899704, -0.4899892807006836, -0.2128106653690338, -0.20513701438903809, -0.9309666156768799, 0.6965038180351257, 1.207183599472046, 1.1322250366210938, 0.5289256572723389, -0.5699358582496643, -0.00020607933402061462, -0.25140443444252014, -0.024283917620778084, 0.023012056946754456, 0.12973803281784058, 0.48799899220466614, 0.9558134078979492, -0.0743558257818222, -0.16362372040748596, 0.03542923927307129, -0.731302797794342, -0.22565197944641113, 0.41086384654045105, -0.7643263936042786, -0.18390248715877533, -0.27087104320526123, 0.3573944866657257, -0.11056628078222275, -0.8288862109184265, -0.2810724377632141, 0.06405211985111237, -0.2094416618347168, -0.6780306100845337, 0.017183899879455566, -0.1897059679031372, 0.38707903027534485, -0.9254337549209595, -0.05164146423339844, -1.397114872932434, 0.7379853129386902, -0.520279049873352, 0.07785956561565399, -1.1368515491485596, 0.763502299785614, 0.212114155292511, 0.10729069262742996, -0.05507899075746536, 1.2298587560653687, 0.14305610954761505, -0.7553433775901794, -0.20509251952171326, -0.4286823868751526, 0.34514492750167847, 0.08659346401691437, 0.2870910167694092, 0.24455766379833221, 0.07155059278011322, -0.7742695808410645, -0.7896939516067505, 0.5976399779319763, -1.1260937452316284, -0.2849844694137573, -0.2588442862033844, -0.16542547941207886, 0.1808929145336151, 0.029103368520736694, 0.47744300961494446, -0.27055296301841736, 0.43179211020469666, 0.4920426607131958, 0.865686297416687, 0.8472442030906677, 0.0421905517578125, 0.6790605187416077, -0.15452979505062103, 1.0910903215408325, -0.1441461592912674, -0.34330475330352783, -0.2529566287994385, -0.4654563367366791, -0.5826382637023926, 0.8080081939697266, -0.7315372824668884, -0.9819143414497375, 0.6993424892425537, 0.7522476315498352, 0.30621790885925293, -0.29233527183532715, 1.134791612625122, -0.10257277637720108, 0.7127160429954529, 0.12483954429626465, -0.18455496430397034, -1.0038472414016724, 0.2431124448776245, -0.06328393518924713, -1.5648776292800903, -0.031501542776823044, -0.8461592793464661, -0.74300616979599, 0.07160653173923492, 0.20045757293701172, -0.3074534833431244, 0.06848697364330292, -0.5049667358398438, 0.09379454702138901, -1.123412013053894, 0.9491190314292908, 0.392005056142807, 0.25379621982574463, 0.018759578466415405, 0.012149833142757416, 0.8757018446922302, 0.8070183396339417, 0.021557539701461792, 1.511078119277954, 0.0434119775891304, 0.6444557309150696, 0.025036845356225967, 0.7706024050712585, -0.5292301177978516, -1.0102183818817139, 0.6180027723312378, 0.7956505417823792, 0.26038938760757446, -0.09792571514844894, -0.6042800545692444, -0.550805389881134, 0.3157019019126892, 0.6454387307167053, 0.5711367130279541, -0.5614014863967896, 0.023086752742528915, -0.18141190707683563, 0.17722009122371674, -0.3797326982021332, 0.7140082120895386, 0.053633108735084534, -0.461141973733902, -1.0010268688201904, -0.187935471534729, 0.5129721760749817, 0.5171061754226685, 0.8925958275794983, 0.5157883167266846, -1.1868553161621094, 0.7825894355773926, 0.8436894416809082, -0.35070180892944336, -0.36429861187934875, -0.5388138294219971, 0.1919350028038025, 0.1275087296962738, -0.2496892809867859, 0.12013214081525803, 0.034826744347810745, -0.4524875283241272, -0.04606853798031807, -0.04551241546869278, -0.06772983074188232, 0.027270764112472534, -0.2961257994174957, -0.46544191241264343, -1.217477560043335, 0.8759927749633789, -0.4930877089500427, -0.26244935393333435, 0.22215873003005981, 1.3399584293365479, 0.49312856793403625, 0.46121746301651, -0.3171297609806061, -1.0386115312576294, 0.6105177998542786, -0.1711057722568512, -0.5084111094474792, -0.30434998869895935, -0.5236161947250366, 1.5272902250289917, -0.39727428555488586, 0.40153348445892334, 0.16430863738059998, -1.5860158205032349, -0.8138481378555298, -0.5389641523361206, 0.23394888639450073, 1.0417808294296265, -0.12845271825790405, -0.02460007555782795, 0.7571486234664917, -0.021905973553657532, 0.5492295026779175, -0.001530863344669342, 0.797553300857544, 0.09081268310546875, -0.8207336068153381, -0.8811292052268982, 0.7776199579238892, 0.44350966811180115, -0.40617045760154724, -0.5163648128509521, 0.5192583203315735, 0.07589550316333771, 0.2103617787361145, 0.6332995891571045, -0.5347481369972229, 0.484527587890625, 0.3485105633735657, 0.33637911081314087, -0.6304092407226562, 0.5608844757080078, -0.7203012704849243, 0.9271833300590515, -0.11498422920703888, -0.9851445555686951, 0.36152586340904236, -0.5317227840423584, 1.2192161083221436, 0.9914977550506592, -0.708256185054779, -0.6006811261177063, 0.4255237281322479, 0.4244678020477295, -0.1516970694065094, 0.28567034006118774, -0.08855842053890228, -0.21614804863929749, -0.28886517882347107, 0.47569867968559265, -0.1722314953804016, 0.6105138063430786, -1.0665251016616821, 0.37663599848747253, 1.2482854127883911, 0.10686048120260239, 1.0140641927719116, 0.7124563455581665, -0.13442248106002808, 0.2367316633462906, -0.2831098139286041, -0.22130976617336273, -0.28804147243499756, -0.7942562699317932, -0.6570051312446594, 0.32120656967163086, -0.9246006608009338, 0.7439624071121216, -0.7396450638771057, -0.869016706943512, 0.45659109950065613, 0.6403727531433105, 0.6962936520576477, -0.3696582615375519, 1.025931715965271, 0.7318353652954102, -0.3764342963695526, -0.30063503980636597, -1.3871257305145264, -0.8140766024589539, -0.45394518971443176, 0.039602335542440414, 0.2951880991458893, 0.8708698153495789, -0.01969202235341072, 0.482366144657135, -0.06324377655982971, -0.4933537542819977, -0.18035247921943665, 0.8464255332946777, 0.514029860496521, 0.02327781915664673, -0.593137264251709, -0.17940965294837952, 1.0119144916534424, -0.839396595954895, -1.109254240989685, -0.8199188113212585, -0.5401018857955933, 0.36571118235588074, -0.4665759205818176, -0.4409026503562927, 0.28868064284324646, 0.4287908673286438, 0.49551066756248474, -0.24153494834899902, 0.056974805891513824, 1.3312711715698242, 0.059729062020778656, 0.6203505396842957, 0.15761776268482208, 0.5441364645957947, 0.16950905323028564, 0.00665651261806488, 0.595468282699585, -0.025284070521593094, -0.6007509827613831, -0.08604656159877777, -0.5991353988647461, -0.17069655656814575, -0.46194860339164734, -4.20218563079834, 0.1529078632593155, -0.5186430215835571, -0.31983432173728943, 0.37408894300460815, 0.27703365683555603, 0.4173520505428314, -0.8592023849487305, -1.0697771310806274, 0.7335505485534668, 0.06778594851493835, -0.09936016798019409, 0.3565989136695862, 0.8881282806396484, 0.005081500858068466, 0.9607939124107361, -0.4272631108760834, -0.6581799387931824, 0.023931249976158142, 0.8921236991882324, -0.32643449306488037, -0.6050481796264648, -0.40016990900039673, 0.16986894607543945, 0.5038163661956787, 0.026583336293697357, -1.0767426490783691, 0.06130097806453705, -1.2312184572219849, -0.13579243421554565, 0.2701963484287262, -0.4501652121543884, -0.04311824589967728, 0.6671098470687866, 0.49718648195266724, -0.3276813328266144, 0.5968415141105652, 0.4549214839935303, 0.2542000710964203, 0.1067836582660675, -0.6880478262901306, -0.6139169335365295, -0.01929696649312973, -0.22099238634109497, 0.8496857285499573, -0.5379002094268799, -0.4462774693965912, -0.28929340839385986, 0.19412486255168915, 0.4879927337169647, -0.12454035133123398, -0.4084624946117401, -0.3686215579509735, 0.5911233425140381, 0.2816862165927887, -0.458106130361557, 0.18481996655464172, -0.46235018968582153, -1.0552630424499512, -0.26434126496315, 0.1360388994216919, -0.8381255865097046, -0.8792878985404968, -0.48419344425201416, -0.3805924654006958, -0.3508524000644684, -0.852264404296875, -1.0825271606445312, 0.3600297272205353, 1.1572905778884888, -0.5619052052497864, 0.7957093119621277, 0.0576506108045578, -1.3736034631729126, 0.03708626329898834, -0.46131032705307007, -0.011310011148452759, -0.4724772274494171, -0.5569809079170227, 0.4242466986179352, -0.9275438189506531, -0.45367860794067383, 0.16392315924167633, 0.09783171117305756, -0.18154463171958923, -0.6614221930503845, 0.08366985619068146, -0.36673927307128906, -0.6397347450256348, -0.4404894709587097, 1.082122802734375, -0.8374473452568054, 0.2901621162891388, 0.4919249415397644, 0.5601359605789185, 0.37029486894607544, 0.4165903329849243, -0.5870954990386963, 0.42047443985939026, -0.2826451361179352, 0.7385806441307068, -0.6890448331832886, 0.25307971239089966, 0.07389579713344574, 0.07417834550142288, -0.09330088645219803, -0.2768544554710388, 0.0800384059548378, 0.5908077955245972, 0.11391572654247284, 0.14960235357284546, -0.3908442258834839, -0.3395901322364807, -0.39898794889450073, -0.12007904797792435, -0.9168654084205627, 0.5628979802131653, 0.5433242917060852, 0.03847416490316391, -0.4707068204879761, -0.5594518780708313, 0.5116673111915588, -0.39117759466171265, -0.23633715510368347, -1.4828145503997803, 0.4151201546192169, 0.1090967059135437, 0.2719944715499878, 0.22473181784152985, 0.28226473927497864, -0.4961971938610077, -0.7283790111541748, 0.18757501244544983, -0.2150460183620453, 0.5744458436965942, -0.707047700881958, -0.2085825353860855, -0.26783841848373413, 0.07195832580327988, -0.3013215661048889, 0.38214999437332153, 0.021738093346357346, 0.7343823909759521, -0.15406951308250427, 0.42853888869285583, 0.8918851017951965, -0.2604728937149048, 0.2727404534816742, -0.34808748960494995, -0.18108145892620087, -0.174030140042305, -0.030148766934871674, -0.13925066590309143, -0.5264728665351868, 0.12881425023078918, -0.5548055171966553, 1.0604469776153564, -0.014622010290622711, 0.03721679002046585, -0.7510382533073425, 0.2184436321258545, -1.1781978607177734, -0.28846150636672974, -0.051837507635354996, 0.14605721831321716, 1.234253168106079, -0.6936320662498474, 0.21898341178894043, -0.618238091468811, -0.03757590800523758, -0.0036300532519817352, -0.5273400545120239, -0.9031655192375183, -0.09416577219963074, -0.3063696324825287, 0.7382512092590332, 0.12584879994392395, 0.05683349072933197, 0.12661132216453552, 0.3504694104194641, 0.09614435583353043, 0.09886200726032257, 0.2811770737171173, 0.2952963411808014, 0.8171371817588806, 0.13658660650253296, 0.2196020483970642, -0.1734229326248169, -0.4182360768318176, -0.004227206110954285, 0.41435638070106506, 0.421960711479187, -0.976414144039154, 0.14137005805969238, -0.8035805821418762, -1.2300117015838623, 0.5621063113212585, 0.3551543951034546, 0.23834273219108582, 0.15548495948314667, 0.24011653661727905, -0.250081866979599, -0.2199203372001648, 0.3601091206073761, -0.32658782601356506, -1.5013889074325562, 0.43340566754341125, 0.18769246339797974, -0.627658486366272, -0.0451032817363739, 0.00590168684720993, -0.41110122203826904, -1.1455639600753784, 0.3424239158630371, -0.0682954341173172, -0.9335499405860901, -0.13327822089195251, 0.14027008414268494, 0.2055145502090454, -0.6036137342453003, 0.5560920238494873, 0.1930924355983734, -0.5386418104171753, -0.3697207272052765, -0.5222381353378296, 0.7637922763824463, -0.20552489161491394, -0.14011235535144806, 0.5945042371749878, -0.45566943287849426, 0.3135177493095398, -0.5626410245895386, 0.025182783603668213, 1.0618956089019775, 0.4178939461708069, 0.2806183993816376, -0.29199036955833435, 0.39922818541526794, -0.15906386077404022, 0.32865989208221436, 0.1584412306547165, -0.3198140263557434, -0.11451563984155655, -0.33502137660980225, 0.7848047614097595, 0.3003506064414978, -0.565451443195343, -0.15043504536151886, 0.13733001053333282, 0.4511156380176544, 0.38526198267936707, 0.8582038879394531, 0.31955400109291077, -0.5668455362319946, 1.2706254720687866, -1.0861650705337524, -0.48570117354393005, -0.40496116876602173, -0.5745542645454407, 0.35053786635398865, 0.054980598390102386, 0.6831549406051636, -1.0271050930023193, 0.5796710252761841, 0.7038379311561584, 0.36197978258132935, 0.02861948311328888, -0.6326430439949036, 0.7686971426010132, -0.4426569938659668, -0.38308337330818176, -0.7368528842926025, 0.4856128394603729, 0.4773724377155304, 0.43663379549980164, -0.6364573240280151, -0.37770742177963257, -0.12294016033411026, 0.5515082478523254, -0.6579623818397522, -0.7681713104248047, 0.043219175189733505, -0.08498111367225647, 0.21798202395439148, 0.5818477272987366, -0.8718923330307007, -0.17424383759498596, 0.06649143993854523, 0.07811625301837921, 0.31946778297424316, -0.34677043557167053, 0.8095839023590088, -0.10154196619987488, 0.283399373292923, -0.2737986147403717, 0.024387307465076447, 0.6624500751495361, 0.9532645344734192, -0.7693893909454346, 0.11714305728673935, -0.4952990710735321, 0.7256851196289062, 1.013328194618225, 0.3896929621696472, -0.04479805380105972, 0.3343418538570404, -0.5082535147666931, -1.130133867263794, 0.5996599793434143, 0.5709215998649597, 0.6548854112625122, -0.7347325086593628, 0.9584352374076843, 0.6331125497817993, -1.2199877500534058, -0.2978664040565491, 0.37405160069465637, -0.7820616960525513, -0.2089531421661377, 0.4025592803955078, 0.2419458031654358, 0.14638367295265198, 0.8445993661880493, -0.076115183532238, 0.7112702131271362, 1.0543243885040283, -0.04663567245006561, 0.1621399223804474, -0.013850823044776917, 1.0713143348693848, 1.0275611877441406, 0.6218020915985107, 0.11720134317874908, 1.0592694282531738, -0.5837526321411133, -0.966595470905304, 0.11737512797117233, 0.044408537447452545, 0.08576209843158722, -0.5498496890068054, -0.11636257916688919, 0.950386643409729, 0.3400619626045227, 1.3396968841552734, -0.4583226442337036, 0.5264981389045715, -0.2774868607521057, -0.403244286775589, 1.109151005744934, 0.37425562739372253, 0.23565712571144104, 0.6223957538604736, -0.510420560836792, -0.8153793215751648, -0.3232229948043823, 0.7358211278915405, -0.09991353750228882, 0.05489780008792877, -0.3052069842815399, -0.02283795364201069, -0.7778123021125793, 0.8688427805900574, 0.9160922169685364, -0.15686661005020142, 0.24008265137672424, 0.20490148663520813, 0.35403117537498474, -0.023976534605026245, -0.006667513400316238, 0.012859269976615906, -0.43772047758102417, 0.056944262236356735, -0.5340380668640137, 0.0781598910689354, 0.6345034241676331, 0.066092349588871, 0.7065809965133667, -0.469382107257843, -0.46306583285331726, 0.3511391878128052, 0.9286022782325745, -0.45436033606529236, -1.11138916015625, -0.6346203088760376, -0.24597012996673584, -0.7726949453353882, -0.13028347492218018, 0.8086484670639038, -0.4528440237045288, -1.0433752536773682, -0.2337905466556549, -0.5311467051506042, 0.07712702453136444, 0.044506922364234924, -0.6446545124053955, -0.5283738970756531, 0.7130444049835205, 0.29535767436027527, 0.20458456873893738, 0.747288703918457, 0.8839719295501709, 0.09659907221794128, 0.10431081056594849, 0.16012029349803925, 0.24406126141548157, 0.9212136268615723, -0.044396981596946716, 0.5448408126831055, -0.9301002025604248, 0.49037548899650574, 0.27060064673423767, 0.47111940383911133, -1.6231822967529297, 1.193126916885376, -0.11205510795116425, -0.5024054050445557, 0.6115447878837585, -0.08843767642974854, -0.17821969091892242, -0.14064252376556396, -0.006860226392745972, 0.3560241460800171, 0.2203851193189621, 0.44094690680503845, -0.5503553748130798, 0.9139412045478821, 0.7447306513786316, 0.029145708307623863, -0.4826490581035614, 0.2360045611858368, -0.21100936830043793, 0.07384621351957321, -0.642264187335968, -0.5334884524345398, -0.43409988284111023, -0.9822155237197876, -0.6082913875579834, 0.8821747899055481, 0.26451244950294495, -0.839256763458252, 0.10739396512508392, -0.06271001696586609, -0.28453147411346436, 0.7391220927238464, -0.10263691842556, 0.0529586523771286, -0.45009738206863403, -1.2704484462738037, -0.9849967956542969, 0.5499454140663147, 0.5206663608551025, -0.21550533175468445, 0.18802335858345032, -1.0055091381072998, 0.34626060724258423, -0.4571850895881653, -0.4447285830974579, 0.35423916578292847, -0.027443550527095795, -0.021979093551635742], "51c9d9e2-4889-4b34-84c8-76cc71f93b3f": [-0.14826565980911255, 0.2603799104690552, -0.30888187885284424, 0.25919151306152344, 0.8554150462150574, -0.4858589172363281, 0.6478006839752197, 0.838824987411499, -0.2102992683649063, -0.5459355711936951, -0.3481537997722626, -0.1297229528427124, -1.0896399021148682, 0.6064451932907104, 0.8221325874328613, 1.211028814315796, 0.4960715174674988, -0.5216697454452515, 0.2889871597290039, 0.07361669838428497, 0.1309731900691986, -0.10529902577400208, 0.10890907794237137, 0.2842775583267212, 0.412906676530838, -0.04783133044838905, -0.033232416957616806, 0.21460874378681183, -1.2132861614227295, 0.27157217264175415, 0.7827014327049255, -0.33637669682502747, 0.11333931982517242, -0.3116881251335144, 0.16048063337802887, -0.04454205930233002, -0.9069559574127197, -0.6271985173225403, -0.09769086539745331, -0.056553203612565994, -0.6851369738578796, -0.24551032483577728, -0.40748029947280884, 0.3055640757083893, -0.9333614706993103, -0.19182360172271729, -1.5253856182098389, 0.9250630140304565, -0.5080091953277588, -0.29133257269859314, -1.2112011909484863, 0.5402002930641174, -0.11060570180416107, 0.5351917147636414, 0.4513477087020874, 1.284649133682251, -0.03835677355527878, -0.5442606210708618, -0.3351854979991913, -0.0897575318813324, 0.3479488492012024, 0.45457106828689575, 0.5806517601013184, 0.07836789637804031, 0.33996909856796265, -0.6041778326034546, -0.09756243228912354, 0.7888917922973633, -1.0670521259307861, -0.8659854531288147, -0.3987661898136139, 0.2114192247390747, 0.08102217316627502, 0.013730168342590332, 0.4576866030693054, -0.341469943523407, -0.2172817587852478, 0.6119832396507263, 0.5166066884994507, 0.9410260915756226, 0.0674995481967926, 0.8052868843078613, -0.2171885073184967, 0.9221112728118896, 0.012678653001785278, -0.28322532773017883, -0.6524237990379333, -0.4675467610359192, -0.9215447306632996, 0.815019428730011, -0.9967626333236694, -0.5277692079544067, 0.4648906886577606, 0.4674503207206726, -0.13052743673324585, -0.6851821541786194, 1.0427021980285645, 0.3013419508934021, 0.6213051676750183, 0.20272858440876007, -0.7890006303787231, -0.7373648881912231, 0.3273385167121887, 0.1371847540140152, -1.4032851457595825, -0.6780408024787903, -0.9801878333091736, -0.20404833555221558, 0.12261448800563812, -0.13286177814006805, -0.13629408180713654, -0.5538994073867798, -0.5514447689056396, 0.1265869289636612, -0.9603134989738464, 0.9500221014022827, 0.6007192730903625, 0.10526111721992493, 0.003595452755689621, -0.22221101820468903, 0.94929039478302, 0.5338453054428101, 0.06944125890731812, 1.2659717798233032, 0.023264843970537186, 0.8853756189346313, 0.5320888757705688, 1.1790724992752075, -0.73600172996521, -1.0939249992370605, 0.16401468217372894, 0.8308704495429993, 0.11749821156263351, -0.15696053206920624, -0.3871692717075348, -0.300792396068573, 0.17547224462032318, 0.16790509223937988, 0.1470436006784439, -0.2624629735946655, -0.2027224600315094, -0.3137851357460022, 0.17600832879543304, -0.359786719083786, 0.2410043179988861, -0.1284698247909546, -0.256112277507782, -1.051306128501892, -0.057724710553884506, 0.7896285653114319, 0.47195082902908325, 0.5380215644836426, 0.7245926856994629, -0.9691725373268127, 0.08869358897209167, 0.9047377705574036, 0.14056749641895294, -0.11573058366775513, -0.664827287197113, 0.3522275984287262, 0.2152426391839981, 0.2826923429965973, -0.006260402500629425, 0.15545660257339478, -0.8689775466918945, 0.0063338130712509155, -0.11244066059589386, -0.2326475828886032, 0.3422800898551941, -0.09648671746253967, -0.11220816522836685, -0.806946337223053, 1.192801594734192, -0.2530880570411682, -0.267530620098114, 0.10245390236377716, 1.4970675706863403, 0.5749021768569946, 0.5356117486953735, -0.48837897181510925, -1.0658562183380127, 0.8533974885940552, 0.024430958554148674, -0.5433958768844604, -0.1223803460597992, -0.5004303455352783, 1.3118557929992676, -0.6433997750282288, -0.19421744346618652, -0.03704659640789032, -1.3463882207870483, -0.9244795441627502, -0.194846048951149, 0.1352398693561554, 1.1939678192138672, -0.4798967242240906, 0.03309699892997742, 0.8434819579124451, -0.06439126282930374, 0.649296224117279, 0.04484190791845322, 0.7301895022392273, -0.0005719810724258423, -0.695120096206665, -0.9389996528625488, 0.539974570274353, 0.2638223171234131, -0.42444854974746704, -0.4088982939720154, 0.22239838540554047, 0.05855809152126312, -0.1514710932970047, 0.6363778114318848, -0.4410555064678192, 0.7445434331893921, 0.14996330440044403, 0.3538217544555664, -0.3447078466415405, 0.7473803758621216, -0.7957392930984497, 0.48011550307273865, -0.4321063458919525, -1.1351984739303589, 0.02659180387854576, -0.4968843162059784, 1.496281385421753, 1.100229263305664, -0.35935884714126587, -0.4632951319217682, 0.5006929636001587, 0.19734498858451843, -0.3300803601741791, 0.38652756810188293, -0.3347819745540619, -0.05439320206642151, -0.787562906742096, 0.2776612341403961, -0.23368233442306519, 0.5535352230072021, -0.5777836441993713, 0.34798121452331543, 1.2323546409606934, -0.14722712337970734, 0.4726807177066803, 0.5876162648200989, -0.04408114403486252, 0.251473605632782, -0.22862078249454498, -0.3034539520740509, -0.32951098680496216, -0.3038736581802368, -0.514188289642334, 0.21204756200313568, -0.9933159947395325, 0.5319544672966003, -0.6367572546005249, -0.9615663886070251, 0.3780457079410553, 0.5894221067428589, 0.5713880062103271, -0.4427759051322937, 0.49377739429473877, 0.05870458856225014, -0.2782597541809082, -0.2640349268913269, -1.3896220922470093, -0.6510631442070007, 0.07477446645498276, 0.14264722168445587, 0.04461033269762993, 0.6490660905838013, 0.02787921205163002, 0.11573880165815353, 0.0964851975440979, -0.30392366647720337, 0.01880721002817154, 0.8188316822052002, 0.5596362352371216, -0.10064545273780823, -0.47454753518104553, 0.022626329213380814, 0.9114834070205688, -0.6041133403778076, -0.9677407145500183, -0.7407131195068359, -0.5595177412033081, 0.25299233198165894, -0.6047087907791138, -0.29165589809417725, -0.08018676936626434, 0.5018380880355835, 0.39369988441467285, -0.5472080111503601, 0.5557011365890503, 0.9823154807090759, 0.07318612188100815, 0.479261577129364, 0.18079891800880432, 0.4997241497039795, -0.09764402359724045, 0.28704309463500977, 1.1052446365356445, 0.5384061932563782, -0.3860577642917633, -0.8569066524505615, -0.443951815366745, -0.24244800209999084, -0.2939092516899109, -4.514472007751465, 0.34156250953674316, -0.22059184312820435, -0.5138465166091919, 0.4343488812446594, -0.10000322759151459, 0.5934435129165649, -0.7907825708389282, -0.9606684446334839, 0.21178586781024933, -0.03734352067112923, -0.38173553347587585, 0.29771560430526733, 0.2775575518608093, 0.06412795186042786, 0.7344467639923096, -0.5086143612861633, -0.4392978847026825, 0.24279722571372986, 0.7503734230995178, -0.15612851083278656, -0.9398877620697021, -0.711916446685791, 0.3558853268623352, 0.2179124355316162, 0.3316439390182495, -0.9920359253883362, 0.16489435732364655, -0.7830597162246704, -0.269999235868454, 0.30140355229377747, -0.38662189245224, -0.2716920077800751, 0.45791196823120117, 0.3121703565120697, -0.5849717855453491, 0.5995786786079407, 0.15374118089675903, -0.2275865226984024, 0.006032779812812805, -0.6697562336921692, -0.2963588237762451, -0.08454181253910065, -0.6745959520339966, 0.814875602722168, -0.2456841766834259, -0.45206400752067566, -0.24728892743587494, 0.11181293427944183, 0.7291298508644104, 0.03467608243227005, 0.08309457451105118, -0.07740053534507751, 0.6478190422058105, -0.0756022185087204, -0.259040892124176, 0.20079746842384338, -0.2690829634666443, -0.9960236549377441, 0.2857186794281006, -0.014691157266497612, -0.6248226165771484, -0.861850917339325, -0.6242870092391968, -0.5508758425712585, -0.4494463801383972, -0.7598851323127747, -0.7334036231040955, 0.3910791575908661, 0.7860952019691467, -0.3306741416454315, 0.6460165977478027, -0.00988893210887909, -1.2128669023513794, 0.3331829011440277, -0.15513063967227936, -0.30713337659835815, -0.5826377868652344, -0.20736345648765564, 0.06566061824560165, -0.928726315498352, -0.18896223604679108, 0.3790583908557892, -0.31663012504577637, -0.2803787887096405, -0.35446828603744507, -0.27142229676246643, -0.3753105700016022, -0.577605128288269, -0.7074318528175354, 0.9076041579246521, -0.8275428414344788, 0.4896245002746582, 0.6716936230659485, 0.18934519588947296, 0.6679462790489197, 0.5754837989807129, -0.8751111626625061, 0.48188748955726624, 0.37353816628456116, 0.6178994178771973, -0.6442399621009827, 0.10417632013559341, 0.01754547655582428, -0.06814934313297272, -0.2902253568172455, -0.6028600931167603, 0.21195556223392487, 0.2779276371002197, 0.07302118837833405, 0.13262173533439636, 0.07841785252094269, 0.082032211124897, -0.7135721445083618, -0.3316657543182373, -0.8572472333908081, 0.4666205942630768, 0.5291469097137451, 0.6680713295936584, -0.23435398936271667, -0.4003165662288666, 0.5497643947601318, -0.5598651170730591, -0.07938840985298157, -1.4858547449111938, 0.45623844861984253, -0.07532288134098053, -0.00010566785931587219, 0.14611242711544037, 0.48582422733306885, -0.2584429979324341, -0.22222867608070374, 0.28631100058555603, -0.3858776092529297, 0.6024638414382935, -0.533603847026825, -0.28384047746658325, -0.21735478937625885, 0.4206947088241577, -0.2652328312397003, 0.12181693315505981, 0.39175742864608765, 0.4722461998462677, -0.17074933648109436, 1.0346623659133911, 0.6357634663581848, -0.20366153120994568, 0.0528111457824707, -0.19224226474761963, -0.4589056968688965, 0.24542230367660522, -0.26582616567611694, 0.4294393062591553, -0.6844606995582581, 0.39910709857940674, -0.6510158181190491, 0.7200736999511719, 0.16005076467990875, 0.39502444863319397, -0.734284520149231, 0.5843315720558167, -0.7021182179450989, -0.45829689502716064, -0.1565975844860077, 0.02039988711476326, 1.076474905014038, -0.3333618938922882, 0.06179414689540863, -0.2159980833530426, -0.12221873551607132, 0.22857169806957245, -0.5521956086158752, -0.6158668994903564, 0.08157994598150253, -0.4709533452987671, 0.18343833088874817, -0.10162840038537979, 0.09754224121570587, 0.19689813256263733, 0.9209694862365723, -0.3159788250923157, -0.13626763224601746, 0.040913186967372894, 0.5637977123260498, 0.8812165260314941, -0.27481406927108765, 0.3088982105255127, -0.2736550271511078, -0.33891940116882324, -0.16609027981758118, 0.5634602308273315, 0.21545955538749695, -0.699439525604248, 0.11878463625907898, -1.0636522769927979, -1.4395321607589722, 0.40839430689811707, 0.06976018100976944, 0.2751680910587311, -0.32013770937919617, -0.058277249336242676, 0.04588735103607178, -0.6097041368484497, 0.4160004258155823, -0.0867634266614914, -1.3846569061279297, 0.45237696170806885, -0.03066333383321762, -0.47575077414512634, -0.06819510459899902, -0.3524433970451355, -0.8682259917259216, -0.836544930934906, 0.349627286195755, 0.18676014244556427, -0.9248155951499939, -0.3037843406200409, 0.07216294854879379, 0.36995309591293335, -0.35115891695022583, 0.5407804250717163, 0.30253711342811584, -0.1562885344028473, -0.5500149130821228, -0.33641406893730164, 0.6764393448829651, -0.26618820428848267, -0.10480106621980667, 0.6729706525802612, -0.6247349977493286, 0.4998179078102112, -0.5003619194030762, -0.2668412923812866, 1.258918046951294, 0.4596218168735504, 0.5641971826553345, -0.3571920394897461, -0.0029107683803886175, 0.16767816245555878, 0.5234543085098267, 0.41643932461738586, -0.19025945663452148, -0.11107650399208069, -0.6545193195343018, 0.44549641013145447, 0.39144167304039, -0.5154985189437866, -0.18413890898227692, -0.2826750576496124, 0.444612592458725, 0.14159660041332245, 0.5759317278862, -0.10289116948843002, -0.6463274359703064, 1.1930595636367798, -0.5483381748199463, -0.6915515065193176, -0.062438856810331345, -0.4968620836734772, 0.15274381637573242, 0.30222994089126587, 0.34660109877586365, -0.8562976121902466, 1.196036458015442, 0.7940660119056702, 0.7603090405464172, 0.21491453051567078, -0.23512002825737, 0.440703421831131, -0.5874406695365906, -0.029274627566337585, -0.7962281703948975, 0.3499796986579895, 0.37133926153182983, 0.5478384494781494, -0.5340278744697571, -0.1693589687347412, 0.12919920682907104, 0.47571098804473877, -0.34830886125564575, -0.5195977091789246, 0.2675589919090271, -0.0010445266962051392, 0.056298792362213135, 0.7031524777412415, -0.24852906167507172, -0.08910030871629715, 0.2637004554271698, 0.01965343952178955, 0.36811530590057373, -0.5074596405029297, 0.6983397603034973, -0.31146836280822754, 0.5643617510795593, 0.04584649205207825, -0.4195559322834015, 0.6873092651367188, 1.3483794927597046, -0.39736348390579224, -0.025352783501148224, -0.5370628833770752, 0.8873251080513, 0.6454527378082275, -0.24366377294063568, -0.07864867150783539, 0.10759277641773224, -0.06743893027305603, -0.9452964663505554, 0.7842413187026978, 0.9872167706489563, 0.3123459219932556, -0.42367663979530334, 0.9259673357009888, 0.7179029583930969, -1.191019892692566, -0.10343880951404572, 0.025437816977500916, -0.7730713486671448, -0.02271275222301483, 0.10962199419736862, 0.3156525194644928, 0.10869547724723816, 1.1651860475540161, -0.3558264374732971, 0.4023772180080414, 1.147910714149475, -0.0754401832818985, 0.10017123073339462, -0.0793541967868805, 1.0835384130477905, 1.321256160736084, 0.6279667615890503, 0.10062523186206818, 0.878347635269165, -0.6163243651390076, -0.779613196849823, 0.16469764709472656, 0.1058097630739212, 0.5061150193214417, -0.2127734273672104, -0.04092676192522049, 1.1381908655166626, 0.4019488990306854, 1.3808507919311523, -0.42760348320007324, 0.23866459727287292, -0.07219304144382477, -0.2627291679382324, 0.8963602185249329, 0.3681211471557617, -0.18835021555423737, 0.680270254611969, -0.4817694425582886, -0.501845121383667, 0.23495440185070038, 0.1225980669260025, 0.3631193935871124, 0.13944916427135468, -0.5206968784332275, -0.10183516144752502, -0.8048015236854553, 0.8397804498672485, 1.033440351486206, 0.030398141592741013, -0.0622679740190506, 0.19207707047462463, 0.6868695616722107, 0.04143858700990677, 0.4091653823852539, -0.41783756017684937, -0.22502872347831726, 0.3151910901069641, -0.6310485601425171, 0.0914376974105835, 0.19684642553329468, 0.138424351811409, 0.3607015907764435, -0.3551645576953888, -0.13037461042404175, 0.1332375705242157, 0.8972262144088745, -0.23005932569503784, -0.9567696452140808, -0.7333678007125854, -0.5224272012710571, -1.053412914276123, -0.12640225887298584, 0.4565848708152771, -0.5859215259552002, -0.9239981770515442, -0.3998325765132904, -0.9366486668586731, 0.19452857971191406, -0.11043469607830048, -0.3936083912849426, -0.34813371300697327, 0.6845929622650146, 0.4589597284793854, 0.17585977911949158, 0.832487940788269, 0.781194269657135, -0.03153537958860397, 0.1866968721151352, 0.13612470030784607, 0.5780074596405029, 0.7718155980110168, -0.26709437370300293, 0.8691689372062683, -1.1975312232971191, 0.4724162220954895, 0.24896210432052612, 0.4694022834300995, -1.6759679317474365, 0.5009770393371582, 0.2553756833076477, -0.9280573725700378, 0.5500041246414185, 0.10461672395467758, -0.15520066022872925, -0.0006419569253921509, -0.012659654021263123, -0.035674575716257095, 0.3686053454875946, 0.7550331354141235, -0.7284471392631531, 0.3630102276802063, 0.5251047015190125, 0.11170538514852524, -0.3240111470222473, -0.21816855669021606, -0.0857451930642128, 0.2157839834690094, -0.9669793844223022, -0.4411100149154663, -0.3553693890571594, -1.1122944355010986, -0.2454252541065216, 0.5818686485290527, 0.15782718360424042, -0.5389044284820557, 0.13958622515201569, -0.024560600519180298, -0.5853843688964844, 0.10395990312099457, -0.124415822327137, -0.2361913025379181, -0.559853732585907, -1.033681869506836, -1.0412800312042236, 0.7270092368125916, 0.6816850304603577, -0.2081330269575119, -0.233344167470932, -0.7266493439674377, 0.33629143238067627, -0.6509369015693665, -0.3733578324317932, 0.48847487568855286, 0.36464738845825195, 0.5565325021743774], "6a5c70d2-97d7-4b6b-8cb3-f58187568bda": [-0.3872486650943756, 0.20125821232795715, -0.2048816978931427, 0.20859450101852417, 0.6677512526512146, -0.3764863610267639, 0.8491112589836121, 0.2747120261192322, -0.5061580538749695, -0.5767843127250671, -0.09631581604480743, -0.21079620718955994, -1.2328401803970337, 0.5382949113845825, 0.6643582582473755, 1.222568392753601, 0.461511492729187, -0.3830852508544922, -0.15147918462753296, -0.3287588059902191, -0.28482866287231445, 0.22937992215156555, 0.18915511667728424, 0.661313533782959, 0.5630221366882324, 0.007855527102947235, -0.033823877573013306, 0.32976409792900085, -1.0574085712432861, -0.33576980233192444, 0.4674408733844757, -0.2975108027458191, -0.030294174328446388, -0.5403223037719727, 0.5195951461791992, -0.40676572918891907, -1.2167021036148071, -0.4051724076271057, 0.0958692729473114, -0.16280591487884521, -0.6659523844718933, -0.40211722254753113, -0.27073267102241516, 0.5216997265815735, -0.7948523759841919, 0.22283242642879486, -1.125070333480835, 0.7420196533203125, -0.4383930265903473, 0.324845552444458, -1.1581201553344727, 0.5348274111747742, 0.6260659098625183, 0.25074249505996704, 0.12014171481132507, 1.0774366855621338, 0.0255160853266716, -0.7514969110488892, -0.04292582720518112, -0.39693164825439453, 0.8006512522697449, 0.2804098129272461, 0.5044828653335571, 0.40959882736206055, 0.12849687039852142, -0.6149802207946777, -0.25700533390045166, 0.6171470880508423, -0.8978542685508728, 0.057737432420253754, -0.2647285461425781, -0.2479308545589447, 0.01420263946056366, 0.3780485987663269, 0.4053853750228882, -0.26705700159072876, 0.20930032432079315, 0.47959569096565247, 0.8689916133880615, 0.8865217566490173, 0.13473309576511383, 0.8164246678352356, -0.08446621894836426, 1.0069355964660645, -0.3076939880847931, -0.19806936383247375, -0.24360591173171997, -0.3431796133518219, -0.9223534464836121, 0.5984134078025818, -0.7217460870742798, -1.3202687501907349, 0.670629620552063, 0.3140920102596283, -0.10186367481946945, -0.4125722646713257, 0.9591827392578125, -0.4176579713821411, 0.8567308187484741, 0.08959215134382248, -0.33883970975875854, -1.0580825805664062, 0.11220453679561615, -0.08385129272937775, -1.5184789896011353, -0.3695663511753082, -0.409462034702301, -0.37340208888053894, -0.04166785255074501, 0.3212038576602936, -0.05856544151902199, -0.17210641503334045, -0.9734365940093994, -0.060605332255363464, -1.1202396154403687, 0.7173938751220703, 0.49618470668792725, 0.12660150229930878, -0.047712359577417374, -0.16715463995933533, 0.676051676273346, 0.5268402099609375, 0.07113181054592133, 1.3145716190338135, -0.008558735251426697, 0.866584300994873, 0.3768077492713928, 0.6365945339202881, -0.7576397061347961, -1.0426979064941406, 0.3496879041194916, 0.7997931241989136, -0.1358342319726944, 0.1395718902349472, -0.038834501057863235, -0.5165582895278931, 0.47992682456970215, 0.5829836130142212, 0.6003748178482056, -0.6267992258071899, -0.07338152825832367, -0.3566116392612457, 0.09756625443696976, -0.1343560516834259, 0.7700967192649841, 0.0658101886510849, -0.4340754747390747, -1.001725673675537, -0.20885448157787323, 0.5712835788726807, 0.23138299584388733, 0.7858512997627258, 0.619136393070221, -1.0901222229003906, 0.5059688091278076, 0.7608030438423157, -0.5001707077026367, -0.22768943011760712, -0.8916123509407043, 0.1422327160835266, 0.44160187244415283, -0.16390223801136017, 0.2532886266708374, -0.0371871143579483, -0.41128355264663696, -0.07599290460348129, -0.09392862021923065, -0.04119809344410896, 0.1152418702840805, -0.126059889793396, -0.8497048616409302, -1.1305217742919922, 0.7556532025337219, -0.590957522392273, 0.10816600918769836, 0.42887452244758606, 1.370475172996521, 0.10753640532493591, 0.6484331488609314, -0.3955715298652649, -0.9475371837615967, 0.8261076211929321, 0.09625515341758728, -0.4002724885940552, -0.22772277891635895, -0.440035879611969, 1.6833508014678955, -0.10667641460895538, 0.20241902768611908, 0.11441060900688171, -1.718343734741211, -0.8533972501754761, -0.23207494616508484, 0.3077210783958435, 1.2327638864517212, -0.4588545262813568, -0.21361982822418213, 0.5396915674209595, -0.12642526626586914, 0.45534592866897583, -0.22636589407920837, 0.7431523203849792, -0.08791641891002655, -1.429937481880188, -0.807966411113739, 0.7930396795272827, 0.5174813270568848, -0.6607018113136292, -0.32676801085472107, 0.4595147371292114, 0.12412935495376587, 0.4212343096733093, 0.335044801235199, -0.49550095200538635, 0.6225568056106567, 0.7647557854652405, 0.2513078451156616, -0.4825652539730072, 0.8390254378318787, -0.6353434324264526, 0.7998784780502319, -0.24585749208927155, -0.8729551434516907, 0.21034294366836548, -0.1230691447854042, 1.4833654165267944, 1.2896476984024048, -0.44755393266677856, -0.9118431806564331, 0.30262213945388794, 0.4464443325996399, 0.08408039808273315, 0.2823318839073181, -0.08314715325832367, -0.15293468534946442, -0.18982845544815063, 0.559360682964325, 0.05980221927165985, 0.7168081402778625, -1.0183045864105225, 0.2728545367717743, 1.2719306945800781, -0.3133866786956787, 0.9597384929656982, 0.5183937549591064, -0.4299001693725586, 0.09720887988805771, -0.17741012573242188, -0.4183042347431183, -0.5181183218955994, -0.9160004258155823, -0.5545514822006226, 0.43361178040504456, -0.9606560468673706, 0.34645721316337585, -0.3901023864746094, -0.5564918518066406, 0.18344441056251526, 0.7741782665252686, 0.9027440547943115, -0.3682818114757538, 0.6060478687286377, 0.5247924327850342, -0.41651004552841187, -0.1408195048570633, -1.2893146276474, -0.9565556049346924, -0.3939642310142517, 0.13591524958610535, 0.2347826212644577, 0.6805459260940552, 0.06921886652708054, 0.5469967126846313, -0.04690403863787651, -0.5957880616188049, 0.30599114298820496, 0.677189290523529, 0.5823515057563782, 0.22040978074073792, -0.6407947540283203, -0.3911535143852234, 1.1371580362319946, -0.8849654197692871, -0.9016885757446289, -0.43815261125564575, -0.2639933228492737, 0.29649436473846436, -0.7837436199188232, -0.2640029191970825, 0.17204655706882477, 0.24442438781261444, 0.4910695254802704, -0.16003698110580444, 0.18647484481334686, 1.3252549171447754, 0.16369159519672394, 0.7036975026130676, 0.13470184803009033, 0.5165140628814697, 0.212662011384964, 0.12462374567985535, 0.5704383850097656, 0.3065096139907837, -0.3573082387447357, -0.3357430100440979, -0.315824955701828, -0.6342790722846985, -0.4979797899723053, -4.21697998046875, 0.15420249104499817, -0.15092985332012177, -0.3201456367969513, 0.20845575630664825, 0.018711388111114502, 0.34996187686920166, -0.6763147115707397, -0.9719489812850952, 0.7278355956077576, 0.14612634479999542, -0.23088112473487854, 0.3048475682735443, 0.8192045092582703, 0.09357558935880661, 0.9520222544670105, -0.12357271462678909, -0.710299551486969, -0.02693052589893341, 0.7721116542816162, -0.4053584635257721, -0.8881025910377502, -0.5889092683792114, 0.3087741732597351, 0.4027225971221924, -0.01177927851676941, -1.310798168182373, 0.08633436262607574, -0.9322671294212341, -0.14906352758407593, 0.42842531204223633, -0.46622636914253235, -0.057362936437129974, 0.5960962772369385, 0.04034614562988281, -0.7306187152862549, 0.5506267547607422, 0.16983821988105774, -0.028303630650043488, 0.041808441281318665, -0.9227709770202637, -0.4914310872554779, -0.3007713556289673, -0.05421283096075058, 0.9269390106201172, -0.2750786244869232, -0.5154167413711548, -0.13467173278331757, 0.38071057200431824, 0.6116266846656799, 0.05200410634279251, -0.5063443183898926, -0.4667328894138336, 0.5485568046569824, 0.3798155188560486, -0.45494982600212097, 0.17849844694137573, -0.020960278809070587, -0.6815791726112366, -0.34755149483680725, 0.292875200510025, -0.5896715521812439, -0.6779586672782898, -0.5212814211845398, 0.030094698071479797, -0.40064477920532227, -0.6792100667953491, -0.9922443628311157, 0.4334084093570709, 1.0930205583572388, -0.4727983772754669, 0.9822700023651123, -0.09886492043733597, -1.3961889743804932, 0.16358917951583862, -0.5303281545639038, 0.14671121537685394, -0.4245032072067261, -0.49373024702072144, 0.21485964953899384, -0.8216256499290466, -0.42887941002845764, -0.2609362304210663, 0.12122513353824615, 0.12239226698875427, -0.5444517135620117, -0.1260630488395691, -0.5132957696914673, -0.5998931527137756, -0.4290548861026764, 1.1009777784347534, -0.9840763807296753, 0.005205556750297546, 0.8278805017471313, 0.36003515124320984, 0.14439961314201355, 0.7629826664924622, -0.8566562533378601, 0.503547191619873, -0.20967845618724823, 0.5863916873931885, -0.8451812267303467, 0.022663477808237076, 0.014226444065570831, 0.0428970530629158, -0.14331640303134918, -0.4042227864265442, -0.40092337131500244, 0.6572393178939819, 0.04290993511676788, 0.2645590305328369, -0.20258080959320068, 0.12404827028512955, -0.36272090673446655, -0.10695279389619827, -0.9164707064628601, 0.5959190130233765, 0.7378271222114563, 0.08399958163499832, -0.4916594624519348, -0.36120545864105225, 0.7026174664497375, -0.8273568153381348, -0.5055837631225586, -1.646880865097046, 0.37632226943969727, 0.4842224717140198, 0.4705088138580322, 0.16776828467845917, 0.40501439571380615, -0.5746827125549316, -0.3794932961463928, 0.03881014138460159, -0.06369780004024506, 0.6974173784255981, -0.2831704020500183, 0.11478391289710999, -0.2924604117870331, 0.036780066788196564, 0.09942863881587982, 0.07366028428077698, 0.18221929669380188, 0.31180256605148315, 0.2651855945587158, 0.5472583770751953, 1.1925501823425293, -0.4167473614215851, 0.48128676414489746, -0.26653772592544556, -0.2746839225292206, 0.12341538071632385, -0.43177178502082825, 0.11779411137104034, -0.6195482611656189, 0.2685854434967041, -0.5395454168319702, 1.2996243238449097, -0.05824604257941246, -0.1545718014240265, -0.5808221697807312, 0.4062877893447876, -1.4942240715026855, 0.03373481333255768, 0.06493186205625534, -0.19713467359542847, 1.4296107292175293, -0.5693418979644775, 0.14218124747276306, -0.2931135892868042, -0.026446616277098656, 0.4133617579936981, -0.41770851612091064, -0.4078364074230194, -0.02349269390106201, -0.08095921576023102, 0.564147412776947, -0.0437282919883728, -0.12156030535697937, 0.150900200009346, 0.10857699811458588, -0.1276472806930542, 0.16047526895999908, 0.3545299172401428, 0.3591138422489166, 0.7076289057731628, -0.17708832025527954, 0.5693516731262207, -0.2238500416278839, -0.38929283618927, 0.17557251453399658, 0.14912796020507812, 0.486124187707901, -0.7869755029678345, 0.2940751612186432, -0.3697790801525116, -1.0259370803833008, 0.5037524700164795, -0.0003354102373123169, 0.14539119601249695, -0.056728556752204895, -0.29940250515937805, -0.05808160454034805, -0.4252583980560303, 0.3466421365737915, -0.2503761053085327, -1.4929144382476807, 0.47468623518943787, 0.0020653605461120605, -0.5595306158065796, -0.14963661134243011, -0.09473592042922974, -0.9275081753730774, -1.0720634460449219, 0.24430249631404877, 0.1791740357875824, -0.5913337469100952, -0.20871709287166595, 0.07643871009349823, 0.28113409876823425, -0.4310670495033264, 0.7545276880264282, 0.31334906816482544, -0.3448992371559143, -0.43295443058013916, -0.6885086297988892, 0.4256303608417511, -0.023485511541366577, -0.3321709632873535, 0.48063766956329346, -0.4366229474544525, 0.595895528793335, -0.3320947289466858, -0.09275195002555847, 0.9863353967666626, 0.3035248816013336, 0.08226927369832993, -0.7219454050064087, 0.05162700638175011, -0.09228995442390442, 0.25548040866851807, -0.002251889556646347, -0.20228105783462524, -0.10842150449752808, -0.44280555844306946, 0.9684199094772339, 0.15045598149299622, -0.4468790292739868, -0.15964935719966888, -0.1912907063961029, 0.5206581950187683, 0.18797273933887482, 0.7193388342857361, 0.15910816192626953, -0.4990088641643524, 1.259771466255188, -0.9733741283416748, -0.4641350507736206, 0.13707849383354187, -0.6409620642662048, 0.40551212430000305, -0.13437488675117493, 0.6925413608551025, -0.9701195955276489, 0.7508945465087891, 0.8781970739364624, 0.3791096806526184, 0.13909292221069336, -0.2825007438659668, 0.5099535584449768, -0.596335768699646, -0.5618554353713989, -0.9538044929504395, 0.3959181606769562, 0.3970690667629242, 0.6225775480270386, -0.41232866048812866, -0.539375901222229, -0.02681468054652214, 0.4809742569923401, -0.49499884247779846, -0.88006192445755, 0.03828917443752289, 0.07232074439525604, 0.19093921780586243, 0.7845207452774048, -0.8754884004592896, 0.08872393518686295, 0.20229622721672058, -0.001347232609987259, 0.03248613327741623, -0.3751823902130127, 0.9853461980819702, -0.38558945059776306, 0.5223684310913086, 0.10061649978160858, -0.3495255708694458, 0.6528936624526978, 1.1254010200500488, -0.9563788771629333, 0.5039663314819336, -0.3740655183792114, 0.4794011116027832, 0.7760653495788574, 0.1619325578212738, -0.2664338946342468, 0.4740767776966095, -0.4939318299293518, -1.1611237525939941, 0.5037630796432495, 0.7670120596885681, 0.23267114162445068, -0.9659561514854431, 0.9062369465827942, 0.3071751296520233, -1.1094255447387695, -0.08921238034963608, -0.06616547703742981, -0.9387783408164978, -0.37114378809928894, 0.1927984207868576, 0.25101199746131897, 0.12990418076515198, 1.1351152658462524, 0.1544216275215149, 0.3968779146671295, 1.0632697343826294, -0.11841598153114319, 0.13359832763671875, 0.10171505063772202, 0.9009424448013306, 1.067068338394165, 0.46526259183883667, 0.15084123611450195, 0.7500982880592346, -0.6487582921981812, -0.7776091694831848, 0.20787924528121948, 0.034796684980392456, -0.3924800455570221, -0.6086738705635071, -0.1576271653175354, 0.8600223660469055, 0.18482443690299988, 1.4076120853424072, -0.2899003326892853, 0.6309056878089905, -0.15193505585193634, -0.4679751396179199, 0.7993140816688538, 0.47628864645957947, -0.03401193022727966, 0.9696846008300781, -0.8212559819221497, -0.7933253645896912, -0.4019114673137665, 0.5869335532188416, -0.0310659222304821, 0.2690340578556061, -0.19173751771450043, 0.02537168376147747, -0.4436950385570526, 0.6007469892501831, 1.1711900234222412, -0.053838878870010376, 0.2543504536151886, 0.14287367463111877, 0.3328741192817688, 0.1402621865272522, 0.24558031558990479, -0.021777987480163574, -0.25622010231018066, -0.07438863813877106, -0.27238285541534424, -0.12373687326908112, 0.7586655616760254, 0.30077970027923584, 0.5119317770004272, -0.34577682614326477, -0.09264428913593292, 0.46420517563819885, 0.617949366569519, -0.2148357778787613, -0.9538382291793823, -0.8189657926559448, -0.17523032426834106, -0.7901595830917358, -0.0019779857248067856, 0.6310338377952576, -0.3873818516731262, -1.2768430709838867, -0.23346970975399017, -0.5213987231254578, 0.08715756237506866, -0.09529130160808563, -0.9530985355377197, -0.2909826636314392, 0.18020860850811005, 0.6165797710418701, 0.31594881415367126, 0.5217577219009399, 0.7376818656921387, 0.264901727437973, 0.11168010532855988, 0.07556396722793579, 0.3688707649707794, 0.5771973729133606, -0.15638601779937744, 0.44056111574172974, -0.9218198657035828, 0.6179127097129822, 0.24371804296970367, 0.33751654624938965, -1.5583139657974243, 1.1262308359146118, 0.35389313101768494, -0.6814994215965271, 0.667497456073761, 0.11478787660598755, 0.1071992889046669, -0.23467779159545898, -0.10629788041114807, -0.039356350898742676, -0.1288481056690216, 0.5564539432525635, -0.43732139468193054, 0.9613279104232788, 0.8465412259101868, 0.03148217871785164, -0.16272425651550293, 0.018724706023931503, 0.019820325076580048, 0.22757330536842346, -0.8005253076553345, -0.6387563943862915, -0.5235530734062195, -1.357331395149231, -0.2872741222381592, 0.8394396305084229, 0.3076087236404419, -0.7078089714050293, -0.142304465174675, -0.3696381151676178, -0.42019709944725037, 0.6529656052589417, -0.3873736560344696, -0.1544477492570877, -0.09721288084983826, -1.3398312330245972, -1.104804277420044, 0.01791336014866829, 0.8403195738792419, 0.23242825269699097, 0.08673454821109772, -0.7944738268852234, 0.2173999398946762, -1.030017375946045, -0.3721635341644287, 0.27369391918182373, 0.3483482301235199, 0.24605515599250793], "25316757-07dd-4e6d-9f0f-6f96b9cf63e2": [-0.5069394707679749, 0.33061206340789795, -0.4363606572151184, 0.1403345763683319, 0.9252576231956482, -0.5251330137252808, 0.6409083604812622, 0.6380375623703003, -0.3494507372379303, -0.21836093068122864, -0.33361878991127014, -0.013265259563922882, -0.8931339383125305, 0.33354997634887695, 0.48355215787887573, 1.0414760112762451, 0.5142428874969482, -0.5841045379638672, -0.015827640891075134, 0.09243758767843246, -0.05513255298137665, 0.242112934589386, 0.2478613406419754, 0.5295429825782776, 0.3804040551185608, -0.1482420563697815, 0.03251546248793602, 0.11443117260932922, -1.382350206375122, -0.08588732779026031, 0.3882068693637848, -0.4663641154766083, 0.23750001192092896, -0.21279078722000122, 0.546779215335846, -0.23810656368732452, -0.8429649472236633, -0.34619584679603577, 0.20410023629665375, 0.005772039294242859, -0.6442784070968628, -0.5988013744354248, -0.4859107434749603, 0.2913549840450287, -0.9114384055137634, -0.07550622522830963, -1.1881539821624756, 0.5198162794113159, -0.57201087474823, -0.12493173778057098, -0.9159182906150818, 0.6285502910614014, -0.0005461126565933228, 0.3710663318634033, 0.6201862096786499, 1.269750714302063, -0.017876379191875458, -0.6341971755027771, 0.10096859931945801, -0.20441663265228271, 0.4779246151447296, 0.19694887101650238, 0.4645373523235321, 0.028554920107126236, 0.15831154584884644, -0.5113316774368286, -0.28860530257225037, 0.47996777296066284, -0.9769186973571777, -0.8720251321792603, -0.3780198097229004, -0.24996210634708405, 0.2646161615848541, -0.11138077080249786, 0.2852654755115509, -0.2269233614206314, -0.26089751720428467, 0.3592868149280548, 0.6915060877799988, 0.9616823792457581, 0.11105255782604218, 0.6261348724365234, 0.017351321876049042, 0.9225112795829773, -0.32398921251296997, -0.19368022680282593, -0.2736673057079315, -0.3722347319126129, -0.7835087180137634, 0.9546597003936768, -0.7385841012001038, -0.6813517212867737, 0.6105351448059082, 0.19651153683662415, -0.0384831540286541, -0.41477999091148376, 1.1092522144317627, -0.15477867424488068, 0.6527963876724243, 0.3282766342163086, -0.6615363955497742, -0.8786107301712036, -0.0368671789765358, 0.15388020873069763, -1.3516790866851807, -0.5588916540145874, -0.8327764272689819, -0.38509684801101685, -0.05241576209664345, 0.18284115195274353, 0.04574141651391983, -0.38753828406333923, -0.8637633919715881, 0.0357983224093914, -0.7414465546607971, 1.147302508354187, 0.24673978984355927, 0.11664409935474396, -0.14375264942646027, -0.013690803200006485, 0.7392417788505554, 0.6892008781433105, 0.23697534203529358, 1.2176082134246826, -0.0364532545208931, 0.7198841571807861, 0.5572077631950378, 0.7652438879013062, -0.3926836848258972, -1.0663303136825562, 0.13437721133232117, 0.6712033152580261, 0.5049940347671509, 0.11763611435890198, -0.22401797771453857, -0.35846713185310364, 0.09036804735660553, 0.37394776940345764, 0.39418816566467285, -0.27269142866134644, -0.028391852974891663, -0.10886674374341965, 0.27504241466522217, -0.38042446970939636, 0.3748418390750885, 0.24017706513404846, -0.5419190526008606, -1.084696650505066, -0.5981675386428833, 0.7763598561286926, 0.35108986496925354, 0.6229774951934814, 0.9723783135414124, -0.8326928615570068, 0.21576255559921265, 0.6362878084182739, -0.21412412822246552, -0.12866520881652832, -0.8816254734992981, 0.19555234909057617, 0.32774925231933594, 0.07918888330459595, -0.2373487949371338, -0.1005796492099762, -0.5279701948165894, 0.05890030413866043, 0.36172986030578613, -0.36109766364097595, 0.1390620470046997, 0.18731512129306793, -0.6115531921386719, -0.8169477581977844, 0.8344031572341919, -0.11052924394607544, -0.19233348965644836, 0.09877990186214447, 1.462235927581787, 0.34224119782447815, 0.5913299918174744, -0.13696207106113434, -0.8613123297691345, 0.8514200448989868, -0.14523275196552277, -0.6007718443870544, -0.21118126809597015, -0.36299657821655273, 1.3645837306976318, -0.44179919362068176, -0.015933923423290253, 0.18162477016448975, -1.3300037384033203, -0.7487940788269043, -0.3857371211051941, 0.47793054580688477, 1.135684609413147, -0.5538890361785889, -0.08509325981140137, 0.5507055521011353, 0.03035719506442547, 0.5621064901351929, 0.01517999917268753, 0.711707353591919, -0.2823637127876282, -1.0601491928100586, -1.0594722032546997, 0.5699417591094971, 0.5553207397460938, -0.4688245356082916, 0.12183105945587158, 0.4023037552833557, 0.0443296805024147, 0.2603910565376282, 0.7143344879150391, -0.14383143186569214, 0.5077787637710571, 0.7966784834861755, 0.2824196219444275, -0.3726136088371277, 0.9362123012542725, -0.9656733870506287, 0.520908534526825, -0.44301149249076843, -1.2763885259628296, 0.12661094963550568, -0.18859505653381348, 1.4394209384918213, 1.006774663925171, -0.5306166410446167, -0.5069541931152344, 0.5839812159538269, 0.5879833698272705, -0.4123961925506592, 0.5163271427154541, -0.02125297486782074, -0.09736616909503937, -0.5618317127227783, 0.40180274844169617, -0.29506224393844604, 0.6441255211830139, -0.764276385307312, 0.09378557652235031, 1.3511083126068115, -0.2716923654079437, 0.6061389446258545, 0.6315430998802185, -0.46112263202667236, 0.14289149641990662, -0.20371757447719574, -0.505986213684082, -0.43469035625457764, -0.4380192756652832, -0.5563877820968628, 0.4668614864349365, -0.821566641330719, 0.45570966601371765, -0.3905808925628662, -1.0061008930206299, 0.6066637635231018, 0.7223682403564453, 0.9980279207229614, -0.5480800867080688, 0.7194016575813293, 0.43614283204078674, -0.33885228633880615, -0.1373540163040161, -1.444172978401184, -0.7297091484069824, -0.24635034799575806, 0.15819963812828064, -0.02456650137901306, 0.5602911710739136, 0.2477303147315979, -0.008997011929750443, -0.035437192767858505, -0.5642073154449463, -0.1273326426744461, 0.7897855043411255, 0.4416309595108032, 0.015790104866027832, -0.5996267199516296, -0.36688458919525146, 1.0966747999191284, -1.0915627479553223, -0.7593299150466919, -0.1494618058204651, -0.3063823878765106, 0.14073064923286438, -0.8098555207252502, -0.27830004692077637, 0.25592583417892456, -0.00573219358921051, 0.4845508635044098, -0.45626798272132874, 0.6465638875961304, 1.0362162590026855, 0.3173524737358093, 0.456594318151474, -0.00891578197479248, 0.6141355037689209, 0.22602246701717377, 0.19673633575439453, 0.7077218294143677, 0.5419173240661621, -0.3791865408420563, -0.5266361236572266, -0.2176268994808197, -0.4958045482635498, -0.36189863085746765, -4.5810394287109375, 0.3420793116092682, -0.3287331461906433, -0.48819658160209656, 0.37652480602264404, 0.30879858136177063, 0.31711822748184204, -0.7168431282043457, -0.734948992729187, 0.6733672618865967, -0.31180304288864136, -0.43769046664237976, 0.23042836785316467, 0.6065746545791626, -0.1161227822303772, 1.06928288936615, -0.36251601576805115, -0.6575393080711365, -0.03616565838456154, 0.7929152846336365, 0.007093928754329681, -1.0360015630722046, -0.8126410841941833, 0.5314986705780029, 0.3134304881095886, 0.23353800177574158, -1.160691738128662, 0.42192453145980835, -0.7187536954879761, -0.38893088698387146, 0.27352896332740784, -0.5602466464042664, -0.3704651892185211, 0.502662718296051, 0.2563591003417969, -0.7401378154754639, 0.6261081695556641, 0.3105050325393677, -0.10168060660362244, -0.326239675283432, -0.7356876730918884, -0.3993750512599945, -0.015265733003616333, -0.2818180322647095, 0.9644675254821777, -0.17813614010810852, -0.4559689462184906, -0.44461190700531006, 0.16137534379959106, 0.6432644128799438, -0.012129183858633041, -0.17702941596508026, -0.37417060136795044, 0.5457652807235718, 0.29054388403892517, -0.2235776036977768, 0.12266165018081665, -0.3515287935733795, -0.68968665599823, -0.0330677255988121, -0.040156275033950806, -0.7537835240364075, -0.9054697155952454, -0.6056000590324402, -0.16879329085350037, -0.3893296718597412, -0.8058462142944336, -0.5605978965759277, 0.5512999296188354, 0.9975088834762573, -0.35190349817276, 0.8030229210853577, -0.19311586022377014, -1.45492684841156, -0.00468318909406662, -0.30137908458709717, -0.0016377270221710205, -0.4487955868244171, -0.5500571727752686, 0.03551033139228821, -0.7087515592575073, -0.3431609272956848, 0.32489103078842163, -0.24510136246681213, -0.10589218884706497, -0.611350417137146, -0.18459324538707733, -0.32272419333457947, -0.5329066514968872, -0.5425428748130798, 0.9012021422386169, -0.8840278387069702, 0.18930357694625854, 0.38334718346595764, 0.17661476135253906, 0.2775990068912506, 0.5644851922988892, -0.5962486863136292, 0.17325247824192047, 0.22745144367218018, 0.35569125413894653, -0.7927672266960144, 0.061568327248096466, -0.22523435950279236, 0.13711653649806976, -0.03416888415813446, -0.5631635785102844, -0.1423787921667099, 0.5117744207382202, 0.10455363988876343, 0.20786736905574799, 0.05144626647233963, 0.23274849355220795, -0.48541003465652466, -0.3847213387489319, -0.48103418946266174, 0.5217408537864685, 0.5058519840240479, 0.44949814677238464, -0.09385782480239868, -0.5192931294441223, 0.755349338054657, -0.6403286457061768, -0.6052826046943665, -1.390305519104004, 0.35354945063591003, 0.23778104782104492, 0.30074775218963623, 0.29200470447540283, 0.33316028118133545, -0.5285040140151978, -0.45242851972579956, 0.24742113053798676, -0.3524869680404663, 0.5383719205856323, -0.41842782497406006, -0.3275430202484131, -0.38107651472091675, 0.2697237730026245, -0.14487051963806152, 0.08115066587924957, 0.1712242066860199, 0.6768539547920227, -0.08269912004470825, 0.640182375907898, 0.6160913109779358, -0.24950551986694336, 0.2182580828666687, -0.41686365008354187, -0.35315248370170593, 0.29429373145103455, 0.025668323040008545, 0.43254557251930237, -0.6278858780860901, 0.22821715474128723, -0.6950573921203613, 0.6490278244018555, -0.030474774539470673, 0.24250805377960205, -0.8049547076225281, 0.45636671781539917, -0.7848455309867859, -0.030952945351600647, -0.10535698384046555, -0.14498862624168396, 1.196946382522583, -0.6130579710006714, 0.1440790593624115, -0.09889373928308487, 0.17012396454811096, 0.5610450506210327, -0.7599120736122131, -0.6865330338478088, 0.08657693862915039, -0.3596981465816498, 0.7185909152030945, 0.20300325751304626, 0.2460322082042694, 0.12125775218009949, 0.4012327492237091, -0.08817344158887863, 0.13055424392223358, 0.15574337542057037, 0.1744721382856369, 0.7079271078109741, -0.25189393758773804, 0.42232224345207214, -0.05589856952428818, -0.4106208384037018, -0.210959792137146, 0.3413068652153015, 0.3715497851371765, -0.5829474925994873, 0.1384659707546234, -0.8212947845458984, -1.4051365852355957, 0.3435984253883362, 0.3820204734802246, 0.4148187041282654, -0.15044935047626495, -0.4449502229690552, -0.12573981285095215, -0.22147247195243835, 0.504033088684082, 0.009599968791007996, -1.5791003704071045, 0.5914463400840759, -0.1407211273908615, -0.2442316710948944, -0.06447918713092804, -0.05124806612730026, -0.8601433634757996, -0.9146541953086853, 0.2690475881099701, -0.18784569203853607, -0.9025137424468994, -0.40768614411354065, 0.21707257628440857, 0.5205543041229248, -0.4073614478111267, 0.57070392370224, 0.3107251226902008, -0.21186193823814392, -0.2009923756122589, -0.6435459852218628, 0.41584596037864685, -0.20104467868804932, 0.009905073791742325, 0.4678768515586853, -0.6706531047821045, 0.44502612948417664, -0.7972704172134399, 0.004212390631437302, 0.9126484990119934, 0.05086207389831543, 0.3483927845954895, -0.333162397146225, 0.15732766687870026, -0.09078557789325714, 0.4866720736026764, 0.3391505181789398, -0.06696146726608276, -0.11021606624126434, -0.6256465911865234, 0.7125970721244812, 0.1635851263999939, -0.5094047784805298, -0.1811930388212204, 0.011034725233912468, 0.7929291725158691, 0.2840138077735901, 0.6564025282859802, 0.05504908412694931, -0.34915465116500854, 1.0997592210769653, -0.7832880616188049, -0.7270981073379517, 0.07617542147636414, -0.4122914969921112, 0.5052742958068848, 0.4524630010128021, 0.4930100739002228, -1.2935696840286255, 0.718748927116394, 1.0743775367736816, 0.3751709461212158, 0.24038755893707275, -0.17689695954322815, 0.8433493375778198, -0.3567986488342285, -0.3832109868526459, -0.9388983249664307, 0.2110271006822586, 0.48717227578163147, 0.6286994814872742, -0.5473488569259644, -0.22346067428588867, -0.09815318882465363, 0.7741411924362183, -0.6668570041656494, -0.636030375957489, 0.07684455811977386, -0.22531095147132874, -0.017688792198896408, 0.49254587292671204, -0.5365698337554932, -0.00283614220097661, 0.08489607274532318, 0.18972162902355194, 0.18057742714881897, -0.6914507746696472, 0.8937817811965942, -0.29039931297302246, 0.3711977005004883, 0.4248175621032715, -0.227913960814476, 0.7054117918014526, 0.9752787947654724, -0.7045475840568542, 0.2946954071521759, -0.13352224230766296, 0.9346804022789001, 0.43996694684028625, 0.13740959763526917, -0.17156505584716797, 0.23022493720054626, -0.21234312653541565, -1.0290374755859375, 0.44583043456077576, 0.7095956802368164, 0.005869373679161072, -0.6788569092750549, 0.7988991141319275, 0.6172295212745667, -0.7688264846801758, -0.3607531487941742, -0.0021285787224769592, -0.6471933126449585, -0.3137891888618469, 0.15687942504882812, 0.46474599838256836, 0.15766969323158264, 0.7952162027359009, -0.019284673035144806, 0.4479408860206604, 1.2809022665023804, -0.10906528681516647, -0.1266363114118576, 0.0797809436917305, 0.7697907090187073, 1.2668009996414185, 0.6229783296585083, 0.18753638863563538, 0.6173035502433777, -0.5583958625793457, -0.8522214889526367, 0.23829816281795502, 0.1560097187757492, 0.257511705160141, -0.6637049317359924, -0.24408076703548431, 0.9934081435203552, 0.5478881597518921, 1.3314027786254883, -0.39034441113471985, 0.46412310004234314, -0.3770875334739685, -0.08480989933013916, 0.8590264916419983, 0.41480469703674316, -0.25489339232444763, 0.8223079442977905, -0.46273329854011536, -0.7908251285552979, -0.08263140916824341, 0.6217145919799805, -0.07456030696630478, 0.1009286418557167, -0.28881317377090454, -0.24151499569416046, -0.8177005052566528, 0.7070778608322144, 1.0066053867340088, 0.08497380465269089, -0.12410717457532883, 0.2569276988506317, 0.3689669966697693, 0.24909764528274536, 0.172669917345047, -0.357455849647522, -0.20172744989395142, 0.1544957160949707, -0.33265626430511475, -0.010148528963327408, 0.4493353068828583, 0.21065229177474976, 0.5681185722351074, -0.39786553382873535, -0.006012453697621822, 0.32785868644714355, 0.9729580879211426, -0.2851415276527405, -1.138721227645874, -0.8002831339836121, -0.15685047209262848, -1.0575976371765137, 0.22489696741104126, 0.38970983028411865, -0.5602738857269287, -0.8896632194519043, -0.495570570230484, -0.7198558449745178, 0.10174952447414398, -0.01335986703634262, -0.6972029209136963, -0.4680153727531433, 0.6428847312927246, 0.6026451587677002, 0.009869437664747238, 0.6756612658500671, 0.8138975501060486, 0.3818954825401306, -0.21526843309402466, 0.15153329074382782, 0.3916977345943451, 0.8033767938613892, -0.5037801265716553, 0.6748054623603821, -0.9486758708953857, 0.8682384490966797, 0.6279052495956421, 0.7298012375831604, -1.5056227445602417, 0.7312288284301758, 0.28553101420402527, -0.8854736089706421, 0.5238924026489258, 0.1467239260673523, -0.01382165402173996, 0.049970656633377075, -0.2777358889579773, -0.03644268959760666, -0.04999024420976639, 0.6524490714073181, -0.41459909081459045, 0.6009552478790283, 0.7856675386428833, 0.22632889449596405, -0.2606085240840912, -0.009591002017259598, -0.05261008441448212, 0.4156832993030548, -0.8513783812522888, -0.29656732082366943, -0.3204934597015381, -0.9202467203140259, -0.38351282477378845, 0.9162003993988037, -0.10020972043275833, -0.6449089646339417, 0.12146560847759247, -0.43116456270217896, -0.436737060546875, 0.29798975586891174, -0.345140278339386, -0.4135778546333313, -0.48496776819229126, -1.191518783569336, -0.8476632237434387, 0.6331923007965088, 0.6725782752037048, -0.1993987262248993, 0.15543171763420105, -0.7602434158325195, 0.2982062101364136, -0.7488686442375183, -0.2765527367591858, 0.49202582240104675, 0.08417098224163055, 0.14902548491954803], "61b30575-d871-460a-af27-cd41e98c2909": [-0.41968289017677307, 0.5760082006454468, -0.6022706627845764, 0.3041575849056244, 0.809150218963623, -0.4691862463951111, 0.7198401689529419, 0.4651498794555664, -0.20498819649219513, -0.6955814361572266, -0.5949764251708984, 0.00791940838098526, -1.1076889038085938, 0.6461215615272522, 0.4942042827606201, 1.046372413635254, 0.6905140280723572, -0.29188594222068787, 0.23907709121704102, -0.14673572778701782, -0.08255807310342789, -0.048667412251234055, -0.2508404850959778, 0.5235756039619446, 0.304082453250885, 0.04688742011785507, 0.20338141918182373, 0.3138616979122162, -1.3561346530914307, -0.05975538492202759, 0.17078693211078644, -0.6682801246643066, 0.02178013324737549, -0.10744841396808624, -0.02828734740614891, -0.13522055745124817, -0.8149744272232056, -0.3917221426963806, 0.23502033948898315, -0.14601480960845947, -0.829667866230011, -0.4879361689090729, -0.3687920570373535, 0.22272148728370667, -0.7341893911361694, -0.06936967372894287, -1.0070377588272095, 0.8145883679389954, -0.8597209453582764, -0.2985323667526245, -0.9787387847900391, 0.7662215232849121, 0.05363951250910759, 0.0929906964302063, 0.4476066827774048, 1.3286998271942139, 0.06699079275131226, -0.8271903395652771, 0.09241241216659546, -0.3496685326099396, 0.7540423274040222, 0.010678045451641083, 0.5740020275115967, 0.10856671631336212, 0.52105712890625, -0.6605224013328552, -0.5206384658813477, 0.9313104748725891, -0.9123700857162476, -0.6402177810668945, -0.15587127208709717, 0.2732585370540619, 0.10326959192752838, -0.1473435014486313, 0.42374277114868164, -0.40139997005462646, -0.34164202213287354, 0.48857182264328003, 0.8656624555587769, 1.0629768371582031, 0.11265908926725388, 0.9701421856880188, 0.06930895149707794, 0.9630733132362366, -0.29204708337783813, -0.38219907879829407, -0.5716254711151123, -0.12893080711364746, -0.8141134977340698, 1.0046067237854004, -0.21298503875732422, -0.6296981573104858, 0.659612774848938, 0.5415045022964478, 0.38673681020736694, -0.5792027115821838, 1.0234079360961914, 0.04908552020788193, 0.7218805551528931, 0.2599824070930481, -0.7123153805732727, -1.0967366695404053, 0.467918336391449, 0.2955739200115204, -1.370237112045288, -0.37438443303108215, -0.5377939939498901, -0.2996959090232849, 0.19485405087471008, 0.27741557359695435, -0.2943152189254761, -0.2182990163564682, -0.6212074160575867, -0.21194800734519958, -0.860389232635498, 1.2228590250015259, 0.3925180435180664, 0.20934027433395386, -0.10901275277137756, 0.18865220248699188, 0.7219753265380859, 0.4682053029537201, 0.37064722180366516, 1.2307021617889404, 0.3256208300590515, 0.8137029409408569, 0.4182801842689514, 0.6705802083015442, -0.6049630045890808, -1.140448808670044, -0.02407900243997574, 0.9994561076164246, 0.06832686066627502, 0.013581745326519012, -0.039979126304388046, -0.20665588974952698, -0.20325259864330292, 0.31705090403556824, 0.34590277075767517, -0.5337958335876465, -0.10526518523693085, -0.1310340315103531, 0.048558056354522705, -0.1278614103794098, 0.6077086925506592, 0.28108903765678406, -0.47565752267837524, -1.1509236097335815, -0.333659827709198, 0.864990770816803, 0.14774207770824432, 0.35848140716552734, 1.1924234628677368, -0.8276722431182861, 0.15527230501174927, 1.0341758728027344, -0.1347256898880005, 0.19385136663913727, -0.8218168616294861, 0.22241954505443573, 0.3291820287704468, 0.10124628990888596, -0.5814064741134644, -0.07591697573661804, -0.42130517959594727, -0.13744190335273743, 0.058489102870225906, 0.1944170743227005, -0.016515053808689117, 0.20241904258728027, -0.5591262578964233, -1.0868104696273804, 1.1213594675064087, -0.15507429838180542, -0.2421378642320633, 0.26466748118400574, 1.4643077850341797, 0.525192141532898, 0.27762913703918457, 0.014879792928695679, -1.3735806941986084, 1.0116522312164307, -0.13937830924987793, -0.626983642578125, -0.34016668796539307, -0.4664462208747864, 1.3973537683486938, -0.22934648394584656, 0.0987565666437149, 0.18393509089946747, -1.4639465808868408, -1.0789761543273926, -0.1883801370859146, -0.03322058916091919, 1.0386333465576172, -0.6145256161689758, 0.24891111254692078, 0.4006820321083069, -0.11880622804164886, 0.6531773805618286, -0.018054362386465073, 0.6116696000099182, 0.21682767570018768, -0.7570944428443909, -1.1255134344100952, 0.5435235500335693, 0.6835711598396301, -0.3171849846839905, 0.0960090160369873, 0.2057124376296997, 0.16302485764026642, 0.04393757879734039, 0.6251983046531677, -0.23532870411872864, 0.5186527371406555, 0.5972434878349304, 0.6143024563789368, -0.7444556355476379, 0.9563112258911133, -1.135890007019043, 0.7678846716880798, -0.4165092408657074, -1.0271878242492676, 0.401375949382782, -0.44106045365333557, 1.3217253684997559, 1.309167742729187, -0.2681080400943756, -0.3418014645576477, 0.5098546743392944, 0.2977104187011719, -0.028660863637924194, 0.5321157574653625, 0.04649566859006882, -0.032949116080999374, -0.4625292122364044, 0.4327773451805115, -0.4945410192012787, 0.7431474328041077, -0.9237560629844666, 0.2863215506076813, 1.2980525493621826, 0.12213635444641113, 0.7044789791107178, 1.0122616291046143, -0.25545454025268555, 0.3528146743774414, -0.27964627742767334, -0.4728011190891266, -0.34371984004974365, -0.4187227785587311, -0.5407524108886719, 0.22510378062725067, -0.9684063792228699, 0.2469935566186905, -0.6630315184593201, -0.917508602142334, 0.5893678665161133, 0.6800485849380493, 0.9642820358276367, -0.54276043176651, 0.6438074707984924, 0.6635128259658813, -0.10102871060371399, -0.21397024393081665, -1.449893593788147, -0.8588376045227051, -0.36363685131073, 0.46417924761772156, 0.060972265899181366, 0.22963881492614746, 0.29278454184532166, -0.26011723279953003, -0.1674412190914154, -0.5702816247940063, -0.2223234623670578, 0.9617334008216858, 0.4181635081768036, 0.1337055265903473, -0.9180394411087036, -0.08320411294698715, 0.8654186129570007, -0.9768618941307068, -0.8201701641082764, -0.20801997184753418, -0.5761131644248962, 0.13938111066818237, -0.5011812448501587, 0.01869484782218933, 0.6472885608673096, 0.34369856119155884, 0.9727964401245117, -0.4420106112957001, 0.31758448481559753, 1.135791540145874, 0.05785474181175232, 0.19965359568595886, 0.2994499206542969, 0.6344139575958252, 0.3931416869163513, 0.36047500371932983, 0.5960975289344788, 0.2734658420085907, -0.3734188675880432, -0.35877692699432373, -0.2378821223974228, -0.34863460063934326, -0.652325451374054, -4.026249408721924, 0.15921908617019653, -0.3604236841201782, -0.5183861255645752, 0.18538744747638702, 0.38347217440605164, 0.18931806087493896, -0.9721823930740356, -0.8149604201316833, 0.4212891459465027, -0.6312013268470764, -0.5046325325965881, 0.4106748700141907, 0.6635192632675171, 0.10719814151525497, 0.8831652998924255, -0.04990920424461365, -0.6321793794631958, 0.03329950571060181, 0.4617895781993866, -0.37918275594711304, -1.097550630569458, -0.48206210136413574, 0.23006653785705566, 0.31682854890823364, 0.1900080293416977, -0.9583991765975952, 0.33939066529273987, -0.9055896401405334, -0.429767906665802, 0.2719588279724121, -0.4516948461532593, -0.31983283162117004, 0.3419209122657776, 0.34994053840637207, -0.6642935872077942, 0.5207179188728333, 0.11630547046661377, -0.05171199515461922, -0.32321828603744507, -0.8760068416595459, -0.39810290932655334, -0.1930275559425354, -0.4350525736808777, 0.9548313021659851, -0.5603849291801453, -0.7181355357170105, -0.4705851972103119, 0.05658005177974701, 0.737694501876831, -0.11765280365943909, -0.04773079603910446, -0.4492405354976654, 0.8299742341041565, 0.33595049381256104, -0.24284592270851135, 0.23717716336250305, -0.2205691635608673, -0.4646861255168915, -0.08294333517551422, 0.36565157771110535, -0.9841761589050293, -0.8591340780258179, -0.5538066625595093, -0.1685006320476532, -0.8718911409378052, -0.7950339317321777, -0.9016034007072449, 0.6128907799720764, 1.1153024435043335, -0.7624201774597168, 0.7657352089881897, -0.015296511352062225, -1.3620538711547852, -0.07277526706457138, -0.509821891784668, 0.03559279441833496, -0.15378731489181519, -0.4788820147514343, 0.36939331889152527, -0.8348050713539124, -0.6023852229118347, 0.5449814796447754, 0.33459317684173584, -0.08469710499048233, -1.0703694820404053, 0.12066446989774704, -0.5874462127685547, -0.4345766305923462, -0.6487340927124023, 0.821102499961853, -1.198179006576538, 0.1457234025001526, 0.4491746127605438, 0.3070349097251892, 0.6104811429977417, 0.3147767186164856, -0.49591124057769775, 0.4023677706718445, -0.06144450604915619, 0.6106908917427063, -0.8276567459106445, 0.12806940078735352, -0.4434335231781006, -0.0032548904418945312, 0.02892245724797249, -0.49849075078964233, 0.054269008338451385, 0.4521018862724304, 0.10194991528987885, 0.3679138422012329, -0.35078325867652893, 0.26907145977020264, -0.4628978967666626, -0.37832069396972656, -0.8094155192375183, 0.4269055724143982, 0.5736881494522095, 0.4650285542011261, -0.10115419328212738, -0.5870393514633179, 0.7105935215950012, -0.7654735445976257, -0.6379322409629822, -1.6313287019729614, 0.49859148263931274, 0.12250939011573792, 0.20785625278949738, 0.23672226071357727, 0.3746737837791443, -0.5558915734291077, -0.30669108033180237, 0.49378490447998047, -0.08331134915351868, 0.7388218641281128, -0.6159743070602417, -0.3024888038635254, -0.5710964202880859, 0.6708667278289795, -0.39046359062194824, -0.09061124920845032, 0.4410477578639984, 0.6266788840293884, 0.3344700038433075, 0.696851909160614, 0.6246083974838257, -0.6284720301628113, 0.5330195426940918, -0.0827665850520134, -0.026175543665885925, -0.2190556526184082, -0.2037128210067749, 0.7149131894111633, -0.9893728494644165, -0.26127108931541443, -0.6217562556266785, 0.8714548945426941, 0.16327746212482452, 0.16875195503234863, -0.6300230622291565, -0.055354297161102295, -0.7326659560203552, -0.2734818458557129, -0.10493727028369904, -0.003970475867390633, 1.1888654232025146, -0.04843122139573097, 0.0830773115158081, -0.4826835095882416, -0.11357105523347855, 0.5378329753875732, -0.059082724153995514, -0.9055745601654053, 0.14726150035858154, -0.465696781873703, 0.7596600651741028, 0.26349154114723206, 0.09729538857936859, 0.19091582298278809, 0.5356877446174622, -0.06779219210147858, -0.043561555445194244, 0.3071677088737488, 0.16709546744823456, 0.4976087212562561, -0.04220522940158844, 0.15286625921726227, -0.6592074036598206, -0.1764085739850998, -0.2871156334877014, 0.5226073861122131, 0.025761768221855164, -0.405436635017395, 0.22883233428001404, -0.9641108512878418, -1.2320842742919922, 0.44263654947280884, 0.23646590113639832, 0.5002168416976929, 0.052074335515499115, -0.6174373030662537, -0.13101330399513245, -0.4321437478065491, 0.6810280680656433, -0.08868244290351868, -1.323203682899475, 0.2650274634361267, -0.11472231149673462, -0.2777983546257019, 0.04972095787525177, -0.23385369777679443, -0.6483690142631531, -1.2057212591171265, 0.1491810828447342, -0.2642134428024292, -0.8466957807540894, 0.07692582905292511, 0.058486953377723694, 0.3593224585056305, -0.4573143720626831, 0.8531220555305481, 0.26460012793540955, 0.19234290719032288, -0.3602040708065033, -0.5486412644386292, 0.6894518733024597, -0.17271843552589417, -0.14336538314819336, 0.4112986624240875, -0.26586830615997314, 0.2664041221141815, -0.4683906137943268, 0.04205392301082611, 0.9615055322647095, 0.019465424120426178, 0.11699091643095016, -0.10577051341533661, 0.23765897750854492, -0.1330796480178833, 0.6475041508674622, 0.27774709463119507, -0.053809791803359985, -0.11095137149095535, -0.6071465015411377, 0.45989274978637695, 0.11866950988769531, -0.49329549074172974, -0.2311730980873108, 0.07375654578208923, 0.8814993500709534, 0.348646342754364, 0.7602515816688538, -0.30683350563049316, -0.2515302896499634, 1.0272947549819946, -0.6025395393371582, -0.5658456683158875, 0.29642489552497864, -0.7020700573921204, 0.5482217073440552, 0.6738185882568359, 0.2881358861923218, -1.0598853826522827, 0.720604419708252, 1.0485588312149048, 0.455614298582077, -0.10482756793498993, -0.7122002840042114, 0.6052896976470947, -0.5558863282203674, -0.4692247807979584, -1.118790626525879, 0.0738796591758728, -0.10269729793071747, 0.5308688879013062, -0.5440135598182678, -0.22928926348686218, 0.08681139349937439, 0.6184765100479126, -0.7490718364715576, -0.77840256690979, 0.45689088106155396, -0.3903009593486786, 0.07679373025894165, 0.4806235432624817, -0.7715782523155212, -0.24533943831920624, 0.17983552813529968, -0.24244849383831024, -0.13104082643985748, -0.2942189872264862, 1.000681757926941, -0.7176414132118225, 0.059796322137117386, -0.1700136959552765, -0.24152517318725586, 0.917985200881958, 1.007982850074768, -0.8140671849250793, 0.01735302433371544, -0.6015593409538269, 1.004186987876892, 0.8502285480499268, 0.07041560113430023, -0.238747239112854, 0.22145530581474304, 0.030600598081946373, -1.2541906833648682, 0.37980177998542786, 0.5643866062164307, 0.3062649071216583, -0.6713553071022034, 0.8013556003570557, 0.4997170567512512, -0.818178117275238, -0.6293111443519592, 0.21977598965168, -0.49641111493110657, -0.30421024560928345, 0.1943235844373703, 0.29938000440597534, 0.23999589681625366, 0.8222126364707947, 0.35938748717308044, 0.24756154417991638, 1.2297818660736084, -0.030926428735256195, 0.33941859006881714, 0.6496492028236389, 1.1248605251312256, 1.0888574123382568, 0.11873240023851395, 0.2649926245212555, 0.951603889465332, -0.6939290165901184, -0.7198373675346375, 0.3336264491081238, -0.1795385777950287, 0.20672059059143066, -0.5380127429962158, -0.6159870624542236, 1.0418920516967773, 0.582279622554779, 1.5873185396194458, -0.14302513003349304, 0.38209229707717896, -0.5800577998161316, -0.6276887059211731, 0.9110985398292542, 0.5170606374740601, -0.1628563106060028, 0.958110511302948, -0.7142658829689026, -0.310669869184494, -0.14346745610237122, 0.8529503345489502, -0.07818156480789185, -0.3724392056465149, -0.39103859663009644, -0.07108137011528015, -0.4989360570907593, 0.9658363461494446, 0.9952872395515442, -0.07179387658834457, -0.16141697764396667, 0.3973240554332733, 0.6382677555084229, -0.20474839210510254, 0.32220590114593506, -0.0857008546590805, -0.17490969598293304, 0.23963496088981628, -0.7967194318771362, 0.14174455404281616, 0.1284877210855484, 0.03451371565461159, 0.8223797082901001, -0.4014107286930084, 0.08948607742786407, 0.18362551927566528, 0.6266160011291504, -0.11531747877597809, -1.1232788562774658, -1.0112481117248535, 0.2850508689880371, -1.119683027267456, -0.2512493133544922, 0.5923726558685303, -0.5369550585746765, -1.0893152952194214, -0.9175822734832764, -0.5942712426185608, 0.13279776275157928, -0.23986750841140747, -0.4536198079586029, -0.5968693494796753, 0.7635956406593323, 0.5205192565917969, 0.3656129539012909, 0.6630334854125977, 0.9810026288032532, -0.23002520203590393, 0.19329191744327545, 0.39791297912597656, 0.19383715093135834, 0.9593926668167114, -0.5324177742004395, 0.5791303515434265, -1.1248419284820557, 0.46599292755126953, 0.8745929598808289, 1.1445438861846924, -1.413537621498108, 0.7937622666358948, 0.4019430875778198, -0.7643581628799438, 0.859193742275238, 0.2549819350242615, 0.12055978178977966, -0.4147418439388275, -0.17759421467781067, -0.41348960995674133, 0.005697817541658878, 0.6727586388587952, -0.5344160795211792, 0.6133245229721069, 0.7832919955253601, 0.15169645845890045, -0.6824503540992737, 0.201292023062706, -0.1483699232339859, 0.4434804618358612, -0.9922627806663513, -0.6018106341362, -0.5569613575935364, -1.1408946514129639, -0.5318195819854736, 0.801729679107666, -0.114937424659729, -0.6037323474884033, -0.09026802331209183, -0.5731066465377808, -0.15655368566513062, 0.5500223636627197, -0.5446086525917053, -0.4062540531158447, -0.27843692898750305, -0.9848006963729858, -1.128260612487793, 0.31363165378570557, 0.6582030057907104, -0.5219631195068359, -0.0353202298283577, -0.7228822112083435, 0.20073454082012177, -0.4842081069946289, -0.1104787290096283, 0.9337019324302673, -0.09448789060115814, 0.46560990810394287], "27dbd541-35f6-4db6-954f-78e6bd9c7f78": [-0.36923688650131226, -0.31054121255874634, -0.4116407036781311, 0.11048165708780289, 0.9047742486000061, -0.3343980014324188, 0.5691266059875488, 0.8420706391334534, -0.7989583015441895, -0.33824512362480164, -0.24537599086761475, -0.3148983120918274, -0.8467555046081543, -0.03544112294912338, 0.34682872891426086, 0.881919801235199, 0.3733370900154114, -0.3675214648246765, 0.6122053265571594, 0.1009541004896164, -0.06286339461803436, -0.21292482316493988, -0.25144827365875244, 0.7970482707023621, 0.8829719424247742, 0.06316210329532623, -0.22061485052108765, 0.19321344792842865, -1.5715248584747314, -0.11776569485664368, 0.22786147892475128, -0.17223325371742249, -0.000589955598115921, -0.18385043740272522, 0.30340054631233215, -0.20256569981575012, -0.7420362830162048, -0.3650839030742645, 0.13489222526550293, -0.21969875693321228, -0.4771462678909302, -0.6141745448112488, -0.13993299007415771, 0.20096853375434875, -0.6154980659484863, 0.5188138484954834, -1.3211932182312012, 0.6651721000671387, -0.21541710197925568, -0.19034148752689362, -1.3649492263793945, 0.6159254312515259, 0.5452246069908142, 0.07284729927778244, 0.31929469108581543, 0.651262640953064, 0.8706313371658325, -0.8081693053245544, 0.07293935865163803, -0.19387805461883545, 0.18538498878479004, 0.0884401947259903, 0.609601616859436, 0.7682726383209229, 0.0954573005437851, -0.46993857622146606, -0.15600994229316711, 0.8545182347297668, -1.2223087549209595, -0.39723482728004456, -0.7285240292549133, -0.3553640842437744, -0.4376089870929718, 0.3999645709991455, 0.6801722645759583, -0.6045407056808472, 0.14281442761421204, 0.46584615111351013, 0.9017459750175476, 1.443434238433838, 0.11029596626758575, 0.5002559423446655, -0.06405594199895859, 0.8234608769416809, -0.24525460600852966, -0.0668656975030899, -0.8061869144439697, -0.5742350220680237, -0.7632008194923401, 0.40411365032196045, -0.3581452965736389, -0.4778986871242523, 0.5788917541503906, 0.16885429620742798, -0.35768768191337585, 0.16345304250717163, 0.9776073098182678, 0.3190663456916809, 0.6307342648506165, 0.09208814054727554, -0.39915066957473755, -1.2192081212997437, 0.2201436161994934, -0.01883319951593876, -1.5300003290176392, -0.11929018795490265, -0.7996990084648132, -0.17176751792430878, 0.007810741662979126, 0.4197886884212494, -0.16050803661346436, -0.088911272585392, -0.7930070757865906, 0.0640600249171257, -1.240714430809021, 1.0656378269195557, 0.7683938145637512, 0.450827032327652, 0.05144072324037552, -0.2568345069885254, 0.9132089018821716, 1.0193415880203247, 0.6366708278656006, 1.2987656593322754, -0.023265153169631958, 0.6617333889007568, -0.06161411851644516, 0.9572560787200928, -0.5168403387069702, -1.2543470859527588, 0.20476460456848145, 1.0814228057861328, 0.08740584552288055, -0.27533653378486633, -0.09774831682443619, -0.17424818873405457, 0.13514354825019836, 0.3191835880279541, 0.6857426166534424, 0.05806306004524231, -0.09874050319194794, -0.2361050248146057, 0.3659960627555847, -0.13337264955043793, 0.5563265085220337, 0.16769123077392578, -0.0009528324007987976, -0.7600408792495728, -0.10158272832632065, 0.7562388181686401, 0.3302574157714844, 0.5386871099472046, 0.9306491017341614, -0.8654067516326904, 0.10467350482940674, 1.2610975503921509, -0.03608687222003937, -0.05323074758052826, -0.6080192923545837, 0.6358468532562256, 0.7263670563697815, -0.5638593435287476, -0.6405503153800964, -0.013033062219619751, -0.4465864896774292, 0.07001917064189911, 0.33470040559768677, 0.4527240991592407, -0.131877601146698, 0.13263651728630066, -0.5476820468902588, -0.9867493510246277, 1.1109575033187866, -0.7824053764343262, -0.11195602267980576, -0.2415793240070343, 1.669175624847412, 0.34162649512290955, 0.00036064349114894867, -0.3055950403213501, -1.0244507789611816, 0.8194042444229126, -0.3053567409515381, -0.24778208136558533, -0.4721115231513977, -0.35314440727233887, 1.3098803758621216, -0.22669604420661926, -0.28698083758354187, 0.10447204858064651, -1.4195568561553955, -1.2323588132858276, -0.4408302903175354, 0.2539634108543396, 0.9708874225616455, -0.5529487729072571, -0.10616454482078552, 0.8473485708236694, -0.06880336999893188, 0.6335802674293518, -0.22619181871414185, 0.7806828618049622, -0.45025789737701416, -0.875623881816864, -1.119049072265625, 0.5632450580596924, 0.5264713168144226, -0.6890272498130798, -0.315362811088562, -0.08972492069005966, -0.12147697061300278, -0.06550276279449463, 0.8297645449638367, -0.6003204584121704, 0.5790287852287292, 0.22517970204353333, 0.5541045665740967, -0.5899038910865784, 0.5120738744735718, -0.6275739669799805, 0.5085304975509644, -0.03943712264299393, -0.7416129112243652, 0.6233131885528564, -0.0010357126593589783, 1.217322587966919, 1.003366231918335, -0.5451825857162476, -0.23727883398532867, 0.34913888573646545, 0.1174999475479126, -0.021837785840034485, 0.38666263222694397, -0.5517972111701965, -0.11878876388072968, -0.01927308365702629, 0.4106040596961975, -0.36109256744384766, 0.8188773989677429, -0.9510563015937805, -0.15815337002277374, 1.4640039205551147, -0.2682094871997833, 0.7850663065910339, 0.9600794315338135, -0.40417882800102234, -0.05986405909061432, -0.10737042874097824, -0.4030400216579437, -0.48658135533332825, -0.46382683515548706, -0.3390379250049591, 0.41648629307746887, -0.9519490599632263, 0.8652652502059937, -0.752744734287262, -0.8181817531585693, 0.5015408992767334, 0.4681905210018158, 0.9489250779151917, -0.7970380187034607, 0.4650346338748932, 0.2805848717689514, -0.3708118498325348, -0.21766048669815063, -1.3930202722549438, -0.6335716843605042, -0.06175890192389488, 0.6750178337097168, 0.19248364865779877, 0.2124863862991333, 0.3390873074531555, 0.16539713740348816, 0.2174195647239685, -0.5013154745101929, -0.3625299632549286, 0.9408710598945618, 0.6293540596961975, -0.06702050566673279, -0.7680912017822266, -0.2133987545967102, 0.5757635235786438, -0.9773150682449341, -1.1242971420288086, -0.2713169753551483, -0.3278341293334961, 0.0554804801940918, -0.9446113705635071, -0.3500007390975952, 0.37725552916526794, 0.18019819259643555, 0.644608736038208, -0.19216135144233704, 0.6291013956069946, 1.451634407043457, 0.3821776211261749, 0.3320746123790741, 0.3578330874443054, 0.5096160173416138, -0.1569698303937912, 0.06796284765005112, 0.32232093811035156, 0.346919983625412, -0.008512698113918304, -0.4680323898792267, -0.021654438227415085, 0.058843571692705154, -0.1799953281879425, -4.35791015625, 0.057265669107437134, 0.1641143411397934, -0.8963306546211243, 0.337551087141037, -0.18555539846420288, 0.4688987135887146, -0.38631099462509155, -0.7970283031463623, 0.9863907694816589, 0.09540688991546631, -0.3054160177707672, 0.2405490279197693, 0.7179089188575745, 0.16519497334957123, 0.9431901574134827, 0.5083170533180237, -0.6064746975898743, 0.27900052070617676, 0.7489473223686218, -0.38033491373062134, -1.0152249336242676, -0.2940887212753296, -0.0036719869822263718, 0.29177752137184143, 0.1701579988002777, -1.0921225547790527, 0.6254355907440186, -1.128672480583191, -0.37204527854919434, -0.189400315284729, -0.04452503100037575, -0.054208904504776, 0.41842031478881836, -0.4552355110645294, -0.4630855619907379, 0.36172738671302795, -0.15258513391017914, 0.5237671732902527, -0.1590368151664734, -0.8508252501487732, -0.7893723845481873, -0.17656414210796356, 0.17644889652729034, 0.7192065715789795, -0.08841200917959213, -0.5231680870056152, -0.33592137694358826, -0.1826285719871521, 0.6689167618751526, -0.34200695157051086, -0.5399215221405029, -0.5806934833526611, 0.3257776200771332, 0.48728108406066895, -0.3082740604877472, -0.30994877219200134, -0.07795931398868561, -0.5078765153884888, -0.05015373229980469, 0.3630177974700928, -0.6671246290206909, -0.8081502318382263, -0.019607149064540863, -0.06185999512672424, -0.5647934079170227, -0.5355381965637207, -1.0080909729003906, 0.8996137976646423, 0.6880250573158264, -0.4466836452484131, 0.5250867605209351, -0.46470704674720764, -1.385572075843811, 0.03723135590553284, -0.04667211323976517, 0.1934674084186554, 0.10836280882358551, -0.7958584427833557, 0.5664401054382324, -0.6585105657577515, 0.21045774221420288, 0.3715047240257263, 0.48570987582206726, -0.04000820219516754, -0.41310253739356995, -0.5380175709724426, -0.48309066891670227, -0.6356338262557983, -0.34972214698791504, 0.7491853833198547, -0.3349943459033966, 0.1679345667362213, 0.39204081892967224, 0.5453195571899414, 1.0561432838439941, 0.02785666100680828, -0.389873743057251, 0.4849056601524353, -0.5274857878684998, 0.5821424722671509, -0.6558676362037659, 0.1351718157529831, -0.5586679577827454, 0.3307254910469055, -0.0857110545039177, -0.6947876811027527, 0.16450069844722748, -0.1826222538948059, 0.6405982971191406, 0.06721238046884537, -0.061455532908439636, 0.08343006670475006, -0.822756290435791, -0.15774282813072205, -0.6236101984977722, 0.6326859593391418, 0.5407223701477051, 0.002025265246629715, -0.24808567762374878, -1.14216148853302, 0.6402245163917542, -0.7383606433868408, -0.3129945397377014, -1.122340440750122, 0.5310825109481812, 0.3375503122806549, 0.3918248414993286, 0.08881983906030655, 0.12047286331653595, -0.3754785656929016, -0.24748626351356506, 0.40735766291618347, 0.1749686598777771, 0.2641284167766571, -0.9115325212478638, -0.26475441455841064, -0.36447152495384216, 0.38793760538101196, 0.055780068039894104, 0.01766054891049862, 0.3882615566253662, 0.33739250898361206, 0.3675829768180847, 0.6081843376159668, 0.38120049238204956, -0.4986696243286133, -0.03745603188872337, -0.3187132179737091, 0.1650184690952301, -0.3742040991783142, -0.6028444766998291, 0.18753677606582642, -0.8303964734077454, -0.23735454678535461, -0.5718076229095459, 0.9341974258422852, -0.29682105779647827, -0.15956416726112366, -0.6600147485733032, 0.5793948769569397, -0.5836670398712158, 0.15650328993797302, -0.2097575068473816, -0.13936415314674377, 1.0968265533447266, -0.1965959072113037, 0.20448821783065796, -0.7165819406509399, -0.4177395701408386, 0.34589600563049316, -0.46542832255363464, -0.8561655879020691, 0.11031235009431839, -0.05489451438188553, 0.9739610552787781, 0.20425774157047272, 0.23076140880584717, -0.23019078373908997, 0.5769917964935303, 0.0648806095123291, -0.11179280281066895, -0.005924183875322342, 0.33063045144081116, 0.9137330651283264, -0.5560146570205688, 0.34021618962287903, -0.2054779827594757, -0.03257284685969353, -0.05080766975879669, 0.5335831642150879, 0.26790285110473633, -0.1649313122034073, 0.1765226274728775, -0.7869926691055298, -1.076362133026123, 0.5966160893440247, 0.5000820159912109, 0.0038838349282741547, 0.3905554413795471, -0.09533868730068207, -0.3901553452014923, -0.7285061478614807, 0.030872859060764313, 0.20755168795585632, -1.313667893409729, 0.6340800523757935, -0.4980585277080536, 0.02966061234474182, 0.0023687779903411865, 0.004773184657096863, -0.6962704658508301, -0.8485713005065918, 0.06423322856426239, 0.1237848550081253, -0.6808035969734192, 0.18572112917900085, 0.4108818769454956, 0.15016064047813416, -0.004968702793121338, 0.20567043125629425, -0.27329862117767334, -0.252763032913208, 0.0031924396753311157, -0.5408100485801697, 0.9571343660354614, -0.610359251499176, -0.6320532560348511, 0.4488571584224701, -0.31967899203300476, 0.6497681736946106, -0.9510235786437988, 0.1374010294675827, 0.8365893959999084, 0.1376030147075653, -0.2065165638923645, -0.14562973380088806, 0.5550392270088196, -0.02504047192633152, 0.7317240834236145, -0.25921815633773804, 0.21927019953727722, 0.06821472942829132, -0.25791817903518677, 0.49369335174560547, -0.4657509922981262, -0.2502945065498352, 0.02293386310338974, -0.11602666229009628, 0.6656411290168762, -0.021845705807209015, 0.2797914147377014, -0.27183037996292114, -0.25756219029426575, 1.2439649105072021, -0.4760628640651703, -0.11819002032279968, -0.3761121928691864, -0.8669992685317993, 0.5149651169776917, -0.25467902421951294, 0.550324559211731, -1.0681312084197998, 1.0846962928771973, 0.6954574584960938, 0.40020042657852173, -0.5913305878639221, -0.5896457433700562, 0.6023659706115723, -0.6642675399780273, -0.491252064704895, -0.6985244750976562, 0.4971775412559509, 0.36121171712875366, 0.48507532477378845, -0.1158432811498642, -0.24097612500190735, 0.19551986455917358, 0.881651759147644, -0.6595185399055481, -0.49996793270111084, 0.12094289064407349, -0.2451360821723938, 0.013636745512485504, 0.8226907253265381, -0.5730935335159302, 0.05280949920415878, 0.641132652759552, 0.20805785059928894, -0.08565358817577362, -0.3483322858810425, 1.1418564319610596, 0.07953178882598877, 0.47285398840904236, -0.48374950885772705, -0.23916886746883392, 0.4240361750125885, 0.7532309889793396, -0.9098742008209229, 0.27596935629844666, -0.601489245891571, 0.7836596965789795, 0.9788672924041748, 0.1518288105726242, -0.051736071705818176, -0.08172571659088135, -0.19348740577697754, -0.9723228216171265, 0.39265307784080505, 0.8193904757499695, 0.1365569829940796, -0.7536593675613403, 0.5995646715164185, 0.5102167725563049, -1.182265043258667, -0.528677761554718, 0.20286904275417328, -0.68886798620224, -0.23547448217868805, -0.22349174320697784, 0.41335782408714294, -0.3423936665058136, 0.9596608877182007, 0.3148976266384125, 0.26857054233551025, 1.322821021080017, 0.01889699697494507, 0.17828109860420227, 0.37645822763442993, 0.9635379314422607, 1.4581049680709839, 0.611147403717041, 0.4306592345237732, 0.5338829755783081, -0.9321985840797424, -0.9119712114334106, -0.3899598717689514, -0.22332046926021576, -0.09314250200986862, -0.7471331357955933, -0.3110862970352173, 1.140767216682434, 0.32499492168426514, 1.1680512428283691, 0.09981238842010498, 0.4383299648761749, 0.04169390723109245, -0.2801819443702698, 0.9130435585975647, 0.5951907634735107, -0.19103214144706726, 0.5464807748794556, -0.5507356524467468, -0.5657229423522949, 0.06764638423919678, 0.061127737164497375, 0.23981541395187378, -0.3599455952644348, -0.09227026998996735, 0.13545317947864532, -0.16071754693984985, 1.0695207118988037, 1.185684084892273, 0.19295115768909454, -0.15430918335914612, 0.25147712230682373, 0.526235818862915, -0.08360305428504944, 0.37618765234947205, 0.29328668117523193, -0.056619368493556976, 0.24499410390853882, -0.25967174768447876, -0.10581004619598389, 0.02535966970026493, -0.2367182970046997, 0.17737245559692383, -0.17826785147190094, 0.09577071666717529, 0.32584822177886963, 0.09676002711057663, -0.09593375027179718, -0.9088002443313599, -0.7705385684967041, 0.18361321091651917, -0.8109772205352783, -0.06681841611862183, 0.33838504552841187, -0.6022421717643738, -0.8434562087059021, -0.4888061583042145, -0.32537832856178284, -0.08169109374284744, -0.08458328992128372, -0.16814276576042175, -0.6051042079925537, 0.6232599020004272, -0.14376235008239746, 0.1529911458492279, 0.621281087398529, 0.9795729517936707, -0.14000365138053894, -0.10231628268957138, 0.1092987060546875, 0.5615189075469971, 1.0016047954559326, -0.2649683952331543, 0.19027644395828247, -1.1070873737335205, 0.21048733592033386, 0.5499228835105896, 1.2911661863327026, -1.8446590900421143, 1.0984408855438232, -0.0055539608001708984, -0.9485469460487366, 0.499667227268219, -0.04056994616985321, -0.043500639498233795, -0.596299409866333, -0.3198011517524719, -0.3963022232055664, 0.1458306759595871, 0.6637088656425476, -0.3998802900314331, 0.49790486693382263, 0.6078736186027527, -0.19518648087978363, -0.09330928325653076, 0.2890017032623291, -0.01118534430861473, -0.1324407309293747, -0.7943164110183716, -0.563125491142273, -0.6746969223022461, -0.8399292230606079, -0.6936216354370117, 0.5950616002082825, 0.30383703112602234, -0.4274916350841522, -0.09493434429168701, -0.3136899471282959, -0.37944889068603516, 0.18156319856643677, -0.20066839456558228, -0.17581219971179962, -0.3953675329685211, -1.1967500448226929, -0.8919795751571655, -0.29006248712539673, 0.5528069734573364, -0.08752530068159103, -0.11775948852300644, -0.6167071461677551, -0.18023815751075745, -0.42527979612350464, -0.07039078325033188, 0.8732791543006897, -0.14209860563278198, 0.3140471279621124], "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9": [-0.2367783486843109, 0.1295737475156784, -0.239109069108963, 0.11191197484731674, 0.8133628368377686, -0.6340550184249878, 0.2991781234741211, 0.6758621335029602, -0.5576366186141968, -0.5287009477615356, -0.38785725831985474, 0.36288803815841675, -1.0989444255828857, 0.11612963676452637, 0.7226418256759644, 0.9273824095726013, 0.6942823529243469, -0.19016462564468384, 0.10482914745807648, -0.3814023733139038, 0.3663308024406433, -0.046971045434474945, -0.15002083778381348, 0.5542494058609009, 0.7340538501739502, -0.5492473840713501, 0.0350976288318634, 0.3744611144065857, -1.405206322669983, -0.09431453794240952, 0.5426164269447327, 0.027734287083148956, 0.021955594420433044, -0.48251092433929443, 0.2961145043373108, -0.4427206218242645, -1.0464344024658203, -0.07651198655366898, 0.4965764284133911, 0.00024922192096710205, -0.6997731328010559, -0.5011609196662903, -0.7709929347038269, 0.36661386489868164, -0.8258257508277893, 0.67442786693573, -1.2512321472167969, 0.6005386710166931, -0.6120732426643372, 0.5724092721939087, -1.359161615371704, 0.6754900217056274, 0.3587743639945984, 0.5000016689300537, 0.25121840834617615, 1.0384249687194824, -0.21236608922481537, -0.9740508198738098, -0.01511351391673088, -0.6262561082839966, 0.2617590129375458, 0.10467274487018585, 0.5310080051422119, 0.09861230850219727, -0.24604734778404236, -0.8809155225753784, -0.24821555614471436, 0.6421909332275391, -1.1027613878250122, -0.5422118902206421, -0.3871070146560669, 0.44080692529678345, -0.1099030077457428, 0.0019032657146453857, 0.5084035396575928, -0.8086735010147095, 0.20167362689971924, 0.3202248513698578, 0.8653876781463623, 0.659529447555542, -0.3129945695400238, 0.3436346650123596, 0.19444674253463745, 1.2938345670700073, -0.4025457501411438, -0.09575299918651581, -0.22571606934070587, 0.1961771696805954, -0.7184019088745117, 0.39634430408477783, -0.27122053503990173, -0.8496478796005249, 0.6116312742233276, 0.01961548626422882, -0.14070066809654236, -0.05688107758760452, 0.7679281830787659, 0.09179763495922089, 0.40762895345687866, 0.14963683485984802, -0.12773418426513672, -0.900163471698761, 0.26649394631385803, -0.45023372769355774, -1.1939449310302734, -0.5564515590667725, -0.6500864028930664, -0.210740327835083, -0.4656629264354706, 0.14050818979740143, 0.002171676605939865, -0.7737206220626831, -0.9951267242431641, -0.05543028935790062, -0.8987650275230408, 1.1345890760421753, 0.9322643876075745, -0.07762259989976883, -0.37582454085350037, -0.40486863255500793, 0.8818889260292053, 1.0081056356430054, 0.5464645624160767, 1.440284252166748, -0.09098972380161285, 0.5437079668045044, 0.2152838259935379, 0.8792737722396851, -0.2797495722770691, -1.4007818698883057, 0.6460588574409485, 0.8342027068138123, -0.11930783092975616, 0.1730266511440277, -0.38756048679351807, -0.021065130829811096, 0.26538676023483276, 0.5161799788475037, 0.726251482963562, -0.5076004266738892, -0.1829354614019394, -0.41191333532333374, 0.478423535823822, 0.20969370007514954, 0.8771868348121643, 0.1563798487186432, -0.640397846698761, -0.9796001315116882, -0.4094122350215912, 0.38847944140434265, 0.29341161251068115, 0.5614137649536133, 0.7909162044525146, -1.1273455619812012, -0.10403086990118027, 0.8656723499298096, -0.15677253901958466, 0.1701347976922989, -0.7378571629524231, 0.6298157572746277, 0.5888947248458862, -0.3074900209903717, -0.3596349060535431, -0.01818516105413437, -0.304057240486145, -0.05540529265999794, 0.17732533812522888, -0.20741604268550873, -0.02075197547674179, 0.1838502436876297, -0.5626416206359863, -0.5774790644645691, 0.9825935959815979, -0.7444196939468384, -0.523362398147583, -0.07108326256275177, 1.2150806188583374, 0.313575804233551, 0.2807123363018036, -0.4851952791213989, -0.9548220634460449, 0.7232330441474915, 0.038450196385383606, -0.30491533875465393, -0.12329764664173126, -0.28112131357192993, 1.6315274238586426, -0.08513118326663971, -0.2733624279499054, 0.06956823915243149, -1.3885273933410645, -0.4784512519836426, 0.06981225311756134, 0.8981612324714661, 1.0117084980010986, -0.458285927772522, 0.23470184206962585, 0.5191277265548706, 0.06987056881189346, 0.6635302901268005, 0.1760866492986679, 0.7023620009422302, -0.11222204566001892, -0.9978914260864258, -0.6318023204803467, 0.7258500456809998, 0.27397528290748596, -0.49699506163597107, 0.11873310804367065, 0.4426092803478241, -0.20685073733329773, 0.3397032618522644, 0.6527440547943115, -0.5437391996383667, 0.7143741846084595, 0.2592862546443939, 0.49409541487693787, -0.9839428067207336, 0.8339499831199646, -0.757773220539093, 0.9173636436462402, 0.18598094582557678, -1.000274419784546, 0.23827071487903595, -0.07426704466342926, 1.3892358541488647, 0.9268803000450134, -0.21053558588027954, -0.5551446080207825, 0.5021563172340393, 0.44190484285354614, -0.46150004863739014, 0.5964958667755127, -0.17667554318904877, -0.09091850370168686, -0.01666639745235443, -0.020012568682432175, -0.12572640180587769, 0.851012647151947, -0.7610666751861572, 0.17736800014972687, 1.1755930185317993, -0.10766712576150894, 0.8768521547317505, 0.3489725887775421, -0.06661392748355865, 0.25232309103012085, -0.4528924226760864, -0.28610336780548096, -0.8080653548240662, -0.6834077835083008, -0.4630907475948334, 0.0036911386996507645, -0.9709782004356384, 0.8521488904953003, -0.6086966395378113, -0.620861828327179, 0.30882927775382996, 0.778413712978363, 0.8434388637542725, -0.6932807564735413, 0.7990663051605225, 0.694331705570221, -0.37830400466918945, -0.1933431476354599, -1.5346206426620483, -0.8431832194328308, -0.06130620464682579, 0.3079080581665039, 0.12412435561418533, 0.6849508285522461, -0.5179457664489746, 0.08232095837593079, -0.03765127807855606, -0.46304231882095337, 0.03539182245731354, 1.0458946228027344, 0.23305262625217438, 0.08962780237197876, -0.8765632510185242, -0.36028704047203064, 0.9186019897460938, -0.7539347410202026, -1.362043857574463, -0.21674445271492004, -0.41443219780921936, 0.4245923161506653, -0.4430359899997711, -0.1772252768278122, 0.4677359163761139, 0.26304423809051514, 0.1339937150478363, -0.34411296248435974, 0.5742645859718323, 1.1499680280685425, 0.5273852348327637, 0.4726261496543884, 0.16934077441692352, 0.15027229487895966, -0.030377939343452454, -0.5576894879341125, 0.26635468006134033, 0.4218931794166565, -0.46221688389778137, -0.5979925990104675, -0.15824556350708008, 0.01524006761610508, -0.5954660177230835, -4.333099842071533, 0.29169949889183044, -0.13400162756443024, -0.6781721711158752, 0.6146001219749451, 0.3092381954193115, 0.5941599607467651, -0.7675294280052185, -0.7462608218193054, 0.8630375266075134, -0.011715434491634369, -0.08153136074542999, 0.5281362533569336, 0.5632430911064148, 0.5466684699058533, 0.9390169382095337, 0.17279544472694397, -1.0434316396713257, -0.005506619811058044, 0.8587496280670166, -0.22758179903030396, -0.7402887940406799, -0.23142150044441223, 0.5547844767570496, 0.5601769685745239, 0.7120590209960938, -0.9948689341545105, 0.6032211184501648, -0.8831965923309326, 0.13458609580993652, -0.04068245366215706, -0.21767958998680115, 0.36589327454566956, -0.021121587604284286, -0.23124274611473083, -0.510323703289032, 0.7831823825836182, -0.19694480299949646, 0.3750026822090149, -0.1867992877960205, -0.8227067589759827, -0.7253595590591431, -0.29061949253082275, -0.5007109642028809, 0.7818364500999451, -0.10917927324771881, -0.5624157190322876, -0.15633532404899597, 0.44431057572364807, 0.46547195315361023, -0.14922024309635162, -0.6424495577812195, -0.5164954662322998, 0.2993614375591278, 0.206790953874588, -0.3733987510204315, -0.7609061598777771, -0.09486433863639832, -0.35088682174682617, -0.19291752576828003, 0.07876847684383392, -1.0370514392852783, -0.6281759738922119, -0.573815107345581, -0.30337488651275635, -0.39183157682418823, -0.5853665471076965, -0.764738917350769, 0.8409484624862671, 0.8870984315872192, -0.5493817925453186, 0.5518920421600342, -0.46582862734794617, -1.4882038831710815, -0.2658846974372864, -0.26526176929473877, -0.33680686354637146, -0.47180697321891785, -0.42754313349723816, 0.1713167130947113, -0.9271274209022522, -0.027001356706023216, 0.22392937541007996, 0.6385511159896851, -0.3086436986923218, -0.841118335723877, -0.049546271562576294, -0.38921499252319336, -0.6525854468345642, -0.45478367805480957, 0.8493350148200989, -0.5836699604988098, 0.04305468499660492, 0.8671284914016724, 0.5405973196029663, 0.2527523934841156, 0.2950742840766907, -0.7253354787826538, 0.4553217589855194, 0.24303120374679565, 0.8714928030967712, -0.6361960768699646, 0.27416902780532837, -0.07613896578550339, 0.500960111618042, 0.03868357092142105, -0.44488245248794556, -0.06906377524137497, 0.2901953458786011, -0.02200973406434059, 0.07992429286241531, -0.17397065460681915, -0.10013064742088318, -0.4186675250530243, 0.1006525307893753, -0.5025650262832642, 0.389535129070282, 0.7983759045600891, 0.16326528787612915, -0.29681360721588135, -0.5986130237579346, 0.680475652217865, -0.4045659899711609, -0.33986178040504456, -1.2194141149520874, 0.20950646698474884, 0.13396060466766357, 0.0306360125541687, -0.4712870121002197, -0.0012574795400723815, -0.5561789274215698, -0.3283943235874176, 0.22868719696998596, 0.3495451807975769, 0.8402577042579651, -0.7839824557304382, -0.4506915509700775, -0.22727005183696747, -0.015583783388137817, 0.2653634250164032, 0.25077852606773376, 0.05138494074344635, -0.12888012826442719, 0.7547382116317749, 0.5275006890296936, 0.4029800295829773, -0.8598320484161377, 0.38661596179008484, -0.4197442829608917, -0.19308368861675262, -0.15447916090488434, -0.2305196225643158, 0.33599019050598145, -0.8191855549812317, 0.164779394865036, -0.7776480913162231, 0.8123819231987, 0.15265312790870667, -0.16427777707576752, -0.6346132755279541, 0.22028157114982605, -0.38680750131607056, -0.04311642795801163, 0.4506928324699402, -0.07760295271873474, 1.0206737518310547, -0.4455815553665161, -0.025736991316080093, -0.10669797658920288, -0.19461959600448608, 0.26291900873184204, -0.8888718485832214, -0.8158281445503235, 0.0772961750626564, 0.07124870270490646, 0.32818615436553955, 0.09101402759552002, 0.13836464285850525, 0.287101686000824, 0.30967146158218384, 0.028539124876260757, -0.10284596681594849, 0.4192911386489868, 0.5086873173713684, 1.0937408208847046, -0.03488266468048096, 0.6333539485931396, -0.17995591461658478, -0.20749446749687195, 0.09693142026662827, 0.4016459882259369, 0.10267722606658936, -0.4374900460243225, -0.0498964786529541, -0.8310748338699341, -1.0527286529541016, 0.5821090340614319, 0.4717113673686981, 0.9562631249427795, 0.0709180235862732, 0.03269209340214729, -0.15085138380527496, -0.28952911496162415, 0.25186336040496826, -0.3114052712917328, -1.2670782804489136, 0.46758341789245605, -0.02625971846282482, -0.4763447046279907, 0.15338297188282013, -0.28690195083618164, -1.225888967514038, -0.6359854340553284, 0.4809792637825012, 0.17670023441314697, -0.6492857933044434, -0.5402259826660156, 0.10970230400562286, 0.21437494456768036, -0.5454408526420593, 0.3718297779560089, 0.3563857972621918, -0.30141812562942505, -0.4661683440208435, -0.5134587287902832, 0.17434516549110413, -0.16913698613643646, -0.2816838026046753, 0.2938341796398163, -0.3847605288028717, 0.2718786895275116, -0.5618512630462646, 0.06832312047481537, 0.8753182291984558, 0.19339153170585632, 0.09897702932357788, -0.1357906609773636, 0.436370849609375, -0.55375075340271, 0.646022379398346, -0.16537019610404968, 0.009495755657553673, -0.297870934009552, -0.6262494325637817, 0.41262397170066833, 0.09053255617618561, -0.7496588826179504, 0.017530430108308792, -0.005993161350488663, 0.6795755624771118, 0.3050408661365509, 0.699773907661438, -0.0649268701672554, -0.20742151141166687, 1.082257866859436, -0.6022208333015442, -0.5818966627120972, -0.10589599609375, -0.6555613875389099, 0.15972456336021423, 0.12726879119873047, 0.45455408096313477, -1.1504396200180054, 0.901569128036499, 0.8022011518478394, 0.3990805745124817, -0.4188667833805084, -0.35670050978660583, 0.8365304470062256, -0.05470091849565506, 0.0450129434466362, -1.1994683742523193, 0.17527270317077637, 0.9135022163391113, 0.5945338010787964, 0.11171330511569977, -0.5185109376907349, -0.20902663469314575, 0.8584010004997253, -0.6836248636245728, -0.7117513418197632, 0.41260719299316406, 0.12836012244224548, 0.32201141119003296, 0.8441132307052612, -1.0815157890319824, 0.06675038486719131, 0.4461636543273926, 0.21605002880096436, 0.04797207936644554, -0.7898040413856506, 1.120638132095337, -0.5159201622009277, 0.12644319236278534, 0.023328229784965515, -0.41279155015945435, 0.42009758949279785, 1.206261157989502, -0.48729532957077026, 0.5430726408958435, -0.6494896411895752, 0.8317170739173889, 0.8746278285980225, 0.17922669649124146, -0.1551462858915329, 0.28244322538375854, -0.16299133002758026, -1.0559030771255493, 0.007170584052801132, 0.5744476318359375, 0.3118937313556671, -0.505179762840271, 0.7686177492141724, 0.7797163128852844, -0.982327401638031, -0.6146512031555176, 0.40053412318229675, -0.4158656597137451, -0.14300791919231415, -0.10377232730388641, 0.43111222982406616, 0.12871631979942322, 0.883540689945221, 0.36927810311317444, 0.6064111590385437, 1.1231311559677124, -0.4503021240234375, 0.0174495130777359, 1.1615794897079468, 1.1016502380371094, 1.229266881942749, 0.5578055381774902, 0.0966082513332367, 0.8337828516960144, -0.6797874569892883, -0.9016132354736328, -0.23478972911834717, -0.11745450645685196, -0.4241730570793152, -0.06882983446121216, -0.4621216356754303, 0.41723209619522095, 0.3021991550922394, 1.1192551851272583, -0.41456106305122375, 0.22971734404563904, 0.3740442991256714, -0.31454622745513916, 0.6757498979568481, 0.3094633221626282, 0.04827655106782913, 0.3793349266052246, -0.6782076954841614, -0.664466142654419, -0.2163088321685791, 0.32310062646865845, -0.4541013836860657, 0.048743948340415955, -0.4874380826950073, -0.011373568326234818, -0.27787986397743225, 1.0502218008041382, 1.3169441223144531, 0.14138537645339966, 0.11413924396038055, -0.08238841593265533, 0.5515114068984985, -0.11550341546535492, 0.014121077954769135, 0.3008537292480469, -0.11591006815433502, -0.12784087657928467, -0.46045905351638794, -0.22780612111091614, 0.3394428491592407, 0.11028732359409332, 0.6060497164726257, -0.37316080927848816, -0.0067679849453270435, 0.028318382799625397, 0.46464505791664124, -0.12119825184345245, -0.6381041407585144, -0.8121659755706787, -0.07829944789409637, -1.0831387042999268, -0.019724376499652863, 0.9162701964378357, 0.1958496868610382, -0.9924682378768921, -0.3150375783443451, -0.4192692041397095, 0.032607726752758026, -0.18303373456001282, -0.6660604476928711, -0.32950687408447266, 0.742889940738678, -0.23859626054763794, 0.31383493542671204, 0.8449893593788147, 0.5830920934677124, 0.07163064181804657, -0.05705372244119644, 0.1824689507484436, 0.48023608326911926, 1.001401662826538, -0.06371775269508362, 0.24247542023658752, -1.064517855644226, 0.4040663242340088, 0.2450631707906723, 0.681632399559021, -1.675673007965088, 1.0399169921875, -0.09088217467069626, -0.7885766625404358, 0.8057773113250732, 0.21223483979701996, -0.2853196859359741, -0.15179625153541565, -0.37754207849502563, -0.012354210019111633, 0.26584258675575256, 0.20226240158081055, -0.025981105864048004, 0.5807491540908813, 0.9330289959907532, 0.030713092535734177, -0.23946790397167206, 0.2950253486633301, -0.21123072504997253, 0.2289242446422577, -1.1214598417282104, -0.5856471061706543, -0.6985237002372742, -0.5926135778427124, -0.8121078610420227, 0.6751050353050232, -0.22830520570278168, -0.6662378907203674, -0.012254506349563599, -0.30200132727622986, -0.5080206990242004, 0.6712222099304199, -0.3337879776954651, -0.5097048282623291, -0.32837238907814026, -0.9446616768836975, -1.0751022100448608, 0.10821836441755295, 0.04972504824399948, -0.7462537884712219, 0.3150865435600281, -0.5898240208625793, -0.13187271356582642, -0.448545902967453, -0.24384628236293793, 0.543328583240509, 0.24990703165531158, 0.07838834077119827], "2a5b69df-3782-4a44-8674-fcc4a9fee8c4": [0.08773395419120789, 0.7487406134605408, -0.48715102672576904, -0.01726505160331726, 0.5002073049545288, -0.3371542990207672, 0.48626574873924255, 0.09945201873779297, -0.37665173411369324, -0.7228609323501587, -0.34154805541038513, -0.0460873618721962, -0.953122079372406, 0.5937444567680359, 0.8869258761405945, 1.0886577367782593, 0.4155690670013428, -0.17803195118904114, -0.08057677745819092, -0.6204808950424194, -0.3848530352115631, 0.006589516997337341, 0.0013179723173379898, 0.5702309012413025, 0.33349716663360596, -0.37193596363067627, -0.2338714748620987, 0.22354725003242493, -1.2393240928649902, -0.20036247372627258, 0.3507962226867676, -0.19913621246814728, -0.15601521730422974, -0.4187696874141693, -0.049808766692876816, -0.8892561197280884, -0.40650713443756104, -0.34692567586898804, -0.21857605874538422, 0.29246771335601807, -0.5913383960723877, -0.6623637080192566, -0.47872427105903625, 0.45835617184638977, -0.666094183921814, 0.17776262760162354, -0.5176810026168823, 0.48060142993927, -0.448153018951416, 0.22523999214172363, -0.6757132411003113, 0.6254461407661438, -0.132502481341362, 0.32495108246803284, 0.39531251788139343, 0.8994141817092896, 0.00320527795702219, -0.5858708620071411, -0.2006859928369522, -0.3509742319583893, 0.7024298906326294, 0.2822306454181671, 0.8558362126350403, 0.03884536772966385, 0.4332112669944763, -0.3651677668094635, -0.9156259894371033, 0.900452733039856, -0.7824962735176086, -0.18262484669685364, -0.08664420247077942, 0.14895713329315186, 0.22465577721595764, 0.34048131108283997, 0.9972742795944214, -0.5018013715744019, -0.019581690430641174, 0.5364044904708862, 0.9839122295379639, 0.5779323577880859, -0.0992337167263031, 0.5316975712776184, -0.030371030792593956, 1.14564049243927, -0.6132122278213501, -0.43354880809783936, -0.10697338730096817, 0.16078375279903412, -0.4303220212459564, 0.8259657025337219, -0.25337886810302734, -1.2415132522583008, 0.8555787801742554, 0.239574134349823, 0.19635792076587677, -0.6941699981689453, 1.0626296997070312, -0.14870649576187134, 0.6665264964103699, -0.050381988286972046, -0.7879046201705933, -1.0426366329193115, 0.1365208923816681, 0.18744267523288727, -1.3803647756576538, -0.5325168371200562, -0.526455819606781, -0.6571782827377319, 0.11057843267917633, 0.21302030980587006, -0.12029626220464706, -0.20186959207057953, -0.7020757794380188, -0.2304440289735794, -0.9372901320457458, 1.1178112030029297, 0.6489221453666687, -0.3024917542934418, -0.1766068935394287, -0.26067280769348145, 0.4858330190181732, 0.7909460067749023, 0.40218526124954224, 0.9726860523223877, 0.4083409905433655, 0.4275878965854645, 0.26721298694610596, 0.7081885933876038, -0.496198445558548, -1.0422282218933105, 0.37575653195381165, 0.8968361616134644, 0.26251882314682007, 0.0456111878156662, -0.5108835697174072, 0.14776268601417542, 0.1765211969614029, 0.6680539846420288, 0.49948471784591675, -0.46098756790161133, -0.2089962661266327, -0.42872267961502075, 0.2956863045692444, 0.015163227915763855, 0.6179848909378052, 0.07161188125610352, -0.08803103864192963, -1.08951997756958, -0.055574458092451096, 0.6815952062606812, 0.20210134983062744, 0.30840253829956055, 0.8302011489868164, -0.9388493895530701, -0.23719586431980133, 1.1506836414337158, -0.24137811362743378, 0.30465003848075867, -0.6612868905067444, 0.051464494317770004, 0.7933635115623474, -0.19365978240966797, -0.19182004034519196, 0.28229430317878723, -0.35616734623908997, 0.16379263997077942, 0.04586448892951012, 0.09861865639686584, -0.29034096002578735, 0.3623291552066803, -0.4107171893119812, -0.6998010277748108, 0.992441713809967, -0.445452481508255, -0.12532907724380493, 0.2644529938697815, 1.301857590675354, 0.3370852768421173, 0.11703087389469147, -0.21466723084449768, -0.8932250142097473, 0.5531028509140015, -0.017815016210079193, -0.6330766677856445, 0.005111681297421455, -0.6446448564529419, 1.496375322341919, -0.12589773535728455, -0.060924649238586426, 0.015225013718008995, -1.1388403177261353, -1.0029484033584595, -0.3791234493255615, 0.3762577474117279, 1.3854384422302246, -0.4974328577518463, 0.13189730048179626, 0.1195175051689148, 0.2630951404571533, 0.5100400447845459, -0.015881851315498352, 0.41977474093437195, -0.08448395133018494, -0.8392196893692017, -1.0694875717163086, 0.7307674884796143, 0.5969465374946594, -0.09830597043037415, -0.028370127081871033, 0.731497049331665, -0.25363028049468994, 0.34011533856391907, 0.5678556561470032, -0.38752660155296326, -0.019338667392730713, 0.44507133960723877, 0.15237723290920258, -0.6880946755409241, 0.9245330095291138, -0.644843339920044, 0.42194053530693054, -0.3187180757522583, -1.1082359552383423, 0.6125169396400452, -0.26011353731155396, 1.2798110246658325, 1.1175354719161987, -0.7570436000823975, -0.4901341497898102, 0.5031014084815979, -0.049799464643001556, 0.057241037487983704, 0.5680728554725647, -0.3858511745929718, 0.02134600281715393, -0.1942952573299408, 0.3757012188434601, -0.7234998345375061, 1.034531831741333, -0.887697160243988, 0.3678780794143677, 1.094265103340149, -0.17285092175006866, 0.5465021133422852, 0.5773279666900635, -0.16170018911361694, 0.3128740191459656, -0.4512060880661011, -0.2815312147140503, -0.3972879648208618, -0.4426662027835846, -0.29729175567626953, 0.3191383183002472, -0.9504493474960327, 0.7304800152778625, -0.2445041835308075, -0.7821401357650757, 0.2580050230026245, 0.44555145502090454, 0.9298400282859802, -0.5815840363502502, 0.6409775018692017, 0.3429887592792511, 0.1207166314125061, -0.07571502029895782, -1.099210262298584, -1.2156740427017212, -0.37034448981285095, 0.2914424240589142, 0.09728331863880157, 0.10954271256923676, 0.31024134159088135, 0.48705819249153137, -0.16389615833759308, -0.15078723430633545, 0.3969145119190216, 0.9456622004508972, 0.5536198019981384, 0.11170835793018341, -0.9347044229507446, -0.00842693168669939, 1.1824564933776855, -0.5575916171073914, -0.973672091960907, -0.5137030482292175, -0.2819179594516754, -0.0002398267388343811, -0.4992191195487976, -0.1649707853794098, 0.3602624833583832, 0.6422516703605652, 0.7103592157363892, -0.6924781799316406, 1.085492730140686, 0.894957959651947, 0.47153109312057495, 0.37536850571632385, 0.770831823348999, 0.4225252568721771, 0.15608860552310944, -0.05346977710723877, 0.5298914909362793, 0.5317833423614502, -0.2373684048652649, 0.17802466452121735, -0.06291770190000534, -0.36594724655151367, -0.5397562980651855, -4.350290775299072, 0.0802890807390213, 0.1063256561756134, -0.044524647295475006, 0.13303957879543304, 0.9193456768989563, 0.5378848314285278, -0.9580963253974915, -0.8213974237442017, 0.7221652269363403, -0.371810644865036, 0.09733374416828156, 0.08787645399570465, 0.30841177701950073, 0.27111947536468506, 0.6588720679283142, -0.28765031695365906, -0.5915530323982239, 0.2141164243221283, 0.4204457700252533, -0.28819671273231506, -0.5990234613418579, -0.41403278708457947, 0.29134663939476013, 0.7129222750663757, 0.11338503658771515, -1.2389649152755737, 0.4700368642807007, -0.8537920713424683, 0.1382618248462677, 0.8397182822227478, -0.601665735244751, 0.09909649938344955, 0.17502126097679138, 0.12657639384269714, -0.8575916886329651, 0.3699682056903839, -0.3051999807357788, -0.004431538283824921, -0.16549256443977356, -0.630469024181366, -0.7982158660888672, -0.5689560174942017, -0.4075714349746704, 0.8834034204483032, -0.2413134127855301, -0.6455361843109131, -0.4606042504310608, 0.47962602972984314, 0.7782825231552124, -0.46021774411201477, -0.5602548718452454, -0.5997796654701233, 0.16900333762168884, 0.2150670289993286, -0.16547775268554688, 0.2667933702468872, 0.053495313972234726, -0.6133571863174438, -0.017475411295890808, 0.5554311275482178, -0.47699475288391113, -0.5932409167289734, -0.4932115972042084, 0.08264441788196564, -0.4897184371948242, -0.6970739364624023, -1.078598141670227, 0.477766752243042, 0.7122185230255127, -0.46345964074134827, 0.6110743880271912, 0.006340585649013519, -1.592417597770691, -0.2907811403274536, -0.14866875112056732, -0.08660045266151428, 0.09026162326335907, -0.3269568383693695, 0.09088318049907684, -0.6251334547996521, -0.1430148482322693, 0.09906353056430817, 0.23138277232646942, -0.21020907163619995, -0.6818078756332397, 0.25732940435409546, -0.3679307997226715, -0.8318603038787842, -0.47409406304359436, 0.9484896063804626, -0.5484154224395752, -0.1827402412891388, 0.6150222420692444, 0.2988048493862152, 0.07687906920909882, 0.19340373575687408, -0.20919638872146606, 0.7508631348609924, -0.12763650715351105, 0.21412402391433716, -0.8032451272010803, 0.4438391625881195, -0.18349935114383698, -0.21075774729251862, 0.07755165547132492, -0.40009739995002747, -0.3892020881175995, 0.5237284302711487, 0.0536382719874382, 0.6141030788421631, -0.766806960105896, -0.07589228451251984, -0.5813854932785034, 0.08949105441570282, -0.6432490944862366, 0.6186386346817017, 0.1837693303823471, 0.3813783526420593, -0.11289149522781372, -0.3176732659339905, 0.7048283815383911, -0.9797084927558899, -0.4198998808860779, -1.8057149648666382, 0.7228036522865295, 0.5974956750869751, -0.18055710196495056, 0.4177825152873993, 0.3967908024787903, -0.7431627511978149, -0.20319940149784088, 0.3937991261482239, -0.5691521167755127, 0.929631769657135, -0.5983312129974365, -0.01557496190071106, -0.6110817193984985, 0.2931748926639557, -0.14403170347213745, -0.2747645974159241, 0.27278128266334534, 1.0551162958145142, 0.4787222146987915, 0.4427425265312195, 0.6146135330200195, -0.5479826927185059, 0.35323476791381836, 0.45848798751831055, -0.5262842178344727, -0.008611567318439484, 0.0992228239774704, 0.6798226833343506, -0.894810676574707, -0.18107998371124268, -0.9419190287590027, 0.8628612756729126, 0.266879677772522, -0.23214219510555267, -0.11945028603076935, 0.28944993019104004, -0.9921047687530518, -0.7334223389625549, 0.06688704341650009, 0.13672257959842682, 1.4920583963394165, -0.8678990602493286, 0.11453543603420258, -0.19267289340496063, -0.12453678995370865, 0.283119797706604, -0.39201951026916504, -0.5811666250228882, -0.19791308045387268, -0.5271268486976624, 0.9551380276679993, -0.3007510006427765, 0.12212790548801422, 0.5739322900772095, 0.4031524956226349, -0.23238907754421234, 0.4095824360847473, 0.23726171255111694, 0.3914232552051544, 0.6503185033798218, -0.4073324203491211, -0.18723902106285095, 0.1249292641878128, -0.5032497644424438, -0.022031813859939575, 0.6156949400901794, 0.5593636631965637, -0.6018109321594238, 0.19217835366725922, -0.691967248916626, -1.0974746942520142, 0.3952544033527374, -0.2743666172027588, 0.728203296661377, -0.08825328946113586, -0.36091673374176025, -0.4746870696544647, 0.030503883957862854, 0.37555932998657227, -0.2383752465248108, -1.1866339445114136, 0.39930570125579834, -0.3369796872138977, -0.2890576124191284, 0.3501069247722626, -0.25500327348709106, -0.6628134250640869, -0.9050843119621277, 0.4618774354457855, 0.29621633887290955, -1.0818121433258057, -0.3004007935523987, 0.23285561800003052, 0.09919209033250809, -0.5954138040542603, 0.3599034249782562, -0.13895800709724426, -0.06593886762857437, -0.3534979224205017, -0.819618284702301, 0.47489506006240845, 0.16596296429634094, -0.7368081212043762, 0.2690100073814392, -0.6178713440895081, 0.1906106323003769, -0.3221506178379059, 0.07043242454528809, 0.8260207176208496, -0.026008013635873795, 0.31747081875801086, -0.3419548273086548, 0.2384031116962433, -0.12174181640148163, 0.3417683243751526, 0.6787542700767517, 0.3866841495037079, -0.29954415559768677, -0.6410266160964966, 0.20225101709365845, 0.07698258757591248, -0.032209742814302444, -0.25957027077674866, 0.34678590297698975, 0.6130135655403137, 0.08080469071865082, 0.579399049282074, -0.04148751497268677, -0.2940618693828583, 0.6863431334495544, -0.8508402109146118, -0.21312640607357025, -0.1304728388786316, -0.6359706521034241, 0.2317342609167099, 0.18286046385765076, 0.20156846940517426, -1.45734703540802, 0.5950289368629456, 0.9344962239265442, 0.31389397382736206, -0.07854367047548294, -0.06884348392486572, 0.6266258955001831, -0.5022501945495605, -0.13897348940372467, -0.9357698559761047, 0.27779215574264526, 0.32977986335754395, 0.7755877375602722, -0.5559903979301453, -0.37099820375442505, 0.15118567645549774, 0.668304443359375, -1.0235555171966553, -0.9892234206199646, 0.4484522342681885, 0.18261253833770752, 0.5616344809532166, 0.5724997520446777, -0.9291536808013916, 0.1267487108707428, 0.3193294405937195, -0.29938042163848877, -0.056756794452667236, 0.15129171311855316, 0.9321388006210327, -0.3129841685295105, 0.17467156052589417, 0.007658153772354126, -0.15898863971233368, 0.7797155976295471, 0.884863555431366, -0.45034080743789673, 0.32638415694236755, -0.7073653936386108, 0.8108769059181213, 0.778217077255249, 0.6695789694786072, -0.20845720171928406, -0.28531625866889954, -0.06835995614528656, -1.3283627033233643, 0.5253958702087402, 0.15284523367881775, 0.47626328468322754, -0.5771908164024353, 0.43679916858673096, 0.5710228681564331, -1.2397798299789429, -0.815474271774292, 0.3306841254234314, -0.18314127624034882, -0.3869362771511078, 0.3309231698513031, 0.5208094120025635, 0.2453346848487854, 0.7008504867553711, 0.6507380604743958, 0.21127532422542572, 1.0056880712509155, -0.4267192780971527, 0.5078951716423035, 1.046962857246399, 1.2864339351654053, 1.1858271360397339, 0.3761666417121887, 0.0529070645570755, 1.3864370584487915, -0.5337119102478027, -0.7181938290596008, -0.22090354561805725, 0.3209385573863983, -0.41329896450042725, 0.22882291674613953, -0.7984281182289124, 0.5607353448867798, 0.46198469400405884, 1.4604674577713013, -0.6640259027481079, 0.09948692470788956, -0.1425751894712448, -0.5094617605209351, 0.5503965616226196, 0.4225544035434723, -0.31347334384918213, 0.6260454058647156, -0.7454445362091064, -0.7744641304016113, -0.4882590174674988, 0.644622266292572, -0.5866081118583679, 0.37353387475013733, -0.5645885467529297, 0.05816245824098587, -0.6288096308708191, 0.5836577415466309, 1.0651764869689941, 0.10599638521671295, 0.2278948426246643, 0.09945088624954224, 0.09843190759420395, -0.5498074889183044, 0.5144704580307007, -0.1414010226726532, -0.20094820857048035, 0.12963199615478516, -0.46144402027130127, 0.5455975532531738, -0.12100695818662643, -0.1159607321023941, 0.562544047832489, -0.6745812296867371, -0.10972002148628235, 0.30423209071159363, 0.343233585357666, -0.17506271600723267, -0.9369789958000183, -0.7202126383781433, 0.08211617171764374, -1.2322365045547485, -0.025678221136331558, 0.8072848916053772, -0.45131152868270874, -1.1027886867523193, -0.2533465325832367, -0.4296278953552246, -0.038619738072156906, -0.3627012372016907, -1.1166208982467651, -0.416298508644104, 0.7037172913551331, 0.289633572101593, 0.5233906507492065, 0.45419737696647644, 0.5567303895950317, 0.14649231731891632, -0.34933048486709595, -0.04194743186235428, -0.002641972154378891, 0.7084328532218933, -0.6374051570892334, 0.30111217498779297, -1.2637039422988892, 0.857642412185669, 0.011817000806331635, 0.39966753125190735, -1.5246773958206177, 1.241174578666687, 0.08290950953960419, -0.47659143805503845, 0.6913118362426758, 0.3578810691833496, -0.009943950921297073, -0.4394359290599823, -0.09634596109390259, 0.06254900246858597, -0.010351276025176048, 0.7372819185256958, -0.20879513025283813, 0.7651932239532471, 0.5611639022827148, 0.41988831758499146, -0.7343069911003113, -0.012476891279220581, 0.03435143828392029, 0.5043928027153015, -0.9450069069862366, -0.16440150141716003, 0.09298347681760788, -1.0135084390640259, -0.409848153591156, 0.38604745268821716, 0.04728616029024124, -0.8531151413917542, 0.05370070040225983, -0.47098174691200256, 0.08041401207447052, 0.5992192625999451, -0.6302752494812012, -0.376363068819046, -0.1005050539970398, -1.2453088760375977, -0.6415029764175415, -0.04940006136894226, 0.5625215172767639, -0.7555191516876221, -0.15119515359401703, -1.0888615846633911, -0.11877463757991791, -0.14670667052268982, -0.23822318017482758, 0.8638901114463806, 0.1632571667432785, -0.07548290491104126], "6c12ef17-17b3-47f6-87b8-c92e1391bfb7": [0.17968685925006866, -0.011451790109276772, -0.3521716892719269, 0.011723872274160385, 0.7748519778251648, -0.5319068431854248, 0.25527235865592957, 0.44870930910110474, -0.579802393913269, -0.7566924691200256, -0.5085349678993225, -0.33487746119499207, -1.225610375404358, 0.5741705298423767, 0.5008416175842285, 1.2765194177627563, 0.48476484417915344, -0.24981559813022614, 0.1782025396823883, -0.4905892312526703, -0.214126318693161, -0.36463621258735657, -0.6341554522514343, 0.6743221282958984, 0.2394619882106781, -0.09431903064250946, -0.09560418128967285, 0.5395432710647583, -1.2724069356918335, 0.009457118809223175, 0.3785325586795807, -0.30967485904693604, -0.0310674961656332, -0.24912917613983154, 0.29609471559524536, -0.5143582820892334, -0.7466529011726379, -0.2973502278327942, -0.2095814198255539, -0.032022468745708466, -0.7070233821868896, -0.7503920793533325, -0.5741008520126343, 0.10125996917486191, -0.9840476512908936, 0.2859756350517273, -0.933492124080658, 0.8161737322807312, -0.9340447187423706, 0.32735005021095276, -1.0695748329162598, 1.0800920724868774, -0.11599314212799072, 0.11657873541116714, 0.665865957736969, 0.9017489552497864, -0.2715790271759033, -0.9454748630523682, 0.09828890860080719, -0.5881000757217407, 0.7288527488708496, -0.4642757773399353, 0.7494294047355652, 0.20841921865940094, -0.06402849406003952, -0.5804115533828735, -0.6252581477165222, 1.0435817241668701, -0.6690905690193176, -0.9505006074905396, 0.0630216896533966, 0.3947829306125641, -0.3635554909706116, -0.07637079060077667, 0.39188501238822937, -0.607896625995636, -0.3301866352558136, 0.31580016016960144, 0.894330620765686, 0.7948777675628662, -0.34536319971084595, 0.025739703327417374, 0.26127058267593384, 1.1015595197677612, -0.7202963829040527, 0.06172378361225128, -0.23228564858436584, 0.017649229615926743, -0.9423758387565613, 0.5618691444396973, 0.08455167710781097, -0.676787257194519, 0.5414004325866699, 0.09361580014228821, 0.16942529380321503, -0.3249948024749756, 0.7267390489578247, 0.009675789624452591, 0.4904826283454895, -0.05942907929420471, -0.7155043482780457, -1.0318729877471924, 0.29914212226867676, 0.1306362748146057, -1.4155436754226685, -0.5365546941757202, -0.6343328952789307, -0.5542297959327698, 0.019582845270633698, 0.4864113926887512, -0.0880521684885025, 0.08386577665805817, -0.6410002708435059, -0.2518523335456848, -0.9828168153762817, 1.1479429006576538, 0.398725688457489, -0.018404630944132805, -0.2867262363433838, 0.11089424788951874, 0.9226592183113098, 0.8949579000473022, 0.4210970401763916, 1.2791993618011475, 0.14520001411437988, 0.40736648440361023, 0.0942123755812645, 0.7616945505142212, -0.2232334464788437, -1.190539002418518, 0.2810993194580078, 0.9782455563545227, 0.3863871395587921, 0.004047304391860962, -0.4389241933822632, 0.30431339144706726, 0.08875434100627899, 0.10964076220989227, 0.8089553713798523, -0.7770221829414368, -0.2170313447713852, -0.2662431001663208, -0.06526225805282593, 0.025269802659749985, 0.8885703682899475, 0.23207831382751465, -0.08760377019643784, -1.2989223003387451, 0.007617481052875519, 0.6926382184028625, -0.05558010935783386, 0.7759389281272888, 0.837118923664093, -0.8445037007331848, -0.43980613350868225, 0.5485578179359436, -0.4490687847137451, 0.13808579742908478, -0.8606014847755432, 0.5678083896636963, 0.34030041098594666, -0.055119484663009644, -0.6092607378959656, -0.04852648079395294, -0.4332481920719147, 0.3519670367240906, 0.250468909740448, -0.20501598715782166, -0.33906590938568115, 0.3933519423007965, -0.5112670660018921, -0.6529405117034912, 1.1071712970733643, -0.1501980870962143, 0.06854960322380066, -0.2725510597229004, 1.3964738845825195, 0.16691124439239502, 0.43782734870910645, 0.019602976739406586, -1.1159157752990723, 0.37438955903053284, 0.10956136882305145, -0.3644475042819977, -0.1834036260843277, -0.29425501823425293, 1.407820224761963, 0.2305818796157837, -0.1254122108221054, 0.03677039220929146, -1.0681853294372559, -0.8795149922370911, -0.49240583181381226, 0.5573352575302124, 0.9297448992729187, -0.7429112195968628, -0.04006285220384598, 0.8042621612548828, 0.16768893599510193, 0.6069883108139038, -0.03388082608580589, 0.5958151817321777, 0.041115861386060715, -0.8285112380981445, -1.2472130060195923, 0.4587746262550354, 0.7141180038452148, -0.1885814219713211, -0.006410978734493256, 0.2354302704334259, -0.050636809319257736, -0.013253424316644669, 0.6163738369941711, -0.09064280986785889, 0.7460165619850159, 0.024699464440345764, 0.49785223603248596, -0.6501131653785706, 0.7761290669441223, -0.7748769521713257, 0.5445200800895691, -0.5690401792526245, -1.22248375415802, 0.5227592587471008, -0.4257308840751648, 1.6775668859481812, 0.8959439992904663, -0.3065297603607178, -0.3065451383590698, 0.32820752263069153, -0.0024105235934257507, 0.07232192158699036, 0.2859335243701935, -0.1276843547821045, -0.34845903515815735, -0.24537327885627747, 0.1778932809829712, -0.7739851474761963, 0.6741486191749573, -0.8063733577728271, 0.011202557012438774, 1.1832815408706665, -0.13436096906661987, 0.6587126851081848, 0.8474559187889099, -0.28511255979537964, 0.4736614227294922, -0.4638798236846924, -0.5236316919326782, -0.4119452238082886, -0.5966057181358337, -0.4556124806404114, 0.42029064893722534, -0.8018122315406799, 0.3986029624938965, -0.43574708700180054, -0.933872401714325, 0.32058578729629517, 0.594515323638916, 0.650964081287384, -0.5442911982536316, 0.7709839344024658, 0.47131288051605225, -0.5411167740821838, -0.44655150175094604, -1.7063125371932983, -0.7597943544387817, -0.4005328118801117, -0.01850982755422592, 0.5422124266624451, 0.7164778709411621, 0.1987195461988449, 0.21172848343849182, -0.13868743181228638, -0.7843446731567383, 0.15298645198345184, 1.0589711666107178, 0.5189906358718872, 0.21656742691993713, -1.202712893486023, 0.10789558291435242, 0.8569841980934143, -0.7395787835121155, -1.253214716911316, -0.2919575572013855, -0.3016011118888855, 0.15853950381278992, -0.7276934385299683, -0.09998805820941925, 0.4641171395778656, 0.6133349537849426, 0.5200939178466797, -0.257520467042923, 0.41270652413368225, 1.184457778930664, 0.026391036808490753, 0.29058942198753357, -0.10435351729393005, 0.37013643980026245, -0.15475673973560333, -0.4071521759033203, -0.06009012460708618, 0.8272196054458618, -0.0379331111907959, -0.35039788484573364, -0.5330965518951416, 0.059948038309812546, -0.6217211484909058, -4.154385089874268, 0.020528694614768028, 0.17641176283359528, -0.42052149772644043, 0.5960415005683899, 0.37078210711479187, 0.17337378859519958, -0.8687267899513245, -0.6663120985031128, 0.5042890906333923, -0.5114033818244934, -0.11966320872306824, -0.12311939895153046, 0.3920135498046875, 0.3496769368648529, 0.8385253548622131, 0.0548534095287323, -0.35706666111946106, 0.25787168741226196, 0.33775168657302856, -0.11158043891191483, -0.7090737819671631, -0.3398982882499695, 0.6056323647499084, 0.39966920018196106, 0.3406398296356201, -1.3923008441925049, 0.9068623781204224, -0.6398566961288452, -0.30737918615341187, 0.5021234154701233, -0.49267578125, 0.03200802206993103, 0.17462067306041718, -0.15334708988666534, -0.740063488483429, 0.3756348490715027, -0.05993891507387161, 0.07889381051063538, -0.31823721528053284, -0.7112072110176086, -0.8151084184646606, -0.5089951753616333, -0.8029962182044983, 0.6661940813064575, -0.11873914301395416, -0.49322783946990967, -0.22565454244613647, 0.5457823276519775, 0.6174728274345398, 0.07814570516347885, -0.47584977746009827, -0.593891978263855, 0.3203153610229492, -0.04914584010839462, -0.440573513507843, -0.3230960965156555, 0.24725210666656494, -0.4412645995616913, 0.21310746669769287, 0.20876704156398773, -0.5255594253540039, -0.44439199566841125, -0.3531772792339325, -0.3429426848888397, -0.45795440673828125, -0.5099856853485107, -0.7523744106292725, 0.9248490929603577, 0.996559739112854, -0.3243284821510315, 0.42529791593551636, 0.019157566130161285, -1.4457978010177612, -0.21330352127552032, -0.12298404425382614, -0.18619996309280396, -0.17965096235275269, -0.09739214181900024, 0.16299065947532654, -0.6001231670379639, 0.04077371954917908, 0.2593201696872711, 0.4335121512413025, -0.14215894043445587, -1.0473027229309082, 0.05115891620516777, -0.49986088275909424, -0.4839364290237427, -0.5240685343742371, 0.7348433136940002, -1.1066776514053345, 0.17435547709465027, 0.5027431845664978, 0.23702262341976166, 0.6144190430641174, 0.22800207138061523, -0.48124346137046814, 0.6549200415611267, -0.19130811095237732, 0.3992154002189636, -0.7447235584259033, 0.6558631658554077, -0.4188273251056671, 0.7103339433670044, -0.07455466687679291, -0.5111827254295349, 0.042896851897239685, 0.29926443099975586, 0.12953336536884308, 0.2244196981191635, -0.32414522767066956, 0.11697433888912201, -0.6470744609832764, -0.12300898879766464, -0.68262779712677, 0.5945457220077515, 0.6857350468635559, 0.26391857862472534, -0.12385262548923492, -0.4582458436489105, 0.48617634177207947, -0.4188740849494934, -0.7493957877159119, -0.921768844127655, 0.3993386924266815, 0.14247024059295654, 0.021839827299118042, 0.0765509158372879, -0.18123435974121094, -0.251438707113266, -0.3498620092868805, 0.402180939912796, -0.00626470148563385, 0.7244138121604919, -1.0550591945648193, -0.043815381824970245, -0.7764039039611816, 0.4313073754310608, -0.30377230048179626, 0.2657475471496582, 0.013175271451473236, 0.36864858865737915, 0.5704702138900757, 0.7735810875892639, 0.566712498664856, -0.416877806186676, 0.4061241149902344, -0.48003432154655457, -0.14517048001289368, 0.29643842577934265, -0.2575877606868744, 0.49126702547073364, -0.7939550876617432, 0.1944001317024231, -0.3970903158187866, 0.7545933127403259, 0.152906134724617, -0.07526862621307373, -0.9679874181747437, 0.476071298122406, -0.5667902827262878, -0.5992038249969482, 0.30151399970054626, 0.06267938762903214, 1.2737321853637695, -1.0768100023269653, 0.3514537811279297, 0.032780274748802185, -0.5387517213821411, 0.5208251476287842, -0.26944273710250854, -0.8052417039871216, 0.2784709334373474, -0.03995410352945328, 0.5385071039199829, 0.11313921213150024, -0.04631108418107033, 0.48430606722831726, 0.23018750548362732, -0.176785409450531, 0.17530134320259094, 0.232092946767807, 0.3134687840938568, 1.2142292261123657, 0.09912022948265076, 0.4871673583984375, -0.12300756573677063, -0.40491533279418945, 0.10320647805929184, 0.4838007092475891, 0.43077823519706726, -0.14748260378837585, 0.16623641550540924, -0.6396546363830566, -1.1124820709228516, 0.5337408781051636, 0.24254433810710907, 0.41974303126335144, 0.05573451146483421, -0.5376524925231934, -0.0692635029554367, -0.25827115774154663, -0.08450590074062347, -0.06300199031829834, -1.2575993537902832, 0.4600549340248108, -0.052046481519937515, -0.3462364077568054, 0.005891300737857819, -0.1478898525238037, -0.9383101463317871, -0.39544668793678284, 0.3666246831417084, -0.13219629228115082, -0.5629929304122925, -0.2975142002105713, 0.0920785516500473, 0.3009583055973053, -0.5351163148880005, 0.4514077305793762, 0.059577807784080505, 0.03274393081665039, -0.17850631475448608, -0.6059613823890686, 0.758732795715332, -0.44672834873199463, -0.09465664625167847, 0.5175819993019104, -0.536200761795044, 0.621803343296051, -0.7432798743247986, 0.156205952167511, 1.1861408948898315, -0.11881764233112335, -0.006709769368171692, -0.45031407475471497, 0.8606154322624207, 0.3456607162952423, 0.6415969133377075, 0.13227000832557678, -0.17732280492782593, 0.21717217564582825, -0.5044000148773193, 0.6553764343261719, 0.5368273258209229, -0.49540776014328003, -0.05027829855680466, -0.00031982269138097763, 0.8791674375534058, 0.3340199589729309, 0.9280362725257874, 0.1778838187456131, -0.08203791081905365, 0.851071298122406, -0.7165845036506653, -0.34713882207870483, -0.1673215627670288, -0.8721622824668884, 0.39024829864501953, -0.016484662890434265, 0.21964003145694733, -1.1550724506378174, 1.1008185148239136, 1.0874731540679932, 0.9227422475814819, 0.5422313809394836, -0.07354560494422913, 0.621082603931427, -0.2368779182434082, -0.15180689096450806, -0.9363771677017212, 0.1173187792301178, 0.4429349899291992, 0.6107117533683777, -0.1238117516040802, -0.5872372984886169, -0.2188282161951065, 0.9466722011566162, -0.6917961239814758, -0.836461067199707, 0.5668669939041138, -0.2792505621910095, 0.021626517176628113, 0.8603268265724182, -1.1544840335845947, 0.6865437030792236, 0.800896942615509, 0.27125227451324463, 0.11619415879249573, -0.3116690516471863, 1.158088207244873, -0.2065495103597641, 0.23037925362586975, 0.17403453588485718, -0.047755248844623566, 0.6524467468261719, 1.2011407613754272, -0.8340854048728943, 0.04144330695271492, -0.7016543745994568, 0.8629488945007324, 0.8696023225784302, 0.45621728897094727, -0.4623393714427948, 0.15201452374458313, 0.20376302301883698, -1.0329499244689941, 0.5056044459342957, 0.829628050327301, -0.0005316045135259628, -0.39920124411582947, 0.6811320185661316, 0.5600938200950623, -0.9949391484260559, -0.36759793758392334, 0.17930470407009125, -0.37851855158805847, -0.4779273569583893, -0.18132978677749634, 0.4550630748271942, 0.00976438820362091, 0.8758459687232971, 0.28004199266433716, 0.3063368797302246, 1.3713610172271729, -0.22445130348205566, 0.2756549119949341, 0.9071184396743774, 1.119823932647705, 1.4369525909423828, 0.2361059933900833, 0.2746424376964569, 0.9236055612564087, -1.1893913745880127, -0.6596008539199829, 0.27052587270736694, 0.009753149002790451, -0.020046785473823547, -0.19008269906044006, 0.19893309473991394, 0.7356587648391724, 0.09026933461427689, 1.7931492328643799, -0.4211757481098175, -0.166930690407753, -0.16738876700401306, -0.22502164542675018, 0.686722457408905, 0.19707712531089783, -0.057134442031383514, 0.5004174709320068, -0.5360230207443237, -0.8872810006141663, 0.018928542733192444, 0.9401825666427612, -0.1213405579328537, -0.09691165387630463, -0.3781861960887909, -0.14056864380836487, -0.42646241188049316, 0.9081175327301025, 0.9883066415786743, -0.24294668436050415, -0.27078258991241455, -0.39199933409690857, 0.35870712995529175, -0.017602887004613876, 0.28584763407707214, -0.00022041797637939453, 0.002634134143590927, 0.1830173283815384, -0.505824863910675, 0.3148435950279236, 0.09723147749900818, -0.18105483055114746, 0.543671190738678, -0.36727988719940186, -0.29989486932754517, 0.1676362156867981, 0.745476484298706, -0.24440787732601166, -0.9688963294029236, -0.7577883005142212, -0.12875235080718994, -1.1369147300720215, -0.2944091856479645, 0.5867225527763367, -0.3163316249847412, -1.0738847255706787, -0.9090048670768738, -0.44751256704330444, 0.1769322156906128, -0.2487446665763855, -0.825780987739563, -0.3409648835659027, 0.6605657935142517, 0.23784247040748596, 0.5440356135368347, 0.8162611126899719, 0.4870946407318115, -0.12563525140285492, -0.2538532614707947, -0.03721660375595093, 0.4313020408153534, 0.9207736253738403, -0.7097926139831543, 0.04622191935777664, -1.3703759908676147, 0.6301953792572021, 0.6173921823501587, 1.0611200332641602, -1.7433477640151978, 1.0212781429290771, 0.2977098524570465, -1.0259100198745728, 0.8998578190803528, -0.07012882828712463, -0.2233402580022812, -0.5072950720787048, -0.5690041780471802, -0.2829681634902954, 0.3155789077281952, 0.7474804520606995, 0.04798153042793274, 0.5689922571182251, 1.1035010814666748, -0.07437607645988464, -0.602629542350769, -0.1382114142179489, -0.1966543346643448, 0.20096196234226227, -0.9405538439750671, -0.3413407504558563, -0.3149685859680176, -0.924804151058197, -0.7242624163627625, 0.8123243451118469, -0.02692033350467682, -0.9113689064979553, -0.24605733156204224, -0.052328724414110184, -0.07974503934383392, 0.18885184824466705, -0.23050731420516968, -0.3572933077812195, -0.2685399055480957, -1.013845443725586, -0.6877678632736206, -0.24762719869613647, 0.3832322061061859, -0.8046364784240723, -0.44247376918792725, -0.3824634552001953, 0.19500228762626648, -0.5078569650650024, -0.11810263246297836, 0.8277029991149902, 0.14192701876163483, 0.13141079246997833], "e4737417-44d7-46eb-b775-58b673b79554": [-0.020772559568285942, 0.2977107763290405, -0.3726307451725006, -0.0828438326716423, 0.7452907562255859, -0.6029828190803528, 0.10311581194400787, 0.4839487373828888, -0.7452969551086426, -0.4708506166934967, -0.5299475193023682, -0.1793081909418106, -1.0563161373138428, 0.5423398017883301, 0.51613450050354, 1.061252236366272, 0.4810520112514496, -0.4283389747142792, 0.20959565043449402, -0.13248836994171143, -0.208644837141037, 0.1785309612751007, -0.19499298930168152, 0.45138537883758545, 0.3371262848377228, -0.024494074285030365, -0.281806617975235, 0.2441519945859909, -1.369753360748291, -0.06660321354866028, 0.4987899363040924, -0.3094044625759125, 0.06649109721183777, -0.39002108573913574, 0.330617755651474, -0.2545321583747864, -0.6009706258773804, -0.5637880563735962, 0.0929470956325531, 0.38629409670829773, -0.4862082600593567, -0.403506875038147, -0.45107215642929077, 0.26938995718955994, -1.0553367137908936, -0.06749875843524933, -1.1300631761550903, 0.42421823740005493, -0.5689742565155029, 0.23188373446464539, -0.9185246825218201, 0.5492850542068481, -0.047229379415512085, 0.26324906945228577, 0.5350672602653503, 0.9744748473167419, 0.030637644231319427, -1.0527470111846924, -0.015605881810188293, -0.4496385455131531, 0.5813895463943481, -0.22039607167243958, 0.7281990647315979, 0.21861952543258667, -0.040510278195142746, -0.3563532531261444, -0.47017979621887207, 0.6995095610618591, -0.9801783561706543, -0.5511305332183838, 0.08321546018123627, 0.3424207866191864, -0.09854644536972046, -0.05955660715699196, 0.4355904757976532, -0.6201770305633545, -0.39194831252098083, 0.5348119735717773, 0.8964783549308777, 1.0144274234771729, -0.10026651620864868, 0.12601721286773682, 0.09438404440879822, 1.0876991748809814, -0.4910567104816437, -0.09735002368688583, -0.5053324699401855, 0.010747252032160759, -0.6249897480010986, 0.6588132381439209, -0.23071320354938507, -0.7549009323120117, 0.6827509999275208, 0.41703566908836365, 0.3194160759449005, -0.5532777905464172, 0.9330081939697266, 0.08013317734003067, 0.5638038516044617, -0.022984445095062256, -0.4481298327445984, -1.1304268836975098, 0.12825144827365875, 0.12175486981868744, -1.3258328437805176, -0.5764992833137512, -0.7944152355194092, -0.3082754611968994, -0.02711569517850876, 0.3887796998023987, -0.2303324043750763, -0.13251005113124847, -0.5129979848861694, 0.08625306189060211, -0.8458340167999268, 1.2386364936828613, 0.6367100477218628, 0.10144779086112976, -0.31283390522003174, 0.1985572874546051, 0.9844798445701599, 0.9136818051338196, 0.13570420444011688, 1.1974754333496094, 0.19098863005638123, 0.8136827945709229, 0.21962861716747284, 0.8452733159065247, -0.18610554933547974, -0.8550679683685303, 0.40389880537986755, 1.105220913887024, 0.18584933876991272, 0.048063457012176514, -0.37834468483924866, 0.1124049723148346, 0.26082026958465576, 0.22245660424232483, 0.652938961982727, -0.43002191185951233, -0.1647731214761734, -0.03707205876708031, 0.1212250292301178, 0.09657937288284302, 0.7104993462562561, 0.2948412001132965, -0.35392114520072937, -1.312095046043396, -0.14444562792778015, 0.931411862373352, 0.29957640171051025, 0.9140033721923828, 0.5991373062133789, -0.9374850392341614, -0.02473396807909012, 0.6767467260360718, -0.0030901022255420685, 0.16695399582386017, -0.7863157987594604, 0.41857442259788513, 0.4483899474143982, -0.04923589527606964, -0.5476150512695312, -0.1675971895456314, -0.44851866364479065, 0.21343713998794556, 0.3093944191932678, 0.09238268435001373, -0.3425047695636749, 0.3620883524417877, -0.5615922212600708, -0.5470248460769653, 1.0925060510635376, -0.13993248343467712, -0.28052300214767456, -0.021836943924427032, 1.4229787588119507, 0.2868903577327728, 0.6798845529556274, 0.07353575527667999, -0.895003080368042, 0.34692269563674927, 0.02496195398271084, -0.6033843755722046, -0.08900269120931625, -0.4414195120334625, 1.5879367589950562, -0.06349502503871918, -0.153365820646286, -0.006022047251462936, -1.1527143716812134, -0.6073876023292542, -0.5113368630409241, 0.672809362411499, 0.9786557555198669, -0.37282291054725647, 0.1889238804578781, 0.7574434876441956, -0.06192133575677872, 0.8059415221214294, 0.28720715641975403, 0.7375209331512451, 0.017944931983947754, -1.2761191129684448, -1.1047040224075317, 0.8496066927909851, 0.7239567041397095, -0.3713216185569763, 0.01444942131638527, 0.28958696126937866, 0.003718651831150055, 0.013074427843093872, 0.7569299936294556, -0.5330198407173157, 0.8493996262550354, 0.23625090718269348, 0.3369569778442383, -0.4132089614868164, 1.0357142686843872, -0.9364081621170044, 0.8263593912124634, -0.27119606733322144, -0.9324211478233337, 0.641365647315979, -0.24350999295711517, 1.526500940322876, 1.0257604122161865, -0.5804256796836853, -0.6060250401496887, 0.3641926050186157, 0.22390532493591309, -0.06044277176260948, 0.13103829324245453, -0.04423166811466217, -0.31602728366851807, -0.4090961515903473, 0.20496052503585815, -0.4104269742965698, 0.6156244277954102, -0.9723883271217346, 0.26394107937812805, 1.2751494646072388, -0.36916765570640564, 0.7656261920928955, 0.5525110363960266, -0.08544215559959412, 0.4331693649291992, -0.500153660774231, -0.628515899181366, -0.3106437921524048, -0.5661929845809937, -0.527874231338501, 0.6158191561698914, -0.8563273549079895, 0.49540185928344727, -0.4503882825374603, -0.9868806004524231, 0.3377487063407898, 0.5529476404190063, 0.938065767288208, -0.9337409138679504, 0.6050113439559937, 0.7559549808502197, -0.35876190662384033, -0.39973732829093933, -1.6241061687469482, -0.7445862889289856, -0.2625731825828552, -0.09107472002506256, 0.27429085969924927, 0.3641209602355957, 0.25000691413879395, 0.035839058458805084, -0.22396886348724365, -0.8700829744338989, 0.4628618359565735, 0.9722866415977478, -0.07770226895809174, 0.06530923396348953, -1.0345189571380615, -0.10068929940462112, 1.111543893814087, -0.8012641668319702, -1.2923022508621216, -0.5032769441604614, -0.46128547191619873, -0.03837740421295166, -0.6624441742897034, 0.1517195701599121, 0.4100511372089386, -0.03189694136381149, 0.35304147005081177, -0.3991323411464691, 0.5662758946418762, 1.0159188508987427, 0.20890206098556519, 0.1918787956237793, -0.07283399999141693, 0.34244251251220703, -0.06879472732543945, -0.298576682806015, 0.5636784434318542, 0.9548496007919312, -0.03427070751786232, -0.36996379494667053, -0.21426837146282196, -0.11283929646015167, -0.4127404987812042, -4.273637771606445, -0.18275094032287598, 0.33349719643592834, -0.43513816595077515, 0.5649096965789795, 0.3643679618835449, 0.4958013892173767, -0.972554087638855, -0.6659607291221619, 0.5352379679679871, -0.45732182264328003, 0.12797442078590393, 0.007733988109976053, 0.28845497965812683, 0.28131571412086487, 0.6830382347106934, -0.3995937407016754, -0.7345796227455139, 0.03489695489406586, 0.4510349631309509, -0.061296526342630386, -1.064183235168457, -0.9229539632797241, 0.8703016638755798, 0.4771140217781067, 0.4003847539424896, -1.1906911134719849, 0.625342607498169, -1.102039098739624, -0.1047547310590744, 0.4525180459022522, -0.632098376750946, 0.028811555355787277, 0.43211978673934937, -0.07065729051828384, -0.6226261854171753, 0.5168719291687012, -0.05564448609948158, 0.2659428119659424, -0.4640244245529175, -0.39885368943214417, -0.6391478180885315, -0.2918415367603302, -0.46813783049583435, 0.6097345352172852, -0.11182130128145218, -0.48450416326522827, -0.1910170614719391, 0.26025551557540894, 0.5917044281959534, 0.07709284871816635, -0.7772916555404663, -0.6165669560432434, 0.6328387260437012, 0.016189128160476685, -0.4390658140182495, 0.033968597650527954, -0.21206223964691162, -0.5193129181861877, 0.14665868878364563, 0.22444146871566772, -0.5716356039047241, -0.6952798366546631, -0.6290350556373596, -0.39867091178894043, -0.5677474737167358, -0.8019759058952332, -0.7222775816917419, 0.6751668453216553, 1.309815526008606, -0.2357063591480255, 0.35161614418029785, -0.06466007977724075, -1.4565322399139404, -0.019327526912093163, -0.12887030839920044, -0.2559402585029602, -0.20272311568260193, -0.3395676612854004, -0.03875989466905594, -0.7079477310180664, -0.3162757456302643, 0.3880375921726227, 0.17821867763996124, -0.21031245589256287, -0.7325915098190308, 0.07529184967279434, -0.22629784047603607, -0.7512094974517822, -0.38171035051345825, 0.7178145051002502, -0.7833973169326782, 0.07206442952156067, 0.5881921052932739, 0.13975349068641663, 0.2785910367965698, 0.1054338738322258, -0.41242894530296326, 0.9246726632118225, 0.10639914870262146, 0.5698747038841248, -0.8411299586296082, 0.30795925855636597, -0.4821648597717285, 0.5058253407478333, -0.12464410811662674, -0.7230367064476013, -0.14234761893749237, 0.32710006833076477, 0.062092043459415436, 0.16276323795318604, -0.2535703182220459, 0.334307461977005, -0.7446268796920776, -0.2334543764591217, -0.642236590385437, 0.39089235663414, 0.7830129265785217, 0.3918564021587372, 0.18618744611740112, -0.5737365484237671, 0.7338658571243286, -0.49184826016426086, -0.41444578766822815, -1.2268520593643188, 0.5142426490783691, 0.11549483239650726, 0.19455809891223907, -0.11729973554611206, 0.25475046038627625, -0.3909692168235779, -0.43730735778808594, -0.031520504504442215, 0.04421631246805191, 0.6856868863105774, -0.8350210189819336, -0.17293259501457214, -0.2712431848049164, 0.6192668676376343, -0.2499350905418396, 0.293745219707489, -0.18763704597949982, 0.6927967667579651, 0.3955190181732178, 0.8571662902832031, 0.6464359760284424, -0.5650953054428101, 0.305698424577713, -0.20912890136241913, -0.3230220377445221, 0.40658408403396606, -0.2528170347213745, 0.7570109963417053, -0.9493334889411926, 0.433954119682312, -0.6529656052589417, 0.42912739515304565, 0.37861180305480957, -0.17547708749771118, -0.7797684669494629, 0.4142749607563019, -0.6478773951530457, -0.3887311518192291, 0.1436094343662262, 0.02026347443461418, 1.1772338151931763, -0.8115668296813965, 0.5057430863380432, -0.05521898716688156, 0.07596729695796967, 0.306918203830719, -0.6755107641220093, -0.6633406281471252, 0.08712314069271088, -0.19983014464378357, 0.6232519149780273, 0.025241442024707794, -0.07656262814998627, 0.006059728562831879, 0.3702138662338257, -0.21737729012966156, 0.1294826716184616, 0.2855575978755951, 0.32765644788742065, 1.0887107849121094, -0.125594824552536, 0.39982518553733826, -0.18809178471565247, -0.43361780047416687, -0.24679449200630188, 0.6070056557655334, 0.4513590633869171, -0.2556288242340088, 0.15787328779697418, -0.6087450981140137, -1.1962302923202515, 0.48946136236190796, 0.2794720232486725, 0.540668785572052, -0.3498762845993042, -0.4816705286502838, -0.06701858341693878, -0.4701841175556183, 0.09000474214553833, -0.046079859137535095, -1.5675923824310303, 0.586559534072876, -0.17939309775829315, -0.35723501443862915, -0.10360115766525269, -0.3429114818572998, -0.9404838681221008, -0.5708388090133667, 0.34822413325309753, -0.05063631385564804, -0.8889598846435547, -0.4032656252384186, 0.049254029989242554, 0.14564213156700134, -0.31588906049728394, 0.36274030804634094, 0.22483056783676147, 0.16864469647407532, -0.39327338337898254, -0.7147762179374695, 0.6466764807701111, -0.4760246276855469, -0.09329773485660553, 0.33552995324134827, -0.6229299902915955, 0.5833189487457275, -0.7429535984992981, 0.0727882832288742, 0.7341564297676086, 0.15839305520057678, 0.19267232716083527, -0.485808402299881, 0.7023227214813232, -0.044066742062568665, 0.43276479840278625, 0.40281349420547485, -0.047499701380729675, -0.008259065449237823, -0.4514218270778656, 0.5950720906257629, 0.14228953421115875, -0.355392187833786, 0.05497109889984131, -0.03189470246434212, 0.6328415274620056, 0.11149978637695312, 0.5449514985084534, -0.14067530632019043, -0.3083406686782837, 1.0849941968917847, -0.7303472757339478, -0.2615489959716797, -0.13546842336654663, -0.5023064613342285, 0.2412187159061432, 0.12909428775310516, 0.3850920498371124, -1.3259018659591675, 0.8628821969032288, 0.9634238481521606, 0.7337765693664551, 0.2522045969963074, -0.2411690056324005, 0.7325783371925354, -0.46340590715408325, 0.1667204350233078, -1.053126335144043, 0.2797202467918396, 0.4680241048336029, 0.4783290922641754, -0.3781338334083557, -0.2971321940422058, -0.2452780157327652, 0.6618949174880981, -0.8521239757537842, -0.8386715650558472, 0.14447173476219177, -0.28413933515548706, 0.09380722045898438, 0.8384667634963989, -0.8607809543609619, 0.060436442494392395, 0.5587361454963684, 0.21653711795806885, 0.039650678634643555, -0.20227648317813873, 1.2504124641418457, -0.27324625849723816, 0.008893418125808239, 0.17445653676986694, -0.15443190932273865, 0.4953170418739319, 1.0475754737854004, -0.5252901315689087, 0.3174029588699341, -0.46002286672592163, 0.8451347947120667, 0.5805716514587402, 0.26360079646110535, -0.049280956387519836, -0.022062962874770164, -0.005784563720226288, -1.0958831310272217, 0.4613410234451294, 0.9327084422111511, 0.3733503520488739, -0.5644601583480835, 0.5595163106918335, 0.6042066216468811, -1.1916186809539795, -0.4420511722564697, 0.2079891860485077, -0.4186687171459198, -0.287203311920166, 0.21066701412200928, 0.4989660680294037, -0.07078545540571213, 0.9809004664421082, 0.49451059103012085, 0.44831517338752747, 1.241112232208252, -0.30821147561073303, 0.18083599209785461, 0.8738995790481567, 1.0420571565628052, 1.3838691711425781, 0.3985558748245239, 0.15701913833618164, 1.0827512741088867, -1.2657554149627686, -0.7700650095939636, -0.044105030596256256, 0.04100622236728668, -0.24399368464946747, -0.0660063847899437, -0.17106832563877106, 0.7506112456321716, 0.4182475209236145, 1.7346798181533813, -0.4759831428527832, -0.004063563421368599, -0.1331946849822998, -0.26086878776550293, 0.7313093543052673, -0.08907705545425415, -0.2786920368671417, 0.46712809801101685, -0.5316125750541687, -1.052585482597351, 0.07260073721408844, 0.8841656446456909, -0.045835357159376144, -0.000999031588435173, -0.4471988379955292, 0.08928971737623215, -0.6219357252120972, 0.7922805547714233, 1.036580204963684, 0.07657091319561005, 0.04262585937976837, -0.22179587185382843, 0.33942922949790955, -0.37713006138801575, 0.11009648442268372, -0.02714809775352478, -0.18756595253944397, 0.055677883327007294, -0.3626649081707001, 0.1467454582452774, 0.1280345469713211, -0.007219940423965454, 0.6455793976783752, -0.3649527430534363, 0.006893651559948921, 0.10532602667808533, 0.9178583025932312, -0.2397751659154892, -0.9511587619781494, -0.9466185569763184, -0.2873605489730835, -1.0769484043121338, -0.0014465134590864182, 0.7810039520263672, -0.49847033619880676, -1.1695173978805542, -0.2810882031917572, -0.56415194272995, 0.15865544974803925, -0.32329556345939636, -1.0143271684646606, -0.5284343957901001, 0.7474300861358643, 0.2209583818912506, 0.19669602811336517, 0.5710371732711792, 0.48965781927108765, 0.09974540024995804, -0.17403684556484222, 0.27448394894599915, 0.20719173550605774, 0.8792918920516968, -0.7318377494812012, 0.4718964099884033, -1.309070110321045, 0.7890595197677612, 0.33061760663986206, 0.6390485763549805, -1.7949531078338623, 1.034315824508667, 0.18660610914230347, -1.0762370824813843, 0.9665023684501648, -0.002227168530225754, -0.08072754740715027, -0.4092029929161072, -0.30529075860977173, -0.22644664347171783, 0.18402844667434692, 0.8269839286804199, -0.018398035317659378, 0.6811750531196594, 0.6625820994377136, 0.14794953167438507, -0.5907428860664368, 0.033679038286209106, -0.22357770800590515, 0.36300158500671387, -0.9663056135177612, -0.5142972469329834, -0.42238831520080566, -0.8849421739578247, -0.373710036277771, 1.0199545621871948, -0.055096957832574844, -0.9425650238990784, 0.09860973805189133, -0.33362141251564026, -0.17263779044151306, 0.38736194372177124, -0.24054811894893646, -0.38881200551986694, -0.5055341124534607, -0.9434744119644165, -0.8400555849075317, -0.00652555376291275, 0.35212451219558716, -0.6716579794883728, -0.21799972653388977, -0.5374850034713745, -0.009144704788923264, -0.4404527246952057, -0.21427999436855316, 0.5230394601821899, 0.17116644978523254, 0.3593008518218994], "d8f3c932-6c3a-4538-9bd2-192933dc2055": [0.16818490624427795, 0.39575621485710144, -0.38696056604385376, 0.336897611618042, 0.7972392439842224, -0.3674505352973938, 0.48249536752700806, 0.4509938359260559, -0.4808700680732727, -0.7658746838569641, -0.4271797239780426, -0.013721916824579239, -1.2229728698730469, 0.3647123873233795, 0.4061606824398041, 0.9433466196060181, 0.5084763765335083, -0.3303769826889038, -0.0258730947971344, -0.3866502046585083, -0.26360446214675903, -0.047873131930828094, -0.2532667815685272, 0.6043781638145447, 0.6021680235862732, -0.3583088219165802, 0.38238856196403503, 0.23358027637004852, -1.2536346912384033, -0.24202148616313934, 0.2782774567604065, -0.3093968629837036, -0.22335544228553772, -0.3075191378593445, 0.16062594950199127, -0.5733492970466614, -0.7615300416946411, -0.3368532657623291, 0.1045445054769516, -0.24139024317264557, -0.9495705366134644, -0.8825585842132568, -0.5752822756767273, 0.01742614433169365, -0.7302468419075012, 0.32353562116622925, -1.2116448879241943, 0.524439811706543, -1.0635089874267578, 0.41354459524154663, -0.6803648471832275, 0.7800363302230835, -0.028683342039585114, 0.35744357109069824, 0.5181288719177246, 1.219428539276123, 0.11795464158058167, -0.7888782024383545, 0.053849898278713226, -0.6306541562080383, 0.7293265461921692, -0.35111457109451294, 0.5462433099746704, 0.4139232635498047, 0.1923903226852417, -0.18043196201324463, -0.5510162115097046, 0.6488918662071228, -0.7732256054878235, -0.672260046005249, 0.17044933140277863, 0.471926748752594, 0.01961163431406021, -0.06928899139165878, 0.715572714805603, -0.3958438038825989, -0.33692073822021484, 0.19547781348228455, 0.960568368434906, 0.7121737599372864, -0.1464490294456482, 0.42590802907943726, 0.04442713409662247, 0.9108844995498657, -0.9281474351882935, -0.2446504682302475, -0.33349859714508057, -0.023883644491434097, -0.7842723727226257, 0.8280718326568604, -0.540238082408905, -0.5572659969329834, 0.7973282337188721, 0.4641011357307434, 0.49051475524902344, -0.38937312364578247, 0.6684292554855347, 0.2597758173942566, 0.40400180220603943, -0.1003187894821167, -0.7809686660766602, -0.938299298286438, 0.23371779918670654, 0.21502335369586945, -1.256825566291809, -0.49081143736839294, -0.7445464730262756, -0.4085581302642822, 0.28216880559921265, 0.5280106067657471, 0.024527370929718018, -0.5281109809875488, -0.6703597903251648, -0.17827387154102325, -0.8031097650527954, 1.1225848197937012, 0.558367133140564, 0.159550741314888, -0.20725330710411072, 0.050371184945106506, 0.8040289282798767, 0.593658447265625, 0.2988663911819458, 1.1206668615341187, 0.1641714721918106, 0.8887660503387451, 0.19644573330879211, 0.7123472094535828, -0.28528034687042236, -1.3883917331695557, 0.2714022994041443, 0.8321906328201294, 0.13270783424377441, 0.048304811120033264, -0.28423774242401123, 0.16213062405586243, 0.36860892176628113, -0.009004274383187294, 0.49016886949539185, -0.43711191415786743, -0.3251926004886627, -0.4097350239753723, 0.15133710205554962, 0.18873384594917297, 0.7195684313774109, 0.08468377590179443, -0.466987282037735, -1.245947241783142, -0.3283587098121643, 1.0577375888824463, 0.1487877368927002, 0.22640833258628845, 1.0395535230636597, -0.8646056652069092, -0.3209925591945648, 0.8736782073974609, -0.21425463259220123, 0.6068297624588013, -0.877979576587677, 0.4792870879173279, 0.6467958688735962, -0.16282081604003906, -0.6831699013710022, -0.31740859150886536, -0.47880035638809204, 0.22360709309577942, 0.25687074661254883, -0.21734890341758728, -0.24455085396766663, 0.18885643780231476, -0.3952481150627136, -0.8534826040267944, 0.9881895184516907, 0.05521675944328308, 0.03221280872821808, 0.16432654857635498, 1.012089729309082, 0.5122663378715515, 0.3139316141605377, -0.33042922616004944, -1.0239589214324951, 0.8874781727790833, 0.38439032435417175, -0.4880465567111969, 0.06034817546606064, -0.5486119985580444, 1.3928407430648804, 0.34016653895378113, -0.49021995067596436, 0.17970487475395203, -1.3764312267303467, -1.2106187343597412, -0.4081296920776367, 0.6767112016677856, 0.883825957775116, -0.5656170845031738, -0.11022713780403137, 0.5891432762145996, -0.08932379633188248, 0.5169763565063477, -0.01396101713180542, 0.6562938094139099, 0.023429490625858307, -1.0482978820800781, -1.1693403720855713, 0.8421972990036011, 0.5606319904327393, -0.3543649911880493, -0.07589629292488098, 0.03842929005622864, 0.15960291028022766, -0.17351385951042175, 0.4051893949508667, -0.2834469974040985, 0.9007444381713867, 0.4337514042854309, 0.5843905210494995, -0.6914207935333252, 0.9570022225379944, -1.2347934246063232, 0.9396959543228149, -0.7743639349937439, -1.2786914110183716, 0.16130615770816803, -0.13897714018821716, 1.6170259714126587, 0.801995038986206, -0.1581517904996872, -0.16418814659118652, 0.2271982878446579, -0.05959995090961456, 0.17800086736679077, 0.45593971014022827, 0.26331666111946106, -0.28595227003097534, -0.07793139666318893, 0.09468395262956619, -0.5095545649528503, 0.7932620644569397, -0.7537027597427368, 0.5172215700149536, 1.3216627836227417, -0.222945898771286, 0.5942472219467163, 0.5806945562362671, -0.290579617023468, 0.1576368361711502, -0.4927690923213959, -0.540327250957489, -0.5300865769386292, -0.6645719408988953, -0.547662079334259, 0.29503145813941956, -0.8221195340156555, 0.7874544858932495, -0.15202151238918304, -0.9340010285377502, 0.16227436065673828, 0.7368913888931274, 0.6191313862800598, -0.7818556427955627, 0.7806820869445801, 0.5427070260047913, -0.11803233623504639, -0.44752636551856995, -1.5463857650756836, -0.8482857942581177, 0.21784813702106476, 0.20301081240177155, 0.3385818898677826, 0.5432912707328796, -0.04100589454174042, -0.09393031895160675, 0.043919242918491364, -0.8063535094261169, -0.08390076458454132, 1.2570539712905884, 0.2996830344200134, 0.0032451190054416656, -0.9715752005577087, -0.4268054664134979, 0.8301134705543518, -0.6557837128639221, -1.2785816192626953, -0.2544988691806793, -0.4147142469882965, 0.24388669431209564, -0.37555161118507385, -0.19554723799228668, 0.5581309795379639, 0.18658587336540222, 0.6122565865516663, -0.38395771384239197, 0.4149545729160309, 1.4620482921600342, 0.33675870299339294, 0.21654991805553436, 0.13369953632354736, 0.45603400468826294, 0.06410624831914902, -0.32063010334968567, 0.5212130546569824, 0.7826691269874573, -0.23309364914894104, -0.3533948063850403, -0.4321485161781311, -0.2679259479045868, -0.4760410487651825, -4.116554260253906, 0.1557978242635727, -0.06363898515701294, -0.2637404203414917, 0.22860555350780487, 0.2523469626903534, 0.2493876814842224, -0.9629799723625183, -0.6950339674949646, 0.5096232295036316, -0.29115572571754456, -0.20741239190101624, 0.2696419656276703, 0.2768020033836365, 0.19887173175811768, 0.4752860963344574, 0.09628334641456604, -0.857022225856781, 0.15137474238872528, 0.5627608299255371, 0.005788251757621765, -1.1027255058288574, -0.3023121953010559, 0.4876074194908142, 0.37725844979286194, 0.32648199796676636, -1.0431091785430908, 1.0664738416671753, -0.5889244675636292, -0.30008310079574585, 0.6871243119239807, -0.45093148946762085, -0.08636423945426941, 0.2593337893486023, 0.03212761506438255, -0.6999867558479309, 0.6098303198814392, 0.017562493681907654, 0.09093174338340759, -0.3115759789943695, -0.4343373477458954, -0.6784228682518005, -0.6718870401382446, -0.6599889397621155, 0.6618719100952148, -0.2891784906387329, -0.14950008690357208, -0.02885284274816513, 0.5708301067352295, 0.8745224475860596, -0.10483667999505997, -0.48193109035491943, -0.30619072914123535, 0.613515317440033, -0.027803361415863037, -0.3025522828102112, 0.06220206618309021, 0.20578263700008392, -0.089758962392807, -0.17068076133728027, 0.42675092816352844, -0.811440646648407, -0.4330519735813141, -0.7025573253631592, 0.21149766445159912, -0.5057980418205261, -0.5960394740104675, -0.7894306182861328, 0.6042582392692566, 0.98223876953125, -0.6481729745864868, 0.5200611352920532, 0.00035324692726135254, -1.5039108991622925, -0.023065263405442238, -0.3220255374908447, -0.23779688775539398, -0.2977416217327118, -0.3683624267578125, -0.13882525265216827, -0.5581649541854858, -0.29909154772758484, 0.0868278369307518, 0.4684692621231079, -0.1317213624715805, -1.1584672927856445, 0.16029296815395355, -0.6858583688735962, -0.6498514413833618, -0.5945452451705933, 0.8361737728118896, -0.9916845560073853, -0.008927769958972931, 0.5750715136528015, 0.2864534854888916, 0.32140159606933594, 0.030832910910248756, -0.4269448518753052, 0.833193302154541, -0.08450200408697128, 0.4299376904964447, -0.975951075553894, 0.4450512230396271, -0.1533523052930832, 0.32904961705207825, 0.04806724563241005, -0.6914586424827576, 0.005976244807243347, 0.3908049464225769, -0.31631287932395935, 0.14696277678012848, -0.21656693518161774, -0.018343839794397354, -0.45720693469047546, -0.2097824513912201, -0.8153645396232605, 0.35320964455604553, 0.29185447096824646, 0.31650224328041077, 0.0015964992344379425, -0.49457406997680664, 0.6675047278404236, -0.5569050312042236, -0.6098374724388123, -1.2793598175048828, 0.3463807702064514, 0.5103320479393005, -0.2551127076148987, 0.19405055046081543, -0.2292240858078003, -0.21801505982875824, -0.5061050653457642, 0.371152400970459, 0.08449719101190567, 0.6804218292236328, -0.5960479974746704, -0.07435499131679535, -0.42993661761283875, 0.06560440361499786, -0.3320602774620056, 0.3213948905467987, 0.02970508486032486, 0.3220578730106354, 0.6060873866081238, 0.6623056530952454, 0.6376689076423645, -0.6720279455184937, 0.6608575582504272, -0.6281774640083313, -0.22984153032302856, 0.2617069482803345, -0.0456840954720974, 0.27605634927749634, -0.5726765394210815, 0.20891091227531433, -0.39520153403282166, 0.9453336000442505, 0.020847901701927185, -0.09762183576822281, -0.8215838074684143, 0.4102329611778259, -0.6518710255622864, -0.43366461992263794, -0.025835614651441574, -0.23914578557014465, 1.0151182413101196, -0.9688441753387451, 0.30301710963249207, -0.1228189766407013, -0.2609066367149353, 0.6319807767868042, -0.3319650888442993, -0.606926441192627, 0.28370529413223267, -0.40348777174949646, 0.6563806533813477, 0.2005457729101181, 0.17074553668498993, 0.37847933173179626, 0.17469199001789093, 0.08159276098012924, 0.08312772214412689, 0.653211236000061, 0.44247934222221375, 0.9466748237609863, 0.16313213109970093, 0.5610915422439575, -0.24440263211727142, -0.8385881781578064, -0.16635391116142273, 0.5374476909637451, 0.20483870804309845, -0.23290996253490448, 0.15004946291446686, -0.7378067374229431, -1.1699892282485962, 0.35790613293647766, 0.23745056986808777, 0.5081099271774292, 0.19600778818130493, -0.4256475269794464, -0.06880591809749603, -0.37894317507743835, 0.12150132656097412, -0.1254015862941742, -1.2730036973953247, 0.519727885723114, -0.11418846994638443, -0.29284584522247314, -0.08731615543365479, -0.15072442591190338, -0.9276974201202393, -0.6572561264038086, 0.25318431854248047, -0.07448902726173401, -0.9505950212478638, -0.614513099193573, -0.22537708282470703, 0.1922674924135208, -0.3506692945957184, 0.6467161178588867, 0.4602987766265869, -0.05898141860961914, -0.2047765851020813, -0.7910727858543396, 0.8744078874588013, -0.4113062620162964, -0.2077322155237198, 0.5403387546539307, -0.47782593965530396, 0.16822406649589539, -0.35892215371131897, 0.3047591745853424, 1.0400112867355347, -0.09706881642341614, 0.01692899316549301, -0.518500804901123, 0.7519499063491821, 0.2301948368549347, 0.7885469198226929, 0.2848069965839386, -0.17911073565483093, -0.08769302815198898, -0.6072286367416382, 0.8122650980949402, 0.165134459733963, -0.21722020208835602, 0.3034081757068634, -0.12890863418579102, 1.053369402885437, 0.43647968769073486, 0.8954190015792847, -0.1323842704296112, -0.2889288365840912, 0.9224318265914917, -0.5671594142913818, -0.43435484170913696, -0.007998568005859852, -0.2577480375766754, 0.38764241337776184, 0.45622438192367554, 0.30008459091186523, -1.2373405694961548, 0.8283370733261108, 1.0101039409637451, 0.6845166683197021, 0.29528436064720154, -0.2456779181957245, 0.5948840975761414, -0.3321886360645294, 0.04310514032840729, -1.28042471408844, -0.01688053458929062, 0.3651949465274811, 0.5608282089233398, -0.5049564838409424, -0.3188510537147522, 0.031269729137420654, 1.0158313512802124, -1.0040884017944336, -0.7979600429534912, 0.4387814700603485, -0.6454032063484192, 0.4718877673149109, 0.18802480399608612, -1.1874269247055054, 0.2643679976463318, 0.5965477824211121, 0.13850022852420807, -0.0757763683795929, 0.012749233283102512, 1.17055344581604, -0.6211305260658264, -0.18585284054279327, 0.18299627304077148, 0.16495800018310547, 0.7741056680679321, 1.0563523769378662, -0.6208218336105347, 0.17385898530483246, -0.8687746524810791, 1.061992883682251, 0.7593280673027039, 0.3474731743335724, 0.06864295899868011, -0.010223332792520523, 0.10173699259757996, -0.9670510292053223, 0.4184897243976593, 0.7248676419258118, 0.1281234622001648, -0.45457467436790466, 0.6732884049415588, 0.6110144257545471, -0.9972431063652039, -0.9069492816925049, 0.2975062131881714, -0.19338347017765045, -0.3932591378688812, 0.16106441617012024, 0.43711021542549133, 0.11082470417022705, 0.8527361750602722, 0.8521184921264648, 0.35683712363243103, 1.3483740091323853, -0.2534497082233429, 0.13238020241260529, 0.8452950716018677, 1.0150965452194214, 1.3704125881195068, 0.2157731056213379, -0.05495935678482056, 0.8386735916137695, -0.7094754576683044, -0.6947687864303589, 0.35775014758110046, 0.08365708589553833, 0.04071010649204254, 0.027886636555194855, -0.0013782419264316559, 0.5371836423873901, 0.37439048290252686, 1.4843226671218872, -0.47599005699157715, 0.1633979082107544, -0.4765623211860657, -0.1185949370265007, 0.48173898458480835, -0.21193721890449524, -0.0437747985124588, 0.7105633020401001, -0.5506541728973389, -0.6904870867729187, -0.06523168087005615, 0.8387120962142944, -0.3367363214492798, -0.2782565951347351, -0.49477046728134155, -0.21227142214775085, -0.5228139162063599, 0.8212249279022217, 1.2260208129882812, -0.15470772981643677, -0.016812123358249664, -0.14985546469688416, 0.44480058550834656, -0.3318514823913574, 0.6037338376045227, -0.002728581428527832, -0.09412996470928192, 0.08899504691362381, -0.5079851150512695, 0.19474919140338898, -0.1388203203678131, 0.09541376680135727, 0.591579020023346, -0.2361324578523636, -0.14913034439086914, 0.14018796384334564, 0.3377203643321991, -0.19035205245018005, -1.268842339515686, -0.7455154061317444, 0.0111280158162117, -1.1850112676620483, -0.06086760014295578, 0.7689293026924133, -0.4424664378166199, -0.9854779243469238, -0.8774316906929016, -0.47908246517181396, -0.045729272067546844, -0.5167624950408936, -1.0435714721679688, -0.40812158584594727, 0.6699055433273315, 0.41993463039398193, 0.18142519891262054, 0.6848726868629456, 0.43280625343322754, 0.07557641714811325, -0.42670050263404846, 0.07926937192678452, 0.368085652589798, 1.0653741359710693, -0.44262227416038513, 0.43537506461143494, -1.5318368673324585, 0.6705126762390137, 0.8584302067756653, 0.9727767705917358, -1.6074663400650024, 0.7850251197814941, 0.16728565096855164, -0.7936562299728394, 0.9790162444114685, 0.08827199041843414, -0.08309214562177658, -0.3003280758857727, -0.007066547870635986, -0.3133258521556854, 0.4150213599205017, 0.7288497686386108, -0.16401278972625732, 0.7134034633636475, 1.1929657459259033, 0.040449224412441254, -0.802859365940094, -0.084267258644104, -0.29917484521865845, 0.46452271938323975, -0.9009698033332825, -0.06763205677270889, -0.860735297203064, -0.7985393404960632, -0.6367351412773132, 0.6951241493225098, -0.23043692111968994, -0.795993983745575, -0.1020205169916153, -0.44721606373786926, 0.0612800158560276, 0.35363802313804626, -0.4866552948951721, -0.22877049446105957, -0.10497662425041199, -0.8851519823074341, -1.0300301313400269, -0.23560702800750732, 0.14672642946243286, -0.7591090202331543, -0.24726714193820953, -0.5639194250106812, 0.06897307187318802, -0.5728889107704163, -0.22074413299560547, 0.6856518983840942, 0.14298787713050842, 0.24821476638317108], "4baab847-43bf-4430-a9bf-05f0c12d9b4d": [0.1739780455827713, 0.6627690196037292, -0.43164944648742676, 0.16467632353305817, 0.7323247790336609, -0.47064024209976196, 0.629210352897644, 0.1579350084066391, -0.31352320313453674, -0.8597267270088196, -0.3046759068965912, 0.08969315886497498, -0.8328291773796082, 0.5219325423240662, 0.9892892241477966, 0.9036760330200195, 0.5749050378799438, -0.331855446100235, -0.34915560483932495, -0.3326961398124695, -0.40329670906066895, 0.17891359329223633, -0.2164575308561325, 0.6329842209815979, 0.613299548625946, -0.4594785273075104, -0.0149006312713027, 0.13337786495685577, -1.152639627456665, -0.10682143270969391, 0.15321865677833557, -0.3152463436126709, -0.07375423610210419, -0.2731199562549591, 0.04579092562198639, -0.7113826870918274, -0.45102831721305847, -0.2866702079772949, 0.06373478472232819, -0.2962634563446045, -0.8115674257278442, -1.197500228881836, -0.652259886264801, 0.2268027812242508, -0.5244640707969666, 0.2932617962360382, -0.6474649310112, 0.256524920463562, -0.739851713180542, 0.3194971978664398, -0.61581951379776, 0.4876938462257385, -0.03693782538175583, 0.6791712045669556, 0.24467679858207703, 1.0569275617599487, 0.08753227442502975, -0.6964539885520935, -0.15465238690376282, -0.3564850091934204, 0.6093142032623291, 0.1990051120519638, 0.9339136481285095, 0.06043703854084015, 0.36265623569488525, -0.22247041761875153, -0.5274963974952698, 0.7279503345489502, -0.7582271099090576, -0.2790600061416626, -0.33328381180763245, 0.16138841211795807, 0.29819315671920776, 0.09173987805843353, 0.5959935784339905, -0.29180771112442017, -0.026862435042858124, 0.21696342527866364, 0.6723695397377014, 0.5271028280258179, -0.3576875925064087, 0.8071036338806152, -0.17276465892791748, 0.9154105186462402, -0.7901601791381836, -0.5627994537353516, -0.2589268982410431, 0.03716692700982094, -0.3964182436466217, 0.9166384339332581, -0.5183461904525757, -0.9032809138298035, 1.0814588069915771, 0.3299352526664734, 0.21998807787895203, -0.8550910949707031, 0.9787383675575256, 0.06166146695613861, 0.4431289732456207, 0.036587320268154144, -0.7897243499755859, -0.9487654566764832, 0.0600069984793663, 0.1970667988061905, -1.169813632965088, -0.2508472204208374, -0.6250923275947571, -0.5429143905639648, 0.06209483742713928, 0.08774029463529587, -0.017684489488601685, -0.8191441297531128, -0.8316247463226318, -0.260951429605484, -0.7569295167922974, 1.0586707592010498, 0.7993167638778687, -0.10007123649120331, -0.3517676293849945, -0.08599261939525604, 0.47098714113235474, 0.8326044082641602, 0.4606616199016571, 1.1426541805267334, 0.39688563346862793, 0.4961046278476715, 0.3586488366127014, 0.6719704270362854, -0.4593456983566284, -1.0986881256103516, 0.16816440224647522, 0.7491294741630554, 0.020800653845071793, 0.1373462975025177, -0.3409562408924103, 0.049521103501319885, 0.18249258399009705, 0.615608811378479, 0.047390468418598175, -0.5797179341316223, -0.054476216435432434, -0.5684914588928223, 0.44676539301872253, -0.028377875685691833, 0.49773263931274414, -0.02377518266439438, -0.2231721729040146, -0.7596430778503418, -0.36755335330963135, 0.8554277420043945, 0.3642808198928833, 0.026570536196231842, 1.3331748247146606, -0.5102968811988831, -0.19192245602607727, 0.8317312002182007, -0.10972364246845245, 0.2519398033618927, -0.5772297382354736, 0.14655669033527374, 0.8323148488998413, -0.06530818343162537, -0.2457171082496643, 0.13027876615524292, -0.23325225710868835, -0.11917843669652939, 0.09339170157909393, 0.048430025577545166, -0.2901325225830078, 0.3491472899913788, -0.4557754695415497, -0.8163709044456482, 0.9591977000236511, -0.3602256774902344, -0.09823286533355713, 0.4192490875720978, 1.0982104539871216, 0.37831351161003113, -0.2435828149318695, -0.4401969611644745, -0.8875847458839417, 0.5323386192321777, -0.007569817826151848, -0.593122661113739, 0.34485211968421936, -0.5432765483856201, 1.4218419790267944, -0.08990533649921417, -0.24398061633110046, 0.2722463607788086, -1.359405279159546, -0.8633756637573242, -0.43004709482192993, 0.46193236112594604, 1.3306766748428345, -0.5424379110336304, -0.06121300160884857, 0.4093930125236511, 0.30449724197387695, 0.5116219520568848, -0.10185230523347855, 0.6006032228469849, -0.17786359786987305, -0.6185416579246521, -0.9322986006736755, 0.8780961036682129, 0.4232596457004547, -0.1820283681154251, 0.1507813185453415, 0.6780028939247131, -0.12671251595020294, 0.4487055540084839, 0.4036152958869934, -0.200003981590271, 0.09657281637191772, 0.5059415698051453, 0.42560264468193054, -0.8936667442321777, 0.6897284388542175, -0.7192500233650208, 0.39698562026023865, -0.4280252456665039, -1.1470614671707153, 0.33232352137565613, -0.2397375851869583, 1.2695279121398926, 1.1397361755371094, -0.5767602324485779, -0.31683820486068726, 0.377326637506485, -0.08791704475879669, 0.09562705457210541, 0.921073317527771, 0.15900467336177826, -0.06146956980228424, -0.0969318374991417, 0.053192831575870514, -0.7235192060470581, 1.0059787034988403, -0.8120643496513367, 0.671150803565979, 1.0774601697921753, 0.2745410203933716, 0.5121140480041504, 0.3547781705856323, -0.2019583135843277, 0.10696019977331161, -0.47029003500938416, -0.45068058371543884, -0.36824992299079895, -0.509527325630188, -0.2764020562171936, 0.28647178411483765, -0.6144415140151978, 0.8188046216964722, -0.1578415334224701, -0.5528039932250977, 0.18724538385868073, 0.5179237127304077, 1.0135035514831543, -0.4331367313861847, 0.978440523147583, 0.2878775894641876, 0.28858450055122375, -0.47525909543037415, -1.292791485786438, -0.8992894291877747, -0.19450387358665466, 0.3649787902832031, 0.12980151176452637, 0.3554271459579468, 0.03263073414564133, 0.20374098420143127, 0.07133489847183228, -0.02243480458855629, -0.02554101124405861, 1.1855542659759521, 0.41663581132888794, 0.16722682118415833, -0.7962848544120789, -0.3797416687011719, 0.9931114315986633, -0.6537830829620361, -1.1115634441375732, -0.2960203289985657, -0.4582008719444275, 0.15987248718738556, -0.23928195238113403, -0.31517234444618225, 0.427333265542984, 0.6058707237243652, 0.7084366083145142, -0.7063858509063721, 0.9939095973968506, 0.8481622338294983, 0.48191964626312256, 0.3579339385032654, 0.8065590262413025, 0.12660127878189087, 0.2988710403442383, 0.19676649570465088, 0.7855751514434814, 0.7894871830940247, -0.581213653087616, 0.16564640402793884, -0.4406948387622833, -0.6302523612976074, -0.517195463180542, -4.466763973236084, 0.21541224420070648, 0.05696633458137512, -0.21278966963291168, 0.1603771150112152, 0.6802158951759338, 0.34166932106018066, -0.8075064420700073, -0.6013076901435852, 0.5614385604858398, -0.28630468249320984, 0.05344609171152115, 0.24775581061840057, 0.36774542927742004, 0.2205217033624649, 0.6373023390769958, -0.040536824613809586, -0.8689877390861511, 0.18138346076011658, 0.6059862971305847, -0.1858978420495987, -0.6977487206459045, -0.16006723046302795, 0.3461820185184479, 0.1827913075685501, 0.26252681016921997, -1.015217900276184, 0.5282667279243469, -0.6174722909927368, -0.010614849627017975, 0.7376633882522583, -0.46235278248786926, -0.04249029606580734, 0.06106731295585632, 0.030013229697942734, -1.0328755378723145, 0.7224813103675842, -0.26361173391342163, 0.005284979939460754, -0.25975096225738525, -0.23897919058799744, -0.6043648719787598, -0.6487363576889038, -0.32841670513153076, 0.9783238172531128, -0.10558705776929855, -0.3847217559814453, -0.18859170377254486, 0.32198187708854675, 0.7860990166664124, -0.6378236413002014, -0.5077859163284302, -0.6404871940612793, 0.16015902161598206, 0.027583613991737366, -0.0820252001285553, 0.47124677896499634, 0.1411416381597519, -0.6033855676651001, -0.15861934423446655, 0.654339075088501, -0.4698410630226135, -0.5484978556632996, -0.7101339101791382, 0.3253861665725708, -0.8606359958648682, -0.6607235670089722, -1.0905964374542236, 0.43983516097068787, 0.6231409311294556, -0.5374935865402222, 0.4465961456298828, 0.07478602230548859, -1.6998711824417114, -0.03451955318450928, -0.5589439868927002, -0.13082346320152283, 0.04675386846065521, -0.14017772674560547, 0.010080158710479736, -0.7696757912635803, -0.1740105301141739, -0.016659438610076904, 0.29609745740890503, -0.49336135387420654, -0.7560205459594727, 0.4416762888431549, -0.6059247255325317, -0.9000128507614136, -0.6349531412124634, 0.8282010555267334, -0.46156176924705505, -0.011246845126152039, 0.6869276165962219, 0.22501413524150848, 0.060155898332595825, 0.2893644869327545, -0.2140839397907257, 0.7292864918708801, -0.01269480586051941, 0.36006787419319153, -0.8818084001541138, 0.12117837369441986, -0.03326336294412613, -0.28043872117996216, 0.045654527842998505, -0.5759379863739014, -0.12683342397212982, 0.49598443508148193, -0.12080605328083038, 0.3432462811470032, -0.7242549657821655, -0.32170403003692627, -0.6318733096122742, 0.15925726294517517, -0.8745213150978088, 0.4532034993171692, 0.013305671513080597, 0.5204471349716187, -0.025062255561351776, -0.45899757742881775, 0.6049004197120667, -1.0282695293426514, -0.3481346666812897, -1.8632395267486572, 0.6322250962257385, 0.4838665723800659, -0.3810233771800995, 0.5447705388069153, 0.2712196707725525, -0.6960012912750244, -0.035403359681367874, 0.499308705329895, -0.576552152633667, 0.8478193879127502, -0.5235458016395569, -0.1155623272061348, -0.42965710163116455, 0.21210001409053802, 0.06201624870300293, -0.015860125422477722, 0.49968189001083374, 0.8141090273857117, 0.39118123054504395, 0.558581531047821, 0.41601142287254333, -0.7108041048049927, 0.409298300743103, -0.02845814824104309, -0.5761975646018982, 0.04598917067050934, 0.2579037845134735, 0.4091342091560364, -0.8355332612991333, 0.14632603526115417, -0.5951709747314453, 0.7843537926673889, -0.12899106740951538, -0.11826692521572113, -0.2732260823249817, 0.29742011427879333, -0.9044630527496338, -0.8002168536186218, -0.20948806405067444, -0.18842563033103943, 1.4050979614257812, -0.6990370750427246, 0.1024467945098877, 0.06207595765590668, -0.023243501782417297, 0.6078858375549316, -0.24452896416187286, -0.6594763398170471, -0.2565314471721649, -0.5562642812728882, 1.0550320148468018, -0.06182945519685745, 0.3645724356174469, 0.4921249747276306, 0.09824946522712708, -0.18465237319469452, 0.061081066727638245, 0.16042624413967133, 0.461288183927536, 0.714501142501831, -0.46548527479171753, -0.14718672633171082, 0.19312813878059387, -0.4821390211582184, -0.034746915102005005, 0.6666560173034668, 0.24860668182373047, -0.4859189987182617, 0.17524603009223938, -0.5982388257980347, -1.2459992170333862, 0.11878891289234161, 0.05006161332130432, 0.8119943737983704, 0.16284677386283875, -0.16706223785877228, -0.40811216831207275, 0.21615633368492126, 0.3528629541397095, -0.035700008273124695, -1.212530255317688, 0.49758678674697876, -0.3067513406276703, -0.3913831114768982, 0.28757816553115845, -0.038631998002529144, -0.9075998067855835, -0.8712702393531799, 0.18717429041862488, 0.3140203058719635, -0.9645677208900452, -0.5072894096374512, 0.09508666396141052, 0.2425033003091812, -0.2803530693054199, 0.36529284715652466, 0.07278366386890411, -0.0519796758890152, -0.009017474949359894, -0.6325228810310364, 0.4726199507713318, 0.0640537440776825, -0.6288067698478699, 0.36998000741004944, -0.3240228593349457, -0.04998652637004852, -0.17254605889320374, 0.2395823895931244, 0.7348269820213318, -0.34057721495628357, 0.2913123369216919, -0.44365376234054565, 0.20548947155475616, -0.05484161525964737, 0.5289155840873718, 0.7061662077903748, 0.4438425898551941, -0.6629347801208496, -0.9231558442115784, 0.16001328825950623, 0.17249196767807007, -0.055932361632585526, 0.08957035094499588, 0.14797616004943848, 0.7703531384468079, 0.04475277662277222, 0.17291010916233063, -0.05890701711177826, -0.7309659123420715, 0.6080673336982727, -0.45639827847480774, -0.6230418682098389, -0.10718760639429092, -0.31551915407180786, 0.2941320240497589, 0.7394121885299683, 0.42437711358070374, -1.275084137916565, 0.5562968254089355, 0.8563212752342224, 0.32206976413726807, -0.04964791238307953, -0.13275572657585144, 0.5779178142547607, -0.3248658776283264, -0.32912397384643555, -1.198720932006836, 0.2736119031906128, 0.49517059326171875, 0.3719748556613922, -0.6281046271324158, -0.3424493968486786, 0.2000150829553604, 0.7686337828636169, -1.2220999002456665, -0.8329251408576965, 0.25345754623413086, 0.03751876950263977, 0.454806923866272, 0.2975819408893585, -1.0554008483886719, -0.0007618463132530451, -0.03921238332986832, -0.23463593423366547, -0.10166896879673004, -0.00010787509381771088, 0.8583007454872131, -0.338771790266037, 0.19456669688224792, -0.03805699944496155, 0.04782678186893463, 0.6614943146705627, 0.8478712439537048, -0.4224035143852234, 0.20538091659545898, -0.6684409976005554, 0.8590916395187378, 0.5885727405548096, 0.3995889723300934, -0.08559967577457428, -0.11948759108781815, -0.24716973304748535, -1.1794707775115967, 0.5396589636802673, 0.1935282051563263, 0.3829847276210785, -0.5772767066955566, 0.8837146162986755, 0.5530598163604736, -1.0720045566558838, -1.0766328573226929, 0.40776345133781433, -0.2279975861310959, -0.11945027858018875, 0.28662532567977905, 0.46765291690826416, 0.2341202199459076, 0.6283261179924011, 0.9854867458343506, 0.5560388565063477, 0.9090831279754639, -0.2009558081626892, 0.21620741486549377, 0.9747171998023987, 1.2419347763061523, 1.335322380065918, 0.23421424627304077, 0.0036200731992721558, 1.0838003158569336, -0.30193817615509033, -0.7008500695228577, -0.22163426876068115, 0.09611919522285461, 0.06075605750083923, 0.17980071902275085, -0.3820447325706482, 0.5076550245285034, 0.6752652525901794, 1.231089472770691, -0.4565925896167755, -0.10609733313322067, -0.12126727402210236, -0.21537089347839355, 0.5252359509468079, 0.03221758082509041, -0.08687880635261536, 0.845637321472168, -0.6214563846588135, -0.8106673955917358, -0.007754996418952942, 0.5194328427314758, -0.7543354630470276, 0.1931118369102478, -0.7732076644897461, -0.13322106003761292, -0.5821186900138855, 0.6528563499450684, 1.3395402431488037, 0.09299756586551666, 0.19213972985744476, 0.08016319572925568, 0.2906110882759094, -0.5357718467712402, 0.7172608971595764, 0.1006932482123375, 0.053421750664711, 0.0015699323266744614, -0.3840188980102539, 0.5371732115745544, -0.41191473603248596, -0.05859573185443878, 0.4234740734100342, -0.3152942657470703, 0.06944732367992401, 0.4047844409942627, 0.27616602182388306, -0.19556818902492523, -0.9629253149032593, -0.8553416132926941, 0.16956400871276855, -1.1726605892181396, -0.28021150827407837, 0.7522767782211304, -0.343702495098114, -1.0440797805786133, -0.5769004821777344, -0.5114775896072388, -0.07839752733707428, -0.5207074880599976, -0.8099527955055237, -0.4257087707519531, 0.7961531281471252, 0.40768134593963623, 0.5469779372215271, 0.385634183883667, 0.46584582328796387, 0.19812767207622528, -0.31212177872657776, -0.2686904966831207, 0.10861629992723465, 1.0366235971450806, -0.1664019227027893, 0.29848426580429077, -1.5062808990478516, 0.7271842360496521, 0.02456849068403244, 0.5428991317749023, -1.5668766498565674, 0.9143593311309814, -0.017298199236392975, -0.16213363409042358, 0.7768930196762085, 0.3729141354560852, 0.0008729808032512665, -0.25157630443573, 0.031836628913879395, 0.0717327892780304, -0.11162257194519043, 0.5691515207290649, -0.36571481823921204, 0.8728340268135071, 0.6642848253250122, 0.5563150644302368, -0.6660440564155579, -0.021323740482330322, -0.3218633532524109, 0.6021818518638611, -0.7825591564178467, 0.04419682174921036, -0.035651735961437225, -1.0388715267181396, -0.39928823709487915, 0.5105440020561218, -0.2062338888645172, -0.6490696668624878, 0.008083359338343143, -0.5885778665542603, -0.14923228323459625, 0.8826735615730286, -0.8147022128105164, -0.1385735720396042, 0.03671429306268692, -0.9220820665359497, -0.9541215896606445, 0.07893307507038116, 0.44147688150405884, -0.8628855347633362, 0.09589238464832306, -0.9821692109107971, -0.08731359243392944, -0.1533018946647644, -0.47533610463142395, 0.7108774781227112, 0.04508179798722267, -0.16081653535366058], "a99d060e-119d-49e2-8d50-3781092ad15c": [0.08523444831371307, 0.5790131092071533, -0.48145121335983276, -0.1425185203552246, 0.8278182148933411, -0.5062916278839111, 0.4194948375225067, 0.3550446629524231, -0.34258586168289185, -0.5550403594970703, -0.5641508102416992, 0.04402356594800949, -1.0779244899749756, 0.5156348347663879, 0.25997263193130493, 0.9755461812019348, 0.3835730254650116, -0.2283487468957901, 0.18414579331874847, -0.5813531875610352, 0.17631858587265015, -0.0546136274933815, -0.31182554364204407, 0.46066704392433167, 0.39798668026924133, -0.09047429263591766, -0.10886774212121964, 0.2022872418165207, -1.3700746297836304, -0.046573907136917114, 0.35088270902633667, -0.3448581099510193, -0.03246103599667549, -0.2345203310251236, 0.13043054938316345, -0.4651353359222412, -0.5415701270103455, -0.6227201223373413, 0.09211686253547668, 0.10751985013484955, -0.5024851560592651, -0.711579442024231, -0.3184017539024353, 0.08687344193458557, -0.6265441179275513, 0.2813144624233246, -1.1488337516784668, 0.725834846496582, -0.61962890625, -0.06765367090702057, -0.887673556804657, 0.7604148983955383, 0.02200743928551674, 0.22735753655433655, 0.5647615790367126, 0.9091084003448486, 0.05107264593243599, -0.7944203615188599, -0.03868166729807854, -0.43432584404945374, 0.7389039397239685, 0.08615824580192566, 0.6143761873245239, 0.28613296151161194, 0.0072639090940356255, -0.09359148889780045, -0.820229709148407, 0.7424565553665161, -1.2708220481872559, -0.9318211674690247, 0.10811387002468109, 0.10662616789340973, 0.10557737946510315, -0.22117775678634644, 0.15347203612327576, -0.4592679440975189, -0.017533406615257263, 0.20892831683158875, 0.8759996891021729, 0.9574328660964966, -0.28402331471443176, 0.5731162428855896, -0.08568212389945984, 0.979519248008728, -0.7613348960876465, -0.2524617314338684, -0.6852920651435852, -0.008344272151589394, -0.5654300451278687, 0.531795859336853, 0.05800002068281174, -0.7755901217460632, 0.7172713875770569, 0.39121758937835693, 0.27700579166412354, -0.532240629196167, 1.1114745140075684, 0.057018302381038666, 0.5795018672943115, 0.46031296253204346, -0.6440858244895935, -0.7045754790306091, 0.5771728754043579, 0.14035186171531677, -1.2667330503463745, -0.4262857139110565, -0.5660918951034546, -0.34074968099594116, 0.018235694617033005, 0.3346441388130188, 0.04481831192970276, -0.7146558165550232, -0.5751966834068298, -0.23077626526355743, -0.67071133852005, 1.1241511106491089, 0.5332728624343872, 0.2722168266773224, -0.09222502261400223, -0.024204879999160767, 0.9907602667808533, 1.1192548274993896, 0.2188577502965927, 1.220409870147705, 0.20185594260692596, 0.6790761351585388, 0.38399460911750793, 0.7633609771728516, -0.4473589062690735, -1.114261269569397, 0.19220559298992157, 0.6044024229049683, 0.2532588839530945, -0.20086902379989624, -0.20884422957897186, 0.11491170525550842, 0.37558212876319885, 0.23115819692611694, 0.5948017239570618, -0.7589095830917358, -0.22728995978832245, -0.831432580947876, 0.27217382192611694, -0.08936014026403427, 0.6255844235420227, 0.17222380638122559, 0.04646024852991104, -1.2088769674301147, 0.10617725551128387, 0.6722331643104553, 0.49959224462509155, 0.7499796152114868, 0.9530118703842163, -0.9583231210708618, 0.061400048434734344, 0.8228825926780701, -0.33050063252449036, 0.16355593502521515, -0.6375546455383301, 0.4266551434993744, 0.5230060815811157, 0.01610714942216873, -0.6266615986824036, -0.18102261424064636, -0.5448943376541138, 0.24303987622261047, 0.6017950177192688, 0.1938917338848114, -0.18478251993656158, 0.33720850944519043, -0.7001354098320007, -0.9586790204048157, 1.15964937210083, -0.08987808227539062, 0.06503424048423767, 0.3891129195690155, 1.376217007637024, 0.23994660377502441, 0.4413011968135834, -0.1900312900543213, -1.1364834308624268, 0.702717661857605, 0.01609378308057785, -0.6452198624610901, -0.1274004876613617, -0.6062698364257812, 1.4315942525863647, -0.09299854934215546, -0.224827378988266, 0.122703418135643, -1.331844449043274, -0.9858675599098206, -0.2909763753414154, 0.46340298652648926, 1.089426040649414, -0.19402208924293518, -0.14288149774074554, 0.7725359201431274, -0.20106244087219238, 0.7420949935913086, 0.07986299693584442, 0.7325997352600098, -0.007658906280994415, -1.1796034574508667, -0.8965162634849548, 0.584291934967041, 0.3127939701080322, -0.13778895139694214, 0.02526797354221344, 0.3011132478713989, 0.1774771511554718, 0.10171642899513245, 0.6230354905128479, -0.4944455921649933, 0.5599409937858582, 0.19649985432624817, 0.3360757827758789, -0.513579249382019, 0.8236384987831116, -0.9177128672599792, 0.5162150859832764, -0.5985322594642639, -1.3213509321212769, 0.6923428177833557, -0.672177791595459, 1.4294620752334595, 1.2062296867370605, -0.38725030422210693, -0.3445793390274048, 0.4793533384799957, 0.14102454483509064, -0.1002260148525238, 0.3501291573047638, 0.2641187906265259, -0.21815171837806702, -0.10644282400608063, 0.12410272657871246, -0.3699766993522644, 0.8660334944725037, -0.8417385816574097, 0.4491644501686096, 1.2744331359863281, -0.24327531456947327, 0.5271294116973877, 0.7629998922348022, -0.29513150453567505, 0.35762953758239746, -0.3829421401023865, -0.7964350581169128, -0.39885708689689636, -0.6471269130706787, -0.3417995572090149, 0.44747981429100037, -0.891823410987854, 0.6539782881736755, -0.3562687635421753, -0.6714812517166138, 0.5002719163894653, 0.689146876335144, 0.8532379865646362, -0.7622777819633484, 0.8865371346473694, 0.510822594165802, 0.12091100215911865, -0.08888672292232513, -1.2818044424057007, -0.7513256669044495, 0.12149783968925476, 0.09520292282104492, 0.13375920057296753, 0.27835631370544434, 0.24424877762794495, 0.22629615664482117, -0.0632425993680954, -0.5282210111618042, 0.19333937764167786, 1.1608834266662598, 0.4299302101135254, -0.004016119986772537, -0.9898384809494019, -0.07384204119443893, 1.042696475982666, -0.6979765295982361, -1.0373921394348145, -0.2776447534561157, -0.5022956132888794, 0.15550613403320312, -1.0194380283355713, -0.3239562213420868, 0.13039913773536682, 0.22075575590133667, 0.64579176902771, -0.6064238548278809, 0.7435295581817627, 1.223767638206482, 0.401608407497406, 0.16824087500572205, 0.11489793658256531, 0.5860574245452881, 0.2602296769618988, -0.030342623591423035, 0.4249391555786133, 0.4536982774734497, -0.48945334553718567, -0.6087344288825989, -0.23422633111476898, -0.7406829595565796, -0.43350061774253845, -4.339221477508545, 0.44464102387428284, -0.39489856362342834, -0.2880382537841797, 0.2570744454860687, 0.6189254522323608, 0.41610825061798096, -0.8980997204780579, -0.7531783580780029, 0.35886114835739136, -0.3023298978805542, -0.23420029878616333, 0.2691243588924408, 0.6837377548217773, -0.3077794015407562, 0.7959342002868652, -0.031981244683265686, -0.9075029492378235, 0.19108155369758606, 0.3824041187763214, -0.3282930850982666, -1.0707460641860962, -0.07525791972875595, 0.3628753125667572, 0.20695167779922485, 0.2693600654602051, -1.191918969154358, 0.699626624584198, -0.9150115251541138, -0.20915958285331726, 0.353120356798172, -0.3797195255756378, 0.023965850472450256, -0.0583488792181015, 0.051470622420310974, -0.7500401139259338, 0.7020943760871887, -0.2797037959098816, 0.16014595329761505, -0.0041075944900512695, -0.5922347903251648, -0.3665706515312195, -0.7748942971229553, -0.9332106709480286, 0.842848539352417, -0.4228303134441376, -0.7255550622940063, -0.2254083752632141, 0.14506974816322327, 0.49897000193595886, -0.24485094845294952, -0.5680304169654846, -0.4296194314956665, 0.4890361428260803, 0.2726196050643921, -0.47722071409225464, 0.05504876375198364, -0.023807287216186523, -0.060292892158031464, -0.17157939076423645, 0.48284679651260376, -0.9478314518928528, -0.4375779926776886, -0.5643685460090637, -0.08167210221290588, -0.6622811555862427, -0.5463162660598755, -0.7877325415611267, 0.48548561334609985, 1.1309164762496948, -0.5040863156318665, 0.8451093435287476, 0.21373671293258667, -1.4428366422653198, -0.18272991478443146, -0.31364408135414124, -0.2167908251285553, -0.49684083461761475, -0.5029129385948181, 0.10046511888504028, -0.36491990089416504, -0.22920337319374084, 0.3856852054595947, 0.4652995467185974, -0.023892754688858986, -0.9944929480552673, 0.15088903903961182, -0.47149476408958435, -0.6489344835281372, -0.36675509810447693, 0.6789698004722595, -0.994264543056488, -0.175593763589859, 0.7066011428833008, 0.32018423080444336, 0.24067986011505127, 0.4456593990325928, -0.4384394884109497, 0.4673498272895813, -0.1025972068309784, 0.33781301975250244, -0.5892624258995056, 0.29094409942626953, -0.06719351559877396, 0.22405993938446045, 0.053194060921669006, -0.4469791650772095, -0.13094623386859894, 0.31055140495300293, 0.3470849394798279, 0.26705724000930786, -0.44818249344825745, 0.06786954402923584, -0.4725804328918457, -0.15648779273033142, -0.636853039264679, 0.5389398336410522, 0.07762192189693451, 0.15782828629016876, 0.019422631710767746, -0.5755740404129028, 0.6971414685249329, -0.4647371470928192, -0.5602020025253296, -1.3373510837554932, 0.24952346086502075, 0.2775759696960449, -0.1241552084684372, 0.3342987298965454, 0.05376347899436951, -0.4637805223464966, -0.4697479009628296, 0.31708890199661255, -0.21107657253742218, 0.6096677780151367, -0.8225415349006653, -0.03234609216451645, -0.25409671664237976, 0.1872987300157547, -0.1651718020439148, 0.04284760728478432, 0.27570509910583496, 0.3435029983520508, 0.5905834436416626, 0.5304926037788391, 0.7179130911827087, -0.5741264224052429, 0.40775102376937866, -0.3027178943157196, -0.3128843903541565, 0.011879175901412964, -0.16531212627887726, 0.10287855565547943, -0.8222841620445251, 0.028363913297653198, -0.46263134479522705, 0.9250612854957581, -0.29727667570114136, -0.135383740067482, -0.5618757605552673, 0.3923773765563965, -0.7235465049743652, -0.5838662981987, 0.07864423841238022, -0.24227434396743774, 1.2427523136138916, -0.671840250492096, 0.32933881878852844, -0.24260646104812622, -0.2128317505121231, 0.6070860028266907, -0.2860293984413147, -0.6428340673446655, -0.017692580819129944, -0.5867247581481934, 0.4275847375392914, -0.08018887042999268, 0.246053546667099, 0.2324618250131607, 0.6411459445953369, 0.037500858306884766, -0.0665697380900383, 0.3623467981815338, 0.2084342986345291, 0.8229210376739502, -0.38204893469810486, 0.1834573894739151, -0.0795830488204956, -0.3885321617126465, -0.24409013986587524, 0.6304930448532104, 0.3079184889793396, -0.3638554513454437, 0.128668874502182, -0.6610380411148071, -1.3723962306976318, 0.6206038594245911, 0.39453044533729553, 0.5290368795394897, 0.33289095759391785, -0.2310069352388382, -0.05976840853691101, -0.31921565532684326, 0.3580542802810669, -0.1677984893321991, -1.2685744762420654, 0.4964730143547058, -0.16885435581207275, -0.1637541949748993, 0.2204281985759735, -0.49225914478302, -0.9663253426551819, -0.6283220648765564, 0.10352842509746552, 0.09875960648059845, -0.9252855777740479, -0.1316852867603302, -0.012670144438743591, 0.29452481865882874, -0.41690725088119507, 0.46020564436912537, 0.285966157913208, 0.09924125671386719, -0.4019513726234436, -1.0082592964172363, 0.686606764793396, -0.10875378549098969, -0.32314252853393555, 0.3810405731201172, -0.409363716840744, 0.35440847277641296, -0.48235848546028137, 0.25189292430877686, 1.0395973920822144, 0.04028109461069107, 0.17371180653572083, -0.35842663049697876, 0.4001077115535736, 0.33770138025283813, 0.6559662818908691, 0.13946135342121124, -0.11082829535007477, -0.2977689802646637, -0.9523789286613464, 0.5248342752456665, 0.12088000774383545, -0.8783565759658813, -0.19910567998886108, 0.03843613713979721, 0.8743993639945984, 0.11497035622596741, 0.39005357027053833, 0.05253280699253082, -0.1345185786485672, 0.9995133280754089, -0.7039320468902588, -0.23034903407096863, -0.040424883365631104, -0.5418176651000977, 0.5132380127906799, 0.3314374089241028, 0.31076952815055847, -1.2229276895523071, 0.7733526825904846, 1.0336436033248901, 0.6382036209106445, -0.09432118386030197, -0.4497164487838745, 1.0408134460449219, -0.5444924235343933, -0.07114292681217194, -1.1202043294906616, 0.11864928901195526, 0.395225465297699, 0.6681255102157593, -0.3933565020561218, -0.2159629762172699, 0.19848258793354034, 0.9309917688369751, -0.43337875604629517, -1.0275168418884277, 0.17938297986984253, -0.07727338373661041, 0.2563925087451935, 0.42213934659957886, -0.8628606200218201, 0.08673160523176193, 0.3558367192745209, 0.11816947162151337, 0.1254504919052124, -0.022560831159353256, 0.9975159168243408, -0.40906891226768494, 0.19267897307872772, -0.155210942029953, -0.018519196659326553, 0.9947736263275146, 1.2995253801345825, -0.8348893523216248, 0.16247066855430603, -0.5412716269493103, 0.9785845279693604, 0.6960176825523376, 0.4011824429035187, -0.2488391399383545, -0.005655941553413868, 0.1469430923461914, -0.9250035881996155, 0.4704807996749878, 0.7533058524131775, 0.2732449173927307, -0.5618371367454529, 0.7253544330596924, 0.9025469422340393, -1.2759840488433838, -0.5040346384048462, 0.27338510751724243, -0.12807659804821014, -0.49841374158859253, -0.06302668154239655, 0.30896347761154175, 0.34122782945632935, 0.7772495150566101, 0.5162640810012817, 0.6082735061645508, 1.2601780891418457, -0.013939455151557922, 0.10086090117692947, 0.8970442414283752, 0.7427660226821899, 1.0794727802276611, 0.2822374105453491, 0.33340996503829956, 1.0029551982879639, -0.5267941951751709, -0.8725976347923279, 0.14650700986385345, 0.011587902903556824, -0.05289836600422859, -0.06707451492547989, -0.25268733501434326, 0.760270357131958, 0.7286661863327026, 1.5184046030044556, -0.30606046319007874, 0.2132343351840973, -0.37791427969932556, -0.5489602088928223, 0.7322174310684204, 0.1738383173942566, -0.25307780504226685, 0.8208584785461426, -0.7082551717758179, -0.6169420480728149, 0.00021011382341384888, 0.5144326686859131, -0.3802146911621094, -0.1142098605632782, -0.16424815356731415, -0.22094804048538208, -0.16075542569160461, 0.9170352220535278, 0.9695136547088623, 0.07129129767417908, -0.04274782910943031, 0.14638611674308777, 0.5326787829399109, -0.15802520513534546, 0.2929411828517914, -0.11664949357509613, 0.06281596422195435, 0.14451737701892853, -0.4978262186050415, -0.02259855717420578, -0.015077763237059116, 0.2426629215478897, 0.47092461585998535, -0.29588305950164795, -0.14126554131507874, 0.15893465280532837, 0.8735074400901794, -0.1767963171005249, -0.909161388874054, -0.8653872609138489, -0.12339949607849121, -0.8935294151306152, -0.19549952447414398, 0.34048911929130554, -0.2591712474822998, -0.8973984718322754, -0.8741272687911987, -0.5870351195335388, -0.058148130774497986, -0.21652226150035858, -0.7541502118110657, -0.47797420620918274, 0.47779160737991333, 0.40141549706459045, 0.28400447964668274, 0.7359667420387268, 0.4114223122596741, -0.025005703791975975, -0.43007513880729675, 0.3496817648410797, 0.25058066844940186, 0.8033940196037292, -0.5798294544219971, 0.5891406536102295, -1.2233285903930664, 0.7061848044395447, 0.5641374588012695, 0.9258700013160706, -1.7105363607406616, 0.9544510841369629, 0.28150367736816406, -0.9727940559387207, 0.9391999244689941, 0.1157684177160263, -0.1806606501340866, 0.09126043319702148, 0.011321783065795898, -0.3159940540790558, 0.3281410336494446, 0.44614937901496887, -0.144593745470047, 0.617239236831665, 0.6297436356544495, -0.14530622959136963, -0.616991400718689, 0.09387652575969696, -0.2925119996070862, 0.8027518391609192, -0.886674702167511, -0.24775981903076172, -0.742559015750885, -0.9353830218315125, -0.6313594579696655, 0.5635995268821716, -0.3006168603897095, -0.7724724411964417, -0.15169043838977814, -0.25410759449005127, -0.4021567702293396, 0.4410400688648224, -0.5258216261863708, -0.37318190932273865, -0.10812726616859436, -0.9914435744285583, -1.1495449542999268, 0.02237337827682495, 0.6254027485847473, -0.6155873537063599, -0.021889962255954742, -0.5850149989128113, -0.3091632127761841, -0.616024911403656, -0.3506765067577362, 0.6183740496635437, -0.10884164273738861, 0.39798012375831604], "78a64c63-ffca-43dc-82f0-566a375395c6": [-0.009009670466184616, 0.28737956285476685, -0.4222372770309448, -0.14947037398815155, 0.8761417269706726, -0.6074478626251221, 0.6002420783042908, 0.7508383989334106, -0.4572030305862427, -0.31209129095077515, -0.47495344281196594, 0.06576263159513474, -0.6680532097816467, 0.3162074089050293, 0.06636457145214081, 0.7422210574150085, 0.3783111870288849, -0.35835498571395874, -0.03348369896411896, -0.17531956732273102, 0.15213710069656372, -0.09439313411712646, -0.3937048316001892, 0.4555504620075226, 0.759209394454956, -0.12616240978240967, -0.16524730622768402, 0.35650986433029175, -1.2800568342208862, -0.032650042325258255, 0.4291246831417084, -0.3096628189086914, 0.11685577034950256, -0.3391497731208801, 0.29692450165748596, -0.49175721406936646, -0.6768922805786133, -0.4771660566329956, 0.3182711601257324, -0.11234845966100693, -0.37699976563453674, -0.6562018990516663, -0.8206371665000916, 0.0469023659825325, -0.742689311504364, -0.07807191461324692, -1.1992807388305664, 0.5117019414901733, -0.5994462966918945, 0.1370609700679779, -1.0788722038269043, 0.6157402992248535, 0.005315802991390228, 0.4663259983062744, 0.6627926826477051, 0.9614270925521851, 0.042578548192977905, -1.1045644283294678, -0.1442665308713913, -0.3357597589492798, 0.45814022421836853, -0.08358566462993622, 0.4680626392364502, 0.17934143543243408, -0.1303490400314331, -0.27245259284973145, -0.5027680993080139, 0.5257082581520081, -1.3970260620117188, -0.8494834899902344, -0.23023633658885956, 0.446603000164032, 0.3295738697052002, 0.08163729310035706, 0.35274189710617065, -0.5620478987693787, -0.29588639736175537, 0.26084592938423157, 0.7980510592460632, 1.0891335010528564, -0.16253796219825745, 0.39941924810409546, 0.12008881568908691, 0.858407735824585, -0.50639808177948, -0.334894597530365, -0.659302830696106, -0.4163411557674408, -0.4646301865577698, 0.7971364855766296, -0.30891573429107666, -0.6163315773010254, 0.699001133441925, 0.3322050869464874, 0.439719021320343, -0.21091614663600922, 1.1893045902252197, 0.14173033833503723, 0.4633917808532715, 0.33324748277664185, -0.5752578973770142, -0.8558564186096191, 0.18474845588207245, 0.061912745237350464, -1.2052096128463745, -0.25990980863571167, -0.6402572393417358, -0.26948925852775574, -0.004465240985155106, 0.029976580291986465, -0.1091344952583313, -0.8037715554237366, -0.44066596031188965, -0.10299434512853622, -0.45133256912231445, 1.0978474617004395, 0.6514492034912109, 0.2935525178909302, -0.09007535129785538, 0.017715655267238617, 0.8904913663864136, 0.9768335223197937, 0.18895867466926575, 1.204691767692566, 0.057770535349845886, 0.768891453742981, 0.3639717400074005, 0.8027965426445007, -0.1649852991104126, -1.0862643718719482, 0.2753934860229492, 0.8266662955284119, 0.06953896582126617, -0.09103918820619583, -0.22392216324806213, -0.154643252491951, 0.27256953716278076, 0.47376811504364014, 0.4548425078392029, -0.6974654197692871, -0.12449778616428375, -0.40069544315338135, 0.17693093419075012, -0.23805099725723267, 0.5514353513717651, 0.2932801842689514, -0.055715642869472504, -1.06973397731781, -0.29851680994033813, 0.6710434556007385, 0.5338748693466187, 0.3437880575656891, 0.7258858680725098, -0.723963737487793, -0.09436842799186707, 0.5913456678390503, -0.4604467451572418, 0.052913933992385864, -0.7738104462623596, 0.4223349690437317, 0.5373495817184448, -0.19372721016407013, -0.45626720786094666, -0.29239046573638916, -0.6365105509757996, 0.013041563332080841, 0.3630474805831909, 0.352413535118103, -0.23565182089805603, 0.492040753364563, -0.6911824345588684, -0.9067116975784302, 0.9351105690002441, -0.16202273964881897, -0.31764304637908936, 0.29863250255584717, 1.140676736831665, 0.536918044090271, 0.5706714391708374, -0.1523604393005371, -0.8194038271903992, 0.6198980808258057, 0.11832588911056519, -0.4102455675601959, 0.09742854535579681, -0.45511776208877563, 1.6121073961257935, -0.0807625874876976, -0.2501536011695862, 0.03828554227948189, -1.4340003728866577, -0.5154769420623779, -0.2827974855899811, 0.7950321435928345, 1.0762099027633667, -0.04092187061905861, -0.09931135177612305, 0.6855171918869019, 0.0018079504370689392, 0.9305509328842163, 0.38121524453163147, 0.6051329374313354, -0.0214887335896492, -1.2291464805603027, -1.0301436185836792, 0.535959005355835, 0.3669099807739258, -0.060552578419446945, 0.11472417414188385, 0.19820499420166016, -0.030938681215047836, 0.05854211747646332, 0.6843678951263428, -0.37247738242149353, 0.866631031036377, 0.40947672724723816, 0.4663608968257904, -0.621267557144165, 0.6981133818626404, -0.9874860644340515, 0.5650635957717896, -0.6597103476524353, -1.142469882965088, 0.3594578802585602, -0.3338148593902588, 1.6383436918258667, 1.1521704196929932, -0.6114866733551025, -0.39193135499954224, 0.23022566735744476, 0.18440714478492737, -0.2080969512462616, 0.4570876359939575, 0.24014538526535034, -0.22807249426841736, -0.19232888519763947, 0.021614300087094307, -0.3794303834438324, 0.9192981123924255, -0.6418118476867676, 0.4152950048446655, 1.4505218267440796, -0.04157054424285889, 0.305555522441864, 0.4287807047367096, -0.1473136842250824, 0.013287939131259918, -0.6259324550628662, -0.9037567973136902, -0.24432362616062164, -0.3890274465084076, -0.499092698097229, 0.3951866030693054, -0.7729905843734741, 0.6929268836975098, -0.32704898715019226, -0.9592396020889282, 0.47020432353019714, 0.658706784248352, 0.8998413681983948, -0.649195671081543, 0.7880123853683472, 0.7434952855110168, 0.0432724803686142, -0.3393886983394623, -1.5019996166229248, -0.48793745040893555, -0.12760911881923676, 0.04922430217266083, 0.05794627591967583, 0.33336201310157776, 0.04049495607614517, 0.1914013773202896, 0.12177446484565735, -0.5641152858734131, 0.014304004609584808, 1.1501507759094238, 0.10380084812641144, 0.02417922019958496, -1.0472393035888672, -0.23847362399101257, 0.9250755906105042, -0.782932460308075, -1.0512737035751343, -0.4117621183395386, -0.54132479429245, 0.30520063638687134, -0.5147063732147217, -0.20725028216838837, 0.2941526770591736, 0.24781258404254913, 0.5875141024589539, -0.33835846185684204, 0.6307122707366943, 0.9637311697006226, 0.48990553617477417, 0.16601549088954926, 0.21624857187271118, 0.590530514717102, 0.11813992261886597, -0.09607656300067902, 0.6960780620574951, 0.5774877667427063, -0.3335250914096832, -0.50307697057724, -0.48443785309791565, -0.5317755937576294, -0.3782074749469757, -4.451625823974609, 0.21365951001644135, -0.006919883191585541, -0.37079277634620667, 0.14887367188930511, 0.6972799301147461, 0.09124509990215302, -0.7286550402641296, -0.3633583188056946, 0.5544223189353943, -0.1429559290409088, -0.012900792062282562, 0.24560418725013733, 0.5773654580116272, -0.09311491250991821, 0.8794432878494263, -0.34090349078178406, -1.1772350072860718, 0.12979497015476227, 0.4039830267429352, -0.31011220812797546, -1.0905795097351074, -0.3201071619987488, 0.34716901183128357, 0.34789058566093445, 0.5105729103088379, -0.8443007469177246, 0.6744243502616882, -0.8826115131378174, -0.07020395994186401, 0.035084642469882965, -0.3601026237010956, -0.11606266349554062, 0.04767268896102905, -0.17504946887493134, -0.6351749897003174, 0.7078738808631897, -0.24365974962711334, 0.1721196174621582, -0.12844115495681763, -0.30608367919921875, -0.728794515132904, -0.3877851068973541, -0.6565321683883667, 0.763338565826416, -0.3083728849887848, -0.6128227710723877, -0.2876889705657959, 0.2400519847869873, 0.742141842842102, -0.28516051173210144, -0.7446496486663818, -0.36534181237220764, 0.5011888742446899, 0.13615503907203674, -0.13153165578842163, -0.15882453322410583, -0.12878891825675964, -0.3565656244754791, -0.06477230042219162, 0.26243534684181213, -0.8637658953666687, -0.7425530552864075, -0.9314989447593689, -0.2768266797065735, -0.5119848251342773, -0.5905355215072632, -0.8486354351043701, 0.6473084688186646, 1.107352614402771, -0.4653041958808899, 0.7832526564598083, -0.16826727986335754, -1.5336521863937378, -0.24207668006420135, -0.4302160441875458, -0.27252882719039917, -0.3964194655418396, -0.31758880615234375, -0.17351599037647247, -0.6529917120933533, -0.3034469485282898, 0.3113483786582947, 0.24635343253612518, -0.30598753690719604, -0.6882638931274414, 0.10064014792442322, -0.674735426902771, -0.8576371073722839, -0.5334866642951965, 0.6954644322395325, -0.8063886761665344, -0.13297688961029053, 0.7362995147705078, 0.27385181188583374, 0.1460505872964859, 0.38996678590774536, -0.5868200063705444, 0.3699619174003601, 0.15987549722194672, 0.6538371443748474, -0.8915086388587952, -0.03038053959608078, 0.061733052134513855, 0.0675949901342392, 0.18498900532722473, -0.557224452495575, -0.10206502676010132, 0.46542027592658997, 0.0617288276553154, 0.2558249831199646, -0.4195792078971863, 0.27068018913269043, -0.5547363758087158, -0.16552115976810455, -0.7777940630912781, 0.4206273555755615, 0.4748592972755432, 0.4174054265022278, 0.03231704607605934, -0.21242967247962952, 0.6504195928573608, -0.40042033791542053, -0.6273601055145264, -1.3684929609298706, 0.44281619787216187, 0.26162341237068176, 0.059770405292510986, 0.09580424427986145, 0.1707015186548233, -0.509007453918457, -0.5835586786270142, 0.4909268319606781, -0.02287648618221283, 0.5202507376670837, -0.8234204053878784, -0.12418431043624878, 0.08295227587223053, 0.2751311659812927, -0.163997620344162, 0.33924761414527893, 0.025201374664902687, 0.2554779052734375, 0.6019283533096313, 0.6431131362915039, 0.4869777262210846, -0.6592938899993896, 0.21767935156822205, -0.5818510055541992, -0.3902599513530731, 0.16794367134571075, -0.14563928544521332, 0.467673122882843, -0.5879143476486206, 0.15262269973754883, -0.8541287183761597, 0.7736274600028992, -0.05523154139518738, -0.10312490165233612, -0.769283652305603, 0.4792439937591553, -0.733592689037323, -0.3096109926700592, -0.11720691621303558, -0.24322311580181122, 1.2468557357788086, -0.8203759789466858, 0.35168883204460144, 0.13750532269477844, 0.15025097131729126, 0.6662399172782898, -0.3619634211063385, -0.5352557301521301, 0.24389562010765076, -0.5623212456703186, 0.6767885088920593, 0.20698252320289612, 0.11497519910335541, 0.018147878348827362, 0.3051149845123291, -0.20946815609931946, -0.19367679953575134, 0.4729435443878174, 0.4849422574043274, 0.8296071290969849, -0.1064835861325264, 0.3032650649547577, -0.20280258357524872, -0.16288059949874878, -0.2419365644454956, 0.7372255325317383, 0.43192461133003235, -0.48325011134147644, 0.005957636050879955, -0.7960293889045715, -1.3592122793197632, 0.1449582278728485, 0.2939465641975403, 0.9273275136947632, 0.22171315550804138, -0.3122575283050537, -0.21246270835399628, -0.28720948100090027, -0.050372470170259476, -0.11371539533138275, -1.3692303895950317, 0.6044366359710693, -0.1317983865737915, -0.35904890298843384, 0.13056975603103638, -0.0025005042552948, -0.9655643701553345, -0.6462186574935913, 0.24701383709907532, 0.20179632306098938, -1.045814871788025, -0.4001684784889221, -0.034986402839422226, 0.2844189405441284, -0.08138199895620346, 0.2615753710269928, 0.2510465681552887, 0.00881202518939972, -0.1477232426404953, -0.8753001093864441, 0.8473596572875977, -0.04789474979043007, -0.36021140217781067, 0.6079088449478149, -0.6151948571205139, 0.6309079527854919, -0.7826138138771057, 0.21782729029655457, 0.8929640650749207, 0.04733490198850632, 0.3354921340942383, -0.40359026193618774, 0.4731650948524475, 0.09147270023822784, 0.8776935338973999, 0.16550064086914062, -0.2681685984134674, -0.3500016927719116, -0.9054907560348511, 0.41356605291366577, 0.31291866302490234, -0.49945634603500366, 0.007449080236256123, -0.15706458687782288, 0.7464379072189331, -0.1363065242767334, 0.3308103680610657, 0.11286419630050659, -0.2590135633945465, 1.0898863077163696, -0.5430804491043091, -0.46283453702926636, -0.17739352583885193, -0.2525768280029297, 0.1386069357395172, 0.3324732780456543, 0.3666142523288727, -1.1774791479110718, 0.9143713712692261, 0.987971305847168, 0.6587156653404236, -0.07252268493175507, -0.07136490195989609, 0.8853650689125061, -0.5960705876350403, -0.2101752609014511, -1.1911835670471191, -0.0010242387652397156, 0.7021563649177551, 0.23929943144321442, -0.4670514762401581, -0.19222423434257507, -0.14581027626991272, 1.046429991722107, -0.7472963929176331, -0.7233073711395264, -0.052372805774211884, -0.09039385616779327, 0.19342878460884094, 0.4558664858341217, -0.6677274107933044, 0.10324549674987793, 0.0012024939060211182, 0.038882896304130554, 0.30475738644599915, -0.2281646430492401, 1.2782351970672607, -0.38442280888557434, 0.002538742497563362, 0.004700355231761932, -0.11108900606632233, 0.656915009021759, 1.0717569589614868, -0.6925856471061707, 0.18369829654693604, -0.7181553244590759, 0.9125069975852966, 0.6852751970291138, 0.5307263731956482, -0.02873818576335907, -0.25162890553474426, 0.1279851198196411, -0.8711025714874268, 0.5388339161872864, 0.6470117568969727, 0.2685233950614929, -0.43820953369140625, 0.901938259601593, 0.9555675983428955, -1.0469249486923218, -0.8116286396980286, 0.1966923326253891, -0.10300998389720917, -0.30883118510246277, 0.3113369643688202, 0.4645021855831146, 0.16810637712478638, 0.834182858467102, 0.22996467351913452, 0.9243329167366028, 1.2267717123031616, -0.3440072536468506, -0.018176011741161346, 0.9355100393295288, 0.8803232908248901, 1.1912856101989746, 0.18634694814682007, 0.3640124201774597, 0.8570037484169006, -0.5475499629974365, -0.8564132452011108, 0.04259707033634186, 0.0610102042555809, 0.28243857622146606, -0.1191847175359726, 0.1786923110485077, 0.6133115291595459, 0.46342965960502625, 1.3008592128753662, -0.2443270981311798, 0.009383562952280045, -0.3166998624801636, -0.47586268186569214, 0.9290624260902405, -0.16374976933002472, -0.22364792227745056, 0.8670017719268799, -0.6025020480155945, -0.845161497592926, 0.19728930294513702, 0.5554717183113098, -0.33654874563217163, -0.10276827961206436, -0.5633509159088135, -0.35023579001426697, -0.22993919253349304, 1.187409520149231, 1.068996548652649, 0.09048153460025787, 0.2168133705854416, -0.04061966389417648, 0.42327263951301575, -0.030744779855012894, 0.372420072555542, -0.23138034343719482, 0.1272999495267868, -0.19035205245018005, -0.27804720401763916, 0.36126458644866943, 0.03832241892814636, 0.40947115421295166, 0.5401807427406311, -0.15484648942947388, 0.024116050451993942, 0.32085245847702026, 0.8435066938400269, -0.5407155156135559, -0.8272196650505066, -1.0201680660247803, 0.05419638752937317, -1.0011426210403442, -0.10827997326850891, 0.7208981513977051, -0.19947172701358795, -1.0789223909378052, -0.4608566164970398, -0.40885454416275024, 0.030120551586151123, -0.24858343601226807, -0.682948887348175, -0.19787628948688507, 0.6176700592041016, 0.30020689964294434, 0.01280729379504919, 0.6217502355575562, 0.5567423701286316, -0.04425744712352753, -0.2218114286661148, 0.11694018542766571, 0.3922470808029175, 1.002251386642456, -0.30537188053131104, 0.2888738811016083, -1.3081181049346924, 0.5837184190750122, 0.5107446312904358, 0.7275305390357971, -1.6394598484039307, 0.5892655849456787, 0.02387034147977829, -1.0790517330169678, 0.9591072797775269, -0.1915760338306427, -0.11573009192943573, -0.113954558968544, -0.2306053638458252, -0.6695013046264648, 0.31226807832717896, 0.506361186504364, -0.12507213652133942, 0.5944479703903198, 0.8935331702232361, 0.038575902581214905, -0.5677542090415955, 0.2727517783641815, -0.22161224484443665, 0.7367156147956848, -0.9265372157096863, -0.12434380501508713, -0.8376309275627136, -0.756050169467926, -0.48663613200187683, 0.7335272431373596, -0.1769237220287323, -0.6132280826568604, -0.11717021465301514, -0.2743379473686218, -0.3991580605506897, 0.4614984393119812, -0.4358764886856079, -0.3590630292892456, -0.2618180513381958, -0.7100452780723572, -1.2120370864868164, 0.2145802229642868, 0.41931527853012085, -0.43218573927879333, 0.057367533445358276, -0.5865410566329956, 0.12392225861549377, -0.415310263633728, -0.3689175844192505, 0.3567448556423187, -0.2453550398349762, 0.42964547872543335], "5171b641-9ca6-48a0-bde6-d47d021f3c54": [0.0949518084526062, 0.2520538568496704, -0.41825592517852783, -0.46262887120246887, 0.6546002626419067, -0.4981180727481842, 0.4743728041648865, 0.4244198501110077, -0.6169741153717041, -0.4884604513645172, -0.4570925235748291, 0.10571987926959991, -1.2717692852020264, 0.40471336245536804, 0.2043192833662033, 1.0508219003677368, 0.5227285623550415, -0.27996736764907837, 0.07418553531169891, -0.5288759469985962, -0.05467952415347099, -0.29996055364608765, -0.21997250616550446, 0.7061692476272583, 0.3772665560245514, -0.4000568389892578, 0.06808052211999893, 0.2475665658712387, -1.361176609992981, -0.08567146211862564, 0.6309428215026855, -0.30381807684898376, 0.045160822570323944, -0.31706029176712036, 0.30926498770713806, -0.33118873834609985, -0.4626685082912445, -0.5312691330909729, 0.018802128732204437, 0.04126831889152527, -0.47086864709854126, -0.558066189289093, -0.4087761342525482, 0.0024564191699028015, -0.8452634215354919, 0.2857024371623993, -1.0311493873596191, 0.9722974896430969, -0.8418246507644653, 0.03454069793224335, -0.9306350350379944, 0.8009300827980042, -0.14633043110370636, 0.2839469313621521, 0.5609552264213562, 0.9177977442741394, -0.0786052942276001, -0.73268061876297, -0.20751500129699707, -0.6551276445388794, 0.8668099641799927, -0.3760344088077545, 0.7522304058074951, 0.15255048871040344, -0.0051333112642169, -0.1613830178976059, -0.7763110995292664, 0.7027481198310852, -0.8512513041496277, -0.6841204762458801, 0.23517662286758423, 0.2886083126068115, 0.1106257289648056, -0.1714085340499878, 0.5607837438583374, -0.5333291292190552, -0.21630671620368958, 0.36721083521842957, 0.8273609280586243, 0.7703156471252441, 0.10976716876029968, 0.11755990982055664, -0.05095110088586807, 1.0669066905975342, -0.44881969690322876, -0.5552741289138794, -0.415241003036499, 0.1896332949399948, -0.4128902554512024, 0.6934216618537903, -0.1274501383304596, -0.7860404849052429, 0.8990761041641235, 0.1557437777519226, 0.35262632369995117, -0.17954358458518982, 0.6364743113517761, 0.15208971500396729, 0.5549584031105042, 0.037733905017375946, -0.3059004247188568, -1.0548425912857056, 0.36439958214759827, 0.1948433369398117, -1.3299208879470825, -0.5514706373214722, -0.5759433507919312, -0.5197026133537292, 0.16337160766124725, 0.5281547904014587, -0.21765457093715668, -0.41176602244377136, -0.30355897545814514, 0.019216515123844147, -0.8745276927947998, 1.4696255922317505, 0.6278629899024963, 0.08489714562892914, -0.1792040318250656, 0.09941519796848297, 0.9547231197357178, 0.9287545680999756, 0.2264384627342224, 1.2822479009628296, 0.2846033573150635, 0.6697418689727783, 0.3567926287651062, 0.8771283030509949, -0.08483472466468811, -1.1589339971542358, 0.48587140440940857, 0.9277381300926208, 0.2811860740184784, -0.17701634764671326, -0.368838369846344, 0.19229993224143982, 0.4609168767929077, 0.14163123071193695, 0.7054896950721741, -0.3398185968399048, -0.2857351303100586, -0.5323613882064819, 0.2833273410797119, -0.021155277267098427, 0.768420398235321, 0.05001699924468994, -0.21643120050430298, -1.439005732536316, 0.08077310025691986, 1.049684762954712, 0.2607596814632416, 0.6526879668235779, 0.8216688632965088, -1.0159637928009033, -0.03831477463245392, 0.48150455951690674, -0.15796753764152527, 0.36479806900024414, -0.7222157120704651, 0.5379171371459961, 0.3650828003883362, -0.10645022988319397, -0.485870361328125, -0.29717597365379333, -0.46970927715301514, 0.3503890633583069, 0.1434665471315384, -0.06440334767103195, -0.19071105122566223, 0.31515613198280334, -0.3692484200000763, -0.4303864538669586, 1.0640883445739746, -0.19513876736164093, -0.09214840829372406, -0.062424302101135254, 1.1068849563598633, 0.12336931377649307, 0.3833900988101959, -0.3141303062438965, -0.957050085067749, 0.6373403668403625, -0.19296127557754517, -0.6205189824104309, -0.1596563309431076, -0.7599338889122009, 1.4346522092819214, 0.32543084025382996, -0.24184900522232056, 0.022630561143159866, -1.165242314338684, -1.0074679851531982, -0.4712446331977844, 0.7627682089805603, 1.0140342712402344, -0.5307838916778564, -0.04726962745189667, 0.5942511558532715, -0.12194816768169403, 0.6570497155189514, 0.03503493219614029, 0.5256442427635193, 0.1800372302532196, -0.8064582347869873, -1.0798020362854004, 0.6971099376678467, 0.536607027053833, -0.11580133438110352, -0.01023302972316742, 0.101039819419384, 0.003648512065410614, -0.09674005955457687, 0.545531690120697, -0.4690829813480377, 0.84462970495224, 0.05032019317150116, 0.13964353501796722, -0.6205265522003174, 0.7067992687225342, -1.0532591342926025, 0.3711387515068054, -0.6270044445991516, -1.2336926460266113, 0.6669931411743164, -0.4288172721862793, 1.6327942609786987, 0.8476064801216125, -0.34225910902023315, -0.4138493537902832, 0.42184963822364807, -0.2056850641965866, -0.08802449703216553, 0.2761552333831787, 0.31548646092414856, -0.20080438256263733, -0.0885637104511261, 0.11997833847999573, -0.38723024725914, 0.6479032635688782, -0.8063385486602783, 0.41165947914123535, 1.2987769842147827, -0.476121723651886, 0.6210886240005493, 0.7161351442337036, -0.24609220027923584, 0.4310815632343292, -0.32517847418785095, -0.472247451543808, -0.35408079624176025, -0.7654662132263184, -0.4972926676273346, 0.5229707360267639, -1.1040291786193848, 0.5286170244216919, -0.23171013593673706, -0.9721914529800415, 0.26228341460227966, 0.8117140531539917, 0.6797192692756653, -0.6684526205062866, 0.701071560382843, 0.5872693657875061, -0.2786485254764557, -0.43175217509269714, -1.5018210411071777, -0.8574617505073547, -0.017236875370144844, 0.12895558774471283, 0.13641390204429626, 0.44248896837234497, 0.02814061939716339, 0.3210518956184387, 0.08395665138959885, -0.5674311518669128, 0.17390331625938416, 1.1419272422790527, 0.38706737756729126, -0.07771386206150055, -1.0551655292510986, -0.020526980981230736, 0.9888253808021545, -0.6132213473320007, -1.2251280546188354, -0.2652384340763092, -0.3382833003997803, -0.08141377568244934, -0.5478439927101135, -0.25769782066345215, 0.43792924284935, 0.21815352141857147, 0.6592926383018494, -0.4139404296875, 0.4057970643043518, 1.3501495122909546, 0.3661215305328369, 0.14554202556610107, 0.030068710446357727, 0.23981258273124695, 0.0033427858725190163, -0.3112267553806305, 0.21276934444904327, 0.7627626657485962, -0.0544634573161602, -0.48143184185028076, -0.35157784819602966, -0.02466251328587532, -0.5027593374252319, -4.365934371948242, 0.21362455189228058, 0.10172491520643234, -0.3179861009120941, 0.5719656944274902, 0.40070265531539917, 0.4716993570327759, -0.909359872341156, -0.8244770765304565, 0.6053401231765747, -0.38853684067726135, -0.07538387179374695, 0.04657873511314392, 0.5659584999084473, 0.2685827612876892, 0.6462081074714661, 0.03231675177812576, -1.0195286273956299, 0.4055991470813751, 0.28186967968940735, -0.08108381927013397, -0.977763831615448, -0.3446001708507538, 0.3990306258201599, 0.5343168377876282, 0.12118057161569595, -1.3503413200378418, 1.051317811012268, -1.0367015600204468, -0.2266198992729187, 0.3462095558643341, -0.6098825931549072, 0.004617735743522644, 0.1452130228281021, -0.07512975484132767, -0.26918846368789673, 0.5243887901306152, -0.10953523218631744, 0.2940044105052948, -0.2520124316215515, -0.45013681054115295, -0.826217770576477, -0.37716731429100037, -0.43157246708869934, 0.5920640826225281, -0.11368905007839203, -0.42157745361328125, -0.029313456267118454, 0.4993070662021637, 0.7423369288444519, -0.17265112698078156, -0.80615234375, -0.4579363465309143, 0.13896284997463226, -0.15718752145767212, -0.5199913382530212, -0.061549652367830276, 0.08260562270879745, -0.27388209104537964, 0.11509890854358673, 0.30750229954719543, -0.520162045955658, -0.3763138949871063, -0.4221325218677521, -0.05479629710316658, -0.2071066051721573, -0.615826427936554, -0.8253992199897766, 0.654881477355957, 1.160442590713501, -0.27704694867134094, 0.36872175335884094, -0.0948566123843193, -1.5899747610092163, -0.24653033912181854, 0.020729750394821167, -0.3282516598701477, -0.16450029611587524, -0.3969017565250397, -0.04799269884824753, -0.4705158472061157, -0.21697604656219482, 0.3565715551376343, 0.5395897030830383, 0.08255543559789658, -1.169806957244873, 0.10441082715988159, -0.43333515524864197, -0.6874110698699951, -0.324503093957901, 0.8259692788124084, -1.0649150609970093, 0.0751415342092514, 0.6191765069961548, 0.20972378551959991, 0.3232904076576233, 0.28016507625579834, -0.5378788709640503, 0.8154289722442627, -0.10764764249324799, 0.22312264144420624, -0.820082426071167, 0.4230118989944458, 0.018732622265815735, 0.5664647221565247, -0.1249588280916214, -0.6565234661102295, -0.0244482159614563, 0.3035815358161926, 0.0704134926199913, 0.3078772723674774, -0.4075940251350403, 0.29190537333488464, -0.6694661378860474, -0.2439272254705429, -0.6150112748146057, 0.3891600966453552, 0.269165575504303, 0.39642682671546936, -0.08470079302787781, -0.4337159991264343, 0.750457763671875, -0.5784740447998047, -0.5078773498535156, -1.0075061321258545, 0.3935474753379822, 0.20189842581748962, -0.109626904129982, 0.24913159012794495, -0.17988742887973785, -0.21638618409633636, -0.7030995488166809, 0.28935712575912476, 0.0028065145015716553, 0.6598762273788452, -0.8413893580436707, -0.16374166309833527, -0.1942569762468338, 0.10942952334880829, -0.05468123406171799, 0.15911950170993805, -0.024503685534000397, 0.5129828453063965, 0.34908226132392883, 0.6884831190109253, 0.8818660974502563, -0.40857943892478943, 0.6105849742889404, -0.45229536294937134, -0.4007191061973572, 0.037273108959198, 0.006089635193347931, 0.17678871750831604, -0.6314215064048767, -0.1012117862701416, -0.5926688313484192, 0.8888927698135376, 0.15472353994846344, -0.11904643476009369, -0.6052512526512146, 0.4698042869567871, -0.8026868104934692, -0.499764621257782, 0.23018887639045715, -0.17435158789157867, 1.2163543701171875, -1.0444715023040771, 0.3850231170654297, -0.37489914894104004, -0.1063738539814949, 0.3983025848865509, -0.40574613213539124, -0.7029409408569336, 0.20120839774608612, -0.3054566979408264, 0.5100898742675781, -0.00967877171933651, -0.14194467663764954, -0.05128149688243866, 0.23531167209148407, 0.19888445734977722, 0.34070974588394165, 0.2286902368068695, 0.4987948536872864, 1.0273445844650269, 0.008026883006095886, 0.43253952264785767, 0.021245494484901428, -0.4263552129268646, -0.09998412430286407, 0.7467119693756104, 0.48825913667678833, -0.3957757353782654, -0.10974309593439102, -0.7906572818756104, -1.122476577758789, 0.3519260287284851, 0.26238325238227844, 0.3485509157180786, -0.06360149383544922, -0.4254925549030304, 0.024931352585554123, -0.3860350549221039, 0.031293414533138275, -0.03910565376281738, -1.3643354177474976, 0.4626409411430359, 0.0467282235622406, -0.29706138372421265, -0.03638390451669693, -0.3251386880874634, -0.730248212814331, -0.2942085266113281, 0.23135961592197418, 0.09598442912101746, -0.8133988380432129, -0.3011239171028137, -0.06216326355934143, 0.284136563539505, -0.3963400423526764, 0.3110973536968231, 0.24293604493141174, -0.06219644844532013, -0.3264524042606354, -0.9014756083488464, 0.6201534271240234, -0.3911161720752716, -0.2966742515563965, 0.2105749398469925, -0.5125411748886108, 0.42885416746139526, -0.6579253673553467, 0.19910310208797455, 0.9558963179588318, 0.22623980045318604, -0.12755495309829712, -0.3901047110557556, 0.9681397676467896, 0.17175045609474182, 0.6927503347396851, 0.4010387659072876, 0.02637290395796299, -0.1473754346370697, -0.4748293161392212, 0.7411295771598816, 0.22489607334136963, -0.39391833543777466, 0.2996561527252197, 0.06404383480548859, 0.976493239402771, 0.21483278274536133, 0.6191199421882629, 0.08957444876432419, -0.38467586040496826, 0.9086294770240784, -0.8206222653388977, -0.49404197931289673, 0.16573692858219147, -0.35522764921188354, 0.3087775707244873, 0.11665284633636475, 0.28206878900527954, -1.5196257829666138, 0.6068947315216064, 0.9329369068145752, 0.5714000463485718, 0.02309168130159378, 0.06694649159908295, 0.7275781631469727, -0.5652239322662354, 0.1514565497636795, -1.1828415393829346, 0.19042137265205383, 0.4363963305950165, 0.9391431212425232, -0.24621333181858063, -0.23046962916851044, -0.04296378791332245, 1.0170044898986816, -0.6352507472038269, -0.9811034798622131, 0.4656147360801697, -0.2691962718963623, 0.15431295335292816, 0.5552775859832764, -1.0041059255599976, 0.383159875869751, 0.3756340444087982, 0.05576790124177933, -0.0434567928314209, 0.000775778666138649, 0.9438437819480896, -0.1304135024547577, -0.039588138461112976, -0.035105299204587936, 0.08413931727409363, 0.7435063123703003, 1.2667899131774902, -0.6764893531799316, 0.3328360319137573, -0.5983697175979614, 0.866409182548523, 0.8937612771987915, 0.5155224800109863, -0.09922841936349869, -0.06609942764043808, 0.2174924910068512, -1.1471786499023438, 0.35719576478004456, 0.9881339073181152, 0.32779696583747864, -0.5647606253623962, 0.5709945559501648, 0.6006991267204285, -1.220067024230957, -0.5184618234634399, 0.4650871157646179, -0.16858893632888794, -0.48954689502716064, 0.19062915444374084, 0.2706162929534912, -0.037239089608192444, 0.8139773607254028, 0.4813964366912842, 0.5277838706970215, 1.2541794776916504, -0.07218751311302185, 0.0862644761800766, 0.8152390122413635, 0.8082726001739502, 1.0759645700454712, 0.12485436350107193, 0.13178521394729614, 1.0655322074890137, -1.1282213926315308, -0.46803298592567444, 0.020835915580391884, 0.18116545677185059, -0.22870489954948425, 0.18083523213863373, 0.051399752497673035, 0.5025069713592529, 0.4136047661304474, 1.536275863647461, -0.5268556475639343, -0.031653497368097305, -0.3234836757183075, -0.4859410226345062, 0.6832224726676941, 0.13249553740024567, 0.07206620275974274, 0.5818870663642883, -0.6663917899131775, -0.7347617745399475, -0.19891276955604553, 0.8344887495040894, -0.26821938157081604, -0.17121322453022003, -0.17770850658416748, -0.13502025604248047, -0.45525461435317993, 1.0326217412948608, 0.9688259363174438, -0.10321515798568726, 0.045639075338840485, -0.11916372179985046, 0.21173608303070068, -0.47685202956199646, 0.3897016942501068, 0.017421770840883255, -0.29608672857284546, 0.11778519302606583, -0.22369158267974854, 0.2221829742193222, -0.02291850931942463, 0.24624492228031158, 0.1984385848045349, -0.44804713129997253, -0.06303401291370392, 0.12538903951644897, 0.7790204882621765, -0.12074481695890427, -0.9710496664047241, -0.5670247077941895, -0.35879701375961304, -0.8816966414451599, -0.15899546444416046, 0.48446035385131836, -0.5837695002555847, -1.286766529083252, -0.8036960959434509, -0.3551778793334961, -0.15781258046627045, -0.5700578689575195, -0.8832433223724365, -0.5262264013290405, 0.5877713561058044, 0.4368215799331665, 0.3003169298171997, 0.6772633194923401, 0.36871108412742615, 0.29704180359840393, -0.48457953333854675, 0.13355430960655212, 0.42582786083221436, 0.8512991070747375, -0.7231358289718628, 0.4387432634830475, -1.3550934791564941, 0.5556011199951172, 0.4385005533695221, 0.8098316192626953, -1.773061990737915, 1.0409700870513916, 0.02748073637485504, -0.9591434001922607, 0.9005146622657776, -0.13739624619483948, -0.26740115880966187, -0.3502209782600403, -0.14825180172920227, -0.15865516662597656, 0.37277939915657043, 0.7266610264778137, -0.05267494171857834, 0.7390692830085754, 0.9284879565238953, -0.07489786297082901, -0.551486611366272, 0.16864779591560364, -0.31392115354537964, 0.4115559756755829, -0.8806976675987244, -0.2813332676887512, -0.5568259358406067, -0.9729512333869934, -0.7234752178192139, 0.7030715942382812, -0.13571202754974365, -0.9932419657707214, -0.1302129030227661, -0.29872190952301025, -0.008388727903366089, 0.22864887118339539, -0.345325231552124, -0.66543048620224, -0.00022219866514205933, -0.9904650449752808, -0.8679530024528503, -0.22557276487350464, 0.5203531980514526, -0.759131908416748, -0.2540295124053955, -0.633093535900116, 0.12567782402038574, -0.5225141048431396, -0.48664379119873047, 0.7905895709991455, 0.08547194302082062, 0.1730768233537674], "8316e5ec-9820-47ce-9a03-0a5902c9bd70": [0.07649307698011398, 0.4195915758609772, -0.382304310798645, -0.059309251606464386, 0.8786383271217346, -0.5489755868911743, 0.15736538171768188, 0.5243488550186157, -0.6301571726799011, -0.3401809334754944, -0.27942928671836853, 0.2749406099319458, -0.9832689166069031, 0.4841756224632263, 0.5415869951248169, 0.9186639189720154, 0.920971691608429, -0.12702405452728271, -0.08964000642299652, -0.01464133057743311, -0.06567437201738358, 0.004711806774139404, -0.1579095721244812, 0.8533645272254944, 0.27594470977783203, -0.5166324377059937, -0.1674177199602127, 0.293931782245636, -1.69326913356781, -0.059487804770469666, 0.20946092903614044, -0.36169517040252686, 0.44102397561073303, -0.21387892961502075, -0.017442934215068817, -0.0868397206068039, -0.47065725922584534, -0.5845764875411987, 0.22536394000053406, 0.14880211651325226, -0.22874459624290466, -0.43691912293434143, -0.5911779999732971, 0.3907046914100647, -1.0919227600097656, 0.14322592318058014, -0.9737431406974792, 0.5320384502410889, -0.4165606200695038, 0.22156041860580444, -1.0557647943496704, 0.13166844844818115, -0.16968299448490143, 0.22114060819149017, 0.7232418060302734, 0.8574714660644531, -0.2847716510295868, -1.1595962047576904, -0.34973156452178955, -0.48701825737953186, 0.22021061182022095, -0.24293746054172516, 0.9161639213562012, 0.09520506858825684, 0.12587374448776245, -0.2397104650735855, -0.03245469182729721, 0.7910580635070801, -1.220954179763794, -0.661575436592102, -0.2471497505903244, 0.21070954203605652, 0.05922633409500122, -0.3286803364753723, 0.40671032667160034, -0.6712021827697754, -0.19454139471054077, 0.5610237121582031, 0.5252965688705444, 1.0992251634597778, -0.045764707028865814, 0.3314409554004669, 0.19037796556949615, 0.6712518930435181, -0.22281646728515625, -0.48532575368881226, -0.4823245704174042, -0.11527854949235916, -0.59566330909729, 0.9053904414176941, -0.0002717450261116028, -0.6221561431884766, 0.6286760568618774, 0.7451869249343872, 0.5364550352096558, -0.06430945545434952, 0.7422431111335754, 0.25982600450515747, 0.4567553699016571, 0.3241603970527649, -0.234142005443573, -1.2737982273101807, -0.02984541468322277, -0.2025432139635086, -1.3646719455718994, -0.6791254878044128, -0.6037581562995911, -0.21606841683387756, -0.32105156779289246, 0.4496493339538574, -0.4788033962249756, -0.6985809206962585, -0.5394334197044373, -0.16139093041419983, -0.5639393925666809, 1.5074602365493774, 0.6740906834602356, 0.25703802704811096, -0.5207310318946838, 0.17291554808616638, 1.11491060256958, 1.4666255712509155, 0.49488380551338196, 1.4144970178604126, 0.3928886651992798, 0.8201215863227844, 0.38170650601387024, 1.1160215139389038, -0.1744290292263031, -0.4860038757324219, -0.07256603986024857, 1.1195778846740723, 0.1098782867193222, -0.002981327474117279, -0.21475034952163696, -0.20763245224952698, 0.2733844816684723, 0.4454898238182068, 0.4948607385158539, -0.4831598699092865, -0.10779696702957153, 0.10589021444320679, 0.28417307138442993, -0.056525442749261856, 0.9945225119590759, 0.17182904481887817, -0.5888742208480835, -1.259417176246643, -0.5283300876617432, 1.0213780403137207, 0.3902886211872101, 1.0204945802688599, 0.485025018453598, -0.6522347927093506, -0.08837536722421646, 0.6462541818618774, 0.1836467981338501, 0.05731695890426636, -0.8816019296646118, 0.21112613379955292, 0.5872379541397095, -0.1358456313610077, -0.2884865999221802, -0.020434580743312836, -0.45125165581703186, -0.07517088204622269, 0.10325159132480621, 0.03324797749519348, -0.2954871356487274, 0.3010161519050598, -0.6218166947364807, -0.5799021124839783, 0.7328354716300964, -0.11107704043388367, -0.6015677452087402, 0.24482813477516174, 1.1362015008926392, 0.3055146634578705, 0.2954060733318329, -0.012100465595722198, -0.9140047430992126, 0.7660874724388123, 0.10114091634750366, -0.8067160844802856, -0.25067204236984253, -0.401593416929245, 1.6458261013031006, -0.32147157192230225, -0.16152258217334747, -0.08036420494318008, -1.2964332103729248, -0.688869059085846, -0.2846621572971344, 0.7639904618263245, 1.1235250234603882, -0.23358798027038574, 0.01839490979909897, 0.47903141379356384, 0.13984838128089905, 0.8449211716651917, 0.5101885795593262, 0.7628697156906128, -0.3021639883518219, -1.0288329124450684, -1.0264004468917847, 0.7074869871139526, 0.7329650521278381, -0.33592212200164795, 0.45082584023475647, 0.22741353511810303, -0.48588699102401733, 0.018641546368598938, 1.1027250289916992, -0.39849424362182617, 0.8776106834411621, 0.3716103136539459, 0.6274875402450562, -0.5949938297271729, 0.5708740949630737, -0.9362041354179382, 0.38605859875679016, -0.26945310831069946, -0.8058979511260986, 0.29826849699020386, -0.1949358582496643, 1.6960837841033936, 1.3042628765106201, -0.44399556517601013, -0.7967167496681213, 0.36751991510391235, 0.18948689103126526, -0.031969115138053894, 0.19492989778518677, 0.470233678817749, -0.24336451292037964, -0.4912567734718323, -0.2132091373205185, -0.14912331104278564, 0.39282679557800293, -0.944233775138855, 0.35298216342926025, 1.332263708114624, -0.2689119577407837, 0.6264364123344421, 0.5459333062171936, 0.1991986632347107, 0.2609096169471741, -0.7827045917510986, -0.5657777786254883, -0.02965528517961502, -0.42909252643585205, -0.6594587564468384, 0.8172953128814697, -0.592008113861084, 0.5305265188217163, -0.45580899715423584, -0.7969176173210144, 0.05641957372426987, 0.5777556896209717, 0.9621332287788391, -0.5620583295822144, 0.7039220333099365, 0.6490623354911804, -0.3871079683303833, -0.4312291443347931, -1.7046871185302734, -0.5213269591331482, -0.12310201674699783, 0.13552917540073395, 0.3618873357772827, 0.29682448506355286, 0.11715574562549591, -0.18546408414840698, 0.022030554711818695, -0.49036267399787903, 0.09508106112480164, 0.9171097278594971, -0.06256753951311111, -0.049595654010772705, -1.1833744049072266, -0.2914707362651825, 1.2382622957229614, -0.9862695932388306, -1.4366921186447144, -0.4328368306159973, -0.6065964698791504, 0.3604418635368347, -0.7482519745826721, 0.21465936303138733, 0.18263578414916992, -0.059917278587818146, 0.4705418348312378, -0.07552742958068848, 0.9697954654693604, 0.8941057920455933, -0.14673671126365662, 0.306098997592926, 0.3896033763885498, 0.3955308794975281, -0.05076323449611664, -0.10911129415035248, 0.37456440925598145, 0.3426273763179779, -0.19516858458518982, -0.42570793628692627, -0.12573319673538208, 0.039886150509119034, -0.6435168385505676, -4.123345851898193, 0.35420727729797363, -0.11149290949106216, -0.6543855667114258, 0.30451735854148865, 0.18126821517944336, 0.35273075103759766, -1.0019152164459229, -0.5239916443824768, 0.34389108419418335, -0.29300129413604736, 0.008099641650915146, 0.4088204801082611, 0.6377748250961304, 0.32605504989624023, 0.520620584487915, -0.21252192556858063, -0.9202132225036621, -0.021216988563537598, 0.32051217555999756, -0.030136361718177795, -1.1300894021987915, -0.5513709187507629, 0.6384384632110596, 0.10698647797107697, 0.6610097885131836, -1.2271521091461182, 0.7201592922210693, -0.9084382653236389, -0.5488759279251099, 0.1727292835712433, -0.5779042840003967, -0.009627443738281727, -0.04896274954080582, 0.1582551896572113, -0.3395557403564453, 0.9140089154243469, -0.1029161736369133, 0.10839089751243591, -0.34429505467414856, -0.8442021608352661, -0.8558147549629211, -0.05713767558336258, -0.22786661982536316, 0.8747367262840271, -0.13830551505088806, -0.45370179414749146, -0.2872970700263977, 0.3342868983745575, 0.8596991300582886, -0.28869199752807617, -1.0925954580307007, -0.5795601010322571, 0.5034008026123047, -0.41854485869407654, -0.2621721029281616, -0.00536113977432251, -0.05038418620824814, -0.6111814379692078, -0.16628718376159668, 0.3151724636554718, -0.8118001222610474, -0.7131906747817993, -0.4870956540107727, -0.7486834526062012, -0.32756155729293823, -1.0226662158966064, -0.7155105471611023, 0.5925314426422119, 0.9646056294441223, -0.15171626210212708, 0.594050943851471, -0.4335727393627167, -1.593064308166504, 0.07221253961324692, -0.5041643977165222, -0.5224391222000122, -0.5035982131958008, -0.9217230081558228, 0.3721793293952942, -0.8660616874694824, -0.29339486360549927, 0.4260747730731964, 0.30480527877807617, -0.14300459623336792, -0.42778921127319336, -0.1908581703901291, -0.27121126651763916, -0.893324077129364, -0.4659383296966553, 0.8942128419876099, -0.7745328545570374, 0.47240883111953735, 0.5753095746040344, 0.4636012315750122, 0.20564775168895721, 0.7516244649887085, -0.6239625215530396, 0.8717629909515381, 0.30077993869781494, 0.6317667961120605, -0.6826307773590088, 0.44477933645248413, -0.5512223243713379, 0.11296561360359192, -0.17451666295528412, -0.7121736407279968, -0.284038245677948, 0.384944885969162, 0.007768966257572174, 0.23066872358322144, -0.2185622900724411, 0.3262961804866791, -0.872783362865448, -0.20799694955348969, -0.552222490310669, 0.6135757565498352, 0.8187667727470398, 0.6660146117210388, 0.20988614857196808, -0.40130338072776794, 0.43008288741111755, -0.6178333759307861, -0.6646567583084106, -1.20851731300354, 0.5036487579345703, 0.21056300401687622, 0.3533813953399658, 0.317568838596344, -0.02169753611087799, -0.5710391402244568, -0.2716958522796631, 0.24918140470981598, 0.028675656765699387, 0.4509035348892212, -0.7318105697631836, -0.5547502040863037, -0.07270549982786179, 0.7645658254623413, -0.044324055314064026, 0.25176942348480225, -0.11143041402101517, 0.27064353227615356, 0.42160120606422424, 0.820945680141449, 0.4391704201698303, -0.6176727414131165, 0.20322710275650024, -0.49805164337158203, -0.22668319940567017, 0.13146889209747314, 0.05914999544620514, 0.5490656495094299, -1.0231122970581055, 0.22946813702583313, -0.8566754460334778, 0.3930053114891052, 0.15331844985485077, -0.0028481557965278625, -0.7499500513076782, 0.3804847300052643, -0.708968460559845, -0.29466551542282104, 0.2599136531352997, -0.12460619956254959, 0.9389276504516602, -0.5476651191711426, 0.08187729120254517, 0.061192989349365234, 0.19977083802223206, 0.5749265551567078, -0.43896517157554626, -0.46760740876197815, 0.30986273288726807, -0.49651315808296204, 0.754189133644104, 0.4965759515762329, -0.05860214680433273, -0.04327790439128876, 0.1289968192577362, -0.3491668999195099, -0.10472977161407471, 0.6800530552864075, 0.21498021483421326, 0.7148755192756653, -0.16611528396606445, 0.24503734707832336, -0.15629932284355164, 0.017035655677318573, -0.14760759472846985, 0.7818038463592529, 0.30815067887306213, -0.26639726758003235, 0.18790222704410553, -0.8024197220802307, -1.048288345336914, 0.19713851809501648, -0.05114509165287018, 0.5020440220832825, 0.11427655816078186, -0.20060959458351135, -0.08656799793243408, -0.36238837242126465, 0.13231144845485687, 0.016822688281536102, -1.5302759408950806, 0.48876509070396423, -0.056127067655324936, -0.4239599406719208, -0.07634614408016205, -0.29571783542633057, -1.19942045211792, -0.7784714102745056, 0.42787453532218933, -0.10972318053245544, -0.7977173328399658, -0.19461777806282043, 0.1131577342748642, -0.1080445647239685, -0.20254452526569366, 0.17535752058029175, 0.5244271755218506, 0.17871853709220886, -0.2970261573791504, -0.8779438138008118, 0.5644811391830444, -0.3064959645271301, -0.23439182341098785, 0.4117678701877594, -0.6739423274993896, 0.5912768244743347, -0.60662442445755, 0.023796446621418, 0.73735111951828, 0.11725553870201111, 0.2324281930923462, -0.890288233757019, 0.4900085926055908, -0.043945085257291794, 0.9152324199676514, 0.23993977904319763, 0.234106183052063, -0.4532185196876526, -0.46803873777389526, 0.2259179651737213, -0.004333287477493286, -0.2541526257991791, -0.11812353134155273, 0.12002268433570862, 0.876476526260376, 0.12945348024368286, 0.18132400512695312, -0.34468090534210205, -0.12913085520267487, 1.0653259754180908, -0.7499838471412659, -0.7474441528320312, 0.13714922964572906, -0.5118880867958069, 0.04669392481446266, 0.1278773993253708, 0.33693552017211914, -1.126598834991455, 0.9676599502563477, 1.1162296533584595, 0.3591920733451843, -0.07260183244943619, -0.44380539655685425, 0.5669143795967102, -0.39979687333106995, -0.12449276447296143, -0.9204768538475037, 0.5193593502044678, 0.6151619553565979, 0.3142808675765991, -0.5633750557899475, -0.14051198959350586, -0.34729811549186707, 0.7984819412231445, -0.8506196737289429, -0.635919988155365, 0.5115702152252197, 0.012342393398284912, -0.0660768374800682, 0.6062579154968262, -0.8335149884223938, -0.11314290016889572, 0.44914311170578003, -0.07436917722225189, 0.1386013925075531, -0.5545040965080261, 1.300247311592102, -0.220084547996521, 0.1238567903637886, 0.42478716373443604, -0.17910681664943695, 0.47175586223602295, 1.0779736042022705, -0.6237701177597046, -0.05406666547060013, -0.6174050569534302, 0.841204047203064, 0.4929437041282654, 0.21093600988388062, -0.18929387629032135, 0.26067662239074707, 0.11961376667022705, -1.088316798210144, -0.01432478055357933, 0.7926619052886963, 0.37591007351875305, -0.5748874545097351, 0.6464921832084656, 0.5518039464950562, -0.7503494024276733, -0.46516740322113037, 0.15197765827178955, -0.6611586809158325, 0.025306791067123413, 0.2879692316055298, 0.32147908210754395, -0.08036359399557114, 1.28648042678833, 0.49431005120277405, 0.5390995740890503, 1.2328376770019531, -0.4519560933113098, 0.1443849503993988, 0.8321347236633301, 1.0366456508636475, 1.105947732925415, 0.6096577644348145, 0.33351194858551025, 1.050756812095642, -1.3287016153335571, -0.9025180339813232, -0.29739412665367126, -0.20395368337631226, 0.2051871120929718, 0.37921828031539917, -0.28722864389419556, 0.4974445700645447, 0.22090217471122742, 1.5141191482543945, -0.0996166467666626, 0.014821529388427734, -0.10113354027271271, -0.695044219493866, 0.8685263395309448, 0.18197153508663177, -0.3919515311717987, 0.5588608980178833, -0.33349430561065674, -0.7314988970756531, 0.011717420071363449, 0.40165236592292786, 0.1733199506998062, 0.04113210365176201, -0.7349986433982849, 0.23016738891601562, -0.5449657440185547, 1.0751993656158447, 0.9061588644981384, 0.1710168868303299, -0.04574635624885559, 0.2852569818496704, 0.5937218070030212, -0.2675890326499939, 0.2837059199810028, 0.007906205952167511, -0.0034589990973472595, 0.05950513854622841, -0.47986605763435364, 0.3134062886238098, 0.4043925106525421, 0.2593936324119568, 0.5934998989105225, 0.056743964552879333, 0.2557457387447357, 0.2067900449037552, 0.3857886493206024, -0.3081324100494385, -0.7316551804542542, -0.9522768259048462, -0.2449672818183899, -1.3255531787872314, -0.29682856798171997, 0.4975588619709015, -0.1147889643907547, -1.1166566610336304, -0.2877855598926544, -0.5663676261901855, 0.535351037979126, -0.29812929034233093, -0.3698377013206482, -0.3486115634441376, 0.780659019947052, 0.3319073021411896, 0.004899155348539352, 0.5342624187469482, 0.4794718027114868, 0.10078390687704086, -0.050333522260189056, 0.5050487518310547, 0.1701805293560028, 1.0585025548934937, -0.33946502208709717, 0.29442986845970154, -1.225581407546997, 0.5490492582321167, 0.7464309334754944, 0.9816048741340637, -1.6358708143234253, 0.8471497893333435, -0.18712350726127625, -1.0238935947418213, 0.7503461837768555, -0.11435176432132721, -0.3000624179840088, -0.4291335642337799, -0.49398043751716614, -0.5153862833976746, 0.17260664701461792, 0.7730624079704285, -0.14721901714801788, 0.9210963845252991, 0.5877959132194519, 0.2357925921678543, -0.45938897132873535, -0.03314679116010666, -0.1746935397386551, 0.236566960811615, -0.8609175682067871, -0.36931899189949036, -0.5712858438491821, -0.890986442565918, -0.29426345229148865, 0.7391545176506042, -0.2842589318752289, -0.7656803131103516, -0.059186775237321854, -0.8426915407180786, -0.4492441415786743, 0.34445086121559143, -0.3758883774280548, -0.4927029311656952, -0.3386196196079254, -0.8420255184173584, -1.0262832641601562, 0.24721650779247284, 0.45274269580841064, -0.6417738795280457, 0.14243650436401367, -0.8412784934043884, 0.029231920838356018, -0.4154723584651947, -0.24362225830554962, 0.8347492218017578, -0.07726415991783142, 0.07701638340950012], "5e8bf41b-f072-4f1e-a2c9-367cee63d816": [0.03134617209434509, 0.04914914071559906, -0.15426596999168396, 0.09299787878990173, 0.6925920844078064, -0.49453186988830566, 0.16364344954490662, 0.34387850761413574, -0.7924684286117554, -0.39680013060569763, -0.3882609009742737, -0.06309548765420914, -1.004378318786621, 0.37240511178970337, 0.3767862617969513, 0.8781993389129639, 0.650666356086731, -0.40520915389060974, -0.1587505042552948, -0.06287588179111481, 0.12885233759880066, 0.040902502834796906, -0.06057775020599365, 0.646832287311554, 0.7570375800132751, -0.47814035415649414, -0.4367274045944214, 0.20861296355724335, -1.4145487546920776, -0.25311586260795593, 0.08086363971233368, -0.380627304315567, 0.2458922266960144, -0.239126056432724, 0.326613187789917, -0.24911776185035706, -0.6611106395721436, -0.579537034034729, 0.24224448204040527, 0.0006248876452445984, -0.6428194642066956, -0.28301507234573364, -0.6225520968437195, 0.11985987424850464, -1.0058808326721191, 0.3643770217895508, -1.0675795078277588, 0.6080480813980103, -0.8314186930656433, 0.6098953485488892, -0.9129367470741272, 0.2739570140838623, 0.00305117666721344, -0.056078433990478516, 0.3206065893173218, 0.9267075657844543, 0.03922232612967491, -1.1669656038284302, -0.23698748648166656, -0.8188750743865967, 0.5142742991447449, -0.3920457661151886, 0.7973544001579285, -0.016381196677684784, -0.024055372923612595, -0.2699365019798279, -0.5106706619262695, 0.5841569304466248, -1.024644136428833, -0.5721834897994995, -0.36853793263435364, 0.31039321422576904, 0.23962217569351196, -0.22796005010604858, 0.07162129878997803, -0.33850425481796265, 0.04433593526482582, 0.42229095101356506, 0.67170649766922, 0.9896830320358276, -0.11778524518013, 0.39780762791633606, 0.3291301727294922, 0.724947452545166, -0.7597670555114746, -0.32913118600845337, -0.5603245496749878, 0.18958145380020142, -0.4683000147342682, 0.5994573831558228, -0.08306077122688293, -0.635881781578064, 0.6890491247177124, 0.5228016376495361, 0.46360915899276733, 0.12415555119514465, 1.0878214836120605, 0.1320190578699112, 0.45680272579193115, 0.3112466335296631, -0.2127024233341217, -0.9979398250579834, 0.0881987065076828, -0.15973171591758728, -1.4982035160064697, -0.38569894433021545, -0.8047769665718079, -0.24418669939041138, -0.11353280395269394, 0.2827495336532593, -0.2311508059501648, -0.2999004125595093, -0.6601009368896484, -0.19158129394054413, -0.5433571338653564, 1.2766008377075195, 0.6875173449516296, 0.2545289397239685, -0.4316045343875885, 0.05252555012702942, 0.8642002940177917, 1.1129143238067627, 0.2259736806154251, 1.513986587524414, 0.24983905255794525, 0.4724426865577698, 0.24107855558395386, 1.0669407844543457, -0.26685982942581177, -0.47650572657585144, 0.12831160426139832, 0.8463336825370789, -0.2545313835144043, 0.029455915093421936, -0.3489447236061096, 0.007202893495559692, 0.47052881121635437, 0.3840358257293701, 0.6436179280281067, -0.5329557657241821, -0.17735673487186432, -0.09488600492477417, 0.16305097937583923, -0.17179013788700104, 0.7630816102027893, 0.23127010464668274, -0.7392076253890991, -1.0856013298034668, -0.46054238080978394, 1.0057923793792725, 0.3075142800807953, 0.689084529876709, 0.7125338315963745, -0.7609509825706482, 0.31689006090164185, 0.37986236810684204, 0.4662577509880066, 0.2634502947330475, -0.5130215287208557, 0.3702644109725952, 0.49773716926574707, 0.21338841319084167, -0.4224430322647095, -0.3196585774421692, -0.4030827283859253, 0.043905213475227356, -0.025241747498512268, -0.159634068608284, -0.24035418033599854, 0.18290109932422638, -0.7010837197303772, -0.4235287308692932, 0.8933565616607666, 0.00088554248213768, -0.43546178936958313, 0.25517141819000244, 1.1784292459487915, 0.1910220980644226, 0.23645666241645813, -0.4785684645175934, -0.9917595386505127, 0.6059216260910034, 0.04351098835468292, -0.9141976237297058, -0.09007886052131653, -0.43158143758773804, 1.6006464958190918, 0.10195310413837433, -0.06036408990621567, 0.13789786398410797, -1.2727075815200806, -0.8183040022850037, -0.038593705743551254, 0.7197149395942688, 0.9204418063163757, -0.7805456519126892, 0.225774347782135, 0.6303431391716003, -0.0183228962123394, 0.7859691977500916, -0.06552544981241226, 1.0978366136550903, -0.14509515464305878, -1.0260426998138428, -0.659583568572998, 0.6827254295349121, 0.661996603012085, -0.14935091137886047, 0.1893576681613922, 0.424222856760025, 0.22699126601219177, 0.10576622188091278, 0.9178133010864258, -0.6586495041847229, 0.9097307920455933, 0.3010067045688629, 0.3552981913089752, -0.6031644344329834, 0.429093599319458, -0.9574100971221924, 0.621275782585144, -0.32045575976371765, -0.5833553075790405, 0.21264393627643585, -0.38474977016448975, 1.6795698404312134, 1.3202284574508667, -0.3409399390220642, -0.8730462193489075, 0.3589596450328827, -0.11299891024827957, -0.17714348435401917, 0.04726710915565491, 0.22607409954071045, -0.5945370197296143, -0.11551490426063538, -0.2049557864665985, 0.01819799095392227, 0.5485128164291382, -0.9987566471099854, 0.4649985134601593, 1.1603859663009644, -0.3319016695022583, 0.6059245467185974, 0.29494476318359375, -0.06617745757102966, 0.08562691509723663, -0.5063947439193726, -0.7203812599182129, -0.24480915069580078, -0.7103399634361267, -0.5356830358505249, 0.5715681314468384, -0.6417487263679504, 0.41669657826423645, -0.47367408871650696, -0.36711058020591736, 0.18075565993785858, 0.410690575838089, 1.131308913230896, -0.8609291315078735, 0.7792876362800598, 0.7977456450462341, -0.3167833983898163, -0.26366251707077026, -1.7721772193908691, -0.580498218536377, -0.03536992147564888, 0.2560163140296936, 0.4593648314476013, 0.41056421399116516, -0.20363253355026245, -0.337610125541687, 0.10660067200660706, -0.4109025299549103, -0.11755559593439102, 0.7993007898330688, -0.191350519657135, 0.09851686656475067, -0.991942286491394, -0.4722728431224823, 0.9508944153785706, -0.8574047684669495, -1.096112608909607, -0.377863347530365, -0.45227718353271484, 0.45449548959732056, -0.502347469329834, -0.022639334201812744, 0.603140652179718, -0.05582605302333832, 0.019225239753723145, -0.2943143844604492, 0.8165611028671265, 1.3660509586334229, 0.36843788623809814, 0.32919204235076904, 0.10707109421491623, 0.391811728477478, -0.054420992732048035, -0.22999384999275208, 0.4106588363647461, 0.5344505310058594, 0.08154796063899994, -0.6420121192932129, 0.13408416509628296, -0.050844550132751465, -0.6036007404327393, -4.239832401275635, -0.10389719158411026, -0.19565516710281372, -0.6424049139022827, 0.49470245838165283, 0.3564770221710205, 0.586097776889801, -1.3102807998657227, -0.7488008141517639, 0.3587735891342163, -0.3088437616825104, -0.21857509016990662, 0.5390847325325012, 0.5020166635513306, 0.3646474778652191, 0.5474290251731873, -0.034799981862306595, -0.7931426763534546, 0.027599595487117767, 0.7075462937355042, 0.07046250998973846, -1.2421759366989136, -0.5065516233444214, 0.612651526927948, 0.3901926875114441, 0.4349789619445801, -0.9849239587783813, 0.45642319321632385, -0.9080716967582703, -0.08511092513799667, 0.11206488311290741, -0.4703211486339569, 0.4734365940093994, 0.14047473669052124, -0.16710899770259857, -0.5787745714187622, 0.7420966029167175, 0.19606348872184753, 0.2480134665966034, 0.001429446041584015, -0.7573053240776062, -0.9005448222160339, -0.13098648190498352, -0.2223760485649109, 0.8213256597518921, 0.29017987847328186, -0.42163321375846863, -0.18167391419410706, 0.14122891426086426, 0.6925046443939209, 0.0038197869434952736, -0.7945659160614014, -0.6387349963188171, 0.41223835945129395, -0.42103371024131775, -0.28419142961502075, -0.0687686875462532, -0.05184751749038696, -0.39692020416259766, -0.2882130742073059, 0.4415754973888397, -0.6314128637313843, -0.8625695109367371, -0.47499164938926697, -0.4561879336833954, -0.20514924824237823, -1.1140313148498535, -0.5363017320632935, 0.47763538360595703, 1.3655304908752441, -0.16549274325370789, 0.44766688346862793, -0.4072751998901367, -1.6718087196350098, -0.09128576517105103, -0.2582545280456543, -0.4613761305809021, -0.5920514464378357, -0.6118792295455933, 0.2204759120941162, -0.7768388986587524, -0.19229108095169067, 0.4060594439506531, 0.4475231468677521, -0.2979922294616699, -0.8456827402114868, -0.048745401203632355, -0.16285450756549835, -0.6990097165107727, -0.30433085560798645, 0.7964754700660706, -1.1439051628112793, 0.11489666998386383, 0.5811010599136353, 0.654689610004425, 0.22888852655887604, 0.5408657193183899, -0.43203309178352356, 0.7717056274414062, -0.0016395524144172668, 0.6366227865219116, -0.48550692200660706, 0.03738336265087128, -0.36987218260765076, 0.2551083266735077, -0.11929312348365784, -0.9498964548110962, 0.0356680229306221, 0.4632967710494995, 0.4195559024810791, 0.058676645159721375, -0.09804153442382812, 0.5341991782188416, -0.9670618772506714, 0.1354055255651474, -0.5703685879707336, 0.18746107816696167, 0.6428952217102051, 0.5846247673034668, -0.007389616221189499, -0.5112731456756592, 0.41270625591278076, -0.1090647280216217, -0.21450762450695038, -1.2273985147476196, 0.5078428983688354, 0.23878660798072815, 0.4452139437198639, -0.16191181540489197, 0.12933768332004547, -0.23485565185546875, -0.5063328146934509, 0.25943148136138916, 0.18404720723628998, 0.7052079439163208, -0.5300658345222473, -0.5983612537384033, -0.309941828250885, 0.37802383303642273, 0.1417115330696106, 0.13822010159492493, -0.13230997323989868, 0.12719380855560303, 0.3058049976825714, 0.8624066114425659, 0.6133815050125122, -0.6737444996833801, 0.5276716351509094, -0.548484206199646, -0.5594989061355591, 0.25168198347091675, -0.22898627817630768, 0.3568474352359772, -1.028193473815918, 0.08792738616466522, -0.9354230761528015, 0.38950446248054504, 0.022801801562309265, -0.2615134119987488, -0.7580913305282593, 0.5990503430366516, -0.7574983835220337, -0.19776688516139984, 0.013147486373782158, -0.030801009386777878, 1.0010002851486206, -0.6298859119415283, 0.18891045451164246, -0.14263874292373657, 0.07265307009220123, 0.74973464012146, -0.7227181792259216, -0.5700567960739136, 0.11329780519008636, -0.3335192799568176, 0.7284948229789734, 0.31539374589920044, -0.15025141835212708, -0.21618932485580444, 0.15272969007492065, -0.29598748683929443, 0.348195344209671, 0.6139076352119446, 0.42194685339927673, 1.1484724283218384, 0.0002541765570640564, 0.34365102648735046, -0.016696467995643616, 0.05774696171283722, -0.26774442195892334, 0.31140461564064026, 0.19882337749004364, -0.45765450596809387, 0.12809938192367554, -0.6645932793617249, -1.162105917930603, 0.34130576252937317, 0.03525403141975403, 0.5092467069625854, -0.061285123229026794, -0.014199739322066307, -0.0906100943684578, -0.15764805674552917, 0.16028398275375366, 0.22146457433700562, -1.3857871294021606, 0.48997196555137634, 0.20947518944740295, -0.13852134346961975, -0.13933958113193512, -0.17391476035118103, -1.159737467765808, -0.7199407815933228, 0.07754454016685486, -0.06669282913208008, -0.7913683652877808, -0.5507866740226746, -0.32454386353492737, -0.127982497215271, -0.27453359961509705, 0.16914446651935577, 0.2725047469139099, -0.0464169979095459, -0.2474314421415329, -0.9706100821495056, 0.566399097442627, -0.4167686700820923, -0.23924607038497925, 0.7407652735710144, -0.6340906023979187, 0.7311864495277405, -0.4082992374897003, 0.3890342116355896, 0.6664587259292603, 0.1004442572593689, -0.1860305815935135, -0.5902218222618103, 0.7753775119781494, -0.060359545052051544, 0.7918522953987122, 0.11500631272792816, 0.18698690831661224, -0.29184043407440186, -0.47707992792129517, 0.4148511588573456, 0.01575540006160736, -0.031203394755721092, -0.07424445450305939, 0.07458201795816422, 0.8327305912971497, 0.14383812248706818, 0.5581327676773071, -0.3345806896686554, -0.5107458829879761, 1.1356720924377441, -0.7274010181427002, -0.8142557740211487, -0.27537083625793457, -0.46341556310653687, 0.20415054261684418, 0.04779373109340668, 0.5108054876327515, -0.9769023060798645, 0.671354353427887, 0.9669187068939209, 0.5239399671554565, -0.012031111866235733, -0.6051428318023682, 0.7779025435447693, -0.4017889201641083, -0.02116106078028679, -1.0126599073410034, 0.4450637400150299, 0.7522920370101929, 0.49304789304733276, -0.7282506227493286, -0.36489319801330566, -0.23693473637104034, 0.6854676604270935, -0.8602893352508545, -0.8689994812011719, 0.6336233615875244, -0.11604619771242142, -0.07794225215911865, 0.5043836832046509, -0.8985649943351746, 0.15789054334163666, 0.5661558508872986, 0.1521683782339096, -0.16182175278663635, -0.3657907545566559, 1.326340675354004, -0.5380730628967285, -0.09196826815605164, -0.08208733797073364, -0.07850460708141327, 0.36468642950057983, 0.9614724516868591, -0.38404467701911926, 0.2102050930261612, -0.5709589719772339, 0.6488596200942993, 0.8729897737503052, 0.09449489414691925, -0.3675841689109802, 0.1121588945388794, 0.08740954101085663, -1.1845885515213013, 0.296287477016449, 0.9570069909095764, 0.5251849293708801, -0.3365809917449951, 0.7258842587471008, 0.5568146109580994, -0.9930832982063293, -0.5505218505859375, 0.2504050135612488, -0.7662614583969116, -0.07178846001625061, 0.09016211330890656, 0.2754223644733429, -0.07296080887317657, 0.9516915082931519, 0.7125091552734375, 0.49879875779151917, 1.2164362668991089, -0.44805437326431274, -0.1261301338672638, 0.7124357223510742, 1.0255194902420044, 1.3207361698150635, 0.8303545117378235, 0.4364771246910095, 0.9195717573165894, -1.4309666156768799, -1.0162618160247803, -0.15097647905349731, 0.1447937786579132, 0.23396441340446472, 0.4589599668979645, -0.3365606963634491, 0.42447590827941895, 0.321603924036026, 1.3995890617370605, -0.08546959608793259, 0.275606244802475, 0.006209254264831543, -0.3733367621898651, 0.8175516128540039, 0.372266560792923, -0.18809016048908234, 0.4503529667854309, -0.17986080050468445, -0.513827383518219, -0.09468534588813782, 0.49064189195632935, -0.18518874049186707, 0.0013474170118570328, -0.48901134729385376, -0.0873706042766571, -0.5642891526222229, 1.1359970569610596, 1.1862106323242188, 0.1005842387676239, -0.010872526094317436, 0.18668968975543976, 0.5217719078063965, -0.15277814865112305, 0.14643999934196472, 0.23493817448616028, 0.14776331186294556, 0.09863923490047455, -0.5319257378578186, -0.012103404849767685, 0.02973693609237671, 0.144952192902565, 0.6139984130859375, 0.17088858783245087, 0.5155032873153687, 0.18381927907466888, 0.5536620020866394, -0.21560950577259064, -0.8306240439414978, -0.7338519096374512, -0.06912682205438614, -1.024753451347351, -0.2424795776605606, 1.0260529518127441, -0.3341028094291687, -1.1087435483932495, -0.49051183462142944, -0.5700165033340454, 0.21455350518226624, -0.4373012185096741, -0.7132682204246521, -0.18899261951446533, 0.9458190202713013, 0.35100477933883667, 0.26679426431655884, 0.6026921272277832, 0.41409385204315186, 0.1565248966217041, -0.23452110588550568, 0.7237669825553894, 0.2869716286659241, 1.0386466979980469, -0.35582441091537476, 0.30292877554893494, -1.2528316974639893, 0.5355169773101807, 0.4514327943325043, 0.9499109983444214, -1.7206876277923584, 0.9717088937759399, 0.17020288109779358, -0.9560228586196899, 0.5277236700057983, -0.19245001673698425, -0.27875280380249023, -0.2618943452835083, -0.2705000638961792, 0.008532978594303131, 0.20866405963897705, 0.6411947011947632, -0.3640568256378174, 0.9318079352378845, 0.8223571181297302, 0.1607511192560196, -0.5358384847640991, 0.12627536058425903, -0.3405376374721527, 0.09125779569149017, -0.7406210899353027, -0.5150280594825745, -0.49432480335235596, -0.8217999339103699, -0.5440397262573242, 0.8185532093048096, -0.21035143733024597, -0.893280565738678, 0.1700446754693985, -0.9653575420379639, -0.32950887084007263, 0.4657893478870392, -0.21484047174453735, -0.11573991924524307, -0.22943763434886932, -0.7360728979110718, -1.1526975631713867, 0.11098050326108932, 0.2550903558731079, -0.49912503361701965, -0.3458292782306671, -0.7583327293395996, -0.0387975350022316, -0.41538992524147034, -0.2506379783153534, 0.8808301687240601, -0.04135889559984207, -0.0629708543419838], "a1c28ad7-78bf-4afb-b187-ab49cae10939": [0.09152209758758545, 0.37003886699676514, -0.23016735911369324, 0.005094079300761223, 0.9735651612281799, -0.44938984513282776, 0.3391949534416199, 0.36984238028526306, -0.6092718243598938, -0.3048091530799866, -0.23830828070640564, 0.19030062854290009, -0.7782734036445618, 0.4168393313884735, 0.21558108925819397, 0.8464680314064026, 0.5425889492034912, -0.29348042607307434, -0.25417038798332214, 0.028228968381881714, 0.06155925244092941, -0.08255252242088318, -0.10698428004980087, 0.6733640432357788, 0.6513064503669739, -0.39380425214767456, -0.2242990881204605, 0.36102861166000366, -1.4142667055130005, -0.09478519856929779, 0.025005212053656578, -0.33661678433418274, 0.3747809827327728, -0.2511366903781891, 0.15282225608825684, -0.40063923597335815, -0.659934401512146, -0.639879584312439, 0.19817611575126648, 0.10408687591552734, -0.47950783371925354, -0.420947790145874, -0.613593339920044, 0.1878718137741089, -0.8750030398368835, 0.1352323293685913, -1.05110502243042, 0.6705336570739746, -0.4653053283691406, 0.47047579288482666, -0.9881813526153564, 0.4361526370048523, -0.18007944524288177, 0.1373552680015564, 0.47001224756240845, 0.8781269788742065, -0.11742758005857468, -0.9435898661613464, -0.38943949341773987, -0.586247444152832, 0.2683907747268677, -0.2899872660636902, 0.8881747126579285, 0.029315639287233353, -0.19675761461257935, -0.16716268658638, -0.47775399684906006, 0.48636507987976074, -1.1824132204055786, -0.7179186344146729, -0.17759041488170624, 0.26635751128196716, 0.36241865158081055, -0.1754210740327835, 0.22960904240608215, -0.42753076553344727, -0.2083522379398346, 0.4150392413139343, 0.6152105331420898, 1.0794274806976318, -0.006328258663415909, 0.15057316422462463, 0.1963893175125122, 0.6832332611083984, -0.5773036479949951, -0.5315347909927368, -0.39815935492515564, 0.0008312053978443146, -0.46756139397621155, 0.9047884345054626, -0.15397928655147552, -0.5963989496231079, 0.6727616190910339, 0.6135896444320679, 0.6553520560264587, 0.00994575023651123, 1.1303067207336426, 0.19460716843605042, 0.49751150608062744, 0.47465723752975464, -0.10565505176782608, -0.9291719198226929, -0.11312311887741089, -0.09084565937519073, -1.3147411346435547, -0.6903203129768372, -0.7226481437683105, -0.3687143325805664, -0.1830364614725113, 0.36121439933776855, -0.4976693391799927, -0.590806245803833, -0.3009963929653168, -0.13112805783748627, -0.5654588937759399, 1.507119059562683, 0.6503238081932068, 0.25811588764190674, -0.40193551778793335, -0.004348676651716232, 0.9235994219779968, 1.2218289375305176, 0.1494985818862915, 1.3976936340332031, 0.22161875665187836, 0.805721640586853, 0.37051230669021606, 1.0923523902893066, -0.11385013163089752, -0.5214083194732666, 0.1737760603427887, 0.8967747092247009, -0.06326106935739517, -0.005599312484264374, -0.22436919808387756, -0.25165683031082153, 0.2607882618904114, 0.5563192963600159, 0.645104706287384, -0.6268386244773865, -0.12750275433063507, -0.28766411542892456, 0.34143322706222534, -0.2781342566013336, 0.8838068842887878, 0.31044065952301025, -0.426385760307312, -1.238377332687378, -0.6690483689308167, 0.7429013252258301, 0.44355446100234985, 0.5452462434768677, 0.5851633548736572, -0.8289722800254822, 0.05220232531428337, 0.655363917350769, -0.021396566182374954, -0.04961486905813217, -0.8098493814468384, 0.3580007255077362, 0.5162407755851746, -0.08178471028804779, -0.3914227783679962, 0.05899461358785629, -0.5378878712654114, 0.04594305902719498, 0.13504880666732788, -0.005201682448387146, -0.09159143269062042, 0.40745875239372253, -0.6851282715797424, -0.6656253337860107, 0.9007648825645447, -0.0035373345017433167, -0.5117530226707458, 0.15376603603363037, 0.9277776479721069, 0.34107956290245056, 0.14476069808006287, -0.09687556326389313, -0.8870404362678528, 0.5147515535354614, 0.042387157678604126, -0.8107821345329285, -0.05428486689925194, -0.5278199911117554, 1.5700104236602783, -0.2887904644012451, -0.20696985721588135, 0.002999192103743553, -1.347211241722107, -0.6939477324485779, -0.06614579260349274, 0.840261697769165, 0.9556798338890076, -0.2777400016784668, -0.053654152899980545, 0.5499386787414551, -0.06661102920770645, 0.917982280254364, 0.40890660881996155, 0.8759335279464722, -0.03784482181072235, -0.9787619709968567, -0.8219615817070007, 0.6526052355766296, 0.5800930261611938, -0.18952563405036926, 0.3981839418411255, 0.20718877017498016, -0.05724138021469116, 0.013645008206367493, 0.9383245706558228, -0.629287600517273, 0.9653019309043884, 0.21511808037757874, 0.49009108543395996, -0.8218727707862854, 0.5533046722412109, -0.9962960481643677, 0.6224104166030884, -0.4975607097148895, -1.1259928941726685, 0.36811983585357666, -0.4545719027519226, 1.7030397653579712, 1.3041136264801025, -0.4998491108417511, -0.6524916291236877, 0.48711612820625305, 0.14922495186328888, 0.034747086465358734, 0.21010428667068481, 0.5476954579353333, -0.15931794047355652, -0.23259031772613525, -0.31258055567741394, -0.13374677300453186, 0.6246657967567444, -1.0044054985046387, 0.6592563986778259, 1.2647563219070435, -0.3942093253135681, 0.5502207279205322, 0.25932028889656067, 0.08323213458061218, 0.10871393978595734, -0.7174068093299866, -0.8341363668441772, -0.19054186344146729, -0.5382748246192932, -0.6173563003540039, 0.707443118095398, -0.705925464630127, 0.8806456923484802, -0.4333736002445221, -0.6282718181610107, 0.21711790561676025, 0.5128201246261597, 1.024895429611206, -0.7108225226402283, 0.8317128419876099, 0.8345937132835388, -0.11889533698558807, -0.38623514771461487, -1.8401308059692383, -0.7022182941436768, -0.04903393238782883, 0.02600136026740074, 0.25649183988571167, 0.4448643922805786, -0.0854727178812027, -0.1841101050376892, 0.13918839395046234, -0.39365944266319275, 0.043777041137218475, 0.7898030877113342, -0.04055582731962204, 0.037983931601047516, -1.0492088794708252, -0.45305028557777405, 1.057650089263916, -0.8716364502906799, -1.119307518005371, -0.44183945655822754, -0.461347758769989, 0.2362629771232605, -0.4905184805393219, 0.1671234369277954, 0.4191901981830597, -0.14789550006389618, 0.33954569697380066, -0.31938081979751587, 0.8816702365875244, 1.012488603591919, 0.1977834403514862, 0.371041476726532, 0.4346136450767517, 0.3173719346523285, 0.15494368970394135, -0.10863783955574036, 0.6087188124656677, 0.37352895736694336, -0.16366508603096008, -0.5414588451385498, -0.04242748022079468, -0.11421339958906174, -0.5631904602050781, -4.272683620452881, -0.07410623133182526, -0.24805819988250732, -0.5240923166275024, 0.2463809847831726, 0.6849721670150757, 0.324349045753479, -1.1065086126327515, -0.5673007965087891, 0.3564640283584595, -0.1714712530374527, -0.09484563767910004, 0.5179247260093689, 0.5317631363868713, 0.12374017387628555, 0.700982391834259, -0.10819841921329498, -1.0130035877227783, 0.016827866435050964, 0.5215686559677124, -0.04250289499759674, -1.1586825847625732, -0.48787721991539, 0.5138648748397827, 0.21943238377571106, 0.6782142519950867, -1.154154896736145, 0.6820341944694519, -1.0523674488067627, -0.16823792457580566, 0.1133059710264206, -0.618544340133667, 0.08361173421144485, -0.0005770623683929443, -0.05710388720035553, -0.30530691146850586, 0.772411048412323, -0.026920601725578308, 0.09789764881134033, -0.11756687611341476, -0.4984237849712372, -0.9302173852920532, -0.1711394339799881, -0.20884869992733002, 0.8429982662200928, -0.11188555508852005, -0.45633015036582947, -0.1487831473350525, 0.27777430415153503, 0.8435139060020447, -0.04793228209018707, -0.9616295695304871, -0.4228701591491699, 0.48994937539100647, -0.23091089725494385, -0.08770044147968292, -0.11949966847896576, -0.09842531383037567, -0.429021418094635, -0.17225699126720428, 0.5111901164054871, -0.7736835479736328, -0.8727166652679443, -0.6588518023490906, -0.4151974022388458, -0.2274559885263443, -0.9247058033943176, -0.6902979016304016, 0.6107462048530579, 1.0951135158538818, -0.4030569791793823, 0.6946960091590881, -0.37476861476898193, -1.5959992408752441, -0.3688238263130188, -0.4740975499153137, -0.5744966268539429, -0.6269727945327759, -0.7497392892837524, 0.022071927785873413, -0.7759133577346802, -0.22079817950725555, 0.3288445770740509, 0.2329639494419098, -0.17589738965034485, -0.7226062417030334, -0.06729326397180557, -0.46102043986320496, -0.8792771697044373, -0.2452453374862671, 0.8632965683937073, -1.0116026401519775, 0.01212862879037857, 0.5323635935783386, 0.49758338928222656, -0.040923163294792175, 0.5334801077842712, -0.6363230347633362, 0.6867640614509583, 0.181310772895813, 0.5642378330230713, -0.5189955234527588, 0.2564915418624878, -0.002905339002609253, 0.11346763372421265, 0.1164264976978302, -0.6678919792175293, -0.2927969992160797, 0.5380285978317261, 0.11501547694206238, 0.04456999525427818, -0.43738123774528503, 0.3320239186286926, -0.7399260401725769, -0.038848020136356354, -0.45285463333129883, 0.3941277861595154, 0.5398226976394653, 0.6832385659217834, 0.20715735852718353, -0.3756815791130066, 0.4017196297645569, -0.5927340984344482, -0.4821329116821289, -1.1447170972824097, 0.7048155665397644, 0.10905754566192627, 0.3584333062171936, 0.2161283791065216, 0.022769305855035782, -0.39168012142181396, -0.8763253688812256, 0.382344126701355, 0.14443698525428772, 0.6039799451828003, -0.6931408643722534, -0.5530921220779419, -0.10739096999168396, 0.5919814705848694, 0.04056307673454285, -0.0937531366944313, -0.020104506984353065, 0.15368488430976868, 0.372109979391098, 0.5793630480766296, 0.4840773046016693, -0.5598365068435669, 0.40447938442230225, -0.22628416121006012, -0.3343537747859955, 0.2914709150791168, 0.0028751492500305176, 0.5503284931182861, -0.8730916380882263, 0.16993498802185059, -0.8568845391273499, 0.5643765926361084, 0.03538402169942856, -0.06092734634876251, -0.5838719010353088, 0.41534051299095154, -0.8317195177078247, -0.3785974085330963, 0.22905750572681427, -0.07820763438940048, 1.1451970338821411, -0.6409366130828857, 0.1327926516532898, 0.12515369057655334, 0.07415182143449783, 0.8405041098594666, -0.5059444308280945, -0.5624785423278809, 0.14156988263130188, -0.44153356552124023, 0.7872764468193054, 0.23768997192382812, 0.05933509021997452, 0.07122593373060226, -0.024030186235904694, -0.418526828289032, 0.07861608266830444, 0.6357721090316772, 0.4140188694000244, 0.771784782409668, -0.17761850357055664, 0.22160527110099792, -0.028126802295446396, 0.054676175117492676, -0.20097729563713074, 0.7660531997680664, 0.42983388900756836, -0.36508259177207947, 0.02776039019227028, -0.7420826554298401, -1.232779622077942, 0.1528117060661316, 0.10709109902381897, 0.6696001887321472, 0.013401607051491737, -0.12991973757743835, -0.24620790779590607, -0.30152565240859985, 0.2882998287677765, 0.0944126546382904, -1.4966273307800293, 0.5748189091682434, 0.06306867301464081, -0.16689589619636536, 0.09173298627138138, -0.014720186591148376, -1.0726706981658936, -0.6831843256950378, 0.3264934718608856, 0.056847114115953445, -1.1956896781921387, -0.40459373593330383, -0.11638827621936798, -0.1527961790561676, -0.05009013041853905, 0.17349064350128174, 0.42407384514808655, 0.1575068235397339, -0.21165721118450165, -1.0337963104248047, 0.5712417960166931, -0.4070490896701813, -0.2092268317937851, 0.5137501358985901, -0.7155150175094604, 0.730402410030365, -0.44039347767829895, 0.33528509736061096, 0.6782954335212708, 0.051911234855651855, 0.22516947984695435, -0.6347437500953674, 0.6712703704833984, -0.038259949535131454, 0.9420478940010071, 0.362894743680954, -0.13660989701747894, -0.5618975162506104, -0.7912173867225647, 0.3122465908527374, 0.2201153188943863, -0.10349641740322113, 0.06481251120567322, 0.1376703977584839, 0.7873015999794006, 0.10762180387973785, 0.20667487382888794, -0.22259259223937988, -0.09420325607061386, 1.0311014652252197, -0.783017098903656, -0.8657391667366028, -0.02292909473180771, -0.3293941020965576, 0.08818543702363968, 0.30428546667099, 0.38338959217071533, -1.1883463859558105, 0.8360365629196167, 0.991121768951416, 0.5558903813362122, -0.21519418060779572, -0.6300638914108276, 0.7583504319190979, -0.4409344792366028, -0.1013365387916565, -0.9618695378303528, 0.4429251551628113, 0.8758140802383423, 0.2935039699077606, -0.49199792742729187, -0.22289741039276123, -0.1437087059020996, 0.8524853587150574, -0.6683698892593384, -0.8728282451629639, 0.3998155891895294, -0.06994888186454773, -0.0103536918759346, 0.3774961829185486, -0.7575672268867493, 0.0565497949719429, 0.3536883294582367, -0.0361352413892746, 0.08419346064329147, -0.26603585481643677, 1.2887581586837769, -0.2897435128688812, -0.11005571484565735, 0.2904990315437317, -0.013522565364837646, 0.7102901935577393, 1.0532121658325195, -0.36916595697402954, 0.1855964958667755, -0.5722132921218872, 0.7951239943504333, 0.7135684490203857, 0.428860604763031, -0.20122483372688293, -0.0702773854136467, 0.263592004776001, -1.2383629083633423, 0.3581375777721405, 0.7396356463432312, 0.46069273352622986, -0.5032670497894287, 0.6978516578674316, 0.7300018668174744, -0.8020688891410828, -0.575398325920105, 0.2231045365333557, -0.42861220240592957, -0.13653616607189178, 0.07087325304746628, 0.46327704191207886, 0.1836286187171936, 1.0924781560897827, 0.38603949546813965, 0.7525385618209839, 1.2110395431518555, -0.5437466502189636, -0.002627633512020111, 1.0302919149398804, 0.8847283720970154, 1.198487639427185, 0.5664762258529663, 0.5040753483772278, 0.8944322466850281, -1.1240792274475098, -0.9450053572654724, -0.2297656238079071, 0.08195928484201431, 0.18758022785186768, 0.4229337275028229, -0.22828754782676697, 0.53318190574646, 0.23405292630195618, 1.3255634307861328, -0.15368391573429108, 0.0178973451256752, -0.02974262833595276, -0.7413915395736694, 0.8340553045272827, 0.17839005589485168, -0.2997050881385803, 0.6287359595298767, -0.49360451102256775, -0.7277567982673645, -0.17635248601436615, 0.4623852074146271, -0.2110346108675003, 0.1426793336868286, -0.7017823457717896, -0.09397891163825989, -0.4966062605381012, 1.0588769912719727, 1.2044870853424072, -0.17561276257038116, 0.088933065533638, 0.21365457773208618, 0.41301459074020386, -0.13968445360660553, 0.2760119140148163, -0.09116147458553314, 0.06763670593500137, 0.12929528951644897, -0.6370987892150879, 0.23752424120903015, -0.04098394885659218, 0.32749423384666443, 0.6307746767997742, -0.01093251258134842, 0.23371149599552155, 0.30961620807647705, 0.6125714778900146, -0.3563620448112488, -0.9307705760002136, -0.9021874666213989, -0.013447821140289307, -1.0922085046768188, -0.10544905066490173, 0.7340868711471558, -0.2869749069213867, -1.1882092952728271, -0.4954749345779419, -0.6937803626060486, 0.2774760127067566, -0.4250759184360504, -0.5330185294151306, -0.048533856868743896, 0.7478573322296143, 0.29608622193336487, 0.08380778133869171, 0.5863984227180481, 0.46207526326179504, 0.05775658041238785, -0.12832054495811462, 0.6545006632804871, 0.4929613173007965, 0.9336084723472595, -0.32281094789505005, 0.3013243079185486, -1.2636173963546753, 0.6079080700874329, 0.36331793665885925, 0.8359414935112, -1.6333818435668945, 0.704221785068512, -0.2092018574476242, -1.0023105144500732, 0.8407742381095886, -0.14762002229690552, -0.2377680242061615, -0.20769056677818298, -0.22335976362228394, -0.23298607766628265, 0.04480939731001854, 0.593610405921936, -0.295112669467926, 0.679852306842804, 0.8000279068946838, 0.008370645344257355, -0.5633594393730164, 0.09719996154308319, -0.1740833818912506, 0.22948363423347473, -0.8057388067245483, -0.20271989703178406, -0.656520426273346, -0.8842660188674927, -0.439322829246521, 0.781882643699646, -0.25539013743400574, -1.0162889957427979, 0.05208982527256012, -0.984342634677887, -0.4079985022544861, 0.38881799578666687, -0.2984149754047394, -0.44115203619003296, -0.4033031761646271, -0.7185474634170532, -1.2013508081436157, 0.2678574025630951, 0.23901386559009552, -0.4878854751586914, -0.22443804144859314, -0.7016034126281738, 0.06868348270654678, -0.4056098163127899, -0.20916743576526642, 0.6924805045127869, -0.12388581037521362, 0.12914210557937622], "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27": [0.14316672086715698, 0.5981513261795044, -0.49004054069519043, -0.0672469437122345, 1.066366195678711, -0.5717823505401611, 0.3272092044353485, 0.4114760756492615, -0.4942445755004883, -0.37760794162750244, -0.20746326446533203, 0.24748292565345764, -0.8875148296356201, 0.5080115795135498, 0.113704152405262, 0.8921248912811279, 0.700190007686615, -0.27786779403686523, -0.1293930560350418, -0.1832638829946518, 0.09463796019554138, -0.03507573902606964, -0.27919837832450867, 0.601844072341919, 0.5021859407424927, -0.26335111260414124, -0.1735144704580307, 0.3102825880050659, -1.3751885890960693, -0.042309436947107315, 0.12456957250833511, -0.43152737617492676, 0.3834832012653351, -0.30737754702568054, 0.02408258616924286, -0.29453450441360474, -0.6937971711158752, -0.603888213634491, 0.1757110357284546, 0.15880775451660156, -0.47050660848617554, -0.5142272114753723, -0.6385204792022705, 0.05674245208501816, -0.9379567503929138, 0.11596392095088959, -0.9307010173797607, 0.7146161198616028, -0.40783029794692993, 0.2777218222618103, -1.0076836347579956, 0.42286378145217896, -0.07806189358234406, 0.049616482108831406, 0.5646917819976807, 0.8584783673286438, -0.10862763971090317, -0.9756113886833191, -0.28819578886032104, -0.5004794597625732, 0.42298629879951477, -0.15608996152877808, 0.9082008600234985, -0.00614120764657855, -0.14098112285137177, -0.21181409060955048, -0.5040699243545532, 0.6204978823661804, -1.063307285308838, -0.76128089427948, -0.030669409781694412, 0.4301064610481262, 0.3204980194568634, -0.2146061360836029, 0.30717894434928894, -0.3997983932495117, -0.26801446080207825, 0.275795578956604, 0.6546033024787903, 1.0701271295547485, -0.151065856218338, 0.2420770525932312, 0.28381356596946716, 0.7793704271316528, -0.7310622930526733, -0.5165334939956665, -0.484639972448349, 0.12074900418519974, -0.43843165040016174, 0.8629125356674194, -0.035859908908605576, -0.5848734974861145, 0.7783615589141846, 0.5819838047027588, 0.6163066029548645, -0.2747555673122406, 0.964061439037323, 0.1776101142168045, 0.4872874915599823, 0.6825830340385437, -0.19685156643390656, -1.0099453926086426, 0.02692270278930664, 0.17348550260066986, -1.2048614025115967, -0.5151476860046387, -0.6778991222381592, -0.3434150516986847, -0.11137394607067108, 0.43530234694480896, -0.37454962730407715, -0.6978039741516113, -0.46140217781066895, -0.22786907851696014, -0.49514925479888916, 1.4861159324645996, 0.5902442932128906, 0.2941031754016876, -0.44901028275489807, 0.02201664447784424, 0.9648383259773254, 1.1893014907836914, 0.1864505261182785, 1.2810256481170654, 0.18862414360046387, 0.767650306224823, 0.4121835231781006, 0.9751074910163879, -0.24632786214351654, -0.6402579545974731, 0.1290406882762909, 0.9527047276496887, -0.02736298367381096, -0.029043026268482208, -0.19350670278072357, -0.1123705506324768, 0.2630658447742462, 0.5282723307609558, 0.5417521595954895, -0.6163527965545654, -0.12466877698898315, -0.24857203662395477, 0.30242300033569336, -0.09648959338665009, 0.9105161428451538, 0.24181878566741943, -0.5218892097473145, -1.2672710418701172, -0.5346323251724243, 0.8150839805603027, 0.5307755470275879, 0.7476004958152771, 0.7204594016075134, -0.7878211736679077, 0.06553694605827332, 0.582270622253418, -0.0065085627138614655, 0.08888264000415802, -0.75559002161026, 0.4460960626602173, 0.4115889370441437, 0.01362786628305912, -0.4623773992061615, 0.07507819682359695, -0.4791351556777954, 0.07820070534944534, 0.1972283273935318, 0.1308073252439499, -0.1977986991405487, 0.31856051087379456, -0.7170605659484863, -0.6763233542442322, 0.9736607670783997, -0.11329957097768784, -0.5210455060005188, 0.3082231283187866, 1.1168129444122314, 0.2877832055091858, 0.19088248908519745, -0.10046130418777466, -1.0148942470550537, 0.6073132157325745, 0.08312970399856567, -0.8633942008018494, -0.14562106132507324, -0.5865405797958374, 1.503138780593872, -0.21448197960853577, -0.1443834751844406, 0.13611306250095367, -1.2600096464157104, -0.7403630018234253, -0.1139516606926918, 0.6999070048332214, 0.9560179114341736, -0.32007765769958496, 0.016454659402370453, 0.46687811613082886, -0.07635387778282166, 0.8416756391525269, 0.3654751181602478, 0.8198755383491516, 0.08804624527692795, -1.001399040222168, -0.8498789668083191, 0.5980560779571533, 0.6189377903938293, -0.19251981377601624, 0.3573407828807831, 0.2287532240152359, -0.15584339201450348, -0.0040099844336509705, 0.9849402904510498, -0.5131655335426331, 0.9372341632843018, 0.2493428885936737, 0.5387575030326843, -0.894846498966217, 0.7554429769515991, -0.9650425910949707, 0.5145816802978516, -0.605003297328949, -1.107059121131897, 0.5238476991653442, -0.4796404540538788, 1.567419409751892, 1.4131609201431274, -0.3279920518398285, -0.5559738874435425, 0.4955332279205322, 0.07363410294055939, -0.05105585604906082, 0.3782167136669159, 0.6202750205993652, -0.11950775980949402, -0.3078506588935852, -0.17672543227672577, -0.24716532230377197, 0.6958701610565186, -0.9446009397506714, 0.6887614130973816, 1.3601231575012207, -0.4490000903606415, 0.5090529918670654, 0.25411248207092285, -0.010637633502483368, 0.23343978822231293, -0.6222582459449768, -0.8225422501564026, -0.14613372087478638, -0.5062865018844604, -0.6455773115158081, 0.7413946986198425, -0.6654280424118042, 0.6463668346405029, -0.3479963541030884, -0.7306760549545288, 0.21424518525600433, 0.517615556716919, 1.0368887186050415, -0.667718231678009, 0.8917141556739807, 0.8258222341537476, -0.11607685685157776, -0.3957462012767792, -1.7596379518508911, -0.6843875646591187, -0.06312450766563416, 0.07886658608913422, 0.30426836013793945, 0.21311184763908386, -0.013087082654237747, -0.06749136745929718, 0.03053368628025055, -0.453357070684433, 0.003008618950843811, 0.9313772916793823, -0.020333297550678253, -0.03981984779238701, -1.113264560699463, -0.3151763677597046, 1.073601245880127, -0.922186017036438, -1.141356348991394, -0.27330902218818665, -0.494972825050354, 0.28692078590393066, -0.7162559628486633, 0.0777522623538971, 0.5270510315895081, -0.008981842547655106, 0.49743321537971497, -0.33648815751075745, 0.8913103342056274, 1.0061426162719727, 0.1182594746351242, 0.30820953845977783, 0.33572685718536377, 0.3399564027786255, 0.21661263704299927, -0.006838493049144745, 0.4244312345981598, 0.4853931665420532, -0.15871202945709229, -0.567874550819397, -0.20568490028381348, -0.22851550579071045, -0.5875922441482544, -4.282026290893555, 0.052893560379743576, -0.21491320431232452, -0.5179777145385742, 0.11491642892360687, 0.5769161581993103, 0.31964874267578125, -1.1945297718048096, -0.49822428822517395, 0.24067218601703644, -0.42814645171165466, -0.20781919360160828, 0.32205480337142944, 0.5024279952049255, 0.16766205430030823, 0.6522505879402161, -0.1311386525630951, -0.9022864103317261, 0.08857901394367218, 0.441461443901062, -0.04940635338425636, -1.1259647607803345, -0.4597562849521637, 0.5104973316192627, 0.14199690520763397, 0.5884289741516113, -1.129206657409668, 0.6831347942352295, -0.9305367469787598, -0.29476451873779297, 0.1668882966041565, -0.5082628130912781, -0.07356736063957214, 0.042654626071453094, -0.030742205679416656, -0.366197794675827, 0.8253905177116394, -0.12475240975618362, 0.07763811945915222, -0.12602809071540833, -0.4778174161911011, -0.8354068994522095, -0.09780360758304596, -0.42683249711990356, 0.7897952795028687, -0.11851956695318222, -0.49821045994758606, -0.31280285120010376, 0.3003453016281128, 0.8499181866645813, -0.15493647754192352, -0.8946506381034851, -0.4831003248691559, 0.4801066219806671, -0.11259576678276062, -0.1297173798084259, 0.0028215497732162476, -0.10693013668060303, -0.276761531829834, -0.16152441501617432, 0.5226560235023499, -0.8311833739280701, -0.8363888263702393, -0.5974469184875488, -0.31265777349472046, -0.4047160744667053, -0.8371698260307312, -0.6607881188392639, 0.6191630363464355, 1.2070345878601074, -0.37832480669021606, 0.6872877478599548, -0.3396381139755249, -1.6518739461898804, -0.19352541863918304, -0.42723071575164795, -0.5724689960479736, -0.5158833265304565, -0.6836519837379456, 0.20898886024951935, -0.6664336919784546, -0.15345214307308197, 0.46160566806793213, 0.20552808046340942, -0.25615784525871277, -0.8848538398742676, -0.12678015232086182, -0.35336339473724365, -0.6964914798736572, -0.3023856580257416, 0.8050370216369629, -1.119877815246582, -0.06309866905212402, 0.5832446813583374, 0.5258042812347412, 0.11597569286823273, 0.5925549864768982, -0.6764189600944519, 0.6022101640701294, 0.17324572801589966, 0.695142388343811, -0.5658050179481506, 0.40862566232681274, -0.19640594720840454, 0.13124413788318634, 0.08880883455276489, -0.6918029189109802, -0.18159417808055878, 0.6387155652046204, 0.2611379027366638, 0.11300882697105408, -0.43325871229171753, 0.47313976287841797, -0.6927316188812256, -0.16150633990764618, -0.6043567657470703, 0.5392172336578369, 0.4970601499080658, 0.5762564539909363, 0.2906452417373657, -0.3802974224090576, 0.5368164777755737, -0.5700570940971375, -0.4789409339427948, -1.1323148012161255, 0.6958567500114441, 0.12052316963672638, 0.09241120517253876, 0.2843097448348999, 0.06259412318468094, -0.5699721574783325, -0.7064703702926636, 0.3787370026111603, 0.0645957738161087, 0.7863922715187073, -0.6778278946876526, -0.5214330554008484, -0.1598973572254181, 0.6214548349380493, -0.016552098095417023, -0.1590229868888855, 0.08200082927942276, 0.33272847533226013, 0.2872954308986664, 0.6198679804801941, 0.47576093673706055, -0.5907651782035828, 0.3269957900047302, -0.3164713978767395, -0.3471100330352783, 0.17274634540081024, 0.02180546522140503, 0.40050068497657776, -1.0379154682159424, 0.17693695425987244, -0.776996374130249, 0.5739105343818665, -0.027527038007974625, -0.07553237676620483, -0.5114343166351318, 0.3541939854621887, -0.7592106461524963, -0.5397129654884338, 0.2576850652694702, -0.07316190004348755, 1.13759446144104, -0.6622145175933838, 0.12324988842010498, 0.08618123829364777, -0.013605210930109024, 0.8376076817512512, -0.44043993949890137, -0.5650476217269897, -0.005735993385314941, -0.4571888744831085, 0.7119932174682617, 0.2010129690170288, 0.00642123818397522, 0.050429582595825195, -0.050622642040252686, -0.4410702586174011, -0.011787131428718567, 0.42058923840522766, 0.31836095452308655, 0.6745609045028687, -0.2666887044906616, 0.16045206785202026, -0.18535900115966797, 0.0023790672421455383, -0.2679971158504486, 0.6903721690177917, 0.33924600481987, -0.2668352723121643, 0.06300349533557892, -0.6852081418037415, -1.2388415336608887, 0.11621664464473724, 0.03704870492219925, 0.5617364048957825, 0.1598229706287384, -0.19502218067646027, -0.22315210103988647, -0.12054738402366638, 0.1917939931154251, 0.08429832756519318, -1.5102109909057617, 0.5532131195068359, -0.018257705494761467, -0.25803953409194946, 0.05544383451342583, -0.12355760484933853, -1.0782641172409058, -0.5671096444129944, 0.19857004284858704, 0.08753158897161484, -1.2047621011734009, -0.3677843511104584, -0.08758227527141571, 0.07208746671676636, -0.02394947037100792, 0.2463953197002411, 0.4679902195930481, 0.037170156836509705, -0.19460880756378174, -1.12226402759552, 0.482361763715744, -0.4280683100223541, -0.146287202835083, 0.5069862604141235, -0.6684983968734741, 0.6929075121879578, -0.4889286756515503, 0.2962249517440796, 0.7521718144416809, -0.10618796199560165, 0.10547541081905365, -0.6534261107444763, 0.6924242377281189, 0.11159077286720276, 0.8965126276016235, 0.39261770248413086, -0.04126380383968353, -0.502548098564148, -0.7565371990203857, 0.3584860563278198, 0.11531095951795578, -0.28484106063842773, -0.00415864959359169, 0.26249581575393677, 0.9160213470458984, 0.0618031769990921, 0.31655770540237427, -0.24920682609081268, -0.09784983098506927, 0.8832833170890808, -0.6821788549423218, -0.75364750623703, 0.03388769179582596, -0.42410150170326233, 0.2613285183906555, 0.392385870218277, 0.3004089593887329, -1.2850059270858765, 0.8021214008331299, 1.1491596698760986, 0.6517413854598999, -0.21941836178302765, -0.7062053084373474, 0.6913642883300781, -0.4917452037334442, -0.04140936955809593, -1.0446693897247314, 0.35181814432144165, 0.6396101117134094, 0.4581034183502197, -0.5116008520126343, -0.27592819929122925, -0.17722146213054657, 0.7693769335746765, -0.7142313718795776, -0.8408068418502808, 0.3542449176311493, -0.21840214729309082, 0.028833039104938507, 0.5631974339485168, -0.8097151517868042, 0.01973734423518181, 0.3273714780807495, -0.08851481229066849, -0.018327772617340088, -0.31465765833854675, 1.191954255104065, -0.3182455599308014, -0.11772480607032776, 0.26267626881599426, -0.07380454242229462, 0.7983540892601013, 1.124112844467163, -0.6877065896987915, 0.11126909404993057, -0.5114508867263794, 0.945946991443634, 0.7379462122917175, 0.3178519606590271, -0.22494982182979584, -0.06349136680364609, 0.28139421343803406, -1.2206933498382568, 0.26034557819366455, 0.8159135580062866, 0.35285744071006775, -0.5367580652236938, 0.6871387958526611, 0.7480712532997131, -0.8401386737823486, -0.6728166937828064, 0.21552126109600067, -0.4627068340778351, -0.14519643783569336, 0.08506390452384949, 0.48005616664886475, 0.2544309198856354, 0.9976644515991211, 0.4869477450847626, 0.6921724081039429, 1.0832240581512451, -0.38185688853263855, 0.030153349041938782, 0.9231253862380981, 0.8314474821090698, 1.120690941810608, 0.5926010012626648, 0.50506591796875, 0.9392013549804688, -1.1072351932525635, -0.8532193303108215, -0.13193604350090027, -0.016633477061986923, 0.24649110436439514, 0.2612055838108063, -0.32130640745162964, 0.5227452516555786, 0.3963230848312378, 1.4984217882156372, -0.06578260660171509, 0.06033511459827423, -0.12451125681400299, -0.6552714109420776, 0.8631343841552734, 0.15805810689926147, -0.26297932863235474, 0.6351266503334045, -0.46599841117858887, -0.5997819304466248, -0.019513577222824097, 0.40497633814811707, -0.1686360090970993, 0.011148298159241676, -0.6359243392944336, -0.02287064678966999, -0.35145625472068787, 1.0532162189483643, 1.0067815780639648, -0.13849160075187683, 0.14057444036006927, 0.2993248403072357, 0.5363446474075317, -0.20944692194461823, 0.2565075755119324, -0.04590874910354614, 0.046471405774354935, 0.2661699056625366, -0.591725766658783, 0.1491871476173401, -0.059041932225227356, 0.2145514339208603, 0.5281786918640137, 0.009152024984359741, 0.24979522824287415, 0.2522742450237274, 0.600888729095459, -0.23848828673362732, -0.9053335785865784, -0.8006619215011597, -0.039024852216243744, -1.105294108390808, -0.12560567259788513, 0.6659993529319763, -0.3297305703163147, -1.118969440460205, -0.5269091725349426, -0.7336350679397583, 0.1331087052822113, -0.522211492061615, -0.6774280071258545, -0.2667665183544159, 0.766410768032074, 0.39617985486984253, 0.16902866959571838, 0.593556821346283, 0.48610785603523254, -0.028912995010614395, -0.31403523683547974, 0.49509406089782715, 0.2676554024219513, 0.9592949151992798, -0.4520699381828308, 0.4880727529525757, -1.2152057886123657, 0.7095302939414978, 0.4976392686367035, 1.0724751949310303, -1.594002604484558, 0.8008964657783508, -0.10592012852430344, -0.997988760471344, 0.8583446145057678, -0.10972398519515991, -0.22618171572685242, -0.2679681181907654, -0.15117508172988892, -0.38851025700569153, 0.052937477827072144, 0.6130605936050415, -0.12807774543762207, 0.729085385799408, 0.6924837231636047, 0.06662481278181076, -0.6466169357299805, 0.04626171290874481, -0.19821877777576447, 0.2913900315761566, -0.7743978500366211, -0.22976556420326233, -0.47399961948394775, -0.9023670554161072, -0.5694997906684875, 0.8770182728767395, -0.26481887698173523, -0.9824127554893494, 0.02231387421488762, -0.7497531175613403, -0.45649099349975586, 0.4249892830848694, -0.43730542063713074, -0.4391578733921051, -0.3084327280521393, -0.770343005657196, -1.17852783203125, 0.23074252903461456, 0.3384944796562195, -0.6032952666282654, -0.16776743531227112, -0.6233537793159485, -0.06552863866090775, -0.374610036611557, -0.20127052068710327, 0.7751858234405518, -0.17524638772010803, 0.11791372299194336], "f2850e09-1c16-403b-93dd-9b73f989a8f5": [-0.06293346732854843, -0.3547971248626709, -0.14566795527935028, -0.2055935114622116, 0.8123845458030701, -0.18926793336868286, 0.17736367881298065, 0.4048958122730255, -0.8700636625289917, -0.20540070533752441, -0.3834780752658844, 0.272590696811676, -0.9596300721168518, 0.06512650847434998, 0.01638789474964142, 1.0843173265457153, 0.7230610251426697, -0.07915766537189484, -0.008060913532972336, -0.15258511900901794, 0.38887080550193787, -0.036261189728975296, -0.14462150633335114, 0.5515821576118469, 0.8640010952949524, -0.3661603033542633, -0.3295503258705139, 0.27369868755340576, -1.4727524518966675, -0.022406358271837234, 0.47579801082611084, -0.06545477360486984, 0.35835862159729004, -0.1002388745546341, 0.448979914188385, -0.5223942995071411, -0.6187719106674194, -0.583264946937561, 0.04063507169485092, 0.0875057727098465, -0.4671321213245392, -0.3905561864376068, -0.4383065700531006, 0.0660618394613266, -0.9519273638725281, 0.19025638699531555, -1.2817362546920776, 0.5475901365280151, -0.6202192306518555, 0.2715524733066559, -0.9986833333969116, 0.43280160427093506, 0.24723635613918304, 0.12318573892116547, 0.2761262059211731, 0.8099064230918884, 0.04879070818424225, -1.156978726387024, -0.040647465735673904, -0.5284642577171326, -0.1962544023990631, -0.2280568778514862, 0.8760189414024353, 0.03749627247452736, -0.6085063219070435, -0.3945154547691345, -0.27101755142211914, 0.6348463892936707, -1.3112249374389648, -0.6571470499038696, -0.56922447681427, 0.21757811307907104, 0.12319643795490265, -0.05462251976132393, 0.2107592672109604, -0.611310601234436, 0.23473237454891205, 0.5077559947967529, 0.40053707361221313, 1.0263513326644897, -0.16331033408641815, 0.25377848744392395, 0.10840147733688354, 0.8138726949691772, -0.2929157316684723, -0.4275118410587311, -0.5746170878410339, -0.16482698917388916, -0.587286114692688, 0.6780603528022766, -0.1977243572473526, -0.7014673948287964, 0.4368196427822113, 0.3055054545402527, 0.027798783034086227, 0.17566657066345215, 0.6375322341918945, 0.23986095190048218, 0.041304752230644226, 0.6038598418235779, -0.3547666072845459, -0.6678810119628906, 0.10971413552761078, -0.4470001757144928, -1.3385950326919556, -0.3473733067512512, -0.8582110404968262, -0.2535642981529236, -0.06132442504167557, 0.5482168197631836, -0.29954737424850464, -0.48797088861465454, -0.4812568426132202, -0.0992368534207344, -0.6666539907455444, 1.248700737953186, 0.6562133431434631, 0.31889840960502625, -0.5411336421966553, -0.25786495208740234, 1.1183054447174072, 1.250961184501648, 0.5021489858627319, 1.6115919351577759, -0.12300565838813782, 0.3396446704864502, 0.44458550214767456, 1.1558353900909424, -0.26185697317123413, -0.8110502362251282, 0.15886883437633514, 0.8628108501434326, -0.06528128683567047, -0.16782426834106445, -0.06847197562456131, -0.0744435042142868, 0.30468201637268066, 0.38434165716171265, 0.8073610663414001, -0.6675695776939392, 0.4749467968940735, -0.1769832819700241, 0.49366864562034607, -0.3389340043067932, 0.9593865275382996, -0.13899511098861694, -0.5162835121154785, -1.0610835552215576, -0.7025648355484009, 0.7326284050941467, 0.6888907551765442, 0.6508617997169495, 0.48132023215293884, -0.5457075834274292, 0.2716711163520813, 0.7795284986495972, -0.26666438579559326, -0.2874699831008911, -0.2695733606815338, 0.6509075164794922, 0.3952338397502899, -0.15096256136894226, -0.4787113666534424, -0.10386554896831512, -0.4382414221763611, 0.08198525756597519, -0.0871344804763794, 0.03020288050174713, -0.21712413430213928, 0.18957440555095673, -0.4727969467639923, -0.2317395806312561, 0.952479898929596, -0.3573475480079651, -0.5889195203781128, 0.022133998572826385, 1.0797953605651855, 0.5212419033050537, 0.41348347067832947, -0.4317362606525421, -0.9016244411468506, 0.4247785210609436, 0.19106528162956238, -0.44077837467193604, -0.12120702117681503, -0.5068349242210388, 1.2940632104873657, -0.10513144731521606, -0.3284042179584503, -0.04301948845386505, -1.097665786743164, -0.543790876865387, -0.04913033917546272, 0.7856767773628235, 1.046056866645813, -0.694776177406311, 0.03275439888238907, 0.8555036783218384, -0.004572900012135506, 0.7346945405006409, 0.14556777477264404, 1.0446327924728394, -0.20809149742126465, -0.6504239439964294, -0.7587742209434509, 0.6150316596031189, 0.3766939640045166, -0.15709048509597778, 0.20374353229999542, 0.5962343811988831, -0.09798102080821991, 0.19904059171676636, 0.912381112575531, -0.39808589220046997, 0.693818986415863, 0.04708638787269592, 0.6455012559890747, -0.7601506114006042, 0.44502460956573486, -0.6109587550163269, 0.4431970715522766, -0.1821322739124298, -0.8424444794654846, 0.5834146738052368, -0.6011877059936523, 1.6436820030212402, 1.2455333471298218, -0.41108983755111694, -0.585258424282074, 0.2261178344488144, 0.03199339658021927, -0.3207210600376129, -0.02497154474258423, 0.04935168847441673, -0.4117943048477173, -0.26688727736473083, -0.3315275013446808, -0.1784495711326599, 0.7184371948242188, -0.8754771947860718, 0.3474266827106476, 1.4247123003005981, -0.14733585715293884, 0.6332424879074097, 0.34418943524360657, 0.20108774304389954, 0.020703457295894623, -0.3843204081058502, -0.8865029215812683, -0.4786999225616455, -0.4859639108181, -0.5168701410293579, 0.7562586665153503, -0.8937885165214539, 0.45945823192596436, -0.5733122825622559, -0.7094531655311584, 0.3296269178390503, 0.6287351250648499, 0.9205211400985718, -0.7349189519882202, 0.9642232060432434, 0.6611054539680481, -0.4921453893184662, -0.4256708025932312, -1.638182520866394, -0.4790249764919281, -0.010204563848674297, 0.05402500554919243, 0.1590173840522766, 0.675238311290741, 0.14920514822006226, -0.0726676806807518, 0.017821576446294785, -0.19673876464366913, -0.1722365915775299, 1.0891942977905273, 0.1302299201488495, -0.27777644991874695, -0.8234192132949829, -0.5215486288070679, 0.819015622138977, -0.3425886332988739, -1.1286166906356812, -0.5308066606521606, -0.6296856999397278, 0.7825360894203186, -0.785495400428772, -0.01949167251586914, 0.3881661891937256, -0.06600012630224228, 0.2601456642150879, -0.03988836705684662, 0.7827394604682922, 1.2099692821502686, 0.2963901162147522, 0.272541344165802, 0.04431468993425369, 0.0009751962497830391, -0.13984288275241852, -0.13161087036132812, 0.06904259324073792, 0.4404076933860779, -0.16270658373832703, -0.9064579010009766, -0.24270737171173096, -0.07177537679672241, -0.42272457480430603, -4.557617664337158, 0.12314820289611816, 0.18533918261528015, -0.6668142080307007, 0.3643631935119629, 0.2511083781719208, 0.9184664487838745, -0.8428134322166443, -0.4991683065891266, 0.5265171527862549, 0.0019332468509674072, 0.04860622063279152, 0.5205226540565491, 0.5672265291213989, 0.5718886852264404, 0.9753014445304871, 0.048657096922397614, -0.8482282757759094, 0.2093556821346283, 0.8547666668891907, -0.07230592519044876, -0.7735161781311035, -0.2079198658466339, 0.6658005714416504, 0.21844887733459473, 0.7349593043327332, -0.8133921027183533, 0.38709554076194763, -1.0540556907653809, -0.21127915382385254, -0.3416752517223358, -0.10828572511672974, 0.4391641616821289, 0.12991826236248016, -0.5927978157997131, -0.15273267030715942, 0.6584967374801636, 0.013927370309829712, 0.057422563433647156, 0.015130817890167236, -0.3498496413230896, -0.7719602584838867, -0.3462681770324707, 0.11931606382131577, 0.6518964767456055, 0.2516060471534729, -0.20483233034610748, 0.05310693383216858, 0.34306129813194275, 0.6606503129005432, -0.1713627278804779, -0.8726025819778442, -0.5986028909683228, 0.24063324928283691, -0.1913234293460846, -0.451742559671402, -0.5040173530578613, -0.15120697021484375, -0.4050483703613281, -0.1900569498538971, 0.4826081395149231, -0.8088993430137634, -0.9236294031143188, -0.4089302718639374, -0.7934123873710632, -0.11749100685119629, -0.947155773639679, -0.7100548148155212, 1.0070430040359497, 0.8656097054481506, 0.034434303641319275, 0.3424879312515259, -0.16314148902893066, -1.3490153551101685, -0.29348018765449524, -0.38897308707237244, -0.32279491424560547, -0.05902954190969467, -0.727180540561676, 0.3426869511604309, -0.8807015419006348, -0.14385056495666504, 0.7683811783790588, 0.37569496035575867, -0.15304940938949585, -0.8877973556518555, -0.22987720370292664, -0.3993619680404663, -0.6834712624549866, -0.5652403831481934, 0.692331075668335, -1.009521722793579, -0.18576541543006897, 0.6381411552429199, 0.5388411283493042, 0.14351406693458557, 0.3678479790687561, -0.30511558055877686, 0.6325817704200745, -0.012512613087892532, 0.5968127846717834, -0.7272763848304749, 0.5024621486663818, -0.33296263217926025, 0.31564322113990784, -0.18360701203346252, -0.6777651309967041, 0.09877769649028778, 0.19569352269172668, 0.5344781279563904, 0.2139725685119629, -0.3664734959602356, 0.16303065419197083, -0.6746631860733032, -0.012585490010678768, -0.49465060234069824, 0.4423103630542755, 0.6998241543769836, 0.05545620247721672, 0.09815608710050583, -0.7129821181297302, 0.3113779127597809, -0.4246383607387543, -0.38332033157348633, -0.9452669024467468, 0.32629045844078064, 0.18295209109783173, 0.06225062906742096, 0.04364180564880371, -0.03993702307343483, -0.4256709814071655, -0.6113883256912231, 0.27604663372039795, -0.05526600405573845, 0.6082470417022705, -0.9272997379302979, -0.4849792718887329, -0.18009109795093536, 0.27478641271591187, 0.25322771072387695, 0.25751474499702454, -0.13288697600364685, -0.35839852690696716, 0.29574015736579895, 0.5410931706428528, 0.3839094936847687, -0.10839597880840302, 0.48536843061447144, -0.38318565487861633, -0.3355233073234558, 0.1455620378255844, -0.10938617587089539, 0.16221210360527039, -0.7428618669509888, 0.33061420917510986, -0.8695864081382751, 0.19564534723758698, -0.3727257251739502, -0.2725701928138733, -0.5675705075263977, 0.27612486481666565, -0.4309999644756317, -0.3239176273345947, 0.16966983675956726, 0.274766743183136, 1.0558956861495972, -0.657868504524231, 0.14209438860416412, 0.012711010873317719, 0.30006757378578186, 0.7466106414794922, -0.8028644323348999, -0.7272039651870728, 0.25071531534194946, -0.10087385773658752, 0.4864080846309662, 0.477277934551239, -0.12624208629131317, -0.10585750639438629, 0.5370429754257202, -0.3266088366508484, -0.41315340995788574, 0.021388210356235504, 0.5741639137268066, 1.1586575508117676, -0.12962773442268372, 0.4112512171268463, 0.17822493612766266, -0.022789359092712402, -0.04894772171974182, 0.8396511673927307, 0.2892134487628937, -0.19740214943885803, -0.035660285502672195, -0.7175766825675964, -1.1719974279403687, 0.3926185667514801, 0.3432062268257141, 0.3384389877319336, 0.016339417546987534, 0.18152153491973877, -0.30956563353538513, -0.41800084710121155, -0.28275489807128906, 0.003864273428916931, -1.3702996969223022, 0.5046645402908325, -0.16888347268104553, -0.27435821294784546, -0.1998671293258667, -0.38521915674209595, -0.9308171272277832, -0.2934253513813019, 0.24136105179786682, 0.3000279664993286, -0.7556731104850769, -0.35473066568374634, -0.0017159245908260345, 0.13578113913536072, -0.1888352334499359, -0.41014721989631653, -0.0056921206414699554, -0.18700070679187775, -0.14882200956344604, -0.7845777869224548, 0.37390846014022827, -0.5218863487243652, -0.27002179622650146, 0.6274561285972595, -0.6002964973449707, 0.8834619522094727, -0.9129839539527893, 0.26070746779441833, 1.0254058837890625, 0.05101081728935242, 0.1686166226863861, -0.3912108838558197, 0.6947007775306702, -0.17575955390930176, 0.8240163326263428, 0.21230824291706085, -0.11832693219184875, -0.5174297094345093, -0.5048238635063171, 0.06595823913812637, 0.20850685238838196, -0.04260849952697754, 0.04170629382133484, -0.2874511182308197, 0.960415780544281, -0.2744063138961792, 0.3425154387950897, -0.31656911969184875, -0.23726952075958252, 1.105265736579895, -0.630199670791626, -0.654645562171936, -0.2623496651649475, -0.2785240411758423, 0.20681989192962646, -0.22209562361240387, 0.5686876177787781, -1.1141592264175415, 0.9119071364402771, 0.6598159670829773, 0.8021429777145386, 0.20577344298362732, -0.1682487577199936, 0.4865931570529938, -0.3850635290145874, -0.09851603955030441, -0.9199973344802856, 0.2742118239402771, 0.503339409828186, 0.43739935755729675, -0.050194043666124344, -0.17951497435569763, -0.14645832777023315, 0.7908244729042053, -0.4278932213783264, -0.6211757659912109, 0.341316819190979, 0.04506494104862213, 0.034672707319259644, 1.1251128911972046, -0.7763902544975281, 0.07522360980510712, 0.11636339128017426, 0.18926189839839935, 0.09173104166984558, -0.38103750348091125, 1.271565556526184, -0.01441534049808979, 0.13505083322525024, -0.16522569954395294, -0.10468970239162445, 0.29729363322257996, 1.110914707183838, -0.45008379220962524, 0.07281949371099472, -0.34949517250061035, 0.5608052015304565, 0.8959477543830872, 0.2269047200679779, -0.32030487060546875, 0.09745806455612183, 0.12769724428653717, -0.9670642018318176, 0.6524511575698853, 0.9864517450332642, 0.2740396559238434, -0.4823605716228485, 0.6984261870384216, 0.7768788933753967, -1.0534801483154297, -0.5498903393745422, 0.3322189450263977, -0.8005548715591431, -0.16971860826015472, -0.16349418461322784, 0.5317114591598511, -0.18903762102127075, 1.0432686805725098, 0.47365516424179077, 0.38668644428253174, 1.3064428567886353, -0.4578498303890228, -0.1938486099243164, 0.6646100282669067, 0.9178802967071533, 1.2889143228530884, 1.047835350036621, 0.6232171058654785, 0.43636494874954224, -1.3445247411727905, -1.0608975887298584, -0.24750041961669922, -0.024418089538812637, 0.1728600263595581, 0.24981506168842316, 0.3454415202140808, 0.4510614275932312, 0.02833026461303234, 1.2301050424575806, -0.4189811944961548, 0.05446621775627136, 0.21774306893348694, -0.2491586059331894, 0.922085165977478, 0.24995607137680054, -0.06387680023908615, 0.3497623801231384, -0.7106736898422241, -0.7487925887107849, 0.1390414834022522, 0.4546269178390503, -0.32979270815849304, -0.009020578116178513, -0.43751680850982666, -0.09824279695749283, -0.5691655278205872, 1.0782586336135864, 0.9038571119308472, 0.2006906270980835, -0.042035073041915894, 0.24448183178901672, 0.5400788187980652, -0.012760668992996216, 0.11774061620235443, 0.30615055561065674, 0.05392191559076309, 0.291380912065506, 0.0009920373558998108, 0.1961250901222229, 0.4176102578639984, 0.15647482872009277, 0.3100013732910156, -0.0183149054646492, 0.2968745827674866, 0.4400167763233185, 0.7008258104324341, -0.5034160614013672, -0.8576515316963196, -0.945814311504364, -0.20800867676734924, -0.6852756142616272, 0.07435593754053116, 0.5369440317153931, 0.015247151255607605, -0.8687267303466797, -0.39384549856185913, -0.9189691543579102, 0.18375948071479797, -0.3536376357078552, -0.39185693860054016, -0.039719656109809875, 0.847838282585144, 0.11653026193380356, 0.32624298334121704, 0.7157461643218994, 0.4083915948867798, 0.30386883020401, -0.22447028756141663, 0.4428670406341553, 0.6705933809280396, 1.0569894313812256, 0.016540922224521637, 0.18227159976959229, -1.169872760772705, 0.44784805178642273, 0.23092159628868103, 0.7288199663162231, -1.5888381004333496, 0.5432054996490479, -0.3310985863208771, -1.0006719827651978, 0.8055405020713806, 0.03918355330824852, -0.28424033522605896, -0.5703967213630676, -0.24703481793403625, -0.29710185527801514, 0.4171564280986786, 0.6349342465400696, -0.36350592970848083, 0.7774205207824707, 0.5473352074623108, 0.09697576612234116, -0.4290744364261627, 0.1840485781431198, -0.070216104388237, 0.0056304931640625, -0.5772522687911987, -0.45255765318870544, -0.4592134654521942, -0.9049111008644104, -0.7287687659263611, 0.5293689966201782, -0.1943788081407547, -0.6535912752151489, 0.015300985425710678, -0.16599585115909576, -0.7427307963371277, -0.1100604236125946, 0.11131200194358826, -0.29005324840545654, -0.5795389413833618, -0.7451137900352478, -1.3103458881378174, 0.11895856261253357, 0.3028271198272705, -0.5879449248313904, -0.4311944544315338, -0.7958270907402039, 0.09657995402812958, -0.2609942555427551, -0.29147085547447205, 0.6481412649154663, -0.23663505911827087, -0.1286512166261673], "17a940a6-e716-499c-9d83-542c33d3f97c": [0.1275668889284134, -0.04870237410068512, 0.10034395009279251, -0.30655744671821594, 0.8420954346656799, -0.36407241225242615, 0.4948286712169647, 0.31944215297698975, -0.7466722726821899, -0.520129919052124, -0.19776467978954315, 0.12296533584594727, -0.755509614944458, 0.2617902457714081, 0.12570595741271973, 1.0970739126205444, 0.6013399362564087, -0.2206479012966156, -0.31291162967681885, -0.25883620977401733, 0.03402790427207947, -0.12069175392389297, -0.029342573136091232, 0.44069957733154297, 0.7949569821357727, -0.33660033345222473, -0.22225219011306763, 0.37830477952957153, -1.2166367769241333, -0.2848174571990967, 0.2803795039653778, -0.26742231845855713, 0.20863136649131775, -0.2851415276527405, 0.167352557182312, -0.6617095470428467, -0.7928401827812195, -0.6835578680038452, 0.10015158355236053, 0.013444691896438599, -0.6174418330192566, -0.5493602752685547, -0.5373810529708862, -0.029582034796476364, -0.9453637599945068, 0.208806112408638, -1.220178246498108, 0.8468552231788635, -0.9385434985160828, 0.1092023253440857, -0.9878337979316711, 0.6590970754623413, 0.09569335728883743, -0.024494990706443787, 0.6963229775428772, 0.8398715853691101, 0.12081752717494965, -1.1859937906265259, -0.29840126633644104, -0.5959142446517944, 0.028503544628620148, 0.05940413475036621, 0.7377011775970459, -0.001598204718902707, -0.2424967885017395, -0.17121608555316925, -0.45774421095848083, 0.6996245384216309, -0.9684317708015442, -0.544696569442749, -0.5394287705421448, -0.06051191687583923, 0.328869104385376, -0.06083070859313011, 0.017710018903017044, -0.6235395669937134, 0.04976595938205719, 0.5394219160079956, 0.6663241982460022, 0.9807790517807007, 0.00524698942899704, 0.17436835169792175, 0.06651164591312408, 0.49756473302841187, -0.17103181779384613, -0.5640231966972351, -0.7265266180038452, 0.36193639039993286, -0.5283373594284058, 0.7470635175704956, 0.18743211030960083, -0.5130759477615356, 0.702021598815918, 0.43645575642585754, 0.6555747389793396, 0.16230621933937073, 0.7993285655975342, 0.28034868836402893, 0.5248398780822754, 0.3716725707054138, -0.2629932761192322, -0.8716269135475159, 0.1255882829427719, -0.07912430167198181, -1.3532054424285889, -0.7910103797912598, -0.652309238910675, -0.41704440116882324, -0.12233936041593552, 0.30117350816726685, -0.4860899746417999, -0.3704569339752197, -0.4610656201839447, 0.017869217321276665, -0.7220914959907532, 1.1929750442504883, 0.5931106805801392, 0.3611588478088379, -0.1953919380903244, -0.08159103989601135, 1.0230181217193604, 1.1100726127624512, 0.15228553116321564, 1.6177560091018677, 0.153662770986557, 0.663833498954773, 0.18559718132019043, 1.3068351745605469, 0.01926000416278839, -0.46877214312553406, 0.323164701461792, 0.719368040561676, -0.04989497363567352, -0.12068827450275421, -0.1963934600353241, -0.1424732506275177, 0.3599289357662201, 0.28895020484924316, 0.7172742486000061, -0.40759217739105225, -0.21568292379379272, -0.1357283890247345, 0.18880435824394226, -0.30788353085517883, 0.9512655138969421, 0.22205963730812073, -0.23828008770942688, -1.0384070873260498, -0.2022647261619568, 0.8660007119178772, 0.5283603072166443, 0.7541856169700623, 0.5882514715194702, -0.709495484828949, 0.29798367619514465, 0.33012062311172485, -0.20195360481739044, -0.1658676713705063, -0.6876732110977173, 0.3918389678001404, 0.4526920020580292, 0.22189341485500336, -0.21126143634319305, -0.14676837623119354, -0.4155733287334442, 0.022908899933099747, -0.11238078773021698, 0.13509075343608856, -0.030455157160758972, 0.15624071657657623, -0.5849676132202148, -0.5792060494422913, 0.7979161739349365, -0.09260208904743195, -0.46302521228790283, -0.02633870393037796, 1.176255702972412, 0.3365042805671692, 0.8628594279289246, 0.05391386151313782, -0.9320078492164612, 0.5705711841583252, 0.12192904204130173, -0.764445960521698, -0.11251862347126007, -0.6727735996246338, 1.5440168380737305, 0.042365171015262604, -0.19071361422538757, 0.1964634507894516, -1.2479904890060425, -0.9579502940177917, -0.1706688553094864, 0.5784944295883179, 0.8619347810745239, -0.581637978553772, -0.17909374833106995, 0.9036750793457031, 0.1807076632976532, 0.9607791900634766, 0.1254986673593521, 0.7763816714286804, -0.20112073421478271, -0.8254042267799377, -0.666653037071228, 0.46870139241218567, 0.519486665725708, -0.660632848739624, 0.15464898943901062, 0.29748818278312683, 0.03371332585811615, 0.021621733903884888, 0.9199446439743042, -0.4868488609790802, 0.6560355424880981, 0.5531742572784424, 0.2637045979499817, -0.6713118553161621, 0.14803709089756012, -0.7684483528137207, 0.15669527649879456, -0.4014620780944824, -0.8993175029754639, 0.25993192195892334, -0.5944133996963501, 1.7103112936019897, 1.2065584659576416, -0.5303149223327637, -0.6099375486373901, 0.25785574316978455, -0.1274050623178482, 0.17489752173423767, 0.08058083057403564, 0.24693278968334198, -0.26679185032844543, -0.15247078239917755, -0.11930914223194122, -0.15442511439323425, 0.3969384729862213, -0.9729020595550537, 0.22752054035663605, 1.4649063348770142, -0.5567504167556763, 0.9421600699424744, 0.353434294462204, -0.08442717790603638, -0.10907576978206635, -0.7076699137687683, -0.5256860256195068, -0.17747312784194946, -0.7019628882408142, -0.5509976148605347, 0.7498018741607666, -0.8319492340087891, 0.4433668255805969, -0.3567397892475128, -0.6485491991043091, 0.4572555720806122, 0.37971994280815125, 1.1223772764205933, -0.811639666557312, 0.8712553381919861, 0.5075599551200867, -0.10790781676769257, -0.15433526039123535, -1.8497058153152466, -0.4490736722946167, 0.208326518535614, 0.1917562037706375, 0.4793001413345337, 0.4229602515697479, -0.18060025572776794, -0.08853991329669952, 0.3616950809955597, -0.7272207736968994, -0.1272517442703247, 0.654082179069519, 0.08885959535837173, -0.2934533357620239, -0.9915575385093689, -0.503761351108551, 1.029954195022583, -0.9270936846733093, -1.1956238746643066, -0.11016286909580231, -0.5997478365898132, 0.20943552255630493, -0.6284394264221191, -0.20365583896636963, 0.5740159749984741, 0.018204592168331146, 0.5007199048995972, -0.12050031125545502, 0.8229882717132568, 1.383225917816162, 0.36665812134742737, 0.10228659212589264, 0.30085039138793945, 0.08315078169107437, -0.33485114574432373, -0.3971834182739258, 0.22771644592285156, 0.47778910398483276, 0.00810263305902481, -0.3885411322116852, -0.010693639516830444, -0.12905199825763702, -0.689751386642456, -4.456406116485596, 0.20098882913589478, -0.09511629492044449, -0.3650205433368683, 0.4826715886592865, 0.644682765007019, 0.6271776556968689, -0.8754604458808899, -0.48692503571510315, 0.7847714424133301, -0.19526630640029907, -0.02505301684141159, 0.48092517256736755, 0.6424177289009094, -0.05664139986038208, 0.7462524175643921, -0.11830934882164001, -0.7493894100189209, 0.2554369568824768, 0.5192907452583313, -0.11716295033693314, -1.0161333084106445, -0.20826923847198486, 0.3472641706466675, 0.46820276975631714, 0.5219448804855347, -1.311523675918579, 0.807978093624115, -0.7941538095474243, -0.2966776192188263, 0.011310800909996033, -0.6505562663078308, 0.21593506634235382, -0.08883524686098099, -0.21634246408939362, -0.32196247577667236, 0.41751882433891296, 0.13938434422016144, 0.0898696631193161, -0.19870662689208984, -0.21536128222942352, -1.1342412233352661, -0.4719473719596863, -0.05415099859237671, 0.8831977248191833, 0.09480756521224976, -0.22939282655715942, -0.1677481234073639, 0.057197920978069305, 0.6916321516036987, -0.147862508893013, -0.7528354525566101, -0.37617799639701843, 0.2794460654258728, -0.45842915773391724, -0.2970549464225769, -0.07418230175971985, -0.10779936611652374, -0.3398120701313019, -0.08791055530309677, 0.7098219990730286, -0.6804353594779968, -0.7378078699111938, -0.5066278576850891, -0.4276094138622284, -0.17907556891441345, -0.7468449473381042, -0.8547606468200684, 0.671897292137146, 1.1723395586013794, -0.35312727093696594, 0.5722576975822449, -0.16227184236049652, -1.5034606456756592, 0.03504663705825806, -0.7734584808349609, -0.29611366987228394, -0.5148747563362122, -0.4211162030696869, 0.1879929006099701, -0.7200681567192078, -0.19209180772304535, 0.28860291838645935, 0.3719188868999481, -0.2951532006263733, -0.6488733887672424, -0.23048719763755798, -0.4887142479419708, -0.8348780274391174, -0.2440512776374817, 0.6876924633979797, -0.8566158413887024, -0.05060936510562897, 0.5593518614768982, 0.4439293146133423, 0.5192816853523254, 0.8001776337623596, -0.3843800723552704, 0.4269118010997772, 0.10758258402347565, 0.6404419541358948, -0.6610010266304016, 0.13739138841629028, -0.10019491612911224, 0.31014952063560486, -0.07161691784858704, -0.664933979511261, -0.09424496442079544, 0.1480027437210083, 0.3458600342273712, -0.012511968612670898, -0.24362435936927795, 0.18970680236816406, -0.9487531185150146, -0.11188460141420364, -0.5576661825180054, 0.2445702701807022, 0.7069934606552124, 0.3884577453136444, 0.01927388459444046, -0.4807649850845337, 0.47429242730140686, -0.6241533756256104, -0.4548341631889343, -1.0679632425308228, 0.3355637192726135, -0.01620226539671421, 0.23743528127670288, 0.28905558586120605, 0.05786263942718506, -0.2336234301328659, -0.7179948091506958, 0.18545407056808472, 0.24593105912208557, 0.8425679206848145, -0.4920685887336731, -0.4330437481403351, -0.26681846380233765, 0.2881929874420166, -0.054902806878089905, 0.18424974381923676, -0.34341996908187866, 0.10971901565790176, 0.3650316894054413, 0.6603912711143494, 0.5723358988761902, -0.13315214216709137, 0.3808327615261078, -0.4246489107608795, -0.44859009981155396, 0.5037477612495422, -0.15580344200134277, 0.17613573372364044, -1.0437333583831787, 0.12676283717155457, -0.8072196245193481, 0.6415838599205017, -0.1913203001022339, -0.2381724715232849, -0.4412616491317749, 0.5198958516120911, -0.8915340304374695, -0.5487127304077148, -0.10487718135118484, 0.026872720569372177, 0.9403186440467834, -0.9029923677444458, 0.031206727027893066, -0.12828096747398376, 0.07071473449468613, 0.7525953650474548, -0.5953506231307983, -0.5359682440757751, 0.3113776743412018, -0.14624619483947754, 0.7711546421051025, 0.22839513421058655, 0.05324743688106537, 0.0452154204249382, 0.24765793979167938, -0.12404689192771912, 0.2974786162376404, 0.5874722599983215, 0.717667818069458, 1.155324101448059, -0.01971958577632904, 0.41286465525627136, -0.15331165492534637, -0.06339000165462494, 0.1479235291481018, 0.32497209310531616, 0.2817062437534332, -0.1505383849143982, -0.014797985553741455, -0.6364211440086365, -1.2480456829071045, 0.2764662504196167, 0.3797292113304138, 0.3299025595188141, -0.2958936393260956, -0.05745083838701248, 0.0009656120091676712, -0.4026852548122406, -0.0635143294930458, 0.25339198112487793, -1.18359375, 0.7000641226768494, -0.30259260535240173, -0.26480722427368164, -0.05416078120470047, 0.0908949077129364, -0.9949430227279663, -0.39420706033706665, 0.12444443255662918, -0.11338317394256592, -0.828462541103363, -0.44406211376190186, -0.018559983000159264, 0.0512387678027153, -0.09568217396736145, 0.06522968411445618, 0.21290820837020874, 0.0750386118888855, -0.16283509135246277, -0.9030812978744507, 0.5837000608444214, -0.370960533618927, -0.4405973553657532, 0.22100648283958435, -0.6230664849281311, 0.8387811779975891, -0.7087279558181763, 0.031425803899765015, 0.7804248929023743, -0.0739552453160286, -0.08956511318683624, -0.7347171902656555, 0.8378450274467468, 0.24809283018112183, 0.6357665657997131, 0.11161163449287415, -0.047084301710128784, -0.3206334114074707, -0.5965369939804077, 0.3251110017299652, 0.27240779995918274, 0.003964673727750778, 0.35398340225219727, 0.16333821415901184, 0.8301721811294556, -0.09116168320178986, 0.5329028964042664, -0.22844268381595612, -0.1797334849834442, 0.9685193300247192, -1.1634409427642822, -0.8115524649620056, -0.4450940191745758, -0.5762320756912231, 0.2503862977027893, -0.08556118607521057, 0.4705650806427002, -0.8284534811973572, 0.9999328255653381, 0.918827474117279, 0.5824705362319946, 0.37864798307418823, -0.4137171804904938, 0.7205330729484558, -0.3819458782672882, 0.04080811142921448, -1.2515285015106201, 0.2758750319480896, 0.9485981464385986, 0.5709695816040039, -0.538333535194397, -0.5165364742279053, -0.0030553117394447327, 0.9625563621520996, -0.3836139738559723, -0.8021779656410217, 0.3827288746833801, 0.19614216685295105, -0.24694304168224335, 0.22058847546577454, -0.9476138353347778, 0.20873403549194336, 0.29473769664764404, -0.027807245030999184, 0.07934072613716125, -0.2164192795753479, 1.3648029565811157, -0.14774924516677856, -0.16703827679157257, -0.0806504487991333, -0.03157922253012657, 0.6552883386611938, 1.065138816833496, -0.3908500671386719, 0.19110578298568726, -0.5023964643478394, 0.8126167058944702, 0.8408276438713074, 0.5037970542907715, -0.18644002079963684, -0.011492494493722916, 0.20026127994060516, -1.093536138534546, 0.5526437759399414, 0.9852970838546753, 0.10701487213373184, -0.44751617312431335, 0.816192626953125, 0.598525881767273, -1.0047216415405273, -0.3487399220466614, 0.357357919216156, -0.7738253474235535, -0.41618236899375916, 0.25364530086517334, 0.2083035260438919, -0.12210994213819504, 0.8025490641593933, 0.38821762800216675, 0.47377920150756836, 1.3396456241607666, -0.5314855575561523, -0.12359049916267395, 0.6274387240409851, 0.8510920405387878, 0.9303127527236938, 0.6181081533432007, 0.42849433422088623, 0.7054216861724854, -1.2879996299743652, -0.968360960483551, -0.3056658208370209, 0.5188109874725342, 0.0999898910522461, 0.33760979771614075, -0.11270034313201904, 0.5734712481498718, 0.21118474006652832, 1.2647784948349, -0.22176522016525269, -0.05840778723359108, -0.329811692237854, -0.3957158625125885, 0.8986819386482239, 0.08920605480670929, -0.10935574769973755, 0.5438916683197021, -0.4015754759311676, -0.8485718965530396, -0.016392767429351807, 0.4300198256969452, -0.36997491121292114, 0.20861294865608215, -0.2735096216201782, -0.26709699630737305, -0.578241229057312, 0.9260221123695374, 0.9920685887336731, 0.07864247262477875, 0.04182719439268112, 0.41025301814079285, 0.5248212814331055, -0.07813665270805359, 0.1822948455810547, -0.07299409806728363, -0.16035623848438263, 0.051789555698633194, -0.2911233901977539, 0.40146932005882263, -0.09594546258449554, 0.13002213835716248, 0.8615103363990784, 0.10633563995361328, 0.2795950472354889, 0.07664263248443604, 0.5086300373077393, -0.6657490730285645, -0.9652352333068848, -0.6805258989334106, -0.2486504316329956, -0.9533149600028992, -0.20345191657543182, 0.5858509540557861, -0.3159811794757843, -1.0578069686889648, -0.3815406262874603, -0.7130380868911743, 0.17715832591056824, -0.3286755383014679, -0.7050117254257202, -0.3359450697898865, 0.6261348724365234, 0.2719191610813141, 0.38176050782203674, 0.3405889570713043, 0.5139028429985046, 0.33265677094459534, -0.17188605666160583, 0.5124759674072266, 0.6527256965637207, 0.7580267190933228, -0.06367558240890503, 0.40800848603248596, -1.2826433181762695, 0.5056368112564087, 0.4540233612060547, 0.831028401851654, -1.8252519369125366, 0.9159274697303772, -0.2581426203250885, -0.5634474754333496, 0.8963260054588318, -0.009625241160392761, -0.5709404349327087, -0.2505386173725128, -0.23501047492027283, 0.03165370225906372, 0.34107357263565063, 0.7949715852737427, -0.32218706607818604, 0.7192997336387634, 1.0177085399627686, 0.015194114297628403, -0.4210967421531677, 0.362017422914505, -0.21194200217723846, 0.02722790837287903, -0.6884511709213257, -0.4296358823776245, -0.4163281321525574, -0.7621419429779053, -0.47919055819511414, 0.774374783039093, -0.25295475125312805, -0.8825485706329346, 0.04861230403184891, -0.23702003061771393, -0.3992018401622772, 0.37411946058273315, -0.11689422279596329, -0.10624317079782486, -0.10967369377613068, -0.68132483959198, -1.160118818283081, -0.22151121497154236, 0.1783171147108078, -0.30552029609680176, -0.5534828305244446, -0.6165195107460022, 0.015234731137752533, -0.5789105296134949, -0.17956334352493286, 0.6932635307312012, -0.23130211234092712, 0.14310361444950104], "05d0a4b8-9787-412e-9ab8-92bdcec12d1e": [0.11673915386199951, -0.23551368713378906, 0.18121349811553955, 0.04428324103355408, 0.4582767188549042, -0.3210870027542114, 0.3814919590950012, 0.4272587299346924, -0.5973529815673828, -0.5259419083595276, -0.5500301122665405, 0.14427641034126282, -0.9435731172561646, 0.19153659045696259, 0.3721621632575989, 0.9392343163490295, 0.6079663038253784, -0.2392580807209015, -0.1712886393070221, -0.26727384328842163, 0.1850137561559677, -0.031197095289826393, -0.06863114982843399, 0.514289915561676, 0.6853563785552979, -0.39218080043792725, 0.07916940748691559, 0.4824877083301544, -1.311613917350769, -0.16012176871299744, 0.21032148599624634, 0.19120189547538757, -0.15686936676502228, -0.2120630145072937, 0.03556724637746811, -0.4150386452674866, -0.4830056130886078, -0.3410561680793762, 0.2921862304210663, 0.0123157799243927, -0.4080491364002228, -0.6679454445838928, -0.8109068870544434, 0.26344144344329834, -0.7718104124069214, 0.49224233627319336, -0.8791829943656921, 0.44413334131240845, -0.4759953022003174, -0.056018710136413574, -0.5972513556480408, 0.31412309408187866, -0.030388884246349335, 0.33284175395965576, 0.5795279145240784, 0.8839355111122131, -0.16060912609100342, -1.1097981929779053, -0.05875343829393387, -0.5707542896270752, 0.8260077834129333, -0.23732924461364746, 0.323384553194046, -0.051398564130067825, 0.0589057132601738, -0.2861039638519287, -0.3923841118812561, 0.8694029450416565, -1.1475002765655518, -0.3405478596687317, -0.56162428855896, -0.1086513102054596, 0.28561773896217346, 0.12399095296859741, 0.33165401220321655, -0.38057732582092285, -0.22218391299247742, 0.5817171931266785, 1.2260735034942627, 0.8381633758544922, -0.19240599870681763, 0.4377748966217041, 0.04024388641119003, 0.7532098293304443, -0.4845837950706482, -0.2404022067785263, -0.37602975964546204, -0.07256001234054565, -0.3111225962638855, 0.475702166557312, -0.3447682559490204, -0.6571406126022339, 0.9861263632774353, 0.3993910849094391, 0.10453636199235916, -0.22492873668670654, 0.6761637926101685, 0.04081713408231735, 0.41786110401153564, 0.16537831723690033, -0.42920491099357605, -0.9327529072761536, 0.13562484085559845, -0.26967960596084595, -1.430574893951416, -0.3988991379737854, -0.42851194739341736, -0.2057676613330841, -0.21737273037433624, 0.5773205757141113, -0.38584426045417786, -0.04959794878959656, -0.772055447101593, -0.15013322234153748, -0.812754213809967, 1.2317966222763062, 0.8117587566375732, 0.020807737484574318, -0.06584728509187698, 0.20667031407356262, 0.7634679079055786, 0.844545841217041, 0.36891791224479675, 1.2839045524597168, 0.5071820020675659, 0.653087317943573, 0.5046998262405396, 0.8725151419639587, -0.35290297865867615, -1.2559082508087158, 0.13283751904964447, 0.7340314984321594, -0.14817529916763306, 0.153010755777359, -0.022270236164331436, 0.21925795078277588, 0.03390446677803993, 0.2743843197822571, 0.8751341104507446, -0.49189120531082153, -0.36681580543518066, -0.2679501175880432, 0.09718794375658035, -0.015208040364086628, 0.7273029685020447, 0.2642347514629364, -0.5159038305282593, -0.8528416752815247, -0.13845951855182648, 0.7646926045417786, 0.03387463837862015, 0.35698139667510986, 0.8583837747573853, -0.8185250163078308, -0.2910260856151581, 0.5795149207115173, -0.07623375952243805, 0.3669230043888092, -0.8670371770858765, 0.6082320809364319, 0.7773545384407043, -0.2245611846446991, -0.2028689980506897, -0.4245615601539612, -0.19124165177345276, -0.2878980040550232, -0.030902661383152008, -0.2841103672981262, 0.11035336554050446, 0.0024571227841079235, -0.7534953951835632, -0.8184370398521423, 0.935709536075592, -0.6285068392753601, -0.19462797045707703, 0.49720826745033264, 1.6890602111816406, 0.6005801558494568, 0.3705156445503235, -0.7519487142562866, -1.1571414470672607, 1.096612811088562, 0.2640465199947357, -0.10535845905542374, -0.02600780874490738, -0.58280348777771, 1.474496603012085, -0.08015115559101105, -0.037481844425201416, -0.21778921782970428, -1.1361163854599, -0.9445935487747192, -0.29779213666915894, 0.3346203863620758, 0.8162722587585449, -0.854510486125946, -0.022474966943264008, 0.7733767032623291, -0.05818562209606171, 0.8542927503585815, 0.026159435510635376, 0.6410979628562927, -0.6059470176696777, -1.231731653213501, -0.8345737457275391, 0.7023614645004272, 0.687109112739563, -0.29325366020202637, 0.22313880920410156, 0.24717743694782257, 0.19266676902770996, 0.07667537033557892, 0.5394911766052246, -0.5661971569061279, 0.44772234559059143, 0.5977845191955566, 0.8711308836936951, -0.724125862121582, 0.8573728799819946, -1.2617672681808472, 0.8548831343650818, -0.14162485301494598, -0.7498331069946289, 0.1892942637205124, -0.17818956077098846, 1.3922113180160522, 1.1730703115463257, -0.4814099669456482, -0.544929563999176, 0.2682243585586548, 0.3845929205417633, -0.10447786003351212, 0.051139600574970245, 0.23803123831748962, -0.28229767084121704, -0.13438858091831207, -0.2777223587036133, -0.4921749234199524, 0.9135584831237793, -0.7214868068695068, 0.05535782128572464, 1.3299086093902588, 0.17600098252296448, 0.6032959222793579, 0.3340293765068054, 0.0020182207226753235, -0.1628950536251068, -0.22148485481739044, -0.30460071563720703, -0.26885199546813965, -0.5983563661575317, -0.7499859929084778, 0.22598868608474731, -0.8462678790092468, 0.7013846635818481, -0.32261529564857483, -0.746279239654541, 0.36748066544532776, 0.5621317625045776, 0.6486596465110779, -0.40272995829582214, 0.6745754480361938, 0.3919764459133148, -0.3203914761543274, -0.05204879865050316, -1.1866382360458374, -0.8609616756439209, -0.39459940791130066, 0.38279664516448975, 0.5120691657066345, 0.33665722608566284, -0.016735075041651726, -0.1457994133234024, 0.08097205311059952, -0.4717872142791748, -0.29325801134109497, 1.133594036102295, 0.19240346550941467, 0.10005776584148407, -0.6789978742599487, -0.05415786802768707, 1.249600887298584, -0.6494259834289551, -1.0563621520996094, -0.2947582006454468, -0.8179631233215332, 0.42844095826148987, -0.6438117027282715, -0.5039047002792358, 0.5841076970100403, 0.2733677327632904, 0.6420052647590637, -0.3519218862056732, 0.8023449778556824, 1.4587653875350952, 0.29125165939331055, 0.2825532555580139, 0.40791258215904236, 0.17985591292381287, 0.10992724448442459, -0.02653929591178894, 0.10526332259178162, 0.38296830654144287, 0.2532869875431061, -0.3054136037826538, -0.040240444242954254, -0.26204830408096313, -0.8775469064712524, -4.3867363929748535, 0.026606077328324318, -0.1720559448003769, -0.3683236241340637, 0.12382557988166809, 0.199744313955307, 0.27578774094581604, -1.1657944917678833, -0.7233148217201233, 0.5180633664131165, -0.1697710156440735, -0.3295270502567291, 0.6174503564834595, 0.8011659979820251, 0.4508705139160156, 0.7818552851676941, 0.08554624021053314, -1.0978511571884155, -0.1413661241531372, 0.5480437278747559, -0.12730954587459564, -1.2664464712142944, -0.2440982311964035, 0.5257213115692139, 0.27798008918762207, 0.9084762334823608, -0.7570353746414185, 0.5002959966659546, -0.7324898838996887, -0.40704670548439026, 0.04332161694765091, -0.14817915856838226, 0.5749414563179016, -0.08979672193527222, -0.2700001001358032, -0.6369647979736328, 0.737702488899231, -0.16703933477401733, -0.26263415813446045, -0.3695642054080963, -0.7380895614624023, -0.6864990592002869, -0.14979112148284912, 0.1041974350810051, 0.7209697961807251, -0.09931708127260208, -0.6220975518226624, -0.6456213593482971, 0.6579962968826294, 0.687419056892395, -0.1274653971195221, -0.6345435976982117, -0.46626874804496765, 0.3880162537097931, -0.14731881022453308, -0.04592810571193695, 0.0518677681684494, 0.054408978670835495, -0.24323146045207977, -0.2770337462425232, 0.14890789985656738, -0.4525754153728485, -0.32107973098754883, -0.7819392681121826, -0.4112459421157837, -0.7093845009803772, -0.46036338806152344, -0.5731569528579712, 0.9455776810646057, 0.7569089531898499, -0.9990108013153076, 0.5991135239601135, -0.6079440116882324, -1.3423570394515991, 0.1474788784980774, -0.17499065399169922, -0.6706565022468567, -0.4021832346916199, -0.5381667017936707, 0.29248982667922974, -1.0550225973129272, -0.26287853717803955, -0.04435884952545166, 0.5597351789474487, -0.21364101767539978, -1.0562142133712769, -0.25830578804016113, -0.5772243142127991, -0.38513675332069397, -0.14730408787727356, 0.780934751033783, -0.8380936980247498, -0.171348437666893, 0.27820828557014465, 0.7493862509727478, 0.9183955192565918, 0.521142840385437, -0.4865410625934601, 0.7865181565284729, -0.05609261989593506, 0.8485248684883118, -0.9042968153953552, 0.2969684898853302, -0.40360915660858154, -0.11025355756282806, -0.09072814136743546, -0.528054416179657, -0.0004651523195207119, 0.6716593503952026, 0.14906096458435059, 0.2569437623023987, -0.3917078971862793, 0.23049595952033997, -0.8252219557762146, 0.1978825479745865, -0.7780849933624268, 0.3076973557472229, 0.8232751488685608, 0.026521379128098488, 0.07414615154266357, -0.9121999740600586, 0.5167767405509949, -0.7838286757469177, 0.001979917287826538, -1.5217609405517578, -0.09028679132461548, 0.2172238826751709, 0.027168460190296173, -0.10554517805576324, 0.1508878916501999, -0.028555531054735184, -0.032735906541347504, 0.5478532910346985, 0.014451485127210617, 0.4308002293109894, -0.8646626472473145, -0.14182254672050476, -0.2677997052669525, 0.2936170697212219, -0.37699395418167114, 0.05638112127780914, 0.02072048932313919, 0.18285781145095825, 0.5680063366889954, 0.4850207269191742, 0.383770227432251, -0.6072867512702942, 0.48333996534347534, -0.45069873332977295, -0.2679706811904907, -0.1681956797838211, -0.18107229471206665, 0.2152220755815506, -0.9292830228805542, 0.082063227891922, -0.9470457434654236, 0.7546466588973999, 0.689203143119812, -0.07679838687181473, -0.5735811591148376, 0.2521926462650299, -1.0623573064804077, -0.17017719149589539, -0.14582858979701996, -0.2512667179107666, 1.0740842819213867, -0.24165236949920654, -0.34763744473457336, -0.41634321212768555, 0.08001993596553802, 0.34416067600250244, -0.2341184914112091, -0.46884390711784363, 0.27768224477767944, -0.1011253371834755, 0.26271915435791016, 0.12525935471057892, -0.14541353285312653, 0.4780329465866089, 0.09653577208518982, 0.09083084017038345, 0.06318703293800354, 0.22728633880615234, 0.07691239565610886, 0.9272994995117188, -0.1048106700181961, 0.5996124148368835, -0.5104630589485168, -0.3367866575717926, -0.18266379833221436, 0.4017670452594757, 0.2550240457057953, -0.2633936107158661, 0.24481479823589325, -0.6982603073120117, -1.5009254217147827, 0.4660734534263611, -0.23538848757743835, 0.2555158734321594, 0.4701157510280609, -0.008169243112206459, -0.10089445114135742, -0.28539419174194336, 0.3500777781009674, 0.04988547042012215, -1.1904863119125366, 0.7046453952789307, 0.10931870341300964, -0.5387303829193115, 0.011751938611268997, -0.17133718729019165, -1.0552716255187988, -0.7820408940315247, 0.16920730471611023, 0.26467186212539673, -0.767008364200592, -0.3812996745109558, 0.008719559758901596, 0.008028673939406872, -0.4532802999019623, 0.20499737560749054, 0.05711667239665985, -0.4976019859313965, 0.0007836669683456421, -0.5683919787406921, 0.48116692900657654, -0.1423047035932541, -0.7213611602783203, 0.3962814211845398, -0.6438484787940979, 0.6354748606681824, -0.6895413398742676, 0.23655715584754944, 1.0900912284851074, -0.22204145789146423, -0.11099110543727875, -0.7069011330604553, 0.5407829880714417, -0.07973497360944748, 1.0255931615829468, -0.10614708811044693, 0.35330837965011597, -0.219138041138649, -0.444349080324173, 0.47714346647262573, -0.10311847925186157, -0.11641916632652283, -0.2752012312412262, 0.2701657712459564, 0.9793111681938171, 0.11185593903064728, 0.8297672867774963, -0.06310167908668518, -0.2576751708984375, 0.5469107031822205, -0.6617408990859985, -0.7916401028633118, 0.3028094172477722, -0.16818760335445404, 0.4224514961242676, 0.10663677752017975, 0.3547905683517456, -0.7232929468154907, 1.1972380876541138, 0.8433997631072998, 0.33075445890426636, 0.34653913974761963, -0.01888248324394226, 0.9544075131416321, -0.24753040075302124, -0.08648332953453064, -1.0905228853225708, 0.18537981808185577, 0.5046648979187012, 0.5855699181556702, -0.6404925584793091, -0.11125372350215912, -0.30717602372169495, 1.0325504541397095, -0.9817902445793152, -0.8255026340484619, 0.5932883620262146, -0.384457528591156, 0.19631719589233398, 0.7179338932037354, -1.2401951551437378, 0.12885694205760956, 0.4702456593513489, -0.5078917741775513, -0.19746583700180054, -0.5792099833488464, 1.585262656211853, -0.49936580657958984, 0.2345028817653656, 0.0934830904006958, 0.1922842413187027, 0.37644681334495544, 0.9178459048271179, -0.7385927438735962, 0.08378371596336365, -0.8976701498031616, 0.5971744060516357, 0.9880651235580444, 0.1258591264486313, -0.14272965490818024, -0.07948274165391922, 0.32836809754371643, -1.0362414121627808, -0.19598188996315002, 0.8614307045936584, 0.1495411992073059, -0.2595457434654236, 0.5190016627311707, 0.8410750031471252, -1.0549559593200684, -0.19859173893928528, 0.5862923860549927, -0.9194009304046631, -0.23915034532546997, -0.06648101657629013, 0.34080904722213745, 0.10757628083229065, 0.5906344652175903, 0.27334463596343994, 0.5339908599853516, 0.8710724115371704, -0.49343323707580566, 0.26696258783340454, 0.5456742644309998, 1.498978614807129, 0.9512879252433777, 0.6079286932945251, 0.11629648506641388, 1.099352478981018, -0.7231857180595398, -1.1662609577178955, 0.34874430298805237, -0.08878710865974426, 0.23988738656044006, 0.2810947895050049, -0.2466796636581421, 0.6301592588424683, 0.4246416389942169, 1.29155433177948, -0.332084059715271, 0.4156011939048767, -0.20351186394691467, -0.5325995683670044, 1.126420259475708, -0.21877631545066833, 0.22050584852695465, 0.47150349617004395, -0.48819705843925476, -0.4502630829811096, -0.029866471886634827, 0.7934449911117554, -0.15553775429725647, -0.22480274736881256, -0.2883751094341278, 0.022814257070422173, -0.6496188044548035, 0.57804936170578, 0.9632857441902161, -0.023059695959091187, 0.2545366883277893, 0.1236208826303482, 0.5035178661346436, 0.020484916865825653, 0.35392239689826965, 0.1182560920715332, -0.07038120925426483, -0.013167280703783035, -0.38925567269325256, 0.24713891744613647, 0.371001273393631, 0.001870468258857727, 0.8725625872612, 0.0055673569440841675, -0.09419907629489899, 0.27863025665283203, 0.07519176602363586, -0.17303034663200378, -0.7333002686500549, -0.6753301024436951, 0.48669111728668213, -0.9395493268966675, 0.16924022138118744, 0.5140365362167358, -0.2809717655181885, -1.246649980545044, -0.37295031547546387, -0.3513830602169037, 0.013295471668243408, -0.27850741147994995, -0.5514503717422485, -0.7485833168029785, 0.65599524974823, 0.3696102797985077, 0.2181682288646698, 0.6824785470962524, 0.7189932465553284, 0.23747119307518005, -0.4867643713951111, 0.10630837827920914, 0.13281244039535522, 1.0621826648712158, 0.12519094347953796, -0.13973739743232727, -1.2378425598144531, 0.5407844185829163, 0.8919731974601746, 1.1972856521606445, -1.5880564451217651, 0.6218125820159912, -0.043735817074775696, -0.5706428289413452, 0.7684341669082642, 0.35328787565231323, -0.33658546209335327, -0.27020353078842163, -0.4540109932422638, -0.16244786977767944, 0.3705592751502991, 0.5001901984214783, -0.1088019609451294, 1.02400803565979, 0.7550109028816223, 0.06386758387088776, -0.652315616607666, 0.20401225984096527, -0.1467147171497345, 0.3612693250179291, -0.8672970533370972, -0.572567343711853, -0.4985460638999939, -0.8754993677139282, -0.5938300490379333, 0.2942705750465393, -0.26036709547042847, -0.5818369388580322, -0.3727988004684448, -0.4647887945175171, 0.1755363643169403, 0.42405804991722107, -0.3912116289138794, -0.23341956734657288, -0.2428283542394638, -0.6182278990745544, -0.8885483741760254, -0.05178814381361008, 0.139754980802536, -1.042534589767456, -0.20215186476707458, -0.6024544835090637, 0.2513169050216675, -0.34231817722320557, -0.32978665828704834, 1.0065853595733643, 0.28246843814849854, -0.3432842493057251], "a066a9ec-d70b-45c3-9f1a-445c9a86aede": [-0.17733480036258698, 0.010612282902002335, -0.1582469642162323, 0.2356184870004654, 0.7574911713600159, -0.6179209351539612, 0.5352368354797363, 0.4203517436981201, -0.32619041204452515, -0.5349669456481934, -0.5389080047607422, 0.12712648510932922, -0.5064846277236938, 0.5809869170188904, 0.9080204367637634, 0.9569469690322876, 0.48633965849876404, -0.20491744577884674, -0.35397061705589294, -0.23116055130958557, 0.06639653444290161, -0.22620898485183716, -0.24713900685310364, 0.9547407627105713, 0.2322411686182022, 0.11810557544231415, 0.21244800090789795, 0.14300289750099182, -1.111781358718872, 0.08839386701583862, 0.14023061096668243, -0.29700323939323425, -0.025886353105306625, 0.06890816986560822, 0.15072350203990936, -0.1631397157907486, -0.6782799959182739, -0.14092442393302917, 0.6543399095535278, -0.4321424663066864, -0.855548083782196, -0.41683852672576904, -0.4927849769592285, 0.03389707952737808, -0.5577719211578369, 0.30748340487480164, -1.3287062644958496, 0.34724345803260803, -0.770433783531189, -0.013956516981124878, -0.7982880473136902, 0.22992783784866333, 0.13394755125045776, 0.49722424149513245, 0.4667477607727051, 1.3575876951217651, 0.07519904524087906, -0.7240098118782043, 0.098549023270607, -0.40909233689308167, 0.5679118633270264, -0.571788489818573, 0.2831761837005615, 0.45062190294265747, 0.2069156914949417, -0.6243389248847961, -0.6626179218292236, 0.7942153215408325, -0.9284254312515259, -0.6072262525558472, -0.4195902347564697, 0.378955215215683, 0.35322970151901245, 0.026337996125221252, 0.24713999032974243, -0.5183637142181396, -0.2529062330722809, 0.46370142698287964, 1.36296546459198, 0.7057592868804932, -0.07341036945581436, 0.4906979203224182, -0.45920002460479736, 0.6770166754722595, -0.7296568155288696, -0.27565672993659973, -0.7681959867477417, -0.5885510444641113, -0.5677341222763062, 0.7384618520736694, -0.8492348790168762, -0.4551023840904236, 0.48326870799064636, 0.511067807674408, 0.47989028692245483, 0.093173086643219, 0.7640463709831238, 0.1119718849658966, 0.7123262286186218, 0.022402772679924965, -0.5376812219619751, -1.1913425922393799, 0.2763042747974396, 0.058618105947971344, -1.4349889755249023, -0.2764328718185425, -0.6319171786308289, -0.2847927510738373, 0.4443996548652649, 0.3581660985946655, -0.33595287799835205, -0.4958014488220215, -0.7641769647598267, -0.1736234873533249, -1.000624179840088, 1.0433367490768433, 0.5065739750862122, 0.28560325503349304, -0.1871812343597412, -0.0035954266786575317, 0.5718399286270142, 0.822539210319519, 0.23114877939224243, 1.1925581693649292, 0.31135496497154236, 0.6273798942565918, -0.12169097363948822, 0.8190409541130066, -0.36966878175735474, -1.2080981731414795, -0.03567437082529068, 0.8535944223403931, -0.0660359188914299, -0.24412158131599426, -0.22290758788585663, 0.08171506226062775, 0.3638137876987457, 0.39601045846939087, -0.08648306131362915, -0.33691537380218506, -0.024818267673254013, -0.38373830914497375, 0.02844827249646187, -0.3984863758087158, 0.5622679591178894, 0.2749556005001068, -0.10095452517271042, -1.1049591302871704, -0.16688203811645508, 0.87568598985672, 0.08104832470417023, 0.32526281476020813, 1.1010334491729736, -0.6413660049438477, 0.06673889607191086, 0.6589840650558472, -0.08898453414440155, 0.14249156415462494, -0.587700366973877, 0.4561137855052948, 0.5015106797218323, -0.21123431622982025, -0.41270366311073303, -0.1495516449213028, -0.33932289481163025, -0.10177990049123764, 0.20722347497940063, 0.29457777738571167, 0.17236250638961792, 0.09319890290498734, -0.5338578224182129, -0.8819032311439514, 0.7952690124511719, -0.45153117179870605, -0.17413482069969177, 0.6082518696784973, 1.1296812295913696, 0.5582067370414734, 0.19484181702136993, -0.6143409609794617, -1.1590269804000854, 0.8637920022010803, 0.12231571227312088, -0.7609090805053711, -0.31027689576148987, -0.5824557542800903, 1.2646828889846802, -0.3136492967605591, -0.30342599749565125, 0.17205247282981873, -1.4829009771347046, -1.036143183708191, -0.17635560035705566, 0.30312418937683105, 0.9874779582023621, -0.3655160665512085, 0.11746741831302643, 0.27938511967658997, -0.26962828636169434, 0.7212086915969849, 0.019265756011009216, 0.5364683866500854, -0.2277582883834839, -0.9977739453315735, -1.057196855545044, 0.8422760963439941, 0.23000577092170715, -0.3430994749069214, -0.10617725551128387, 0.16570164263248444, 0.5550674200057983, -0.14351582527160645, 0.3838669955730438, -0.5119948983192444, 0.5926398038864136, 0.6365805268287659, 0.617976188659668, -0.6239699125289917, 1.2546334266662598, -1.1838345527648926, 0.6839417219161987, -0.6784932613372803, -0.7805162668228149, 0.38246339559555054, -0.4312376081943512, 1.3838531970977783, 1.139305830001831, -0.5945000648498535, -0.19348248839378357, 0.4468187987804413, 0.18815502524375916, -0.23662826418876648, 0.7200471758842468, -0.04802883043885231, -0.1503443717956543, -0.5978778004646301, -0.11079981923103333, -0.46711522340774536, 1.0330426692962646, -0.7718803286552429, 0.4217154383659363, 1.5454546213150024, 0.2981117367744446, 0.4770362377166748, 0.8026425838470459, 0.2918350100517273, 0.15898242592811584, -0.13612964749336243, -0.837171196937561, -0.3362073302268982, -0.41640087962150574, -0.3833773136138916, 0.24653710424900055, -0.5484153032302856, 0.683435320854187, -0.057504065334796906, -0.7022485733032227, 0.11383379995822906, 0.6308775544166565, 0.5934969782829285, -0.5372188091278076, 0.6764999032020569, 0.498671293258667, 0.039173424243927, -0.052856214344501495, -1.3234131336212158, -0.12757590413093567, -0.1118442639708519, 0.42518991231918335, 0.022055059671401978, 0.3750678300857544, -0.11123016476631165, -0.41880470514297485, 0.06622135639190674, -0.45803892612457275, -0.22955529391765594, 1.175884485244751, 0.5338990688323975, 0.005647819489240646, -1.0162460803985596, -0.23371198773384094, 0.8729879856109619, -0.7470775842666626, -0.9606270790100098, -0.3892771005630493, -0.5198303461074829, 0.18516285717487335, -0.4954461455345154, -0.6006873846054077, 0.6517810225486755, 0.41686946153640747, 0.5280844569206238, -0.42820799350738525, 0.4216621518135071, 1.2481954097747803, 0.18910746276378632, 0.4323982894420624, 0.5460121631622314, 0.37883567810058594, 0.07820979505777359, 0.08921520411968231, 0.8146953582763672, 0.7900582551956177, -0.16542473435401917, -0.24102433025836945, -0.15920160710811615, -0.48755717277526855, -0.31889981031417847, -4.220780372619629, 0.2853013575077057, -0.33073052763938904, -0.4991534352302551, 0.3078313171863556, 0.3980805575847626, 0.1990273892879486, -0.74530029296875, -0.6741502285003662, 0.24285146594047546, 0.03792211413383484, -0.40321406722068787, 0.5581076741218567, 0.4901561737060547, 0.28173184394836426, 0.4064606726169586, 0.32011833786964417, -0.8557982444763184, 0.019253641366958618, 0.8084399104118347, -0.5221918821334839, -1.287928581237793, -0.5064590573310852, 0.1068345457315445, 0.2760806679725647, 0.1030513346195221, -1.2042253017425537, 0.7126746773719788, -0.7360405921936035, -0.3695184588432312, 0.29294803738594055, -0.1810462325811386, -0.35188862681388855, 0.3806236982345581, 0.24984702467918396, -0.9168867468833923, 0.675786554813385, 0.14946693181991577, -0.2214907854795456, -0.6504711508750916, -0.5973547101020813, -0.29203087091445923, -0.2775048017501831, -0.03862525522708893, 1.0077332258224487, -0.3165702223777771, -0.35996919870376587, -0.23590201139450073, 0.254353791475296, 0.6109145879745483, -0.18234515190124512, -0.44270777702331543, -0.36193349957466125, 0.579362690448761, -0.11397277563810349, -0.19520334899425507, 0.20141634345054626, -0.32793495059013367, -0.2801864445209503, -0.11107820272445679, 0.24800589680671692, -0.9071734547615051, -0.5711112022399902, -0.7770344614982605, -0.13841450214385986, -0.906219482421875, -0.974768877029419, -0.8232149481773376, 0.48629748821258545, 0.6714543104171753, -1.0681095123291016, 0.5557901859283447, -0.1677224487066269, -1.4561314582824707, -0.062244102358818054, -0.3844867944717407, -0.3088282346725464, -0.4190771281719208, -0.29132184386253357, 0.3366973400115967, -0.42287376523017883, -0.3640207052230835, 0.20628100633621216, 0.3891865015029907, -0.21853269636631012, -0.6216473579406738, 0.00818522647023201, -0.7050161957740784, -0.5334286689758301, -0.6643915772438049, 0.16856789588928223, -0.9504144191741943, -0.05689690262079239, 0.39358076453208923, 0.3827587366104126, 0.6697659492492676, -0.05975838005542755, -0.759132981300354, 0.4447619616985321, 0.01853613555431366, 0.8724550008773804, -0.776896059513092, -0.03397059440612793, -0.2628498077392578, 0.006851948797702789, 0.12630310654640198, -0.769182562828064, -0.00340106338262558, 0.4758974313735962, -0.19171930849552155, 0.2570441961288452, -0.3812844753265381, 0.1917850822210312, -0.6748044490814209, -0.1305987387895584, -0.9767177104949951, 0.185765340924263, 0.8464188575744629, 0.2463618814945221, -0.17836178839206696, -0.6174575686454773, 0.6552945971488953, -0.7909423112869263, -0.5535925030708313, -1.6420471668243408, 0.5385735034942627, 0.10953123867511749, 0.019416727125644684, 0.21850396692752838, 0.13442571461200714, -0.19796797633171082, -0.014352589845657349, 0.80023193359375, -0.10888990014791489, 0.5768978595733643, -0.6350157856941223, -0.23473834991455078, -0.09038010984659195, 0.3859887719154358, -0.6371293663978577, 0.2799863815307617, 0.3545372486114502, 0.7037393450737, 0.41905665397644043, 0.7187535762786865, 0.4623453617095947, -1.2902655601501465, 0.6221078038215637, -0.4240543842315674, -0.10144542157649994, -0.11188273131847382, -0.0013156980276107788, 0.566524863243103, -0.8648006319999695, -0.02513742446899414, -0.6425987482070923, 0.8599730730056763, 0.3559108376502991, 0.16497670114040375, -0.9182974696159363, 0.4439848065376282, -0.49273690581321716, -0.04567386955022812, -0.18780431151390076, -0.13372455537319183, 1.3421258926391602, -0.26189154386520386, 0.20491626858711243, -0.08349132537841797, 0.27937930822372437, 0.5857162475585938, -0.2010338306427002, -0.5133564472198486, -0.0881420373916626, -0.7039703130722046, 0.6122826337814331, 0.15279912948608398, -0.20369936525821686, 0.22330540418624878, 0.265688955783844, 0.01674785651266575, -0.057442061603069305, 0.16610395908355713, -0.09840498119592667, 0.9452034831047058, 0.2279895544052124, 0.3929845094680786, -0.6891815066337585, -0.32864129543304443, -0.39254230260849, 0.5031377673149109, 0.08172386139631271, -0.5256413221359253, 0.17955398559570312, -0.8859339356422424, -1.3853427171707153, 0.17288732528686523, 0.23770366609096527, 0.396545946598053, 0.36391517519950867, -0.23742009699344635, 0.22185643017292023, -0.20729166269302368, 0.22656047344207764, 0.08761712908744812, -1.1391606330871582, 0.4449736475944519, 0.011803094297647476, -0.10937443375587463, -0.1998644471168518, -0.11480839550495148, -0.9591524600982666, -0.738091230392456, 0.4310620129108429, 0.10253557562828064, -0.9660928845405579, -0.26961183547973633, -0.3016345202922821, 0.3511667549610138, 0.10353304445743561, 0.6913277506828308, 0.3891434073448181, -0.17955730855464935, -0.5231469869613647, -0.32846352458000183, 0.876829981803894, 0.0917375385761261, 0.09026944637298584, 0.6027251482009888, -0.5530388355255127, 0.25751858949661255, -0.6629883646965027, 0.1388320028781891, 0.8464685082435608, -0.09737253934144974, 0.5339152216911316, -0.32786041498184204, 0.6604837775230408, -0.007681647315621376, 0.659513533115387, 0.5184224247932434, 0.04740776866674423, -0.11376703530550003, -0.8103617429733276, 0.2850228250026703, -0.19812431931495667, -0.2880595624446869, -0.024439174681901932, -0.04210275039076805, 0.6825485825538635, -0.003656737506389618, 0.3195754289627075, -0.09819801896810532, -0.15575863420963287, 1.27865731716156, -0.6319513916969299, -0.7537926435470581, 0.09507080167531967, -0.3447344899177551, 0.28965532779693604, 0.1093059778213501, 0.27168890833854675, -0.6892277598381042, 1.3015878200531006, 0.891918420791626, 0.6517971754074097, -0.2077743411064148, -0.45275965332984924, 0.6405375599861145, -0.34267768263816833, -0.2338520586490631, -1.309239387512207, 0.32380834221839905, -0.28214704990386963, 0.5230181813240051, -0.5914415121078491, -0.10391546040773392, 0.12750768661499023, 0.681020975112915, -1.083609938621521, -0.8641031384468079, -0.15720021724700928, -0.3457105755805969, 0.24206572771072388, 0.1664963960647583, -0.8576745986938477, -0.08079618215560913, 0.03338225185871124, -0.32953208684921265, -0.015115983784198761, 0.06064737215638161, 1.2163528203964233, -0.700857937335968, 0.3423689901828766, -0.05962479114532471, 0.02370968461036682, 0.42787134647369385, 1.0453709363937378, -0.42499858140945435, 0.3552021086215973, -0.816356360912323, 1.0415741205215454, 1.010838270187378, 0.15923605859279633, 0.19105574488639832, -0.08453656733036041, 0.13609546422958374, -0.9983210563659668, 0.3832724988460541, 0.6035283803939819, 0.35626301169395447, -0.3923870325088501, 0.6159906387329102, 0.6730906963348389, -1.0579054355621338, -0.8785108923912048, 0.3275911509990692, -0.27494171261787415, -0.08377085626125336, 0.22470420598983765, 0.6855425834655762, 0.48222899436950684, 0.6438544392585754, 0.23734475672245026, 0.31682276725769043, 1.0268027782440186, -0.49218109250068665, 0.09210700541734695, 0.7343287467956543, 1.1000853776931763, 1.3072843551635742, 0.4129381775856018, 0.09860917925834656, 0.8612741827964783, -0.8314287662506104, -0.7147226333618164, 0.13476744294166565, 0.2624528706073761, 0.5083948373794556, -0.018890157341957092, -0.37671229243278503, 0.5097540616989136, 0.6753293871879578, 1.210017204284668, -0.4205809235572815, 0.35316362977027893, -0.13906995952129364, -0.30473950505256653, 0.810033917427063, 0.07093276083469391, -0.012649189680814743, 0.6535248756408691, -0.9008598327636719, -0.3189610242843628, -0.2358226478099823, 0.6803703308105469, -0.1124655157327652, -0.5039225816726685, -0.7107320427894592, -0.20617341995239258, -0.08839985728263855, 1.0570883750915527, 1.360400915145874, -0.3039281368255615, 0.08021273463964462, -0.17031221091747284, 0.5231136679649353, 0.09019511938095093, 0.6654096245765686, 0.041559867560863495, -0.16699981689453125, -0.19883905351161957, -0.6075689196586609, 0.25332093238830566, -0.3531307876110077, 0.5211138129234314, 0.5242196321487427, -0.22600887715816498, 0.19331614673137665, 0.663959264755249, 0.44921427965164185, -0.5484843254089355, -1.1280028820037842, -0.8197578191757202, 0.2068093717098236, -1.22292160987854, -0.04184631630778313, 0.7698765397071838, -0.4309115409851074, -0.9808322787284851, -0.5419267416000366, -0.5997403264045715, -0.031216152012348175, -0.27482157945632935, -0.44277966022491455, -0.10677812248468399, 0.40280666947364807, 0.3118678629398346, 0.12160156667232513, 1.069557547569275, 0.7212311029434204, -0.07475446164608002, -0.14082711935043335, 0.4928457736968994, 0.22304192185401917, 1.266864538192749, -0.3414575159549713, 0.35519638657569885, -1.406462550163269, 0.46987470984458923, 0.9080796837806702, 1.0726335048675537, -1.5551618337631226, 0.7082630395889282, 0.2739468812942505, -0.12930889427661896, 0.8593787550926208, 0.060112740844488144, -0.339516282081604, -0.49092382192611694, -0.11269840598106384, -0.3544185161590576, 0.24519029259681702, 0.637215256690979, -0.5278158187866211, 0.8047528266906738, 1.2618001699447632, 0.4543721377849579, -0.7114559412002563, -0.05482099950313568, -0.24619396030902863, 0.5354824662208557, -0.9854222536087036, -0.35914844274520874, -1.1430130004882812, -0.9067049622535706, -0.4811171591281891, 0.6007013916969299, 0.04312603920698166, -0.7186880707740784, -0.26197758316993713, -0.501227855682373, 0.19745473563671112, 0.3657445013523102, -0.42215919494628906, -0.28551095724105835, -0.24638457596302032, -0.5913073420524597, -0.7395603656768799, 0.3705759346485138, 0.38834553956985474, -0.7405388355255127, 0.23074066638946533, -0.6894919872283936, 0.20147155225276947, -0.5153257846832275, -0.40883633494377136, 0.6673071980476379, -0.09763383865356445, 0.3771308660507202], "7436654d-25ea-4058-9623-c981db612e37": [-0.1550539880990982, -0.0984470397233963, -0.03271062672138214, 0.1660420149564743, 0.5161548852920532, -0.7287388443946838, 0.48818954825401306, 0.34190282225608826, -0.5680866837501526, -0.6499821543693542, -0.5542011260986328, 0.44039449095726013, -0.9805149435997009, 0.5201153755187988, 0.39192456007003784, 1.1100202798843384, 0.430440753698349, 0.048929691314697266, -0.3690629303455353, -0.32654815912246704, 0.02167971059679985, 0.21881365776062012, -0.43303146958351135, 0.6459054946899414, 0.47750794887542725, 0.11078524589538574, 0.088255375623703, 0.5167124271392822, -1.260861873626709, 0.13955941796302795, 0.4223650395870209, -0.1887601613998413, 0.22726315259933472, 0.023593664169311523, -0.0531764030456543, -0.1233685165643692, -0.5676795840263367, -0.2506142854690552, 0.4321008324623108, -0.1741180121898651, -0.6251588463783264, -0.5077191591262817, -0.5350890755653381, 0.08468414098024368, -0.6807131171226501, 0.275812566280365, -1.1951836347579956, 0.04694551229476929, -0.5470584630966187, -0.06690061837434769, -0.8504236936569214, 0.5201218128204346, -0.0718696266412735, 0.4784557521343231, 0.5043961405754089, 0.880793571472168, -0.02146044932305813, -1.1600334644317627, -0.40801993012428284, -0.3878232538700104, 0.6122688055038452, -0.06569445878267288, 0.5404119491577148, 0.20288050174713135, -0.0706586092710495, -0.09981922805309296, -0.3441404104232788, 0.8479708433151245, -1.1975005865097046, -0.6546645760536194, -0.6436078548431396, 0.184587299823761, 0.5983565449714661, 0.30831459164619446, 0.542655885219574, -0.5614410638809204, -0.06274791061878204, 0.7297316193580627, 1.1308670043945312, 0.9642150402069092, 0.09554819762706757, 0.3615107834339142, -0.18400883674621582, 0.6414062976837158, -0.5090914368629456, -0.39241138100624084, -1.064344048500061, -0.5014932155609131, -0.21224990487098694, 0.8336461186408997, -0.2050422579050064, -0.5359810590744019, 0.8091365694999695, 0.36766257882118225, 0.1678805947303772, -0.44136619567871094, 0.45272156596183777, -0.4173966646194458, 0.7258436679840088, 0.6052027940750122, -0.6841808557510376, -0.8346579670906067, 0.32073715329170227, -0.011850384064018726, -1.2699666023254395, -0.2792980670928955, -0.5567651987075806, -0.016875535249710083, 0.4085276424884796, 0.39488038420677185, -0.41759565472602844, -0.5243859887123108, -0.5839964747428894, -0.34394460916519165, -0.6939617395401001, 0.9998753666877747, 0.9694817066192627, 0.11320699751377106, -0.23574209213256836, 0.006199486553668976, 0.6702432036399841, 1.0159492492675781, -0.013850018382072449, 0.8830763101577759, 0.3802322745323181, 0.6949595212936401, 0.32633674144744873, 0.5072559714317322, -0.7147403359413147, -0.9767870903015137, 0.13359710574150085, 0.7625091075897217, 0.020670751109719276, -0.01239156723022461, -0.11731612682342529, 0.1836128532886505, 0.23668314516544342, 0.14749769866466522, 0.06005733460187912, -0.07934478670358658, -0.39121004939079285, -0.6178801655769348, -0.11788128316402435, -0.1334630250930786, 0.7060537934303284, -0.08628810197114944, -0.07950985431671143, -0.7768927216529846, -0.2042214572429657, 0.7505754828453064, -0.025231894105672836, 0.45390191674232483, 1.2335125207901, -0.6725102066993713, -0.20670323073863983, 0.546846330165863, -0.28278404474258423, 0.5274945497512817, -0.4155252277851105, 0.4973527789115906, 0.43227264285087585, -0.22768047451972961, -0.307280033826828, 0.3966222107410431, -0.22086653113365173, -0.04671349376440048, 0.5978540182113647, 0.07605113089084625, 0.04751969873905182, 0.16853097081184387, -0.718185544013977, -0.9617459177970886, 0.9340164065361023, -0.4683037996292114, 0.0018674060702323914, 0.4115167260169983, 1.3506089448928833, 0.20315466821193695, 0.6923432946205139, -0.6762852668762207, -1.0929871797561646, 0.6831271052360535, -0.04480850696563721, -0.2582440674304962, -0.043089017271995544, -0.6639376282691956, 1.6344603300094604, -0.2611527740955353, 0.05963372439146042, 0.1953171044588089, -1.3835195302963257, -1.0552300214767456, -0.05770913511514664, 0.39886951446533203, 1.261771321296692, -0.5877928733825684, -0.14354482293128967, 0.47094857692718506, -0.22660325467586517, 0.614655613899231, 0.2642880082130432, 0.4504275619983673, -0.32842883467674255, -1.0351868867874146, -1.0072474479675293, 0.6448906660079956, 0.46876561641693115, -0.06137970834970474, 0.16989001631736755, 0.5494436025619507, 0.3462325930595398, 0.30376946926116943, 0.029766283929347992, -0.5350613594055176, 0.8239877223968506, 0.24820581078529358, 0.2861366868019104, -0.41273772716522217, 0.8087220191955566, -0.9940903782844543, 0.41829538345336914, -0.5041928291320801, -0.6024311184883118, 0.2919723391532898, -0.15851785242557526, 1.4911022186279297, 1.3809298276901245, -0.5093520879745483, -0.4874665141105652, 0.5266286134719849, 0.29338338971138, -0.4674813151359558, 0.40656596422195435, 0.1415090709924698, -0.25682535767555237, -0.02334827184677124, 0.11178596317768097, -0.3710445463657379, 1.2083454132080078, -0.4127378761768341, 0.004131568595767021, 1.335921049118042, 0.3388950526714325, 0.24313171207904816, 0.3563992977142334, 0.06182384490966797, 0.16275683045387268, -0.24758630990982056, -0.9553727507591248, -0.4367454946041107, -0.5662412643432617, -0.5113648176193237, -0.002277001738548279, -0.654822587966919, 0.8024297952651978, -0.24866652488708496, -0.621662974357605, -0.0747547596693039, 0.8246163725852966, 0.8314069509506226, -0.4310239255428314, 0.8311169743537903, 0.08744818717241287, -0.09261618554592133, -0.28521257638931274, -1.1608716249465942, -0.6838112473487854, -0.12338228523731232, 0.16994282603263855, -0.07087990641593933, 0.1362198293209076, 0.09618081897497177, -0.33690986037254333, -0.15538859367370605, -0.5258926153182983, 0.3121325671672821, 1.1546117067337036, 0.287021279335022, 0.4444289803504944, -0.895440936088562, -0.193039670586586, 0.7557041049003601, -0.460911363363266, -1.1049602031707764, -0.5933554172515869, -0.5930708646774292, 0.08003154397010803, -0.41431090235710144, -0.5337784886360168, 0.1457553505897522, 0.11106336116790771, 0.47734981775283813, -0.21804089844226837, 1.0363372564315796, 0.6992610096931458, 0.48175036907196045, 0.44501903653144836, 0.3857397735118866, 0.4416405260562897, -0.10066457092761993, -0.014364674687385559, 0.5750072002410889, 0.9765111207962036, -0.398690789937973, -0.20319581031799316, -0.33029893040657043, -0.5273182392120361, -0.38647714257240295, -4.315058708190918, 0.20673204958438873, -0.01992901787161827, -0.5761273503303528, 0.5075783729553223, 0.37345999479293823, -0.2532280385494232, -0.7516528367996216, -0.5171459913253784, 0.10857588052749634, -0.12435145676136017, -0.045471444725990295, 0.6887730956077576, 0.5290166139602661, 0.050338275730609894, 0.38392189145088196, 0.3552771508693695, -0.9229564070701599, -0.32970911264419556, 0.3765947222709656, -0.3959029018878937, -1.183915138244629, -0.2826799154281616, 0.17159868776798248, 0.05868964642286301, 0.5887391567230225, -0.5729988813400269, 0.7325320839881897, -0.6515600681304932, -0.3588158190250397, 0.18798291683197021, -0.07518715411424637, -0.02597077749669552, -0.08233235031366348, 0.062065500766038895, -0.9278823733329773, 0.6978058218955994, -0.06758485734462738, -0.14427848160266876, -0.3465520739555359, -0.8621156215667725, -0.6269444227218628, -0.195108562707901, -0.22742733359336853, 0.7994266152381897, -0.31816527247428894, -0.47291481494903564, -0.28048640489578247, -0.01661882922053337, 0.6931475400924683, -0.22741389274597168, -0.9092864394187927, -0.015237703919410706, 0.7103305459022522, 0.10488347709178925, -0.25032344460487366, -0.01898723840713501, -0.30147579312324524, -0.3016335964202881, -0.21630288660526276, 0.20263411104679108, -0.8708998560905457, -0.40502479672431946, -0.8357265591621399, -0.4046761393547058, -0.9409322142601013, -0.36185717582702637, -0.5279229879379272, 0.7212721705436707, 0.6848530173301697, -0.6659349203109741, 1.0087424516677856, -0.2447872757911682, -1.3852238655090332, -0.07171819359064102, 0.24669361114501953, -0.5550156235694885, -0.4449654817581177, -0.48318225145339966, 0.29538246989250183, -0.9913289546966553, -0.640963613986969, 0.11086107790470123, 0.7128073573112488, -0.7312043309211731, -0.6172876358032227, 0.09131325781345367, -0.4403388202190399, -0.37650546431541443, -0.6069565415382385, 0.6867541074752808, -0.765156626701355, -0.09369982033967972, 0.6655066013336182, 0.5535973906517029, 0.37247326970100403, 0.10407546907663345, -1.087807536125183, 0.859984815120697, 0.18146279454231262, 0.7794352769851685, -0.8566927313804626, 0.4281674325466156, -0.6968868374824524, -0.08157273381948471, 0.408825159072876, -0.7010394334793091, -0.04259813576936722, 0.4854177236557007, -0.2886127233505249, 0.5316401720046997, -0.23282788693904877, 0.36206039786338806, -0.6157870292663574, 0.27532872557640076, -0.8454679250717163, 0.4562961161136627, 0.8307859897613525, 0.21837188303470612, 0.13194642961025238, -0.5156064033508301, 0.5998750925064087, -0.5773142576217651, -0.4495915174484253, -1.742921233177185, 0.5043126940727234, 0.3884120285511017, -0.23938429355621338, 0.22160418331623077, 0.20434193313121796, -0.44940826296806335, -0.12808430194854736, 0.7125443816184998, 0.07598111778497696, 0.5917824506759644, -0.6578431725502014, -0.23267096281051636, 0.03993130102753639, 0.10542555898427963, -0.12861312925815582, 0.33885231614112854, 0.2818102240562439, 0.28640198707580566, 0.5806852579116821, 0.3908689618110657, 0.5842409729957581, -0.9840743541717529, 0.5282164216041565, -0.48503080010414124, -0.5357164740562439, -0.2787591814994812, -0.21928364038467407, 0.5437161922454834, -1.0357890129089355, 0.008579105138778687, -0.4343765676021576, 0.8489165902137756, 0.24185392260551453, -0.10509596019983292, -0.6701411008834839, 0.3939642608165741, -0.31695884466171265, 0.08700725436210632, 0.07231246680021286, -0.5898012518882751, 1.339012861251831, -0.3004850149154663, -0.01637411117553711, -0.08782470226287842, 0.28634536266326904, 0.23747694492340088, -0.26941990852355957, -0.30908042192459106, 0.31673309206962585, -0.7689962983131409, 0.40009498596191406, -0.06523865461349487, -0.07463665306568146, 0.09367227554321289, 0.3530298173427582, 0.06430239975452423, 0.10571478307247162, -0.08947595953941345, 0.005229792557656765, 0.7266440391540527, -0.4786228537559509, 0.5556455850601196, -0.47292888164520264, -0.13326413929462433, -0.45957231521606445, 0.34349820017814636, 0.3709162473678589, -0.5406733751296997, 0.13573385775089264, -0.8145146369934082, -1.2355599403381348, 0.3350912034511566, 0.02483166754245758, 0.29523617029190063, 0.45889440178871155, -0.32904091477394104, 0.2839255630970001, -0.40775418281555176, -0.017492588609457016, -0.14971818029880524, -0.8286446928977966, 0.3667283058166504, 0.08402012288570404, -0.2436385154724121, -0.0791778415441513, -0.5710145831108093, -1.0037531852722168, -0.4692348539829254, 0.4146422743797302, 0.19077065587043762, -0.5047345161437988, -0.3737468123435974, -0.18736985325813293, 0.47902217507362366, 0.0983150452375412, 0.3434920907020569, 0.03476832062005997, -0.03555692732334137, -0.39085572957992554, -0.5593118667602539, 0.692919909954071, 0.23654994368553162, -0.33460959792137146, 0.6815506219863892, -0.2523772716522217, 0.4510388672351837, -0.7052378058433533, 0.3048027753829956, 1.1802011728286743, -0.02527667209506035, 0.23163819313049316, -0.5297319889068604, 0.751075267791748, -0.6709564328193665, 0.7322155833244324, 0.3340397775173187, 0.2577880024909973, -0.029957354068756104, -0.4596923589706421, 0.31246405839920044, -0.12157198786735535, -0.4174305200576782, -0.46949973702430725, -0.27993085980415344, 0.7892077565193176, 0.11294741928577423, 0.41828203201293945, -0.26975584030151367, -0.28113409876823425, 1.0680394172668457, -0.39256349205970764, -0.6828205585479736, 0.2719631493091583, -0.08808551728725433, 0.3797421455383301, 0.2751505970954895, 0.6674662232398987, -1.0931943655014038, 0.8568543195724487, 1.145533561706543, 0.5527694225311279, -0.375795841217041, -0.3441413938999176, 0.957146406173706, -0.4191263020038605, -0.23830145597457886, -1.217995524406433, 0.13122612237930298, -0.05539104342460632, 0.46108493208885193, -0.08282892405986786, -0.30986154079437256, -0.1791716367006302, 0.6671868562698364, -1.1036652326583862, -0.8784182071685791, -0.36413872241973877, -0.13872626423835754, 0.47495806217193604, 0.4970436096191406, -0.8208957314491272, 0.2351962924003601, 0.41423410177230835, -0.2743898034095764, -0.013641618192195892, -0.1126617044210434, 1.1585991382598877, -1.0256526470184326, 0.11944705247879028, 0.0006183236837387085, 0.161894291639328, 0.3761367201805115, 1.2511099576950073, -0.7642282247543335, 0.22046133875846863, -0.8548789024353027, 1.2065433263778687, 1.0161995887756348, -0.04295091703534126, 0.35429808497428894, -0.3017619252204895, 0.14564181864261627, -1.179199457168579, -0.15380075573921204, 0.590506374835968, 0.18099477887153625, -0.4973192512989044, 0.4921949505805969, 0.9955391883850098, -1.1375418901443481, -0.6136666536331177, -0.058277055621147156, 0.031225159764289856, -0.37782496213912964, 0.44925427436828613, 0.31313642859458923, 0.48139119148254395, 0.4123539924621582, 0.562354326248169, 0.3864324986934662, 1.048948049545288, -0.2588886618614197, -0.09173071384429932, 1.0418531894683838, 1.2325578927993774, 1.0607216358184814, 0.1920708417892456, 0.17203375697135925, 1.0373270511627197, -0.7692433595657349, -0.9195189476013184, 0.1498272716999054, -0.1261407434940338, 0.3250138759613037, 0.1704210638999939, -0.8099129796028137, 0.4797014892101288, 0.9751126766204834, 1.1887876987457275, -0.4653966426849365, 0.42020025849342346, -0.04736506938934326, -0.429168164730072, 0.7755010724067688, -0.10131148993968964, 0.16103370487689972, 0.4913567006587982, -0.6029648780822754, -0.7284537553787231, -0.3321473002433777, 0.2947525084018707, -0.01091695949435234, -0.314144492149353, -0.1914285272359848, -0.19345086812973022, -0.6262880563735962, 0.6887422800064087, 1.2448865175247192, -0.0031336545944213867, 0.18105466663837433, -0.35148322582244873, 1.0051448345184326, 0.3033398985862732, 0.324053555727005, 0.14610211551189423, -0.3310937285423279, -0.09739460051059723, -0.5044605731964111, 0.44799917936325073, 0.31785058975219727, 0.16888609528541565, 0.42066845297813416, -0.42168229818344116, 0.22606375813484192, 0.5682673454284668, 0.5535738468170166, -0.29925405979156494, -0.784331738948822, -0.9258202910423279, 0.031045816838741302, -1.100900411605835, -0.08742395043373108, 0.5522063970565796, -0.1625787764787674, -1.1566815376281738, -0.6332401037216187, -0.44469478726387024, 0.0297677144408226, -0.33558836579322815, -0.485499769449234, -0.20756761729717255, 0.17303887009620667, 0.3161263167858124, 0.07208500802516937, 0.8333484530448914, 0.7705065011978149, 0.38066065311431885, -0.39346930384635925, 0.4559273421764374, 0.44219186902046204, 1.5015963315963745, -0.19271276891231537, -0.1259964406490326, -1.247909426689148, 0.5970157384872437, 1.0115445852279663, 0.8203311562538147, -1.5586705207824707, 0.733726978302002, 0.006616540253162384, -0.8405507206916809, 0.7049388289451599, -0.17047089338302612, -0.06153455376625061, -0.44952085614204407, 0.08813922107219696, -0.27603209018707275, -0.22601860761642456, 0.6958549618721008, -0.346276193857193, 0.8733970522880554, 0.8352329134941101, 0.5398874878883362, -0.6597954034805298, 0.03594926744699478, -0.05870215594768524, 0.686571478843689, -0.8133519887924194, -0.31583213806152344, -1.1161593198776245, -1.0197479724884033, -0.2593303918838501, -0.04273832216858864, -0.6398914456367493, -0.6059896945953369, -0.06077587231993675, -0.46428874135017395, -0.1417652666568756, 0.020624453201889992, -0.3881400227546692, -0.34793537855148315, 0.1334306299686432, -0.47536683082580566, -0.8461589813232422, 0.49557963013648987, 0.5958571434020996, -0.626879096031189, -0.014572672545909882, -0.714569628238678, 0.5636568069458008, -0.9463990330696106, -0.7082000970840454, 0.48627394437789917, 0.22866393625736237, 0.39212673902511597], "4387dad2-8b75-46de-bc1b-3ff7936eb37a": [-0.29255783557891846, 0.24704837799072266, -0.16994556784629822, 0.0016885735094547272, 0.9864700436592102, -0.6913970708847046, 0.5361634492874146, 0.1251937747001648, -0.026233291253447533, -0.6054399013519287, -0.9331721663475037, 0.4758917987346649, -0.9127257466316223, 0.5336076021194458, 0.5983899235725403, 1.015754222869873, 0.3169289231300354, 0.04744549095630646, -0.36838003993034363, -0.2707752287387848, 0.1807066649198532, 0.10536050796508789, -0.2467576265335083, 0.4689294099807739, 0.3426436483860016, -0.13158541917800903, 0.04410593584179878, 0.1378341019153595, -1.364331603050232, 0.22248980402946472, 0.19107812643051147, -0.17027877271175385, 0.08298471570014954, 0.16024065017700195, -0.24779459834098816, -0.2561837434768677, -0.6307547092437744, -0.15644243359565735, 0.31860700249671936, -0.32873761653900146, -0.5332557559013367, -0.3332127630710602, -0.42853379249572754, 0.28956839442253113, -0.34062308073043823, 0.218794047832489, -1.1793317794799805, 0.3979106545448303, -0.5303448438644409, -0.35658562183380127, -0.937047004699707, 0.5072972774505615, -0.07694114744663239, -0.017221063375473022, 0.6288576126098633, 1.131991982460022, 0.2746742367744446, -0.9285237193107605, 0.03877415508031845, -0.3835906684398651, 0.32009685039520264, -0.09858433902263641, 0.3639543056488037, 0.23597341775894165, 0.28399261832237244, -0.27778303623199463, -0.18392926454544067, 0.9344470500946045, -1.0144015550613403, -0.6946077346801758, -0.12465128302574158, 0.23418742418289185, 0.22815844416618347, 0.02861495316028595, 0.7418306469917297, -0.15023967623710632, -0.2584947943687439, 0.7795557975769043, 0.8733475804328918, 0.6732193231582642, 0.26397866010665894, 0.816133975982666, -0.1942548006772995, 0.8690704703330994, -0.47219884395599365, -0.5661475658416748, -0.8850300312042236, -0.2656412422657013, -0.56798255443573, 1.2327172756195068, -0.07439461350440979, -0.618445634841919, 0.8508718609809875, 0.536027729511261, 0.39519035816192627, -0.47492143511772156, 0.8295445442199707, -0.07686970382928848, 0.27039676904678345, 0.6305747032165527, -0.5336007475852966, -1.0475388765335083, 0.21406951546669006, -0.07849197089672089, -1.4803175926208496, -0.4423770606517792, -0.6911326050758362, 0.0034219808876514435, 0.4109012186527252, 0.4311552941799164, -0.4215276837348938, -0.5425354242324829, -0.5333185195922852, -0.07603170722723007, -0.8388495445251465, 1.27556312084198, 1.026321530342102, 0.1138748750090599, -0.16844449937343597, 0.11680443584918976, 0.8810009360313416, 0.8024525046348572, 0.09554088115692139, 1.4164748191833496, 0.5438181757926941, 0.7238685488700867, 0.26507386565208435, 0.931176483631134, -0.7716785073280334, -0.9964332580566406, -0.006778586655855179, 0.9535126686096191, -0.009774358943104744, 0.03900475800037384, 0.1520763486623764, 0.16218635439872742, -0.044468048959970474, 0.019270841032266617, 0.04722588136792183, -0.2348678559064865, -0.18944871425628662, -0.5892453789710999, -0.1355723887681961, -0.2620215117931366, 0.6214882731437683, 0.010671913623809814, -0.7144041061401367, -0.7287060618400574, -0.2730512022972107, 1.0405945777893066, 0.07576517760753632, 0.46714097261428833, 1.1181703805923462, -0.67941814661026, -0.18345189094543457, 1.010331630706787, -0.22550447285175323, 0.28477686643600464, -0.4742090702056885, 0.3765796422958374, 0.6176316142082214, -0.5235788822174072, -0.3440726399421692, 0.169826477766037, -0.28439995646476746, -0.03523506969213486, 0.5505374073982239, -0.2021111696958542, 0.2519986927509308, 0.034182578325271606, -0.7775974273681641, -0.8876706957817078, 1.1092090606689453, -0.5968681573867798, -0.19998857378959656, 0.5072454810142517, 1.315091848373413, 0.34481319785118103, 0.3759653866291046, -0.14486536383628845, -1.2910114526748657, 0.6046087145805359, -0.367775559425354, -0.7262012362480164, -0.09096702933311462, -0.7529300451278687, 1.5101786851882935, -0.15927928686141968, 0.11436142027378082, -0.037750013172626495, -1.406551480293274, -1.2188243865966797, 0.15515412390232086, 0.38337811827659607, 1.0678648948669434, -0.49350666999816895, 0.19727548956871033, 0.25582730770111084, -0.4326458275318146, 0.7240849137306213, -0.08533076196908951, 0.5294395089149475, -0.1508922278881073, -1.033774495124817, -1.2436306476593018, 0.7479593753814697, 0.5295876264572144, -0.22345858812332153, 0.6874623894691467, 0.16174468398094177, -0.0222143717110157, 0.2694632411003113, 0.5585740804672241, -0.2714221775531769, 0.7085018157958984, 0.5122011303901672, 0.5652387142181396, -0.4206691384315491, 1.1690099239349365, -1.0572140216827393, 0.43538427352905273, -0.19402317702770233, -0.5582999587059021, 0.5144240856170654, -0.5130648612976074, 1.4113563299179077, 1.2267229557037354, -0.35299187898635864, -0.0915922299027443, 0.4018811881542206, 0.2842633128166199, -0.3279871344566345, 0.6665500998497009, 0.10671662539243698, 0.09725571423768997, -0.4203183054924011, -0.16007517278194427, -0.7150353789329529, 0.9798727631568909, -0.7287346124649048, 0.3372003138065338, 1.3063627481460571, 0.11285143345594406, 0.574038028717041, 0.9819488525390625, 0.13862772285938263, 0.3715408146381378, -0.37708351016044617, -0.5059255361557007, -0.6267583966255188, 0.10562658309936523, -0.5154193639755249, 0.014599811285734177, -0.9637399315834045, 0.46217647194862366, -0.5173830986022949, -0.5306059122085571, 0.4255591630935669, 0.849992036819458, 0.8600749969482422, -0.8994201421737671, 0.6241181492805481, 0.27060604095458984, 0.12996116280555725, -0.30447834730148315, -1.1991698741912842, -0.6211578845977783, -0.1970701515674591, 0.43800440430641174, -0.011859238147735596, 0.16532516479492188, -0.17442497611045837, -0.3726499080657959, 0.12190714478492737, -0.400507390499115, -0.05497688800096512, 1.1436583995819092, 0.18934588134288788, 0.11382713913917542, -1.0665907859802246, -0.1280684769153595, 0.8718298673629761, -0.6895551681518555, -1.1180658340454102, -0.19635039567947388, -0.6231517791748047, 0.4361971318721771, -0.454862505197525, -0.1521637886762619, 0.42686405777931213, 0.18966399133205414, 0.8387030363082886, -0.436615526676178, 0.3174299895763397, 0.9872886538505554, -0.054353855550289154, 0.44128361344337463, 0.5177067518234253, 0.43156301975250244, 0.1693997085094452, 0.1258878856897354, 0.5531624555587769, 0.6525030732154846, -0.3585417866706848, -0.5430155992507935, -0.0012277960777282715, -0.42847102880477905, -0.7707940340042114, -4.1142401695251465, -0.038856782019138336, -0.27018338441848755, -0.49062737822532654, 0.2506027817726135, 0.28051549196243286, 0.1607300341129303, -1.1659165620803833, -0.4430180490016937, 0.16706982254981995, -0.7333461046218872, 0.0771464928984642, 0.5022239685058594, 0.5650779604911804, 0.3658140301704407, 0.5427289009094238, 0.1670713871717453, -0.7683759927749634, -0.1402978152036667, 0.41961294412612915, -0.05335661396384239, -1.0445866584777832, -0.462833046913147, 0.3647654354572296, 0.06964634358882904, 0.6827486753463745, -0.8182895183563232, 0.568228542804718, -0.5926915407180786, -0.5983121395111084, 0.30837368965148926, -0.46926119923591614, -0.11488298326730728, 0.06427157670259476, -0.008471030741930008, -0.6666570901870728, 0.7076563239097595, 0.04499657452106476, -0.24075902998447418, -0.40553101897239685, -0.45304229855537415, -0.4908519983291626, -0.13500264286994934, -0.2575540542602539, 1.0592775344848633, -0.3696513772010803, -0.6286646127700806, -0.23758193850517273, 0.023947307839989662, 0.7828124165534973, 0.04806891083717346, -0.5046339631080627, 0.2735428810119629, 0.6751030683517456, -0.059957921504974365, -0.2712066173553467, 0.29313427209854126, -0.3314415514469147, -0.3400280177593231, -0.06407686322927475, 0.3316344916820526, -1.0446550846099854, -0.2538759708404541, -0.9052097797393799, -0.32532382011413574, -1.0952999591827393, -0.5804327726364136, -0.48896026611328125, 0.7138159275054932, 0.793181836605072, -1.1321784257888794, 0.5922237038612366, -0.2289777398109436, -1.3125462532043457, -0.23337502777576447, -0.3563680946826935, -0.3416821360588074, -0.6722413897514343, -0.39700770378112793, 0.4628734290599823, -0.6762060523033142, -0.408691942691803, 0.6936273574829102, 0.35678625106811523, -0.2392154186964035, -0.9410999417304993, -0.20420023798942566, -0.6909897923469543, -0.45421984791755676, -0.6997360587120056, 0.44169217348098755, -0.8385933637619019, -0.20774541795253754, 0.516911506652832, 0.4520885646343231, 0.5076717734336853, 0.20729012787342072, -1.034886121749878, 0.8117418885231018, 0.1899893879890442, 0.7992477416992188, -0.6996428966522217, 0.37953606247901917, -0.480861634016037, 0.01006726548075676, 0.31990790367126465, -0.7560381293296814, -0.02137424424290657, 0.4301292300224304, -0.043336424976587296, 0.2729334831237793, -0.5706910490989685, 0.2683873176574707, -0.7103167772293091, -0.05276425555348396, -0.9033453464508057, 0.3346918523311615, 0.7574697732925415, 0.3113158345222473, 0.17404255270957947, -0.6910818219184875, 0.4306521415710449, -0.9754786491394043, -0.7184345722198486, -1.6551710367202759, 0.3046550452709198, 0.3096569776535034, -0.28221261501312256, 0.25429463386535645, 0.24964207410812378, -0.1428130567073822, -0.3226277530193329, 0.4286614656448364, -0.3584451377391815, 0.6728160381317139, -0.7505117058753967, -0.19708864390850067, -0.09829100221395493, 0.4979826509952545, -0.3795905113220215, -0.031077196821570396, -0.03263195976614952, 0.42883116006851196, 0.5587252974510193, 0.9446322917938232, 0.6234480738639832, -0.9519627690315247, 0.3604152500629425, -0.3104349374771118, 0.15969239175319672, -0.43981531262397766, -0.09547299891710281, 0.5441084504127502, -1.0437355041503906, -0.13118977844715118, -0.7157581448554993, 0.7000571489334106, 0.2721787989139557, -0.20046675205230713, -0.5202060341835022, 0.1549910455942154, -0.7355948090553284, -0.37379175424575806, 0.17890380322933197, -0.2622174620628357, 1.244096040725708, -0.05990596115589142, 0.020157404243946075, 0.06795616447925568, 0.27087903022766113, 0.6178486943244934, -0.15921568870544434, -0.6309002041816711, 0.10946736484766006, -0.4719635546207428, 0.3296777009963989, 0.11074608564376831, -0.05790816247463226, 0.20301276445388794, 0.6132239699363708, -0.2103116363286972, 0.10018573701381683, 0.050705209374427795, -0.002114858478307724, 0.7048315405845642, -0.14910244941711426, 0.10099136829376221, -0.5087165832519531, -0.1471714973449707, -0.6823300123214722, 0.8566699028015137, 0.27030953764915466, -0.22058652341365814, -0.03075830265879631, -0.718519389629364, -1.43248450756073, 0.4387553930282593, 0.26846447587013245, 0.413777232170105, 0.2296520471572876, -0.354279488325119, 0.06947474926710129, -0.4568594694137573, 0.10314202308654785, 0.031895436346530914, -1.313643455505371, 0.4581673741340637, -0.2998906075954437, -0.48260584473609924, 0.14948275685310364, -0.31055259704589844, -1.065117597579956, -0.6341180801391602, 0.19436317682266235, 0.11055268347263336, -0.7182808518409729, 0.005366958677768707, -0.051304399967193604, 0.08786757290363312, -0.22559741139411926, 0.6303980350494385, 0.29307466745376587, 0.19730237126350403, -0.21646474301815033, -0.5786111950874329, 0.5085241198539734, 0.01371154934167862, -0.1806785762310028, 0.4218098819255829, -0.3642488718032837, 0.5153119564056396, -0.53001868724823, 0.1917194426059723, 1.1597867012023926, -0.1883590817451477, 0.5327082872390747, -0.3518744111061096, 0.29040953516960144, -0.18900015950202942, 0.7409365177154541, 0.5212583541870117, 0.6184091567993164, -0.12456691265106201, -0.9238837957382202, -0.015529204159975052, -0.06563179194927216, -0.3206861913204193, -0.16725394129753113, -0.24400246143341064, 1.07793390750885, 0.14878009259700775, 0.3892599940299988, -0.17865724861621857, -0.03982340171933174, 1.016181230545044, -0.6294987201690674, -0.8123623132705688, 0.5561609268188477, -0.5743249654769897, 0.3801184892654419, 0.5381574630737305, 0.24182161688804626, -0.9200413823127747, 0.9455239176750183, 0.8841177225112915, 0.44175854325294495, -0.5175637006759644, -0.5677458047866821, 0.7306252717971802, -0.5507277250289917, -0.1337691843509674, -1.0977131128311157, -0.028244048357009888, -0.03638323396444321, 0.304837167263031, -0.5111309885978699, -0.08853688091039658, 0.014229532331228256, 0.654617190361023, -1.0424995422363281, -0.9703319668769836, 0.004125118255615234, -0.4014127850532532, 0.3361171782016754, 0.5513567328453064, -0.8774486184120178, 0.1386147439479828, 0.3684823513031006, -0.38117486238479614, -0.1254345029592514, -0.44645965099334717, 1.4473438262939453, -1.0006548166275024, 0.2805436849594116, 0.10963030159473419, 0.018355973064899445, 0.633643627166748, 1.1265790462493896, -0.4643454849720001, 0.18774652481079102, -0.4784276783466339, 0.7951048016548157, 0.9221946597099304, -0.1000853180885315, -0.08455295860767365, 0.03890267014503479, 0.0049982499331235886, -1.096301794052124, -0.07050856202840805, 0.39606788754463196, 0.7570957541465759, -0.17801019549369812, 0.7348894476890564, 0.9438635110855103, -0.7867801785469055, -0.5504946112632751, 0.3332446217536926, -0.5105588436126709, 0.1576962172985077, -0.03192373365163803, 0.7583255171775818, 0.1464690864086151, 0.7934587001800537, 0.4344218075275421, 0.2862664461135864, 1.0222103595733643, -0.2859525978565216, 0.31269481778144836, 0.8885071873664856, 0.9438995122909546, 0.9557561278343201, 0.2833661437034607, 0.42998141050338745, 1.1054482460021973, -0.8223928809165955, -1.0065479278564453, 0.23167206346988678, 0.1612624228000641, 0.362112820148468, 0.11190551519393921, -0.7846824526786804, 0.620252788066864, 0.8518156409263611, 1.3904240131378174, -0.4230252504348755, 0.35465312004089355, -0.2630426585674286, -0.7370360493659973, 0.6085185408592224, 0.05154690518975258, 0.031376831233501434, 0.6483374238014221, -0.8381491303443909, -0.39022594690322876, 0.02635350078344345, 0.6682261228561401, -0.07309534400701523, 0.14515915513038635, -0.5779410004615784, -0.29885849356651306, -0.561626672744751, 0.7044949531555176, 1.1938844919204712, 0.002821151167154312, 0.05360223352909088, 0.07283470034599304, 1.0141232013702393, 0.02190571278333664, 0.5007636547088623, 0.029285386204719543, -0.37252530455589294, 0.06408819556236267, -0.6572814583778381, 0.14570626616477966, -0.09990734606981277, 0.45222362875938416, 0.3481152653694153, -0.43602028489112854, 0.06650062650442123, 0.6016004085540771, 0.8072834014892578, -0.20495393872261047, -1.121237874031067, -1.0591025352478027, 0.14518822729587555, -1.2882577180862427, -0.13243083655834198, 0.2799202501773834, -0.12434516847133636, -1.0139310359954834, -0.6620792150497437, -0.6538973450660706, 0.02884291112422943, -0.46015089750289917, -0.5912089347839355, -0.22165602445602417, 0.38064807653427124, 0.44906994700431824, 0.15110668540000916, 0.677538275718689, 0.9408501386642456, 0.005200641229748726, -0.2998603582382202, 0.5264176726341248, 0.063941590487957, 1.3073121309280396, -0.5275952816009521, 0.33099329471588135, -1.1100234985351562, 0.6888150572776794, 0.6566046476364136, 1.1802890300750732, -1.3574340343475342, 0.7575709819793701, 0.36369800567626953, -0.5549604892730713, 0.7626819014549255, 0.17568977177143097, -0.12992416322231293, -0.5743868350982666, -0.3360447883605957, -0.4135274589061737, 0.30083009600639343, 0.7698900699615479, -0.5238256454467773, 0.6678234338760376, 0.6800657510757446, 0.4755845069885254, -0.6840226054191589, -0.04952289164066315, 0.016619570553302765, 0.38656195998191833, -0.9343258738517761, -0.18414120376110077, -0.779796838760376, -1.1771140098571777, -0.5570634603500366, 0.3852042257785797, -0.00986713357269764, -0.7871776223182678, -0.2506884038448334, -0.8155133128166199, -0.21320927143096924, 0.12330957502126694, -0.4761350154876709, -0.45830467343330383, -0.19990545511245728, -0.6866295337677002, -0.9514263868331909, 0.42555975914001465, 0.7226350903511047, -0.7073736190795898, -0.05445452034473419, -0.6243180632591248, 0.23578646779060364, -0.924742579460144, -0.6099063754081726, 0.6054555773735046, -0.15539506077766418, 0.434532105922699], "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71": [-0.2058100700378418, 0.11844076216220856, -0.424225389957428, 0.05642222613096237, 0.6669086813926697, -0.7291108965873718, 0.6247802376747131, 0.5338136553764343, -0.3081023097038269, -0.595323920249939, -0.6626795530319214, 0.3757525086402893, -0.5982263684272766, 0.30402839183807373, 0.9259825944900513, 0.8369347453117371, 0.5053011178970337, -0.2841634750366211, -0.5270217061042786, -0.2008824348449707, -0.10272272676229477, -0.15250855684280396, -0.5117856860160828, 0.6316136121749878, 0.5537011623382568, 0.25014305114746094, -0.09305591881275177, 0.3570726811885834, -1.1332831382751465, 0.23464339971542358, 0.31455233693122864, 0.12650342285633087, 0.15357841551303864, -0.25810807943344116, 0.12069256603717804, -0.7415201663970947, -0.7337729930877686, 0.07064251601696014, 0.43013426661491394, -0.5694701671600342, -0.5185640454292297, -0.27134132385253906, -0.23739387094974518, 0.23172521591186523, -0.7778301239013672, 0.4207458794116974, -1.2416566610336304, 0.4378897547721863, -0.682150661945343, 0.15936455130577087, -0.7807294726371765, 0.5739303827285767, 0.03226861357688904, 0.5713430643081665, 0.5323364734649658, 1.0306419134140015, 0.2232474982738495, -1.035140037536621, -0.11318524926900864, -0.5424948930740356, 0.5837359428405762, -0.15539276599884033, 0.6784963607788086, 0.026669364422559738, 0.07580655068159103, -0.41856592893600464, -0.44309261441230774, 0.6573975682258606, -0.8104942440986633, -0.4613490700721741, -0.536611020565033, 0.20375627279281616, 0.1749173253774643, -0.07113548368215561, 0.200919046998024, -0.18668018281459808, -0.06341242045164108, 0.456657350063324, 1.2284897565841675, 0.9218323230743408, -0.2441866397857666, 0.5545163154602051, -0.4030348062515259, 0.7979686260223389, -0.4030851423740387, -0.27769535779953003, -0.6309874057769775, -0.49032607674598694, -0.3385494351387024, 0.8438905477523804, -0.736529529094696, -0.7414879202842712, 0.9321967363357544, 0.31360581517219543, 0.38426467776298523, -0.13837654888629913, 0.8276501893997192, 0.0388389453291893, 0.8577728867530823, -0.08931372314691544, -0.3351285457611084, -0.7500686049461365, -0.13022884726524353, -0.31502294540405273, -1.1953070163726807, 0.10824528336524963, -0.4973955750465393, -0.31852149963378906, 0.22956037521362305, 0.22880321741104126, -0.22986717522144318, -0.5529136061668396, -0.6152632832527161, -0.23504628241062164, -0.5860632658004761, 0.9408379793167114, 0.7223490476608276, 0.014740362763404846, -0.270492821931839, 0.034756943583488464, 0.7983459830284119, 1.093756914138794, 0.19194287061691284, 1.19677734375, 0.08543667197227478, 0.39782482385635376, 0.05481598526239395, 0.6077542304992676, -0.22879163920879364, -1.3388766050338745, 0.03523370623588562, 0.8522994518280029, -0.16220368444919586, -0.0452004037797451, -0.39111801981925964, 0.09812796115875244, 0.26161688566207886, 0.0011130832135677338, -0.03446326404809952, -0.33909156918525696, -0.3191242218017578, -0.6340942978858948, -0.15064369142055511, -0.1789475530385971, 0.36010390520095825, 0.25454166531562805, -0.11369018256664276, -0.6945162415504456, -0.13183261454105377, 0.892108678817749, -0.03366173803806305, 0.184126615524292, 0.9825019836425781, -0.5714113116264343, 0.06557542830705643, 0.634238600730896, -0.19485574960708618, 0.05723325163125992, -0.7296513319015503, 0.4563060998916626, 0.5997800230979919, -0.5239644050598145, -0.4178563952445984, 0.08359290659427643, -0.020927704870700836, -0.21200424432754517, 0.42238929867744446, 0.12672697007656097, 0.2712300717830658, 0.39152792096138, -0.426819384098053, -0.7763229608535767, 0.8092928528785706, -0.5735905170440674, -0.4048677086830139, 0.5229984521865845, 1.0690768957138062, 0.46130362153053284, 0.19171224534511566, -0.5983597040176392, -0.9609988927841187, 0.5888068079948425, 0.06456281244754791, -0.5896192789077759, -0.05488252267241478, -0.8543577790260315, 1.4537880420684814, -0.14223183691501617, -0.4915478229522705, -0.17549115419387817, -1.3763734102249146, -0.8282161355018616, -0.6288705468177795, 0.5936406254768372, 0.854223906993866, -0.6402634978294373, -0.08979518711566925, 0.4493616819381714, 0.1325400471687317, 0.5619648098945618, 0.12072919309139252, 0.4955589771270752, -0.25442779064178467, -0.6875239014625549, -0.951792299747467, 0.894824743270874, 0.31823569536209106, -0.4639134407043457, 0.045554690062999725, 0.6226881742477417, 0.2887314558029175, 0.1420770287513733, 0.16698257625102997, -0.8296733498573303, 0.24542537331581116, 0.5406714677810669, 0.35945945978164673, -0.6425144672393799, 0.287058562040329, -0.9423704743385315, 0.2610127925872803, -0.43604496121406555, -0.5148167610168457, 0.5769470930099487, 0.031983137130737305, 1.3201313018798828, 0.9355518221855164, -0.5988866090774536, -0.1736404448747635, 0.46713539958000183, 0.4061981439590454, -0.3348633646965027, 0.29785236716270447, 0.09872570633888245, -0.29101845622062683, -0.16864559054374695, 0.014070788398385048, -0.31165313720703125, 1.176517367362976, -0.6737753748893738, 0.2412792146205902, 1.200318455696106, 0.10495113581418991, 0.2749900817871094, 0.6030423641204834, 0.02547667920589447, 0.1465981900691986, -0.48649510741233826, -0.6681124567985535, -0.5091443061828613, -0.6383941173553467, -0.42422762513160706, -0.2907801866531372, -0.6968679428100586, 1.0756871700286865, 0.051631271839141846, -0.3062388002872467, 0.2572926878929138, 0.7934179902076721, 0.7793071269989014, -0.35193729400634766, 0.9347563982009888, 0.3474198579788208, 0.22903889417648315, -0.24482908844947815, -1.1842540502548218, -0.3547872304916382, -0.40227368474006653, 0.7699727416038513, 0.1144346371293068, 0.5619704723358154, -0.008857742883265018, -0.17536108195781708, 0.027822744101285934, -0.5542699098587036, -0.16143926978111267, 1.1460647583007812, 0.23869140446186066, 0.11007596552371979, -0.765685498714447, -0.2266666442155838, 0.9910194873809814, -0.4645404517650604, -1.145219087600708, -0.06370435655117035, -0.29004615545272827, 0.44069135189056396, 0.11662659049034119, -0.4718187749385834, 0.3478887379169464, 0.3883073031902313, 0.38172388076782227, -0.2657860219478607, 0.919990062713623, 1.3897970914840698, 0.60540771484375, 0.731438934803009, 0.5398654341697693, 0.40685778856277466, 0.3279387354850769, -0.39062660932540894, 0.5292230844497681, 1.0115355253219604, -0.36166563630104065, -0.2970109283924103, -0.2668691873550415, -0.5517950654029846, -0.24917680025100708, -4.4745588302612305, 0.138233944773674, -0.023071391507983208, -0.6146038174629211, 0.3956443965435028, 0.4757673144340515, 0.1759604811668396, -0.5939465761184692, -0.6724822521209717, 0.40120944380760193, -0.21935290098190308, -0.057846471667289734, 0.7094894051551819, 0.3278087079524994, 0.40054139494895935, 0.29741644859313965, -0.10125650465488434, -0.8204189538955688, 0.012592047452926636, 0.46733543276786804, -0.3108590841293335, -0.9052305221557617, -0.4758036434650421, 0.1864049881696701, 0.28664901852607727, 0.044032350182533264, -1.0312490463256836, 0.7378856539726257, -0.6861565709114075, -0.23549169301986694, 0.5289391875267029, -0.11214015632867813, -0.1888653039932251, 0.022954516112804413, 0.06300710141658783, -0.9115623831748962, 0.8572778105735779, 0.06351232528686523, -0.16274242103099823, -0.6875743865966797, -0.20596131682395935, -0.5941439867019653, -0.3061957359313965, -0.04922425001859665, 1.0652978420257568, -0.06592418253421783, -0.24691440165042877, -0.5221360921859741, 0.33841225504875183, 0.8665105104446411, -0.29892727732658386, -0.6437312960624695, -0.5242630243301392, 0.3729383647441864, 0.20618125796318054, 0.03535746783018112, -0.07694581151008606, -0.48183512687683105, -0.5613791942596436, -0.23490342497825623, 0.3459124267101288, -0.8283912539482117, -0.32952892780303955, -1.0274686813354492, 0.03594315052032471, -0.652124285697937, -0.9115262627601624, -0.77662193775177, 0.3722303807735443, 0.438543438911438, -0.6957554817199707, 0.4258109927177429, -0.2705652117729187, -1.6323232650756836, 0.0819597989320755, -0.2078419029712677, -0.49393388628959656, -0.2682148814201355, -0.3065488338470459, 0.19048108160495758, -0.6164095401763916, -0.16429831087589264, 0.08290545642375946, 0.3507886826992035, -0.5429888367652893, -0.7728309631347656, 0.7266391515731812, -0.3803691864013672, -0.7280768156051636, -0.4573143720626831, 0.559131383895874, -0.18467427790164948, -0.1380799561738968, 0.38259604573249817, 0.33449143171310425, 0.5134277939796448, -0.1763390600681305, -0.44985514879226685, 0.7192947268486023, 0.19160455465316772, 0.6104745864868164, -0.7351319789886475, -0.055158935487270355, -0.17781636118888855, -0.38548967242240906, 0.29597359895706177, -0.5833667516708374, -0.1530267298221588, 0.6286372542381287, -0.001108277589082718, 0.36347413063049316, -0.19709187746047974, -0.12296679615974426, -0.5004652738571167, 0.03433932363986969, -0.810924768447876, 0.07797197252511978, 0.5031645894050598, 0.1157289445400238, 0.2114354968070984, -0.6649588942527771, 0.7361200451850891, -0.7341312170028687, -0.00233643501996994, -1.8000507354736328, 0.25612562894821167, 0.26617416739463806, -0.24353213608264923, 0.21255843341350555, 0.06108690798282623, -0.23409438133239746, -0.019710224121809006, 0.23401354253292084, -0.42855679988861084, 0.893196165561676, -0.5589745044708252, -0.23398977518081665, -0.14643006026744843, 0.14882826805114746, -0.2105739563703537, 0.10014676302671432, 0.2017500400543213, 0.37869569659233093, 0.2925207316875458, 0.9482681155204773, 0.8012030720710754, -1.0893568992614746, 0.28824928402900696, 0.017009764909744263, -0.5771073698997498, -0.6179299354553223, -0.08679959177970886, 0.6549225449562073, -0.741836428642273, -0.2774431109428406, -0.9034267067909241, 0.5752164721488953, 0.16831813752651215, -0.11676444113254547, -0.35611292719841003, 0.3939478099346161, -0.6038068532943726, -0.14176440238952637, -0.3590852916240692, -0.15171580016613007, 1.3012584447860718, -0.816961407661438, -0.11510408669710159, -0.1453639566898346, 0.0793856680393219, 0.30537259578704834, -0.22290682792663574, -0.5540894269943237, 0.4354226589202881, -0.8209390640258789, 0.7467485666275024, -0.16275569796562195, 0.3858295977115631, 0.34439295530319214, 0.4766332507133484, 0.11806553602218628, 0.3957327604293823, -0.03643503040075302, 0.4575977921485901, 0.6559131145477295, 0.04768593609333038, 0.37363800406455994, -0.07467322051525116, -0.5231982469558716, -0.2746499478816986, 0.29867011308670044, 0.3583090901374817, -0.5032497644424438, 0.08758101612329483, -0.7465813159942627, -1.3751591444015503, -0.03588274121284485, 0.15044660866260529, 0.5080968141555786, 0.405009925365448, -0.32973942160606384, 0.03309280052781105, -0.27274036407470703, -0.06198470667004585, -0.15235862135887146, -1.0967230796813965, 0.3289823532104492, -0.037388741970062256, -0.26019006967544556, 0.2620294392108917, 0.11386378109455109, -1.0139212608337402, -0.6690244078636169, 0.45421624183654785, 0.2253461629152298, -1.1499537229537964, -0.5778433084487915, -0.35275018215179443, 0.21443690359592438, -0.31399446725845337, 0.7492209672927856, -0.09109725803136826, -0.12635964155197144, -0.2961204946041107, -0.393859326839447, 0.5263150930404663, 0.19178301095962524, -0.09013503789901733, 0.4993032217025757, -0.5441237688064575, 0.07145994156599045, -0.33135783672332764, 0.34211108088493347, 0.8554185032844543, -0.1789790540933609, 0.19494155049324036, -0.3388287425041199, 0.5960186719894409, -0.23767228424549103, 0.5639238357543945, 0.6326724886894226, 0.0869152694940567, -0.4672141969203949, -0.9223284721374512, 0.09589633345603943, 0.03741373121738434, -0.035541728138923645, 0.10329803824424744, 0.10150023549795151, 0.34574320912361145, 0.04940159618854523, 0.41822710633277893, -0.24928969144821167, -0.3422485291957855, 0.7799345254898071, -0.3825121521949768, -0.9498774409294128, -0.09126114845275879, -0.03486024588346481, 0.15060430765151978, 0.7258711457252502, 0.3410424590110779, -1.1944390535354614, 0.8561308979988098, 0.8063564300537109, 0.4725790321826935, -0.27146661281585693, 0.05235473811626434, 0.8806584477424622, -0.08873172849416733, -0.1366705596446991, -1.075005054473877, 0.2822391986846924, 0.15957856178283691, 0.4362212121486664, -0.21245883405208588, -0.24250635504722595, -0.03501003980636597, 1.0013725757598877, -1.276443362236023, -1.087225317955017, -0.13697108626365662, 0.04577265679836273, 0.9110229015350342, 0.45697924494743347, -1.0248916149139404, -0.19273538887500763, -0.08716458827257156, -0.616343080997467, -0.1032477617263794, -0.23615965247154236, 1.1890649795532227, -0.7218232750892639, 0.2609829306602478, 0.19231179356575012, 0.20194420218467712, 0.4866747260093689, 1.1956589221954346, -0.387677937746048, 0.4583307206630707, -0.7164936065673828, 0.959603488445282, 0.7739619016647339, 0.321143239736557, -0.1750841587781906, -0.15048320591449738, -0.006798017770051956, -0.9414212703704834, 0.3176572620868683, 0.4949555993080139, 0.20874808728694916, -0.5068851113319397, 0.9095842838287354, 0.6998265981674194, -1.094020128250122, -0.7184119820594788, 0.347002238035202, -0.007656261324882507, -0.16670209169387817, 0.580463707447052, 0.5366329550743103, 0.593360424041748, 0.4112693667411804, 0.7956424355506897, 0.7510692477226257, 1.219051718711853, -0.41113942861557007, -0.1990566849708557, 0.8650808334350586, 1.667309284210205, 1.2576993703842163, 0.3751338720321655, -0.0771094337105751, 0.9841102361679077, -0.5924232006072998, -0.7320634126663208, -0.021749749779701233, -0.12509796023368835, 0.13746918737888336, 0.053211502730846405, -0.4364214837551117, 0.3329349756240845, 0.8790044188499451, 1.2890024185180664, -0.36353760957717896, 0.0045546796172857285, -0.02307809144258499, -0.1831451654434204, 0.8844659328460693, -0.09234118461608887, -0.019376318901777267, 0.6149455904960632, -0.7701977491378784, -0.657330334186554, -0.017716147005558014, 0.46146318316459656, -0.4993040859699249, -0.12194421887397766, -0.2675561308860779, -0.292903333902359, -0.420351505279541, 1.0443121194839478, 1.490280270576477, -0.08848126232624054, 0.28400474786758423, 0.13361506164073944, 0.19441698491573334, -0.29644775390625, 0.5751839876174927, 0.07906609773635864, 0.03960864245891571, -0.20353324711322784, -0.5163265466690063, 0.04983869940042496, -0.25320056080818176, 0.11605951189994812, 0.7986121773719788, -0.5182638168334961, 0.04143066704273224, 0.22318893671035767, 0.24758614599704742, -0.2756791114807129, -0.9577614665031433, -0.7494093775749207, 0.2795495092868805, -1.194239616394043, -0.2963191568851471, 1.094794750213623, -0.34281349182128906, -1.0527576208114624, -0.5869013071060181, -0.7388687133789062, 0.04476223886013031, -0.3464008867740631, -0.5251491665840149, -0.13002145290374756, 0.7036758065223694, 0.2853173315525055, 0.2681600749492645, 0.5702875256538391, 0.6161888241767883, 0.22460182011127472, -0.09387147426605225, -0.009366229176521301, 0.012765271589159966, 1.1052606105804443, -0.4648372530937195, -0.17587998509407043, -1.3448885679244995, 0.6567237973213196, 0.7081331610679626, 0.6752061247825623, -1.6790204048156738, 0.7716402411460876, -0.007609263062477112, 0.08343204855918884, 0.6040922999382019, 0.012262895703315735, -0.06547487527132034, -0.28638747334480286, 0.05124306678771973, -0.1627456545829773, 0.266409307718277, 0.796534538269043, -0.6386802792549133, 0.8515904545783997, 0.9499953389167786, 0.39030587673187256, -0.5655436515808105, 0.13876602053642273, -0.05025681480765343, 0.6665230393409729, -0.9464171528816223, 0.3316603899002075, -0.6516343951225281, -1.0768017768859863, -0.7426570653915405, 0.23010042309761047, -0.16264700889587402, -0.646802544593811, 0.15180957317352295, -0.6456893682479858, 0.05693499743938446, 0.07369934022426605, -0.5784830451011658, -0.29525718092918396, 0.053822554647922516, -0.8722028136253357, -0.7324413061141968, 0.5953693389892578, 0.11151908338069916, -0.7768998146057129, 0.24107027053833008, -0.7487779855728149, 0.1086350679397583, -0.35834842920303345, -0.05572599172592163, 0.5301240086555481, -0.2972595989704132, 0.05495614930987358], "a7c88a07-1068-4305-aa31-ce7d2ece27ab": [0.2281271517276764, 0.2382637858390808, -0.44556283950805664, -0.1961953490972519, 0.7551314830780029, -0.6708024144172668, 0.5498533844947815, 0.14864127337932587, -0.1614837795495987, -0.8451196551322937, -0.4942763149738312, -0.20834660530090332, -0.6047676205635071, 0.5049266815185547, 1.0808926820755005, 1.1036936044692993, 0.6391799449920654, -0.1114194244146347, -0.3772968649864197, -0.5037996768951416, -0.0487801656126976, -0.3740327060222626, -0.4549775719642639, 0.542396068572998, 0.4633239209651947, -0.12088586390018463, -0.1660889834165573, 0.3399352431297302, -1.1479284763336182, 0.13167740404605865, 0.3348775804042816, -0.16607587039470673, 0.39452919363975525, -0.29328110814094543, -0.23797181248664856, -0.9611510038375854, -0.6476504802703857, -0.03479872643947601, 0.1619282364845276, -0.30107390880584717, -0.5945890545845032, -0.6160359382629395, -0.42361003160476685, 0.14463774859905243, -0.7416263222694397, 0.5065393447875977, -0.5854675769805908, 0.5322078466415405, -0.6421138048171997, -0.2580273151397705, -0.6828163862228394, 0.35735905170440674, -0.1306980848312378, 0.20326754450798035, 0.20197442173957825, 1.126117467880249, -0.12393588572740555, -0.7927737832069397, -0.1289309710264206, -0.31686198711395264, 0.5452738404273987, -0.0350789837539196, 0.6640786528587341, 0.07588756084442139, 0.3151165246963501, -0.46949681639671326, -0.5426841378211975, 1.1494964361190796, -0.5836408138275146, -0.29837822914123535, -0.48107993602752686, -0.014005731791257858, 0.3279487192630768, 0.11693127453327179, 0.2492251843214035, -0.4396580755710602, 0.1526780128479004, 0.5194269418716431, 1.163301944732666, 0.49752476811408997, -0.2590812146663666, 0.3823007047176361, -0.2159769982099533, 0.8048226833343506, -0.5894163846969604, -0.3174172639846802, -0.5018420219421387, 0.0327254980802536, -0.5986155271530151, 0.7479969263076782, -0.1600242257118225, -1.0158190727233887, 0.7978876829147339, 0.3045617341995239, 0.4036559760570526, -0.5583634376525879, 0.884579062461853, 0.18466128408908844, 1.0539629459381104, 0.11862760782241821, -0.6592376828193665, -1.0250972509384155, -0.04366033524274826, -0.18465407192707062, -1.1314671039581299, -0.21431030333042145, -0.5229136943817139, -0.3285980224609375, -0.042185377329587936, 0.1349099725484848, -0.4643254578113556, -0.3458584249019623, -0.7672997713088989, -0.27679938077926636, -0.8652880191802979, 1.1884315013885498, 0.7465729713439941, -0.20253296196460724, -0.4818909466266632, -0.029949398711323738, 0.6492891311645508, 0.883103609085083, 0.409181147813797, 1.1363943815231323, 0.42421478033065796, 0.33353790640830994, 0.2266116440296173, 0.862901508808136, -0.4391195774078369, -1.0753049850463867, -0.2907847464084625, 1.0498392581939697, 0.26282909512519836, -0.157745823264122, -0.3262842297554016, 0.17219045758247375, -0.043762944638729095, 0.4634326100349426, -0.006967112421989441, -0.5715190768241882, -0.09785478562116623, -0.5021857023239136, -0.06776197254657745, -0.25356757640838623, 0.4366034269332886, 0.5576906800270081, -0.06596285104751587, -0.845851480960846, 0.00604112446308136, 0.7866517305374146, 0.14375188946723938, 0.33936432003974915, 0.8963896036148071, -0.6865653991699219, -0.23278814554214478, 0.9862728714942932, -0.08154797554016113, 0.16496427357196808, -0.682729959487915, 0.18962302803993225, 0.7871580123901367, -0.03419102728366852, -0.10119091719388962, 0.36872392892837524, -0.2378089725971222, -0.07515974342823029, 0.067875936627388, 0.3980291485786438, -0.0341520830988884, 0.49866941571235657, -0.4629892110824585, -0.4445497691631317, 0.8120521903038025, -0.6664546728134155, -0.4502605199813843, 0.43418189883232117, 1.1021394729614258, 0.1810176521539688, -0.007471151649951935, -0.27806687355041504, -1.0953538417816162, 0.5670600533485413, -0.20074817538261414, -0.5960933566093445, 0.07906407862901688, -0.9056299328804016, 1.2667900323867798, 0.05577611178159714, -0.08163578808307648, 0.2845746874809265, -1.085912823677063, -0.8696589469909668, -0.15401296317577362, 0.2749553620815277, 1.0377027988433838, -0.4608805477619171, 0.22358185052871704, 0.08425457775592804, 0.33928778767585754, 0.827325701713562, -0.39621829986572266, 0.3308534026145935, -0.03598108887672424, -0.3765684962272644, -0.9709205627441406, 0.8749038577079773, 0.6290297508239746, 0.07181152701377869, 0.2496783584356308, 0.7945291996002197, 0.286784291267395, 0.4362577795982361, 0.43445026874542236, -0.6023483276367188, -0.05493132770061493, 0.5639457702636719, 0.4844847023487091, -0.7437155842781067, 0.7402713298797607, -0.791181206703186, 0.05500626564025879, -0.46286821365356445, -0.8566555380821228, 0.6700474619865417, -0.46870139241218567, 1.0929274559020996, 1.192487120628357, -0.8582267165184021, -0.2877890467643738, 0.5813382267951965, 0.031476959586143494, -0.048364005982875824, 0.4900246262550354, -0.02016425132751465, -0.11153021454811096, -0.4149411916732788, 0.04344261437654495, -0.6633896231651306, 0.9925709962844849, -0.6585806608200073, 0.5230287909507751, 1.0949052572250366, 0.13520143926143646, 0.3315083980560303, 0.401034414768219, -0.06068596616387367, 0.352161169052124, -0.3482617139816284, -0.4090555012226105, -0.30628296732902527, -0.3808283507823944, -0.3852420449256897, 0.03096824511885643, -0.5694065690040588, 0.7463813424110413, -0.21005156636238098, -0.4223393201828003, 0.1306016445159912, 0.44864150881767273, 0.9918338656425476, -0.23496614396572113, 0.8971729278564453, 0.19635041058063507, 0.29335692524909973, -0.6142000555992126, -1.240973949432373, -0.9369081258773804, -0.5557330846786499, 0.8476608395576477, 0.09818131476640701, 0.11831257492303848, 0.5431216359138489, -0.02646065503358841, 0.020305532962083817, -0.09440086036920547, -0.2010839730501175, 1.1620519161224365, 0.44343578815460205, -0.06734327226877213, -0.751997172832489, -0.11365998536348343, 1.106033205986023, -0.5229740738868713, -1.1409475803375244, -0.3343074917793274, -0.706588625907898, 0.43729808926582336, -0.2863064110279083, -0.3826327323913574, 0.43563297390937805, 0.6636293530464172, 0.901438295841217, -0.5248020887374878, 1.2134582996368408, 0.9803253412246704, 0.03437582403421402, 0.5599010586738586, 0.6932874917984009, 0.28713154792785645, 0.16009515523910522, 0.1432371735572815, 0.47054606676101685, 0.7876777052879333, -0.3087497055530548, -0.08910812437534332, -0.10754319280385971, -0.40019142627716064, -0.2806609272956848, -4.288607120513916, 0.302847683429718, -0.190278559923172, -0.17338933050632477, 0.20079012215137482, 1.0481330156326294, 0.23846884071826935, -1.1414659023284912, -0.7213639616966248, 0.49347710609436035, -0.5868855714797974, 0.09192650020122528, 0.5591042637825012, 0.6995477080345154, 0.6391846537590027, 0.6210774183273315, -0.09349390864372253, -0.4663487672805786, 0.338029146194458, 0.5825062394142151, -0.33544135093688965, -0.8928511142730713, -0.37302151322364807, -0.011305158957839012, 0.41483670473098755, 0.06340223550796509, -1.4735379219055176, 0.6097152829170227, -0.9920163154602051, -0.12283089011907578, 0.3782248795032501, -0.17355181276798248, 0.07069515436887741, -0.3260428011417389, 0.1902347207069397, -0.9462864995002747, 0.6069809794425964, -0.19401580095291138, -0.35616397857666016, -0.3239298462867737, -0.2465602159500122, -0.7722795009613037, -0.5440019369125366, 0.04611627012491226, 1.1434314250946045, -0.00822378695011139, -0.6695886850357056, -0.6215218901634216, 0.20627976953983307, 0.919527530670166, -0.453534334897995, -0.4400331377983093, -0.7072954177856445, -0.08753818273544312, 0.21659314632415771, -0.3093348741531372, 0.039435893297195435, -0.05392304062843323, -0.40024852752685547, 0.06517162919044495, 0.5426350831985474, -0.7890281677246094, -0.3580355644226074, -0.8499642014503479, 0.18153521418571472, -0.7443590760231018, -0.8601678609848022, -1.0252059698104858, 0.4363084137439728, 0.5650310516357422, -0.544540286064148, 0.23411813378334045, -0.14942270517349243, -1.7696794271469116, -0.05657098814845085, -0.3633204996585846, -0.6083806753158569, -0.19361525774002075, -0.35890713334083557, 0.27419930696487427, -0.46015793085098267, -0.07628675550222397, 0.33618640899658203, 0.4767124056816101, -0.44402754306793213, -0.7529903054237366, 0.2540791630744934, -0.6591997742652893, -0.9288941025733948, -0.6253775954246521, 0.587895393371582, -0.39014339447021484, -0.23249465227127075, 0.41410258412361145, 0.3808208703994751, 0.5071375966072083, 0.36612266302108765, -0.25380203127861023, 0.8818141222000122, -0.010466773062944412, 0.42118433117866516, -0.7544750571250916, 0.3911256492137909, -0.5086454749107361, -0.29489290714263916, 0.12279269844293594, -0.5289457440376282, -0.045222461223602295, 0.5997650623321533, 0.10855650901794434, 0.6882132291793823, -0.8814665079116821, -0.04989899694919586, -0.7541071176528931, 0.12205709517002106, -0.7597751021385193, 0.2614250183105469, 0.5073556900024414, 0.47111573815345764, 0.23463445901870728, -0.7205171585083008, 0.5358566641807556, -1.1338865756988525, -0.0953032374382019, -1.7327847480773926, 0.4490620493888855, 0.25256145000457764, -0.3687496483325958, 0.3376736342906952, 0.37722593545913696, -0.635995626449585, -0.06877551227807999, 0.5867598652839661, -0.5226993560791016, 1.0438847541809082, -0.4781375527381897, -0.35579797625541687, -0.6929469704627991, 0.4987889230251312, -0.25158974528312683, 0.06767718493938446, 0.3556319773197174, 1.0574657917022705, 0.3615133762359619, 0.8891147971153259, 0.49304789304733276, -0.6387701630592346, 0.09303843975067139, 0.36350321769714355, -0.4369131326675415, -0.4236704707145691, 0.14896756410598755, 0.9106928706169128, -1.1232810020446777, -0.2103039026260376, -0.9391563534736633, 0.6519190073013306, 0.28567448258399963, -0.4879169166088104, -0.2895275950431824, 0.5303967595100403, -0.7523134350776672, -0.5649465322494507, -0.24563170969486237, 0.251722127199173, 1.4772926568984985, -0.81031334400177, 0.24502301216125488, -0.067036472260952, 0.2963261902332306, 0.45271795988082886, -0.17078880965709686, -0.6934175491333008, -0.015177078545093536, -0.7332570552825928, 1.0417041778564453, -0.35463106632232666, -0.052281901240348816, 0.5422698259353638, 0.4130135178565979, -0.2352796494960785, 0.3610631823539734, -0.24766969680786133, 0.21793663501739502, 0.6602564454078674, -0.34215855598449707, -0.24912767112255096, -0.19992925226688385, -0.460134357213974, -0.04757584631443024, 0.3428027927875519, 0.2367466241121292, -0.6102557182312012, 0.0728025957942009, -0.6237894296646118, -1.3652124404907227, -0.01507076621055603, -0.028692081570625305, 0.5706506371498108, 0.2531898021697998, -0.40126892924308777, -0.10344807803630829, 0.10379864275455475, 0.15689286589622498, -0.08179806172847748, -1.0620369911193848, 0.36437153816223145, -0.09593216329813004, -0.1839698702096939, 0.2508504390716553, 0.016778886318206787, -0.8337929248809814, -0.6606000065803528, 0.41189953684806824, 0.336369127035141, -0.7980555891990662, -0.11926767975091934, -0.17541806399822235, 0.32859236001968384, -0.4166712760925293, 0.42056015133857727, -0.09011544287204742, -0.15031811594963074, -0.2913825213909149, -0.5321448445320129, 0.45319080352783203, 0.13824261724948883, -0.26913928985595703, 0.2519989013671875, -0.47343072295188904, 0.23152296245098114, -0.2605327367782593, 0.1154671460390091, 0.9814120531082153, -0.28158754110336304, 0.17854246497154236, -0.2426527738571167, 0.4640926420688629, -0.297465980052948, 0.525723934173584, 0.413151353597641, 0.11958236247301102, -0.5018545389175415, -1.0259524583816528, -0.15673139691352844, 0.07648932188749313, -0.19614270329475403, -0.1746038794517517, 0.4587137997150421, 0.7566181421279907, -0.0562918446958065, 0.3466617166996002, -0.07815579324960709, -0.4978594481945038, 0.6883182525634766, -0.6823022961616516, -0.6900036931037903, -0.37412258982658386, -0.6254507303237915, 0.1868850588798523, 0.4881865978240967, 0.35321155190467834, -1.1336915493011475, 0.7853774428367615, 0.7706732153892517, 0.3669247627258301, 0.09315305948257446, -0.2549850046634674, 0.7342921495437622, -0.535147488117218, 0.16368897259235382, -1.135284423828125, 0.41436803340911865, 0.11448608338832855, 0.6057689785957336, -0.344556987285614, -0.3555355966091156, -0.03930557519197464, 0.831263542175293, -1.1013225317001343, -1.0889220237731934, 0.21723061800003052, 0.22277438640594482, 0.7308623194694519, 0.5547134876251221, -1.044983983039856, -0.20673520863056183, -0.1559293270111084, -0.63480544090271, -0.2639709413051605, -0.15927007794380188, 1.067580223083496, -0.36829128861427307, 0.27520450949668884, 0.01135406643152237, -0.023080388084053993, 0.7341511845588684, 1.2412464618682861, -0.3942929804325104, -0.0010179951786994934, -0.7475860118865967, 1.1639337539672852, 0.827398419380188, 0.5313446521759033, -0.2898772358894348, 0.029767518863081932, 0.18470287322998047, -1.4286729097366333, 0.3497059941291809, 0.27896738052368164, 0.3914314806461334, -0.33799031376838684, 0.5250722765922546, 0.6083715558052063, -1.0858546495437622, -0.9027442932128906, 0.7363789081573486, -0.054672807455062866, -0.24855639040470123, 0.46981942653656006, 0.44139108061790466, 0.527861475944519, 0.48372751474380493, 0.7010825276374817, 0.5304604172706604, 1.0055502653121948, -0.3201952576637268, 0.3056480288505554, 0.8992487788200378, 1.349839448928833, 1.166691541671753, 0.12879817187786102, 0.1278511881828308, 1.1193193197250366, -0.6360630989074707, -0.6894280314445496, -0.07704736292362213, 0.18601222336292267, 0.06701509654521942, 0.152825728058815, -0.6136512160301208, 0.47734129428863525, 0.6828291416168213, 1.3982352018356323, -0.29864680767059326, -0.28549566864967346, -0.40503302216529846, -0.5042541027069092, 0.8586874604225159, 0.42651718854904175, -0.13233515620231628, 0.6198811531066895, -0.6434973478317261, -0.5587314367294312, -0.11952255666255951, 0.7549970746040344, -0.5603166818618774, 0.06340289860963821, -0.6016957759857178, -0.0797758623957634, -0.4586767554283142, 0.8002079725265503, 1.1243776082992554, -0.06318780779838562, 0.0870257019996643, -0.09161022305488586, 0.205013707280159, -0.1832089126110077, 0.4828202426433563, 0.15079787373542786, 0.19408802688121796, 0.1770753115415573, -0.7035510540008545, 0.6149719953536987, -0.288179486989975, 0.1210971251130104, 0.6326783299446106, -0.5770798921585083, 0.034700967371463776, 0.4520660936832428, 0.5056300163269043, -0.369843453168869, -1.102410912513733, -0.9596853256225586, 0.2327062487602234, -1.1775349378585815, -0.1986820548772812, 0.9501329064369202, -0.2049245536327362, -1.1499923467636108, -0.3152570426464081, -0.6421859264373779, 0.060945332050323486, -0.17964714765548706, -0.6334626078605652, -0.38804149627685547, 0.9258952736854553, 0.1170860305428505, 0.6012469530105591, 0.5674221515655518, 0.5955443978309631, 0.1704026311635971, -0.2094809114933014, 0.08167123049497604, -0.2393692135810852, 1.0733654499053955, -0.4811938405036926, 0.22063720226287842, -1.272888422012329, 0.8836979866027832, 0.33574873208999634, 0.9028131365776062, -1.5634119510650635, 1.0858757495880127, -0.24296846985816956, -0.12735815346240997, 0.7350043058395386, 0.05890974402427673, -0.03571602329611778, -0.4086223244667053, 0.0890113115310669, -0.20889709889888763, -0.008986839093267918, 0.6206785440444946, -0.3079829514026642, 0.7314038276672363, 0.48201775550842285, 0.683987021446228, -0.6529819965362549, 0.03504094108939171, -0.22104236483573914, 0.5693188905715942, -0.906503438949585, 0.0012264400720596313, -0.11881768703460693, -0.9756364822387695, -0.47321265935897827, 0.40436264872550964, -0.08216151595115662, -0.8268389105796814, -0.013158618472516537, -0.49445152282714844, -0.1836748570203781, 0.34091728925704956, -0.5528047680854797, -0.2506609559059143, -0.03460494428873062, -1.0195025205612183, -0.4625634551048279, 0.0442071296274662, 0.5680828094482422, -0.6738079786300659, 0.16343966126441956, -0.885486900806427, -0.10033364593982697, -0.1966972053050995, -0.5164674520492554, 1.0999020338058472, -0.10973359644412994, -0.07104050368070602], "a600037b-6be1-416c-be05-c752abf38ffe": [0.07657794654369354, 0.1386132687330246, 0.11928052455186844, -0.41625893115997314, 1.0119465589523315, -0.567586362361908, 0.23221398890018463, 0.5406649112701416, -0.4838171601295471, -0.4225079119205475, -0.4026269316673279, 0.25013840198516846, -0.8279311656951904, 0.18654987215995789, 0.6322856545448303, 0.8234081268310547, 0.5172842741012573, 8.568726480007172e-05, -0.1138310432434082, -0.3445093035697937, 0.16760139167308807, -0.10182062536478043, -0.1961239129304886, 0.517246663570404, 0.49849915504455566, 0.19275924563407898, -0.049983199685811996, 0.5007349252700806, -1.3240101337432861, 0.08415333926677704, 0.3467189371585846, -0.403897762298584, 0.23927009105682373, 0.16661348938941956, -0.11593833565711975, -0.4815347492694855, -0.3740839660167694, -0.48998987674713135, 0.524908185005188, -0.026371583342552185, -0.4419552683830261, -0.46336397528648376, -0.44179853796958923, -0.12195117771625519, -0.6672841906547546, 0.5847686529159546, -1.4340846538543701, 0.07410982251167297, -0.6367513537406921, 0.1825953722000122, -0.7045730948448181, 0.5281260013580322, -0.16872522234916687, 0.4414065480232239, 0.3703240156173706, 1.0835790634155273, 0.2737431824207306, -0.8289183974266052, -0.2087569236755371, -0.3016560673713684, 0.5988699197769165, -0.114029660820961, 0.8071519136428833, 0.4307943284511566, 0.07953289896249771, -0.2216859608888626, -0.5400236248970032, 0.7649677395820618, -1.0683329105377197, -0.6821249127388, -0.38994643092155457, 0.01206544041633606, 0.04807532578706741, -0.07003989815711975, 0.3351175785064697, -0.4018303453922272, -0.02898530662059784, 0.5148776769638062, 1.0873043537139893, 0.8593630790710449, -0.22077924013137817, 0.4883214831352234, -0.26252079010009766, 0.8331766128540039, -0.44230854511260986, -0.29416346549987793, -0.883851945400238, 0.026899250224232674, -0.29275116324424744, 0.9866780042648315, -0.19356833398342133, -0.47503167390823364, 0.7791788578033447, 0.5005404949188232, 0.5640884041786194, -0.6110326051712036, 1.0396162271499634, -0.030449656769633293, 0.5345889925956726, 0.5328354835510254, -0.2689528167247772, -0.8436153531074524, 0.30341386795043945, -0.14016832411289215, -1.1336047649383545, -0.2945864200592041, -0.625616192817688, -0.21621713042259216, -0.02029438689351082, 0.4272080659866333, -0.3724190294742584, -0.8814242482185364, -0.47996097803115845, -0.026633048430085182, -0.6920629739761353, 1.2274246215820312, 0.7224568128585815, -0.11423233896493912, -0.15449224412441254, 0.35500234365463257, 0.7964372634887695, 1.0589513778686523, -0.03008762001991272, 0.9740997552871704, 0.18902210891246796, 0.38571324944496155, 0.3765638768672943, 0.9213326573371887, -0.3828641176223755, -1.1594985723495483, -0.08806329220533371, 0.7292339205741882, 0.33228448033332825, -0.08733902871608734, -0.15825997292995453, 0.22125867009162903, 0.25581294298171997, 0.22992786765098572, 0.3172755837440491, -0.5424480438232422, -0.20209117233753204, -0.7095195055007935, 0.015612825751304626, -0.4681830108165741, 0.4153389632701874, 0.4365754723548889, -0.09190873801708221, -0.9669690132141113, 0.057708740234375, 0.6996469497680664, 0.27648669481277466, 0.8062737584114075, 0.8443500995635986, -0.5472774505615234, -0.352445125579834, 0.4325608015060425, -0.365434467792511, 0.2842913269996643, -0.6204037666320801, 0.525144100189209, 0.6001423597335815, -0.3814714252948761, -0.33454862236976624, -0.22030243277549744, -0.5063295364379883, 0.06387597322463989, 0.5232877135276794, -0.01820191740989685, 0.1245512068271637, 0.5144805908203125, -0.7356772422790527, -0.494810551404953, 0.8444036841392517, -0.2621137797832489, -0.36832496523857117, 0.5268665552139282, 1.0920333862304688, 0.26384687423706055, 0.45616525411605835, -0.37032216787338257, -1.071508526802063, 0.540496826171875, -0.03543567284941673, -0.6281696557998657, 0.14034734666347504, -1.0200564861297607, 1.418491244316101, -0.05931425094604492, -0.25667983293533325, 0.021055368706583977, -1.1894348859786987, -0.5436246395111084, -0.08235101401805878, 0.6604747176170349, 0.9964315891265869, -0.4010852873325348, 0.18718387186527252, 0.4110499620437622, -0.1802568882703781, 0.7507659196853638, -0.02830692008137703, 0.43959781527519226, -0.28104734420776367, -1.0339113473892212, -0.7479623556137085, 0.5739651322364807, 0.2850458025932312, -0.20751364529132843, 0.3721838593482971, 0.4368087351322174, 0.7456961274147034, 0.3126722276210785, 0.3344773054122925, -0.5211752653121948, 0.4892348051071167, 0.0878678411245346, 0.34467995166778564, -0.5531995296478271, 0.8074991703033447, -0.7227190732955933, 0.402163028717041, -0.5026492476463318, -1.040778636932373, 0.6402918100357056, -0.272060751914978, 1.3784385919570923, 0.9770010709762573, -0.8671861290931702, -0.05100472271442413, 0.45877623558044434, 0.5315656661987305, -0.08459994196891785, 0.15970739722251892, 0.37092339992523193, -0.1451062560081482, -0.34163931012153625, -0.03137489780783653, -0.43292149901390076, 0.8516342639923096, -0.8019042015075684, 0.4301314651966095, 1.1185318231582642, -0.1285519152879715, 0.5672082901000977, 0.47995176911354065, -0.06307360529899597, 0.25425928831100464, -0.45642998814582825, -0.5966830849647522, -0.641936182975769, -0.6148799657821655, -0.5010281205177307, 0.15470567345619202, -0.729630172252655, 0.6751081943511963, -0.4493806064128876, -0.8302390575408936, 0.6070213913917542, 0.7377583980560303, 0.8472145795822144, -0.6340863108634949, 1.1222952604293823, 0.3460187613964081, 0.09378957748413086, -0.31065693497657776, -1.4187523126602173, -0.4945215880870819, -0.2530395984649658, 0.21405228972434998, 0.14627042412757874, 0.1451045423746109, 0.34044238924980164, -0.10862398147583008, -0.017529983073472977, -0.6254095435142517, -0.20819459855556488, 1.2193156480789185, 0.37226274609565735, -0.009475994855165482, -1.000887155532837, -0.3062118887901306, 1.0517423152923584, -0.38219767808914185, -1.2938928604125977, -0.3813663721084595, -0.6918625235557556, 0.04849513620138168, -0.5091297626495361, -0.552574872970581, 0.11298424750566483, 0.10967643558979034, 0.39249831438064575, -0.514015793800354, 0.7595405578613281, 1.0613800287246704, 0.46562039852142334, 0.1501847505569458, 0.2568531930446625, 0.42487114667892456, 0.02052166312932968, -0.1857515275478363, 0.5494683980941772, 0.6446786522865295, -0.305474191904068, -0.4724944233894348, -0.31284797191619873, -0.6647608876228333, -0.17815545201301575, -4.475155353546143, 0.17390407621860504, -0.1929120570421219, -0.42295145988464355, 0.24201160669326782, 0.726244330406189, -0.07729852199554443, -0.7693802714347839, -0.46592044830322266, 0.6032280325889587, -0.4460866153240204, 0.05711250379681587, 0.4797229766845703, 0.5869893431663513, 0.11338081955909729, 0.8000878691673279, -0.05406952276825905, -0.7847229242324829, 0.04905673861503601, 0.433484822511673, -0.2213413417339325, -1.2041966915130615, -0.2816573977470398, 0.5217254757881165, 0.05206110328435898, 0.5741578340530396, -1.1713801622390747, 0.5329563021659851, -0.7332723736763, -0.2501221299171448, 0.47040945291519165, -0.2782939374446869, -0.20252542197704315, -0.12438642233610153, -0.17774151265621185, -1.07289719581604, 0.7489277720451355, -0.09208785742521286, -0.17832744121551514, -0.29625463485717773, -0.5092347860336304, -0.2602091133594513, -0.6938858032226562, -0.262152761220932, 0.8445141315460205, -0.22123852372169495, -0.5828202962875366, -0.42444920539855957, 0.19782133400440216, 0.4515746235847473, -0.28774315118789673, -0.7060862183570862, -0.3364919424057007, 0.24283599853515625, 0.05719093978404999, -0.2756693363189697, -0.19079747796058655, -0.13025106489658356, -0.19241096079349518, -0.2487613409757614, 0.1957872062921524, -1.022379755973816, -0.3841758668422699, -0.9055613279342651, -0.49047863483428955, -0.7254010438919067, -0.47300758957862854, -0.6329885125160217, 0.7262480854988098, 0.8154335618019104, -0.5324958562850952, 0.37426480650901794, -0.1131354421377182, -1.5850825309753418, -0.09240102022886276, -0.06677079945802689, -0.510317325592041, -0.5813875198364258, -0.4843060374259949, 0.1340256631374359, -0.2089613974094391, 0.021589897572994232, 0.2772023379802704, 0.5872562527656555, -0.2583340108394623, -0.7967762351036072, -0.14240781962871552, -0.5248047113418579, -0.8412034511566162, -0.6742579340934753, 0.49815303087234497, -0.7968295812606812, -0.30473971366882324, 0.6524111032485962, 0.49887681007385254, 0.3465479910373688, 0.31231245398521423, -0.27489516139030457, 0.7343803644180298, -0.16480545699596405, 0.7064034342765808, -0.7254892587661743, 0.39091405272483826, -0.24330615997314453, 0.3018850088119507, 0.2577756941318512, -0.5706990957260132, -0.06708435714244843, 0.5714261531829834, -0.2766273617744446, 0.3041418194770813, -0.4011150598526001, 0.0861857682466507, -0.575484037399292, 0.04886168986558914, -0.8543741106987, 0.13153637945652008, 0.5938183069229126, 0.16779214143753052, 0.14862540364265442, -0.8319492340087891, 0.6702473759651184, -0.7627941370010376, -0.4422900676727295, -1.6166200637817383, 0.1951654851436615, 0.10670378059148788, -0.3401901423931122, 0.3921141028404236, 0.15223044157028198, -0.3923358619213104, -0.38427308201789856, 0.4626587927341461, -0.06385849416255951, 0.7076943516731262, -0.44284453988075256, 0.04258833825588226, -0.2730131447315216, 0.22070269286632538, -0.19070304930210114, 0.18095526099205017, 0.30460700392723083, 0.3075428307056427, 0.7215975522994995, 0.6251318454742432, 0.745834231376648, -0.647101640701294, 0.24425655603408813, -0.38321906328201294, -0.08575482666492462, -0.2136661410331726, -0.06988327205181122, 0.5432663559913635, -0.8205893039703369, 0.18293091654777527, -0.5875530242919922, 0.7958407998085022, -0.1159590631723404, 0.016960509121418, -0.651235818862915, 0.5405420064926147, -0.2957780957221985, -0.23592883348464966, -0.03752598166465759, -0.29604849219322205, 1.1400368213653564, -0.8242652416229248, 0.27296772599220276, 0.17862749099731445, 0.28598886728286743, 0.7184011936187744, -0.17333965003490448, -0.40039050579071045, 0.49442631006240845, -0.7521922588348389, 0.2701238989830017, -0.020847156643867493, -0.015289610251784325, 0.19288241863250732, 0.45786312222480774, -0.16337738931179047, 0.08885340392589569, -0.18358847498893738, -0.10843224823474884, 0.6258229613304138, -0.17344126105308533, 0.3503413498401642, -0.30100780725479126, -0.6638363599777222, -0.37356409430503845, 0.6482266187667847, 0.23797637224197388, -0.22906477749347687, -0.01082015223801136, -0.7607247233390808, -1.3853394985198975, 0.055678144097328186, 0.1974126696586609, 0.49039509892463684, 0.5138444900512695, -0.2854711711406708, -0.01304125040769577, -0.2850726544857025, -0.06800537556409836, -0.14457440376281738, -1.0629370212554932, 0.6370764970779419, -0.04440135508775711, -0.05593934655189514, 0.021919816732406616, -0.1945866048336029, -0.8063936829566956, -0.28771454095840454, 0.5039336681365967, 0.10858412832021713, -0.950389564037323, -0.2828461527824402, -0.5082653760910034, 0.5292879939079285, -0.17978504300117493, 0.49154552817344666, 0.2910214364528656, 0.0062238723039627075, -0.24918179214000702, -0.6928325891494751, 0.5705842971801758, -0.26795241236686707, -0.3833254277706146, 0.5444859266281128, -0.4937877655029297, 0.4761500954627991, -0.6275123357772827, 0.42463216185569763, 1.0811455249786377, 0.0825856551527977, 0.23095624148845673, -0.31667131185531616, 0.5735018849372864, 0.10233767330646515, 1.088680624961853, 0.2216307818889618, -0.1404682695865631, -0.5247802734375, -1.0349304676055908, 0.025638092309236526, -0.010698944330215454, -0.6217858791351318, -0.24029016494750977, 0.17337068915367126, 1.0060677528381348, -0.05668824538588524, 0.20866109430789948, -0.12150625884532928, -0.1060192883014679, 0.952302873134613, -0.7363765239715576, -0.467866450548172, -0.309952974319458, -0.1764877736568451, 0.279358446598053, 0.5144661068916321, 0.41489940881729126, -1.2833950519561768, 1.0931198596954346, 0.9556472897529602, 0.7031919956207275, -0.32129979133605957, -0.20252901315689087, 1.1405588388442993, -0.4911608397960663, -0.05944526195526123, -1.182216763496399, 0.2685123682022095, 0.1996065080165863, 0.7230604290962219, -0.28609639406204224, -0.2661665678024292, -0.0653650090098381, 0.8636185526847839, -0.8196502923965454, -1.0881255865097046, -0.09665311872959137, -0.0012835562229156494, 0.5720287561416626, 0.4895680546760559, -0.8686082363128662, -0.2114676982164383, 0.25225308537483215, -0.15237842500209808, 0.23212239146232605, -0.36311453580856323, 1.3292850255966187, -0.8565234541893005, 0.10271605849266052, 0.28508123755455017, 0.44806399941444397, 0.7561076283454895, 1.520979881286621, -0.8550935387611389, 0.4602071940898895, -0.5782427191734314, 1.2882678508758545, 0.5912059545516968, 0.37851330637931824, 0.17317065596580505, -0.17165960371494293, 0.3208405375480652, -1.095929741859436, 0.18070504069328308, 0.6635638475418091, 0.09973388910293579, -0.522520899772644, 0.5527025461196899, 0.9578929543495178, -1.0798192024230957, -0.6590522527694702, 0.2768474817276001, 0.017272651195526123, -0.24137526750564575, 0.3112145662307739, 0.42945024371147156, 0.4803825616836548, 0.40036332607269287, 0.5353541970252991, 0.7078782916069031, 1.1020582914352417, -0.1436919867992401, -0.09913815557956696, 0.850462794303894, 0.8548420071601868, 1.0176087617874146, 0.17877960205078125, -0.010787725448608398, 0.8762879371643066, -0.5165905952453613, -0.8760831952095032, 0.05562908202409744, -0.3721581995487213, 0.1204303652048111, 0.18613530695438385, -0.15712538361549377, 0.4384748339653015, 0.7707115411758423, 1.0917139053344727, -0.15782643854618073, 0.042562730610370636, -0.3640817701816559, -0.43510669469833374, 1.0196049213409424, -0.15912312269210815, -0.12427294254302979, 0.6557239890098572, -0.8153322339057922, -0.8062680959701538, -0.012485645711421967, 0.6968882083892822, -0.3297135531902313, -0.20154859125614166, -0.3616402745246887, -0.41508445143699646, -0.2717505693435669, 0.9852087497711182, 1.2099158763885498, -0.28966641426086426, -0.1547115594148636, -0.06889896094799042, 0.38330918550491333, 0.1254846751689911, 0.23483799397945404, 0.042341865599155426, 0.119540274143219, 0.03845090791583061, -0.4948746860027313, 0.4021120071411133, -0.12636694312095642, 0.3146340548992157, 0.6018557548522949, -0.2849821448326111, -0.22021080553531647, 0.4351460933685303, 1.0832507610321045, -0.4615320563316345, -0.8398665189743042, -1.0606045722961426, 0.22763976454734802, -0.8706282377243042, -0.01773352362215519, 0.426824688911438, -0.21967950463294983, -0.9657737016677856, -0.7705599069595337, -0.8149474263191223, 0.3178898096084595, -0.15215027332305908, -0.6210289001464844, -0.28776633739471436, 0.32297778129577637, 0.20130671560764313, 0.4379764199256897, 0.7646470665931702, 0.5187109708786011, 0.11869935691356659, -0.2849397659301758, 0.2683869004249573, 0.0304335318505764, 1.2137548923492432, -0.5893198251724243, 0.1356452852487564, -1.366699457168579, 0.6900516152381897, 0.7047008275985718, 0.9671187996864319, -1.4032038450241089, 0.9104273319244385, -0.12572437524795532, -0.4577568769454956, 1.0840981006622314, -0.12072136998176575, -0.20756514370441437, -0.12763682007789612, -0.1165015697479248, -0.20006518065929413, 0.07431352883577347, 0.6032946109771729, -0.25569650530815125, 0.5722112059593201, 0.6229940056800842, 0.08339028060436249, -0.4222896099090576, 0.22456985712051392, -0.20613238215446472, 0.6842938661575317, -0.9948365688323975, -0.1766449213027954, -0.6415823698043823, -0.6322191953659058, -0.4423743486404419, 0.24378181993961334, -0.1828160434961319, -0.6428879499435425, -0.15599802136421204, -0.40904635190963745, -0.10717949271202087, 0.08950760215520859, -0.3502775728702545, -0.34341907501220703, -0.04925907030701637, -0.8461059331893921, -0.8531017899513245, 0.34453845024108887, 0.3631185293197632, -0.7659774422645569, 0.15920931100845337, -0.5329136848449707, -0.06551910936832428, -0.5284799337387085, -0.44434723258018494, 0.7234610319137573, -0.36657336354255676, -0.067019522190094], "8e83a6bb-1b59-4597-8b68-0af905679267": [-0.03784441202878952, 0.32113271951675415, -0.15594910085201263, -0.2922428548336029, 0.8130678534507751, -0.6742764711380005, 0.2580662965774536, 0.42036065459251404, -0.4811343550682068, -0.3567163944244385, -0.5408141613006592, 0.24220183491706848, -0.7812233567237854, 0.43656131625175476, 0.6227721571922302, 0.9121136665344238, 0.44546064734458923, -0.11516930907964706, -0.1215350329875946, -0.44131386280059814, 0.2543116807937622, -0.15648865699768066, -0.5367051362991333, 0.4177025556564331, 0.456322580575943, 0.3453657329082489, 0.053449004888534546, 0.2952978312969208, -1.2911453247070312, 0.13865876197814941, 0.2889653742313385, -0.4194391965866089, 0.15853942930698395, 0.048422351479530334, -0.11942221224308014, -0.4103241562843323, -0.5758875012397766, -0.3227958679199219, 0.31509658694267273, -0.1278422623872757, -0.4152849316596985, -0.44282039999961853, -0.5243645906448364, -0.05475397780537605, -0.7877150177955627, 0.4048760235309601, -1.2747875452041626, 0.32701364159584045, -0.6436309218406677, -0.3129724860191345, -0.8763652443885803, 0.523039698600769, -0.3007713258266449, 0.44954243302345276, 0.6968098282814026, 0.9171992540359497, 0.14169731736183167, -1.141059398651123, 0.07889068126678467, -0.32780373096466064, 0.48602011799812317, -0.062217827886343, 0.6688244342803955, 0.39697861671447754, 0.18483223021030426, -0.17522871494293213, -0.48312443494796753, 0.8966494202613831, -1.2400588989257812, -0.773029625415802, -0.21816861629486084, 0.12553901970386505, 0.22460272908210754, -0.21543240547180176, 0.08834965527057648, -0.5123627185821533, -0.09807378053665161, 0.4131936728954315, 1.0774973630905151, 1.0179520845413208, -0.08721476793289185, 0.41686075925827026, -0.06524601578712463, 0.8463516235351562, -0.23284415900707245, -0.2699620723724365, -0.9480523467063904, -0.061762735247612, -0.3757495880126953, 0.8566043972969055, -0.16900449991226196, -0.5896127223968506, 0.8229480385780334, 0.28491365909576416, 0.42051002383232117, -0.4952094256877899, 0.8386903405189514, 0.09498622268438339, 0.6771097779273987, 0.38036373257637024, -0.5872282981872559, -0.989416241645813, 0.4196123480796814, -0.18806245923042297, -1.2089530229568481, -0.399310439825058, -0.6506749987602234, -0.18749400973320007, 0.10530869662761688, 0.43720099329948425, -0.1842045783996582, -0.6364796161651611, -0.5337321758270264, -0.08910436928272247, -0.6246427297592163, 1.1271297931671143, 0.6935210227966309, 0.36248499155044556, -0.34604498744010925, 0.23715806007385254, 0.9194091558456421, 1.2332621812820435, 0.1444491147994995, 1.1965367794036865, 0.24530619382858276, 0.6483827233314514, 0.32151392102241516, 0.9738884568214417, -0.25631722807884216, -1.1978384256362915, -0.07869015634059906, 0.9366260170936584, 0.3555847108364105, -0.03599892929196358, -0.1680292934179306, 0.29249289631843567, 0.04081534221768379, 0.26733291149139404, 0.1567431092262268, -0.5774374604225159, -0.30267655849456787, -0.5645669102668762, -0.07409530878067017, -0.21781621873378754, 0.4812231957912445, 0.39929330348968506, -0.028511174023151398, -0.8919473886489868, 0.07679015398025513, 0.760862410068512, 0.3463176488876343, 0.8441483378410339, 0.989974319934845, -0.5498560667037964, -0.21771575510501862, 0.6414035558700562, -0.502018928527832, -0.015000024810433388, -0.6968180537223816, 0.38705140352249146, 0.4010423719882965, -0.18766959011554718, -0.6350901126861572, -0.2908032536506653, -0.5606801509857178, -0.10962127894163132, 0.6039783954620361, 0.1134905219078064, 0.020633921027183533, 0.4424421191215515, -0.6414940357208252, -0.6449061632156372, 0.8754379749298096, -0.30021506547927856, -0.3548889756202698, 0.49400368332862854, 1.304762363433838, 0.1907946914434433, 0.7009673118591309, -0.1193840354681015, -1.1524415016174316, 0.7254444360733032, -0.08234861493110657, -0.6640229821205139, -0.07272495329380035, -0.8284265995025635, 1.4950631856918335, -0.2117689847946167, -0.2644117474555969, 0.0340082161128521, -1.1718770265579224, -0.5361071825027466, -0.250299870967865, 0.5428447723388672, 1.03736412525177, -0.2868562638759613, 0.15628808736801147, 0.6177053451538086, -0.09043021500110626, 0.9544947147369385, 0.27652835845947266, 0.5198595523834229, -0.24841824173927307, -1.0605273246765137, -0.9925488233566284, 0.46638622879981995, 0.5583803653717041, 0.0033693835139274597, 0.31280162930488586, 0.3751915693283081, 0.3389619290828705, 0.31955114006996155, 0.4994562566280365, -0.44317662715911865, 0.4145607650279999, 0.34829801321029663, 0.27127936482429504, -0.5228719711303711, 0.8344855308532715, -0.850641667842865, 0.4012013077735901, -0.4021739661693573, -1.018231987953186, 0.619063138961792, -0.5631458759307861, 1.3373031616210938, 1.0025873184204102, -0.5928850173950195, -0.16229775547981262, 0.4800788462162018, 0.44657158851623535, -0.29054689407348633, 0.057078853249549866, 0.2340591698884964, -0.34630879759788513, -0.22203761339187622, 0.09928865730762482, -0.5070199370384216, 0.9565529823303223, -0.7283238172531128, 0.3352457880973816, 1.3389121294021606, 0.16710500419139862, 0.4140586256980896, 0.5559954643249512, -0.055193979293107986, 0.19809609651565552, -0.3445286452770233, -0.5749422907829285, -0.6022565364837646, -0.3916333019733429, -0.41970473527908325, 0.18812480568885803, -0.8120763897895813, 0.619875967502594, -0.19571876525878906, -0.8105149269104004, 0.538912832736969, 0.6049718260765076, 0.8073100447654724, -0.5969672203063965, 1.0367549657821655, 0.3880263566970825, 0.19040200114250183, -0.20625874400138855, -1.4759804010391235, -0.40072101354599, -0.12434037029743195, 0.355819970369339, 0.09826677292585373, 0.13361342251300812, 0.25125718116760254, -0.12088598310947418, 0.023946363478899002, -0.7698696255683899, -0.2535640597343445, 1.2055705785751343, 0.3274035155773163, -0.08500070124864578, -1.1317585706710815, -0.20221468806266785, 1.1233911514282227, -0.5582525134086609, -1.21309494972229, -0.28208020329475403, -0.5716902613639832, 0.2182704657316208, -0.6495303511619568, -0.350347638130188, 0.17282786965370178, 0.27546948194503784, 0.598771333694458, -0.43489277362823486, 0.7970207333564758, 0.9714400172233582, 0.163368821144104, 0.13485610485076904, 0.30275341868400574, 0.4604661762714386, 0.14465895295143127, -0.13849900662899017, 0.5250493288040161, 0.709516704082489, -0.29161858558654785, -0.6751914024353027, -0.5074867010116577, -0.5236157774925232, -0.4106607139110565, -4.425923824310303, 0.32417622208595276, -0.30369842052459717, -0.4308399558067322, 0.13454052805900574, 0.7844595313072205, 0.15319178998470306, -0.8325755596160889, -0.5063592791557312, 0.5706198215484619, -0.5477356910705566, -0.11834624409675598, 0.36106187105178833, 0.5978431105613708, 0.11863090842962265, 0.6717402935028076, 0.1315232813358307, -0.6954078674316406, 0.010342754423618317, 0.33373942971229553, -0.478274405002594, -1.155554175376892, -0.24714310467243195, 0.33399543166160583, -0.11117055267095566, 0.516524076461792, -1.0458824634552002, 0.794073224067688, -0.9354518055915833, -0.4176343083381653, 0.32006120681762695, -0.19941258430480957, -0.16244366765022278, -0.16554664075374603, 0.029861167073249817, -0.8484238386154175, 0.5867645740509033, -0.20426547527313232, -0.09389752894639969, -0.3473980724811554, -0.49185121059417725, -0.42798104882240295, -0.6431240439414978, -0.3926926851272583, 0.8995986580848694, -0.2884955108165741, -0.6927171945571899, -0.48116105794906616, 0.09639895707368851, 0.48268866539001465, -0.33694905042648315, -0.6335576772689819, -0.5126933455467224, 0.37491413950920105, 0.07156261801719666, -0.35082724690437317, -0.1415673941373825, -0.08615203201770782, -0.1973763108253479, -0.02537999302148819, 0.3170979917049408, -1.0401686429977417, -0.4767657220363617, -0.8055088520050049, -0.5209311246871948, -0.7307640314102173, -0.578975260257721, -0.6926445364952087, 0.7205173969268799, 0.9353724122047424, -0.7610084414482117, 0.463650107383728, -0.04517703503370285, -1.4462313652038574, 0.09105192124843597, -0.38640648126602173, -0.5437504053115845, -0.5862538814544678, -0.5540205240249634, 0.31356510519981384, -0.43191614747047424, -0.1604590117931366, 0.3664731979370117, 0.33496248722076416, -0.30743408203125, -0.8056013584136963, 0.07700160145759583, -0.45522540807724, -0.7084453701972961, -0.6271387934684753, 0.4793250262737274, -0.793886125087738, -0.15370607376098633, 0.38077592849731445, 0.23221570253372192, 0.2695557475090027, 0.2916644215583801, -0.550014317035675, 0.6037274599075317, 0.18934541940689087, 0.7641767263412476, -0.7142674922943115, 0.3188869059085846, -0.4841216206550598, 0.23734644055366516, 0.18264617025852203, -0.6031427979469299, 0.18073536455631256, 0.29173725843429565, -0.1342107206583023, 0.29841336607933044, -0.3542770445346832, 0.1161494255065918, -0.5912795662879944, -0.18546684086322784, -0.8369433283805847, -0.03539733216166496, 0.5996566414833069, 0.07104875892400742, 0.18733610212802887, -0.8711020946502686, 0.6078450083732605, -0.6283398866653442, -0.3839212656021118, -1.4981718063354492, 0.13492177426815033, 0.12269024550914764, -0.03786323592066765, 0.24282272160053253, 0.22072502970695496, -0.24589933454990387, -0.32518044114112854, 0.5347306132316589, -0.199283629655838, 0.692790150642395, -0.7928820848464966, 0.12028765678405762, -0.05925022065639496, 0.323340505361557, -0.2699846029281616, 0.2593272626399994, 0.18709351122379303, 0.249657541513443, 0.5795136094093323, 0.6494722962379456, 0.537858784198761, -0.6397267580032349, 0.2096765637397766, -0.6371020674705505, -0.04165619611740112, -0.2712431848049164, -0.015791378915309906, 0.5230028629302979, -0.8058087229728699, 0.023937880992889404, -0.587599515914917, 0.8210957646369934, 0.04774182289838791, 0.12559597194194794, -0.8065317869186401, 0.4985966086387634, -0.47410285472869873, -0.44460156559944153, -0.029756318777799606, -0.3055078983306885, 1.1105111837387085, -0.6846473813056946, 0.16996954381465912, 0.1597074568271637, 0.09239770472049713, 0.5678133368492126, -0.2307622730731964, -0.40134021639823914, 0.3973700702190399, -0.6229392886161804, 0.36616164445877075, 0.23315709829330444, -0.06402958929538727, 0.15788604319095612, 0.6423208117485046, -0.004377279430627823, -0.12258344888687134, -0.04635022208094597, -0.07329784333705902, 0.5463959574699402, -0.21627911925315857, 0.2789309024810791, -0.33735141158103943, -0.3518321216106415, -0.4284813404083252, 0.5362246632575989, 0.3234591484069824, -0.2436879724264145, 0.029697522521018982, -0.6999229192733765, -1.4078152179718018, 0.17999908328056335, 0.49665045738220215, 0.5263115167617798, 0.44512155652046204, -0.3329258859157562, -0.011380575597286224, -0.2932590842247009, -0.0780298113822937, -0.2747182548046112, -1.0635707378387451, 0.6691703200340271, 0.0164211243391037, -0.20562317967414856, 0.03744671493768692, -0.2722054719924927, -0.9763418436050415, -0.2651578187942505, 0.25066298246383667, 0.07667569816112518, -0.7486714720726013, -0.2679029107093811, -0.23336133360862732, 0.5240688323974609, -0.08152462542057037, 0.37694770097732544, 0.191364586353302, 0.055759817361831665, -0.3385615050792694, -0.8013730049133301, 0.6093583106994629, -0.2290726751089096, -0.2450663149356842, 0.2958921790122986, -0.5661447048187256, 0.6000972390174866, -0.6901443004608154, 0.3171329200267792, 1.0772087574005127, -0.17376121878623962, 0.37513938546180725, -0.4815386235713959, 0.6804144978523254, -0.11572888493537903, 0.8342131972312927, 0.35968050360679626, -0.17175452411174774, -0.3944374620914459, -1.147053837776184, 0.18101061880588531, 0.1094154566526413, -0.7521622776985168, -0.012857291847467422, 0.07465457916259766, 0.8998523950576782, -0.03268539533019066, 0.2852719724178314, -0.06972593814134598, -0.07325005531311035, 1.0625190734863281, -0.6428681015968323, -0.4094007909297943, -0.14001819491386414, -0.2374100387096405, 0.3886086046695709, 0.6161847114562988, 0.40518495440483093, -1.2232701778411865, 1.157006859779358, 0.9013328552246094, 0.6486262083053589, -0.1464102864265442, -0.29498353600502014, 0.8883756399154663, -0.42884305119514465, -0.07869516313076019, -1.018873929977417, 0.006641775369644165, 0.27019625902175903, 0.628496527671814, -0.4108472466468811, -0.13566818833351135, -0.17047978937625885, 0.9637986421585083, -0.8248168230056763, -0.7814675569534302, -0.05769816040992737, -0.12066991627216339, 0.15882296860218048, 0.6831346154212952, -0.8610139489173889, 0.013709735125303268, -0.10088595747947693, -0.2755741477012634, -0.03338475525379181, -0.105512335896492, 1.3788796663284302, -0.5516781806945801, 0.11140657961368561, -0.07328668981790543, 0.29634010791778564, 0.8139771819114685, 1.459661602973938, -0.6422392129898071, 0.24514180421829224, -0.5852226614952087, 1.1757124662399292, 0.6362338066101074, 0.3984870910644531, 0.07840809226036072, -0.28577202558517456, 0.4566950500011444, -1.0197947025299072, 0.23092082142829895, 0.6956455707550049, 0.2577967047691345, -0.45053958892822266, 0.682697594165802, 0.856235921382904, -0.991942822933197, -0.7509589195251465, 0.314558207988739, 0.005981117486953735, -0.40149205923080444, 0.187921941280365, 0.5904213190078735, 0.3956148624420166, 0.5108526945114136, 0.53102046251297, 0.6462669968605042, 1.206458568572998, -0.24457819759845734, -0.009160146117210388, 0.8049405813217163, 0.8467026948928833, 1.1274373531341553, 0.2557554543018341, 0.2756994962692261, 0.8518289923667908, -0.5201429128646851, -0.8528549075126648, 0.1391637921333313, -0.026013562455773354, 0.3064664602279663, 0.026033369824290276, -0.29339665174484253, 0.6964759230613708, 0.8506847620010376, 1.2858397960662842, -0.23987016081809998, 0.06327947229146957, -0.5596268773078918, -0.4367540776729584, 1.0256471633911133, -0.011257179081439972, -0.17117473483085632, 0.8095532059669495, -0.7499104738235474, -0.5695858001708984, 0.15014906227588654, 0.7170499563217163, -0.280335396528244, -0.20058104395866394, -0.4894174635410309, -0.19651828706264496, -0.21733801066875458, 1.11435866355896, 1.1110936403274536, -0.26775771379470825, -0.08582165092229843, 0.08850739896297455, 0.5662645101547241, 0.0030654072761535645, 0.13572585582733154, 0.21158376336097717, 0.19366413354873657, 0.1481996327638626, -0.3412178158760071, 0.2666128873825073, -0.22930537164211273, 0.4771648049354553, 0.6446451544761658, -0.2789515256881714, 0.03306691348552704, 0.41469672322273254, 1.0069314241409302, -0.42988502979278564, -0.9692928194999695, -1.0127882957458496, 0.041910916566848755, -0.8494000434875488, -0.23761561512947083, 0.5075836181640625, -0.1590353101491928, -1.0291528701782227, -0.7407106161117554, -0.7043598294258118, 0.008764125406742096, -0.15569837391376495, -0.36510851979255676, -0.23363392055034637, 0.5485252737998962, 0.07811270654201508, 0.2210579812526703, 0.797363817691803, 0.43207645416259766, 0.06772615015506744, -0.2209705412387848, 0.47351276874542236, 0.2557206451892853, 1.1668236255645752, -0.5979596376419067, 0.2761503756046295, -1.3096494674682617, 0.5832521915435791, 0.8771480917930603, 1.1441680192947388, -1.5529351234436035, 0.7742884159088135, 0.0321010947227478, -0.44241002202033997, 1.0758981704711914, 0.038432396948337555, -0.2365124523639679, -0.3914340138435364, -0.18120849132537842, -0.5456559658050537, 0.3058929145336151, 0.6609302759170532, -0.26858389377593994, 0.608056366443634, 0.785281240940094, 0.023132991045713425, -0.6127797365188599, 0.10561265051364899, -0.17018991708755493, 0.8542694449424744, -1.0475952625274658, -0.22076809406280518, -0.6354129910469055, -0.8300137519836426, -0.4379359483718872, 0.30317479372024536, -0.1507544368505478, -0.6866045594215393, -0.22394396364688873, -0.3184162974357605, -0.34466493129730225, 0.19766506552696228, -0.4467402696609497, -0.1646091639995575, -0.1045307070016861, -1.0215535163879395, -0.7412975430488586, 0.3465474843978882, 0.32321810722351074, -0.7087120413780212, 0.0876147449016571, -0.480160117149353, -0.24721381068229675, -0.5255705118179321, -0.4306713044643402, 0.7966989278793335, -0.5193279981613159, 0.2216966450214386], "469c53f1-d0e2-40b2-8f54-f84a22474d93": [-0.008417416363954544, 0.11157405376434326, -0.4142303466796875, -0.02464864030480385, 0.7491995692253113, -0.7636643648147583, 0.661763072013855, 0.5613070130348206, -0.2960667312145233, -0.3665982484817505, -0.663847804069519, -0.010791290551424026, -0.6143847107887268, 0.4841552972793579, 0.3493688702583313, 1.0667585134506226, 0.7282060980796814, -0.24303461611270905, -0.07503564655780792, -0.07116368412971497, -0.07570162415504456, -0.4635297358036041, -0.4404769241809845, 0.36776724457740784, 0.6753807067871094, 0.14682185649871826, 0.13154000043869019, 0.6263706088066101, -1.479184627532959, 0.437083899974823, 0.27994585037231445, -0.44903892278671265, 0.003721661865711212, -0.031566403806209564, 0.03814800828695297, -0.2731819152832031, -0.8104901313781738, -0.2920178174972534, 0.2919480502605438, -0.12010721117258072, -0.6222525238990784, -0.6370636224746704, -0.47066056728363037, -0.21299172937870026, -1.1577092409133911, 0.23663395643234253, -0.8854777812957764, 0.26668187975883484, -0.44854241609573364, -0.32184261083602905, -1.1814582347869873, 0.39874720573425293, -0.34973427653312683, 0.02443089336156845, 0.618535041809082, 0.6858276128768921, -0.20066995918750763, -1.279842495918274, -0.006380291655659676, -0.2268560528755188, 0.4689426124095917, -0.22139857709407806, 0.7249786853790283, -0.047626793384552, -0.0704728364944458, -0.4026409089565277, -0.3859894275665283, 0.6536908149719238, -1.1080200672149658, -0.7162289619445801, -0.31603583693504333, 0.2137996256351471, 0.1544339507818222, -0.13202448189258575, 0.23947639763355255, -0.4843880236148834, -0.056468307971954346, 0.5610700845718384, 0.9130914211273193, 0.9047973155975342, -0.03467141091823578, 0.3128588795661926, 0.33544185757637024, 0.8742364048957825, -0.34614819288253784, -0.041421446949243546, -0.833808183670044, -0.37264305353164673, -0.616356611251831, 0.7957582473754883, -0.043060630559921265, -0.30396223068237305, 0.7423095107078552, 0.4049748182296753, 0.28124555945396423, -0.29063308238983154, 0.8443118929862976, 0.21949298679828644, 0.6569441556930542, 0.4199088215827942, -0.4805366098880768, -1.2835378646850586, 0.32131123542785645, -0.23532062768936157, -1.3108530044555664, -0.4984115660190582, -0.8707324862480164, -0.21080222725868225, 0.08980388939380646, 0.19092673063278198, 0.026011385023593903, -0.5766724944114685, -0.46187451481819153, -0.11326563358306885, -0.7816148400306702, 1.2882548570632935, 0.374102383852005, 0.2486737072467804, -0.2666128873825073, 0.10151565074920654, 0.6798450350761414, 1.0712358951568604, 0.3541032671928406, 1.2161544561386108, 0.15913516283035278, 0.6129544973373413, 0.2873667776584625, 0.902525007724762, -0.2250353991985321, -0.9158889055252075, -0.32827314734458923, 0.9991397857666016, 0.09579212963581085, 0.22299090027809143, -0.3899720013141632, 0.17254990339279175, -0.24889542162418365, 0.19251860678195953, 0.2561054527759552, -0.4763460159301758, -0.25395122170448303, -0.42231485247612, 0.055539071559906006, -0.5364472270011902, 0.39187824726104736, 0.16320863366127014, -0.051984600722789764, -0.8329367637634277, -0.13763168454170227, 0.9977664947509766, 0.21136996150016785, 0.2945869565010071, 0.9482862949371338, -0.6629276275634766, -0.2844815254211426, 0.3635842800140381, -0.2286093384027481, 0.21024790406227112, -0.6706513166427612, 0.36607906222343445, 0.27776920795440674, -0.17125040292739868, -0.37706658244132996, -0.02250652015209198, -0.539513111114502, 0.028628088533878326, 0.30926525592803955, -0.06013593450188637, 0.04655151069164276, 0.7901401519775391, -0.5130200386047363, -0.525181770324707, 0.7030304670333862, -0.22225160896778107, -0.466521292924881, 0.02151729166507721, 1.2082034349441528, 0.4794737696647644, 0.6815558671951294, 0.016964219510555267, -0.9278503060340881, 0.6757330298423767, -0.037666723132133484, -0.4362727999687195, -0.0021056272089481354, -0.6326835751533508, 1.5216273069381714, -0.20714117586612701, -0.25718140602111816, 0.14200130105018616, -1.3531261682510376, -0.49734145402908325, -0.1564328968524933, 0.2727038264274597, 0.9012883901596069, -0.4045650064945221, 0.1601065993309021, 0.3525890111923218, 0.222744420170784, 0.9885386228561401, 0.030352912843227386, 0.24987980723381042, -0.09086337685585022, -0.7405747175216675, -1.1239125728607178, 0.7216933369636536, 0.4529910981655121, 0.28207558393478394, -0.007676944136619568, 0.3872935175895691, 0.01489643007516861, 0.29800376296043396, 0.610247015953064, -0.21093960106372833, 0.916854977607727, 0.3855343461036682, 0.7422190308570862, -0.9468560814857483, 0.7538995742797852, -1.1398940086364746, 0.06969898194074631, -0.7199071645736694, -0.9484492540359497, 0.3147066831588745, -0.5687990188598633, 1.2343063354492188, 1.094019889831543, -0.6203485727310181, -0.12267555296421051, 0.3686217665672302, 0.12469778954982758, -0.48089659214019775, 0.04455287754535675, 0.05299689248204231, -0.33122918009757996, -0.19410672783851624, 0.37483566999435425, -0.40828993916511536, 1.0452163219451904, -0.6625794172286987, 0.16159018874168396, 1.23760986328125, 0.14266006648540497, 0.25401461124420166, 0.5419241786003113, -0.060371335595846176, 0.27231380343437195, -0.522153913974762, -0.5750102996826172, -0.24176302552223206, -0.6523669958114624, -0.36337810754776, 0.2708743214607239, -0.9973580241203308, 0.38016629219055176, -0.31224358081817627, -0.9056521058082581, 0.3721572160720825, 0.6750882267951965, 0.9771266579627991, -0.5018987655639648, 1.147657036781311, 0.45976242423057556, 0.06331484019756317, -0.4087609052658081, -1.485296607017517, -0.32819652557373047, -0.17618869245052338, 0.39317190647125244, 0.4309178590774536, 0.15024368464946747, 0.46418142318725586, -0.0018843449652194977, 0.1301167607307434, -0.21402119100093842, 0.19311413168907166, 0.9905588030815125, 0.6589811444282532, -0.12406379729509354, -0.9764100909233093, -0.16918650269508362, 0.9016194343566895, -0.651513934135437, -0.9998000860214233, -0.08093377947807312, -0.7635398507118225, 0.44759058952331543, -0.6822106838226318, -0.6937400698661804, 0.47743839025497437, 0.5595499873161316, 0.7301230430603027, -0.3236403167247772, 0.9950357675552368, 0.9402726292610168, 0.32470670342445374, 0.3363892436027527, 0.47742921113967896, 0.5378326177597046, 0.07535752654075623, -0.14556574821472168, 0.6164226531982422, 0.8144976496696472, -0.13517995178699493, -0.14834734797477722, -0.23122857511043549, -0.21346986293792725, -0.30166923999786377, -4.5056047439575195, 0.335637629032135, -0.19366569817066193, -0.5725408792495728, 0.21330314874649048, 0.692187488079071, 0.3170507550239563, -0.5896443724632263, -0.37977322936058044, 0.7241799235343933, -0.4908427596092224, -0.1308310627937317, 0.6377508044242859, 0.6701434850692749, 0.12673699855804443, 0.6902152895927429, -0.13609379529953003, -0.8001304864883423, 0.38075077533721924, 0.25471240282058716, -0.22196103632450104, -1.0780138969421387, -0.363949179649353, 0.45638373494148254, 0.12377570569515228, 0.30327433347702026, -1.1274082660675049, 0.707675039768219, -0.9659455418586731, -0.2174660712480545, 0.30683910846710205, -0.44556379318237305, -0.3115542531013489, -0.26030683517456055, -0.019502699375152588, -0.7394612431526184, 0.5800799131393433, 0.030040010809898376, 0.04397594928741455, -0.23346403241157532, -0.2975459694862366, -0.9068019390106201, -0.11454693973064423, -0.5489265322685242, 0.8678447604179382, -0.09348554909229279, -0.5207504034042358, -0.5987961292266846, 0.1421593874692917, 0.7676173448562622, -0.3097609579563141, -0.5272787809371948, -0.5238490104675293, 0.29707756638526917, 0.19675764441490173, -0.13923762738704681, -0.10079199075698853, -0.37175214290618896, -0.6961677670478821, 0.16905942559242249, 0.5240654945373535, -0.7925005555152893, -0.6903490424156189, -0.8926570415496826, -0.573051929473877, -0.6146458387374878, -0.5962204337120056, -0.6242899894714355, 1.0295429229736328, 1.0569770336151123, -0.32769718766212463, 0.5361480712890625, -0.3370221257209778, -1.4925740957260132, 0.09853453934192657, -0.4631432890892029, -0.460544228553772, -0.5253405570983887, -0.38650673627853394, 0.33467814326286316, -0.3339407444000244, -0.332990437746048, 0.5557966828346252, 0.21201437711715698, -0.30028340220451355, -0.4850092828273773, 0.15404553711414337, -0.5692647695541382, -0.4028357267379761, -0.6765036582946777, 0.5915783643722534, -0.4899468719959259, -0.06594803929328918, 0.34050098061561584, 0.6484991908073425, 0.5784314870834351, 0.327483206987381, -0.5365327000617981, 0.6103565096855164, 0.1028490960597992, 0.7135565280914307, -0.8390747904777527, 0.2837284803390503, -0.39840269088745117, 0.28363558650016785, -0.08754164725542068, -0.4866028130054474, 0.2513819932937622, 0.42878401279449463, -0.16402164101600647, 0.42919695377349854, -0.27560359239578247, 0.018590722233057022, -0.8684475421905518, -0.26914262771606445, -0.8448688983917236, 0.24586308002471924, 0.5794028639793396, 0.27952271699905396, 0.11378756165504456, -0.5991146564483643, 0.5490824580192566, -0.7342714667320251, -0.4556155800819397, -1.4820990562438965, 0.17690876126289368, 0.14395830035209656, 0.18413805961608887, 0.27402442693710327, 0.09928345680236816, -0.5204638242721558, -0.35412028431892395, 0.5864663124084473, -0.3310734033584595, 0.7085858583450317, -1.0127002000808716, -0.05371011048555374, -0.3322608470916748, 0.487544983625412, -0.13806316256523132, 0.3053637444972992, 0.1015569195151329, 0.6164331436157227, 0.3799302279949188, 0.9170792102813721, 0.6122226119041443, -0.5489156246185303, 0.18391555547714233, -0.372218519449234, -0.2888200581073761, 0.046815771609544754, -0.09346304088830948, 0.6539977788925171, -0.9838281273841858, 0.047462984919548035, -0.679428219795227, 0.6103476285934448, 0.057828716933727264, -0.229128897190094, -0.9054788947105408, 0.48852187395095825, -0.3578569293022156, -0.3348489999771118, 0.03817823901772499, -0.055658116936683655, 1.0453355312347412, -0.6624217629432678, 0.06083911657333374, 0.0773385614156723, 0.22419901192188263, 0.23825785517692566, -0.20969703793525696, -0.592495322227478, 0.43881848454475403, -0.9144437909126282, 0.6591865420341492, 0.030348338186740875, -0.3230123221874237, -0.028608009219169617, 0.6110572218894958, -0.3347257375717163, 0.0021001696586608887, 0.13504134118556976, 0.3230556547641754, 0.7191807627677917, 0.002794422209262848, 0.19867011904716492, -0.5070281624794006, -0.04609359800815582, -0.10791490972042084, 0.3626115620136261, 0.2036210149526596, -0.438040167093277, 0.07681897282600403, -0.8934231400489807, -1.2886931896209717, -0.1474904865026474, 0.3323670029640198, 0.3361900746822357, 0.12808331847190857, -0.37599828839302063, -0.08392122387886047, -0.37238889932632446, -0.1963452249765396, -0.1102873831987381, -1.2251182794570923, 0.5747009515762329, -0.06417103111743927, -0.27148666977882385, -0.15317311882972717, -0.060969483107328415, -0.9901492595672607, -0.33282148838043213, 0.17382605373859406, -0.07681868970394135, -0.8623104691505432, -0.2991302013397217, -0.09158772230148315, 0.26674318313598633, -0.2833581566810608, 0.33712732791900635, 0.028241313993930817, 0.16804653406143188, -0.1636812686920166, -0.9135401844978333, 0.5950018167495728, -0.49195626378059387, -0.2861647605895996, 0.5945543050765991, -0.15453699231147766, 0.4885028600692749, -0.6802415251731873, 0.22552311420440674, 0.8750497698783875, 0.04934196174144745, 0.24050140380859375, -0.3290386199951172, 0.4655526280403137, -0.2568126916885376, 0.6709084510803223, 0.45085933804512024, -0.16339607536792755, -0.1760532706975937, -0.9882752299308777, 0.17649534344673157, 0.19931906461715698, -0.5951893329620361, -0.14157770574092865, 0.11733400821685791, 0.8780001401901245, -0.18497607111930847, 0.4365764260292053, 0.0556999072432518, -0.12945035099983215, 0.9087462425231934, -0.7395773530006409, -0.5885979533195496, -0.0031386930495500565, -0.6632737517356873, 0.5439863204956055, 0.3610557019710541, 0.5840356945991516, -0.9357982873916626, 1.1461719274520874, 0.719994843006134, 0.6984909772872925, -0.190450057387352, -0.25723135471343994, 0.9198797941207886, -0.5911276340484619, -0.09191415458917618, -1.0338218212127686, 0.46393895149230957, 0.5482065677642822, 0.4249362647533417, -0.20897626876831055, -0.5504446625709534, -0.5436518788337708, 0.8605829477310181, -0.6839209198951721, -1.034096598625183, 0.11554886400699615, -0.16408222913742065, 0.22253736853599548, 0.46787458658218384, -0.6728942394256592, 0.09409639984369278, 0.2834834158420563, -0.22529283165931702, 0.23553785681724548, -0.4473184645175934, 0.9787611961364746, -0.6213405728340149, -0.061923086643218994, 0.11126768589019775, -0.009189572185277939, 0.5403503179550171, 1.319868564605713, -0.6131618618965149, -0.10064740478992462, -0.8850902915000916, 0.8381866812705994, 0.5883474349975586, 0.38759881258010864, -0.09336565434932709, -0.05552805960178375, 0.4422104060649872, -0.9733527302742004, 0.15382912755012512, 0.6390257477760315, -0.018167998641729355, -0.35441145300865173, 0.760563313961029, 0.8059226274490356, -0.896946907043457, -0.9510384798049927, -0.13686184585094452, -0.09706859290599823, -0.19446466863155365, 0.30920150876045227, 0.5004177689552307, 0.6801612973213196, 0.6217136383056641, 0.5448195338249207, 0.5080113410949707, 1.4089502096176147, -0.2661476135253906, 0.11840111017227173, 0.6647005081176758, 1.0083956718444824, 1.2224657535552979, 0.2516847848892212, 0.19756865501403809, 0.6817910075187683, -0.8267363905906677, -0.6398540139198303, 0.33027875423431396, -0.024889137595891953, 0.36201754212379456, -0.15729111433029175, -0.007225777953863144, 0.6601174473762512, 0.4085429012775421, 1.2094653844833374, -0.19701726734638214, 0.24076741933822632, -0.2804381251335144, -0.4699280560016632, 1.0553776025772095, 0.20239941775798798, -0.21644854545593262, 0.5687268972396851, -0.15375643968582153, -0.6482998728752136, 0.17502164840698242, 0.7067722678184509, -0.11076462268829346, -0.1213313415646553, -0.5909188985824585, -0.09816773235797882, -0.34054988622665405, 1.3146312236785889, 0.9964423179626465, -0.05735555291175842, 0.07009962201118469, -0.05731365457177162, 0.47740480303764343, -0.03805797919631004, 0.45065081119537354, -0.10228238999843597, 0.19061022996902466, 0.00242033414542675, -0.5320228338241577, 0.5253714919090271, 0.06877563148736954, 0.2218577265739441, 0.9468643665313721, -0.24768327176570892, 0.3028274476528168, 0.378682017326355, 0.8668429255485535, -0.5185231566429138, -0.8271572589874268, -1.0324106216430664, 0.13978183269500732, -1.023571252822876, -0.11948876827955246, 0.5529491901397705, -0.10427037626504898, -1.1384639739990234, -0.5833204984664917, -0.5100822448730469, 0.16927894949913025, -0.18175780773162842, -0.18473480641841888, -0.2859688401222229, 0.8426100611686707, 0.24063001573085785, 0.1970936805009842, 0.5471189022064209, 0.5307514667510986, 0.24730908870697021, 0.04468633979558945, 0.07368328422307968, 0.27482545375823975, 1.1156392097473145, -0.4095709025859833, 0.06917354464530945, -0.9430826306343079, 0.509355902671814, 0.8403446078300476, 0.982570230960846, -1.5289949178695679, 0.7827684879302979, -0.2945181429386139, -0.8540006875991821, 0.689606249332428, -0.2911006212234497, -0.37354207038879395, -0.46753421425819397, -0.17220176756381989, -0.7417023777961731, 0.19110454618930817, 0.5767552852630615, -0.013833865523338318, 0.6284384727478027, 0.8740859627723694, 0.28912633657455444, -0.5564013123512268, 0.15570181608200073, -0.03593924641609192, 0.37619540095329285, -1.0734223127365112, -0.1404995620250702, -0.34467813372612, -0.7838581204414368, -0.15964767336845398, 0.6021149754524231, -0.19005665183067322, -1.0389996767044067, -0.13646352291107178, -0.7253223657608032, -0.12811590731143951, 0.15847571194171906, -0.19094060361385345, -0.3051992654800415, -0.20950303971767426, -0.8720741271972656, -0.8897140622138977, 0.4723697900772095, 0.3596610128879547, -0.2322259545326233, -0.048611849546432495, -0.49663472175598145, -0.09231507778167725, -0.6449387073516846, -0.3033393919467926, 0.5619422793388367, -0.5173302888870239, 0.1882164627313614], "5c7983b9-f801-4a20-9ddc-321df1a15374": [-0.08049280941486359, 0.2940802574157715, -0.4169735312461853, 0.335359662771225, 0.549665093421936, -0.5243537425994873, 0.3063209652900696, 0.4708727300167084, -0.30158764123916626, -0.5245054960250854, -0.13928818702697754, 0.3263148367404938, -1.2881511449813843, 0.4826062023639679, 0.4068644940853119, 0.8233661651611328, 0.764694094657898, -0.7760610580444336, -0.3728697597980499, 0.011719882488250732, 0.10223446786403656, 0.2279183566570282, -0.24647065997123718, 0.481937974691391, 0.7647530436515808, -0.29327428340911865, -0.13860927522182465, 0.30842357873916626, -1.4493283033370972, 0.2925080358982086, 0.27694442868232727, -0.36859098076820374, -0.2978235185146332, -0.1949635148048401, 0.03361783176660538, -0.06462351232767105, -0.5259317755699158, -0.3951885402202606, 0.5525538325309753, -0.37960872054100037, -0.9441883563995361, -0.5954834222793579, -0.9601274728775024, 0.32742559909820557, -0.6299293041229248, 0.18218478560447693, -0.6969404816627502, 0.03274357318878174, -0.6171310544013977, -0.09451652318239212, -0.9609206914901733, 0.5121033191680908, -0.07256163656711578, 0.397210955619812, 0.03553185611963272, 1.068439245223999, -0.20695653557777405, -1.2845556735992432, -0.05076024681329727, -0.5450836420059204, 0.3488054573535919, -0.023448944091796875, 0.3888474404811859, 0.10300260782241821, 0.11109572649002075, -0.503767192363739, -0.6892293691635132, 0.6778925061225891, -1.0150158405303955, -0.7042837142944336, -0.5153750777244568, 0.4173663854598999, 0.07003839313983917, -0.007690697908401489, 0.8632423281669617, -0.8034072518348694, 0.2194899469614029, 0.41336116194725037, 0.8848180770874023, 0.7452021241188049, 0.08483763784170151, 0.3760398328304291, 0.5621704459190369, 0.8619863390922546, -0.7374493479728699, 0.010713227093219757, -0.5297414064407349, -0.40746867656707764, -0.6001522541046143, 0.7768921852111816, -0.31226053833961487, -0.19002890586853027, 0.7749143838882446, 1.0018045902252197, 0.29927682876586914, -0.050353728234767914, 0.8294848203659058, 0.48104822635650635, 0.0439048670232296, -0.17266635596752167, -0.6136228442192078, -0.8325373530387878, 0.16440272331237793, 0.40011125802993774, -1.3031947612762451, -0.35122525691986084, -0.8931108713150024, 0.08653130382299423, 0.07954642921686172, 0.2561890482902527, 0.12091314792633057, -0.7161665558815002, -0.6525431871414185, -0.2858521342277527, -1.0583364963531494, 1.0210703611373901, 0.4525355398654938, 0.18427395820617676, 0.35689935088157654, -0.01776190474629402, 0.786167323589325, 0.7709973454475403, 0.722798228263855, 1.1866106986999512, 0.09335877001285553, 0.6914541125297546, 0.27817049622535706, 0.6905502080917358, -0.6912093162536621, -1.0959162712097168, -0.0509527325630188, 1.0392036437988281, 0.05227963998913765, -0.0009167343378067017, -0.4491901695728302, 0.24895226955413818, 0.3107539117336273, 0.014333222061395645, 0.021976448595523834, -0.11591894924640656, -0.3492673635482788, -0.5010559558868408, 0.6186450719833374, -0.13688164949417114, 0.4054676592350006, 0.07399892807006836, -0.18274757266044617, -0.7599745392799377, -0.6866114139556885, 0.7905021905899048, 0.684631884098053, 0.07254169881343842, 0.9942799806594849, -0.6407544612884521, -0.11540960520505905, 0.6783567070960999, 0.4860832095146179, 0.7916035652160645, -0.6195937395095825, 0.6273391246795654, 0.6698626279830933, 0.05050751566886902, -0.2781907618045807, 0.028725259006023407, -0.21657122671604156, 0.25058379769325256, 0.39148572087287903, -0.5268582701683044, -0.22952330112457275, 0.09158657491207123, -0.1923307180404663, -0.7747626304626465, 0.9409251809120178, 0.08238370716571808, -0.4109725058078766, 0.1002579778432846, 1.2411463260650635, 0.5882160663604736, 0.3943500518798828, -0.5389304161071777, -0.9201825261116028, 0.6694918274879456, 0.3274400234222412, -0.4153021574020386, 0.051606498658657074, -0.42750945687294006, 1.62101149559021, -0.19946777820587158, -0.1668064147233963, 0.02793782390654087, -1.2721140384674072, -1.151418685913086, -0.10108933597803116, 0.6194056272506714, 1.3581825494766235, -0.17453345656394958, -0.30573463439941406, 0.522680401802063, 0.31974074244499207, 0.7801276445388794, -0.11226975917816162, 0.8852497339248657, -0.1780654489994049, -0.8434301018714905, -0.9729865789413452, 0.7331966757774353, 0.60130774974823, 0.11706170439720154, -0.31888386607170105, 0.6144523620605469, -0.016495421528816223, -0.09072258323431015, 0.7621200084686279, -0.339204877614975, 1.230614423751831, 0.49523645639419556, 0.6821454763412476, -0.7508479952812195, 0.8010249733924866, -1.0948777198791504, 0.6583858728408813, -0.7524157762527466, -0.927550733089447, 0.08581571280956268, -0.09428825974464417, 1.498908281326294, 0.8966367840766907, 0.05747878551483154, -0.33329328894615173, 0.22538964450359344, 0.04594351351261139, -0.33715248107910156, 0.7886674404144287, -0.08866415917873383, -0.3809550404548645, 0.4131409823894501, 0.058912791311740875, -0.1884106695652008, 1.150861144065857, -0.828238844871521, 0.5549177527427673, 0.8258891701698303, 0.22377358376979828, 0.5738102197647095, 0.5589928030967712, 0.058509841561317444, 0.2049310803413391, -0.6400963664054871, -0.5534718036651611, -0.35472577810287476, -0.6572090983390808, -0.3817802667617798, 0.022554313763976097, -0.546625554561615, 0.4463597536087036, -0.33361756801605225, -0.7847870588302612, 0.129039466381073, 0.91106778383255, 1.00003981590271, -0.5332970023155212, 0.7320475578308105, 0.3466711640357971, -0.2425331324338913, -0.1744537651538849, -1.4201531410217285, -0.44631481170654297, 0.1908489316701889, 0.7179610133171082, 0.43270137906074524, 0.49542564153671265, -0.09963443130254745, -0.43909794092178345, -0.1269250363111496, 0.08402687311172485, -0.05313465744256973, 1.2675105333328247, 0.5518133640289307, -0.09073667228221893, -0.756995439529419, -0.3035528361797333, 0.6410050392150879, -0.43509751558303833, -1.0914770364761353, -0.2838016748428345, -0.6167525053024292, 0.2625853419303894, -0.42927804589271545, -0.5413904190063477, 0.6586083173751831, 0.1744385063648224, 0.44146963953971863, -0.47742947936058044, 0.43381747603416443, 1.0638700723648071, 0.88239586353302, 0.3587336540222168, 0.30096232891082764, 0.26050707697868347, 0.12626034021377563, 0.0437658429145813, 0.6075232625007629, 0.621045708656311, -0.30326521396636963, -0.0883386954665184, -0.042847584933042526, -0.19627000391483307, -0.40661928057670593, -4.200672149658203, 0.24500706791877747, -0.25662025809288025, -0.8279299736022949, 0.5574663281440735, 0.42169898748397827, 0.5338617563247681, -0.9489251375198364, -0.7299374341964722, 0.5269315838813782, -0.41369205713272095, -0.030209481716156006, 0.44856441020965576, 0.2699013948440552, 0.49487537145614624, 0.4173559546470642, 0.11163096129894257, -0.9102005958557129, 0.32617586851119995, 0.8362963795661926, 0.09895303845405579, -0.9158632755279541, -0.43886685371398926, 0.5045756101608276, 0.19689135253429413, 0.4844939112663269, -0.7422513365745544, 0.585852861404419, -0.7639477252960205, -0.18770316243171692, 0.6522873640060425, -0.8085014820098877, -0.4356221556663513, 0.06114087253808975, 0.009164581075310707, -0.7092202305793762, 0.7801705002784729, 0.19978377223014832, 0.3341561555862427, -0.2865568995475769, -0.3921029269695282, -0.8187825083732605, -0.16513411700725555, -0.6985243558883667, 0.989172101020813, -0.03451641649007797, -0.22804729640483856, -0.5317391753196716, 0.1327345371246338, 0.6148972511291504, -0.481247216463089, -0.09701165556907654, -0.4209466576576233, 0.33545437455177307, -0.219134122133255, -0.2601854205131531, -0.15287408232688904, -0.030469559133052826, -0.4112434983253479, -0.3067009449005127, 0.19956649839878082, -0.5787190794944763, -0.8015411496162415, -0.9995113015174866, -0.18393947184085846, -0.9700039029121399, -0.8034707307815552, -0.6148474812507629, 0.5412123203277588, 1.0588644742965698, -0.777483344078064, 0.6727718114852905, -0.10675345361232758, -1.3615995645523071, 0.14935337007045746, -0.4430246651172638, -0.46536627411842346, -0.13225993514060974, -0.3913024365901947, 0.3507654070854187, -0.8715633749961853, -0.20842573046684265, 0.4073563814163208, 0.6357722878456116, -0.2117854356765747, -0.8746898770332336, -0.01724250242114067, -0.1914708912372589, -0.5527582168579102, -0.9620316028594971, 0.903226375579834, -0.4093845784664154, 0.3529789447784424, 0.0478137731552124, 0.6803922057151794, 0.16320477426052094, 0.431995153427124, -0.14640365540981293, 0.4008401930332184, -0.10661005973815918, 0.7461488246917725, -0.8277909755706787, 0.1575111746788025, -0.47823411226272583, 0.26223284006118774, 0.281516969203949, -0.7743079662322998, 0.08305280655622482, 0.33104172348976135, -0.127585768699646, 0.37860366702079773, -0.3843727111816406, 0.1773402988910675, -0.8746907114982605, -0.1393091380596161, -0.7212619185447693, 0.20872944593429565, 0.8906422257423401, -0.14015893638134003, 0.3160615563392639, -0.7956602573394775, 0.5991473197937012, -0.6517843008041382, -0.34607020020484924, -1.680185079574585, 0.5709966421127319, 0.6931700706481934, -0.1229853630065918, -0.10267063975334167, 0.06844104826450348, -0.7301665544509888, -0.2063561975955963, 0.5579546689987183, -0.36230018734931946, 0.16968193650245667, -0.9067782759666443, -0.382439523935318, -0.5666986107826233, 0.5207725763320923, -0.13531126081943512, 0.31246107816696167, 0.09355025738477707, 0.34423187375068665, 0.4025949239730835, 0.7662661075592041, 0.39667782187461853, -0.8444530367851257, 0.4422737956047058, -0.40767475962638855, -0.9398344159126282, -0.017387159168720245, 0.014783836901187897, 0.295455664396286, -0.6380382180213928, 0.07633018493652344, -0.6785374879837036, 0.5451558828353882, -0.009152721613645554, -0.32126384973526, -0.5522879362106323, 0.4395880401134491, -0.2346281260251999, -0.3422486186027527, -0.06607300043106079, -0.34646156430244446, 1.1167511940002441, -0.11980675160884857, 0.10593819618225098, -0.011642150580883026, -0.011912968009710312, 0.20842087268829346, -0.6987486481666565, -0.6817072033882141, -0.24059095978736877, -0.9684111475944519, 0.7279984354972839, 0.002645745873451233, 0.14798365533351898, 0.400135338306427, 0.630648672580719, -0.00829770416021347, -0.6624912619590759, 0.25920483469963074, 0.21166419982910156, 0.8314499855041504, -0.14243067800998688, 0.13646697998046875, -0.24315209686756134, -0.24393686652183533, -0.5668596029281616, 0.5260232090950012, 0.01731221005320549, -0.6182859539985657, 0.19486801326274872, -0.8833411931991577, -1.4822543859481812, -0.11346617341041565, 0.07281012833118439, 0.7917352914810181, 0.43050435185432434, -0.5133195519447327, -0.3354021906852722, -0.758078932762146, -0.2663379907608032, 0.42648303508758545, -1.416101098060608, 0.3490482270717621, -0.11811010539531708, -0.3962910771369934, -0.037936732172966, -0.41820982098579407, -1.0960315465927124, -0.39348506927490234, 0.07601818442344666, 0.4430322051048279, -1.0233982801437378, -0.6803978085517883, -0.3248041570186615, 0.24308915436267853, -0.36720773577690125, 0.2569343149662018, 0.11298425495624542, -0.15767331421375275, -0.21372835338115692, -0.8336433172225952, 0.5543869733810425, -0.08093544095754623, -0.8559334874153137, 0.694269061088562, -0.35695770382881165, 0.12439001351594925, -0.45011094212532043, 0.4408893287181854, 0.9711786508560181, 0.17091481387615204, 0.16657096147537231, -0.34458428621292114, 0.582545816898346, 0.08673141151666641, 0.813352108001709, 0.1527767926454544, 0.12427984178066254, -0.11062338948249817, -0.5535433292388916, 0.5068171620368958, -0.10591036081314087, -0.33462032675743103, -0.18941490352153778, 0.17946401238441467, 0.6009579300880432, 0.13007347285747528, 0.7396470904350281, -0.19265763461589813, -0.7548063397407532, 0.7468099594116211, -0.2885935306549072, -0.618229866027832, 0.05758000910282135, -0.33203932642936707, 0.6286569237709045, 0.23163846135139465, 0.5558203458786011, -0.7625229358673096, 0.7305192947387695, 0.9122129082679749, 0.7893421053886414, -0.5275994539260864, -0.31638455390930176, 0.8777567148208618, -0.5943593382835388, -0.3099747598171234, -1.380414605140686, -0.01536780595779419, 0.29313480854034424, 0.47482186555862427, -0.37422284483909607, -0.5872179269790649, -0.09369108825922012, 0.3341483473777771, -1.0722546577453613, -0.9020520448684692, 0.025367379188537598, -0.2265922725200653, 0.6633431911468506, 0.4771344065666199, -0.6455748081207275, -0.12805715203285217, 0.17275470495224, -0.1466018557548523, 0.40707719326019287, -0.06373519450426102, 0.8423985242843628, -0.7377331852912903, 0.0584908090531826, 0.045505866408348083, 0.04373996704816818, 0.5466692447662354, 0.9386975765228271, -0.24817577004432678, 0.08296163380146027, -1.0588200092315674, 1.0203251838684082, 0.6911410093307495, 0.3704134523868561, -0.30137133598327637, -0.010155106894671917, -0.14307501912117004, -0.8608320951461792, 0.3364541530609131, 0.6426432132720947, 0.30161747336387634, -0.2836182117462158, 0.5864619016647339, 0.7196035385131836, -0.8682120442390442, -1.2561568021774292, -0.20583876967430115, 0.024336785078048706, 0.1301569640636444, -0.10970987379550934, 0.6837232708930969, 0.2875038683414459, 0.8128607869148254, 0.5917688012123108, 0.5578725337982178, 1.3540525436401367, -0.20993560552597046, 0.10515017062425613, 0.5957433581352234, 1.3307325839996338, 1.3020256757736206, 0.2858509421348572, -0.17351466417312622, 1.177202582359314, -0.9252598285675049, -0.7221734523773193, -8.789077401161194e-05, 0.07009728252887726, 0.7615687251091003, -0.1871953159570694, -0.15904462337493896, 0.6351146101951599, 0.27876758575439453, 1.194726824760437, -0.1452917605638504, 0.14499638974666595, 0.16253012418746948, 0.16462239623069763, 0.6927236914634705, -0.24716028571128845, 0.27790993452072144, 0.7019876837730408, -0.05482646822929382, -0.7530469298362732, -0.14667260646820068, 0.5801947116851807, -0.3825112283229828, -0.3252132833003998, -1.028259515762329, 0.1602671593427658, -0.6503342986106873, 1.0648789405822754, 1.1894793510437012, 0.02513701841235161, 0.37484920024871826, -0.25029370188713074, 0.23937638103961945, -0.09651930630207062, 0.4720568060874939, -0.23432323336601257, -0.14737215638160706, -0.13663707673549652, -0.12819860875606537, 0.1325884908437729, 0.12909190356731415, 0.6826983690261841, 0.8543193936347961, -0.2678573727607727, 0.25526192784309387, 0.019997552037239075, 0.4209386706352234, -0.22894029319286346, -0.9350335001945496, -0.8243506550788879, -0.004108436405658722, -1.393728494644165, 0.08607795834541321, 0.5970383286476135, -0.2676669955253601, -0.9029146432876587, -0.546596109867096, -0.5675671696662903, 0.25379419326782227, -0.12298718839883804, -0.6820064783096313, -0.546015739440918, 0.7883358001708984, 0.31626319885253906, 0.3569900691509247, 0.7445098757743835, 0.1468462496995926, 0.2381075620651245, -0.45595622062683105, 0.03338364511728287, 0.10490294545888901, 1.398995041847229, -0.35618260502815247, 0.17208455502986908, -1.4377455711364746, 0.743084192276001, 0.3990767300128937, 0.7864076495170593, -1.7107352018356323, 0.5172792673110962, -0.039789751172065735, -0.6826549172401428, 0.6513552665710449, 0.3801216781139374, -0.13010719418525696, -0.2854344844818115, 0.005011275410652161, -0.41077089309692383, 0.13905848562717438, 0.5965433120727539, -0.5052844285964966, 0.5240861177444458, 0.7749890685081482, 0.3709205090999603, -0.7137628793716431, 0.31303176283836365, -0.3613908886909485, 0.4431527554988861, -0.605193555355072, -0.31315484642982483, -0.5202726125717163, -0.8103382587432861, -0.5406396389007568, 0.6164565682411194, -0.6277873516082764, -0.7308910489082336, -0.2258777916431427, -0.651094913482666, -0.1724853664636612, 0.4507565200328827, -0.2555631101131439, -0.3318023085594177, -0.3002099394798279, -0.6992104649543762, -0.9768828749656677, 0.24772559106349945, 0.8225032091140747, -0.5963963866233826, 0.04742281138896942, -0.5969663858413696, 0.2732521891593933, -0.38916778564453125, -0.2665257155895233, 0.530162513256073, 0.08950363844633102, 0.07416032254695892], "a7e3546c-e36e-4229-a275-24b1eba8a3fd": [-0.3441166281700134, 0.0003258846700191498, -0.3272644281387329, 0.18126280605793, 0.5797989964485168, -0.6201915740966797, 0.5665649175643921, 0.4285244345664978, -0.18342947959899902, -0.4100063443183899, -0.670319139957428, 0.20514395833015442, -1.1343746185302734, 0.4888141453266144, 0.21164658665657043, 0.8557701110839844, 0.38998928666114807, -0.24734966456890106, -0.16447918117046356, -0.0275143850594759, 0.08862204849720001, 0.17751441895961761, -0.007421696558594704, 0.6130856871604919, 0.7689034938812256, -0.27505606412887573, 0.22306214272975922, 0.3112657070159912, -1.4090336561203003, 0.19539764523506165, 0.1975833773612976, -0.6055195927619934, -0.26922836899757385, -0.08532275259494781, 0.16341017186641693, 0.012058809399604797, -0.43741828203201294, -0.35922980308532715, 0.13593289256095886, -0.14934831857681274, -0.7410153150558472, -0.2546688914299011, -0.4625377357006073, 0.07472188025712967, -0.578347384929657, 0.04406046122312546, -1.1181539297103882, 0.14997470378875732, -0.4499776363372803, -0.26983582973480225, -1.237490177154541, 0.38921862840652466, -0.20476898550987244, -0.158358633518219, 0.35249215364456177, 0.6870617866516113, -0.15562701225280762, -1.2460819482803345, 0.08253011107444763, -0.4324631690979004, 0.19433513283729553, 0.15862849354743958, 0.4285803437232971, 0.2156066596508026, 0.31653180718421936, -0.22028854489326477, -0.5079337954521179, 0.5995360016822815, -0.9407075643539429, -0.5641684532165527, -0.3516623377799988, -0.2423059046268463, 0.193772554397583, -0.005160100758075714, 0.7438173294067383, -0.40874236822128296, 0.025448739528656006, 0.5308516025543213, 0.5346050262451172, 0.8166334629058838, 0.07537125051021576, 0.5614776611328125, 0.5561830401420593, 0.7826770544052124, -0.28825390338897705, -0.362162709236145, -0.8835257291793823, -0.314934104681015, -0.4727965295314789, 1.0559207201004028, -0.1009962409734726, -0.4730779528617859, 0.9615667462348938, 0.7040563225746155, 0.1968914419412613, -0.3006497621536255, 0.5720149874687195, 0.5723934769630432, -0.09369233250617981, 0.15028110146522522, -0.36591872572898865, -0.9333924651145935, 0.09282419085502625, 0.1461387276649475, -1.4257595539093018, -0.5435224771499634, -1.116600513458252, -0.20480391383171082, 0.3291935622692108, 0.4157465398311615, -0.21620677411556244, -0.5571414828300476, -0.3922426998615265, -0.3244248628616333, -0.8698029518127441, 1.469211220741272, 0.2533160150051117, 0.28226587176322937, 0.1220819354057312, -0.15478941798210144, 0.8802878260612488, 0.9541735649108887, 0.5691174864768982, 1.4329935312271118, 0.2634408473968506, 0.8948565721511841, 0.3419671356678009, 0.7879147529602051, -0.6877480745315552, -1.1873087882995605, 0.006502969190478325, 1.311794638633728, -0.1830630600452423, 0.44970953464508057, -0.36739128828048706, 0.4136412739753723, 0.24590426683425903, -0.034157540649175644, 0.488449364900589, 0.07521964609622955, -0.22005045413970947, -0.5036838054656982, 0.4342491328716278, -0.30498889088630676, 0.10636372864246368, -0.2866297960281372, -0.5275392532348633, -0.74715656042099, -0.7302584052085876, 1.1033222675323486, 0.34199705719947815, 0.01968257501721382, 1.1680306196212769, -0.5679988861083984, -0.15838120877742767, 0.7561740875244141, 0.5980899333953857, 0.49038320779800415, -0.5171482563018799, 0.49907734990119934, 0.706436276435852, -0.13516099750995636, -0.16878223419189453, 0.02992362156510353, -0.3112684488296509, 0.2757101058959961, 0.18578416109085083, -0.6435976624488831, 0.038579463958740234, 0.19106146693229675, -0.3696967363357544, -0.6925500631332397, 0.9196468591690063, -0.04579255357384682, -0.09977959096431732, -0.14446909725666046, 1.1985793113708496, 0.38871538639068604, 0.6797854900360107, -0.4689672589302063, -1.0046018362045288, 0.5728870034217834, -0.12834371626377106, -0.14924782514572144, 0.23635831475257874, -0.5601584315299988, 1.1532526016235352, -0.03271857649087906, -0.1421923190355301, 0.15982604026794434, -1.2962878942489624, -1.0077199935913086, 0.002835831604897976, 0.10780775547027588, 1.3957710266113281, -0.3916412889957428, -0.06783528625965118, 0.4616067707538605, 0.2046068012714386, 0.6914765238761902, 0.07828830182552338, 0.6611058115959167, -0.1540130078792572, -0.9566802978515625, -0.9575009942054749, 1.0710794925689697, 0.6408002972602844, 0.17956066131591797, -0.28380662202835083, 0.5131626129150391, -0.23148639500141144, 0.09668822586536407, 0.8173465728759766, 0.006715148687362671, 1.2095577716827393, 0.08847041428089142, 0.8806792497634888, -0.7831956744194031, 0.8875840306282043, -1.220354437828064, 0.41816237568855286, -0.4846763610839844, -0.7602405548095703, 0.1635223627090454, -0.5013285875320435, 1.2006027698516846, 0.8706205487251282, -0.060065269470214844, -0.5855379700660706, 0.02256983332335949, -0.2136068493127823, -0.5772403478622437, 0.4451679587364197, 0.10291378200054169, -0.1345095932483673, -0.07359135895967484, -0.14139260351657867, -0.08259619772434235, 0.9901082515716553, -0.8193607330322266, 0.470010906457901, 1.2453172206878662, -0.12016768008470535, 0.37027767300605774, 0.7065890431404114, -0.12076397240161896, 0.25474122166633606, -0.3057003617286682, -1.1142683029174805, -0.31412434577941895, -0.2606462240219116, -0.4541323781013489, 0.38795867562294006, -0.7138353586196899, 0.03144405409693718, -0.40332505106925964, -0.3036074638366699, 0.0031819380819797516, 0.7732942700386047, 1.1890233755111694, -0.4683724343776703, 0.7028166055679321, -0.09288361668586731, -0.2192041277885437, -0.3363887667655945, -1.0845290422439575, -0.6952211856842041, 0.12120397388935089, 0.6518639922142029, 0.5479767322540283, 0.04420120269060135, 0.3206025958061218, -0.14344631135463715, -0.04382389038801193, -0.2365320771932602, 0.2509423792362213, 0.7577449083328247, 0.5724909901618958, 0.12494195997714996, -0.42876899242401123, -0.36824318766593933, 0.5778037309646606, -0.6820988655090332, -0.981178879737854, 0.14056891202926636, -0.8855957984924316, 0.50873863697052, -0.6661203503608704, -0.6170438528060913, 0.21620287001132965, 0.15000946819782257, 0.4352140426635742, -0.2209404557943344, 0.535854697227478, 1.1504539251327515, 0.48670703172683716, 0.35426104068756104, 0.40127551555633545, 0.4798785448074341, -0.15809860825538635, 0.03486788272857666, 0.5425788164138794, 0.7099176645278931, -0.10261884331703186, -0.06160460039973259, 0.09585754573345184, -0.12313014268875122, -0.7045772671699524, -4.461251735687256, 0.27486634254455566, -0.0892009288072586, -0.6224712133407593, 0.28494033217430115, 0.4369078278541565, 0.9220079183578491, -0.8944358825683594, -0.7214655876159668, 0.8010665774345398, -0.49191009998321533, -0.26834654808044434, 0.27849867939949036, 0.6751691699028015, 0.169784277677536, 0.7744300365447998, 0.002947017550468445, -0.7252041101455688, 0.3749135136604309, 0.528553307056427, -0.05901768058538437, -1.0947636365890503, -0.48529475927352905, 0.6332389712333679, 0.5295062065124512, 0.36409056186676025, -1.1427565813064575, 0.47765544056892395, -0.5660523176193237, -0.7141836285591125, 0.4116382300853729, -0.6367781758308411, -0.2814829349517822, 0.24326825141906738, 0.26250797510147095, -0.6003224849700928, 0.49600908160209656, 0.1927706003189087, 0.03064899891614914, -0.4978870153427124, -0.21937024593353271, -0.7979553937911987, 0.11809082329273224, -0.47623324394226074, 0.7711507678031921, -0.19433236122131348, -0.2468305081129074, -0.24135449528694153, 0.35201403498649597, 1.0017329454421997, -0.03220975771546364, -0.08605190366506577, -0.4940679371356964, 0.1338995099067688, -0.08902716636657715, -0.10009390860795975, 0.0892917811870575, -0.23943382501602173, -0.535139799118042, -0.3619840741157532, 0.297966867685318, -0.6812833547592163, -0.5288734436035156, -0.705726146697998, -0.5115092992782593, -0.6827597618103027, -0.8953593969345093, -0.5798572301864624, 0.8047738671302795, 0.8777302503585815, -0.556011974811554, 0.3321778178215027, 0.18950146436691284, -1.4318468570709229, -0.11855215579271317, -0.5387369394302368, -0.6118324995040894, -0.12657618522644043, -0.7113966345787048, 0.11910631507635117, -0.7247207760810852, -0.12814366817474365, 0.5024688243865967, 0.5826545357704163, -0.02580217272043228, -0.43087849020957947, 0.25716766715049744, -0.4332689344882965, -0.6766453385353088, -0.4617678225040436, 0.6853091716766357, -0.4292578101158142, 0.29048940539360046, 0.164158895611763, 0.5928062200546265, 0.17470477521419525, 0.5425739884376526, -0.13714461028575897, 0.8335211277008057, -0.29696303606033325, 0.6795847415924072, -1.1818816661834717, 0.30549356341362, -0.29804685711860657, -0.12495528906583786, 0.022741228342056274, -0.574203610420227, 0.06505972146987915, 0.3161149024963379, 0.12731467187404633, 0.20168805122375488, -0.3902345597743988, -0.2074672281742096, -0.9459882378578186, -0.2731456458568573, -0.8259826898574829, 0.3157349228858948, 0.6605632305145264, -0.10450884699821472, 0.31955140829086304, -0.8207471370697021, 0.3795240521430969, -0.9454887509346008, -0.31606724858283997, -1.4762343168258667, 0.06535752862691879, 0.18407031893730164, -0.1796724945306778, 0.019626298919320107, 0.1190284788608551, -0.2011765092611313, -0.5979588627815247, 0.6986970901489258, -0.5373046398162842, 0.15727856755256653, -0.972314715385437, -0.43066176772117615, -0.4524376392364502, 0.666861891746521, 0.03490613400936127, 0.19243961572647095, 0.20283231139183044, 0.5119270086288452, 0.06488823890686035, 0.9607696533203125, 0.6270752549171448, -0.37663599848747253, 0.30821630358695984, -0.18899482488632202, -0.6944528818130493, 0.3912166655063629, -0.19948305189609528, 0.13852882385253906, -0.6969758868217468, 0.1904284954071045, -0.6813932657241821, 0.20632986724376678, -0.10957485437393188, -0.7153997421264648, -0.6563515067100525, 0.25883060693740845, -0.7957054972648621, -0.2505110204219818, 0.23461389541625977, 0.24851197004318237, 0.7748140096664429, -0.47279492020606995, 0.05557657778263092, -0.23809820413589478, 0.10252811014652252, 0.11698135733604431, -0.5411406755447388, -0.528119683265686, 0.31863194704055786, -0.873499870300293, 0.6749210357666016, 0.11355552077293396, -0.2935645580291748, 0.1769186556339264, 0.26021432876586914, -0.147024467587471, -0.14358392357826233, 0.3363029658794403, 0.5320942997932434, 0.7388760447502136, -0.18580447137355804, 0.2688104212284088, -0.13692623376846313, -0.30830442905426025, -0.4190269112586975, 0.766584575176239, 0.34389635920524597, -0.4379405081272125, 0.013068007305264473, -0.8809193968772888, -1.3108264207839966, -0.053220152854919434, 0.36514753103256226, 0.44518333673477173, 0.2331395149230957, -0.38224413990974426, 0.12367957830429077, -0.697441577911377, -0.21600337326526642, 0.30239337682724, -1.418794870376587, 0.24312752485275269, -0.20568090677261353, -0.14245644211769104, -0.18445342779159546, -0.32957300543785095, -1.10635507106781, -0.2552838921546936, -0.012294922024011612, 0.067014679312706, -0.7834738492965698, -0.33242955803871155, -0.1801154762506485, 0.024221450090408325, -0.14858266711235046, 0.17056766152381897, 0.3311949372291565, 0.47500914335250854, -0.2072349339723587, -1.1260480880737305, 0.5384396910667419, -0.5294357538223267, -0.3190220892429352, 0.53461754322052, -0.37242695689201355, 0.2265692800283432, -0.42059066891670227, 0.2540588676929474, 1.0989971160888672, 0.42071500420570374, 0.13340094685554504, -0.3731215298175812, 0.5317191481590271, -0.007131598889827728, 0.5503625273704529, 0.49284857511520386, 0.2363824099302292, -0.12212564796209335, -0.657738983631134, 0.2542272210121155, 0.18402549624443054, -0.5678690671920776, -0.12256386876106262, -0.14831487834453583, 0.8966124653816223, -0.1524437665939331, 0.7789810299873352, -0.4106961190700531, -0.5329164266586304, 0.7507376670837402, -0.9601122140884399, -0.471028208732605, 0.40415456891059875, -0.7419530749320984, 0.6733359098434448, 0.10921470820903778, 0.7393842339515686, -0.6508399844169617, 1.0149637460708618, 0.7444717884063721, 0.6474623084068298, -0.5157597661018372, -0.2447301745414734, 0.6739010214805603, -0.706192135810852, -0.421527624130249, -1.2224316596984863, 0.7674018740653992, 0.41931575536727905, 0.22031159698963165, -0.5369765758514404, -0.6142525672912598, -0.23588448762893677, 0.803066611289978, -0.6433035731315613, -0.7046804428100586, 0.1267199069261551, 0.1397547423839569, 0.0476272851228714, 0.5093992948532104, -0.692264974117279, 0.2656151056289673, 0.3261978328227997, -0.07301387190818787, 0.35320207476615906, 0.05011407285928726, 0.7075684666633606, -0.740468442440033, -0.05161961913108826, -0.19511958956718445, 0.2567986249923706, 0.5145001411437988, 1.0142476558685303, -0.44812676310539246, 0.1626388132572174, -0.8458455204963684, 0.6632662415504456, 0.30026867985725403, 0.16051679849624634, -0.3095364570617676, 0.15656252205371857, -0.22408154606819153, -0.8037759065628052, 0.712720513343811, 0.7912750244140625, 0.3855386972427368, -0.4356446862220764, 0.5475783348083496, 0.7804995775222778, -1.0189262628555298, -0.769341766834259, -0.33128637075424194, -0.5465089082717896, 0.025594189763069153, 0.01835418865084648, 0.7362060546875, 0.19125744700431824, 0.8439682722091675, 0.718178391456604, 0.46862897276878357, 1.6074856519699097, 0.1014738380908966, -0.040384694933891296, 0.08141106367111206, 1.1122918128967285, 1.4133882522583008, 0.3135627806186676, 0.029472798109054565, 0.8123055100440979, -1.0042893886566162, -0.76212078332901, 0.2721308469772339, -0.015637453645467758, 0.6924874186515808, 0.005813821218907833, 0.07230205833911896, 0.8516870141029358, 0.04824719950556755, 1.1755318641662598, -0.26095959544181824, 0.4159950911998749, -0.10419408977031708, -0.19604641199111938, 0.5383841395378113, 0.13905352354049683, -0.061994828283786774, 0.5717157125473022, -0.09895522147417068, -0.6172776222229004, 0.16757190227508545, 0.628003716468811, 0.086977019906044, -0.021514244377613068, -0.6227182149887085, 0.24383436143398285, -0.6250576376914978, 0.9446213245391846, 1.1565834283828735, 0.12064864486455917, -0.03626668080687523, 0.29161083698272705, 0.4949497878551483, -0.4338092803955078, 0.6246797442436218, -0.030075378715991974, 0.1758376508951187, 0.24888946115970612, -0.20583988726139069, 0.08250368386507034, -0.14511029422283173, 0.44103333353996277, 0.716073215007782, -0.34740135073661804, 0.44249510765075684, 0.6025829315185547, 0.3744083046913147, -0.0031125694513320923, -1.2721991539001465, -1.100163459777832, -0.09880225360393524, -0.910285234451294, -0.16857565939426422, 0.4351784884929657, -0.37399137020111084, -0.9803482890129089, -0.5424782633781433, -0.5398390889167786, 0.36951664090156555, -0.65449458360672, -0.5390905141830444, -0.6434268951416016, 0.6141768097877502, 0.48597201704978943, 0.30514687299728394, 0.5361729860305786, 0.40130865573883057, 0.3460349142551422, -0.17297349870204926, -0.0005167517811059952, 0.19186261296272278, 1.1087617874145508, -0.7864478826522827, 0.037640027701854706, -0.8269387483596802, 0.6128003001213074, 0.4025026857852936, 1.0087087154388428, -1.5838114023208618, 0.5283024311065674, -0.0727076530456543, -0.9906138777732849, 0.44374218583106995, 0.35472869873046875, 0.23846153914928436, -0.05166381597518921, 0.0063256025314331055, -0.2421402931213379, 0.31743642687797546, 0.5706195831298828, -0.3288118243217468, 0.7249090075492859, 0.8766220211982727, 0.5133837461471558, -0.7528142333030701, 0.22480462491512299, -0.12213455140590668, 0.26545774936676025, -0.6384493112564087, -0.3271077573299408, -0.21372628211975098, -0.879513680934906, -0.32499226927757263, 0.3130021095275879, -0.5640091896057129, -1.008286476135254, 0.17034725844860077, -0.6073789596557617, -0.31942009925842285, 0.36104080080986023, -0.23997510969638824, -0.30895373225212097, -0.5546038746833801, -0.7505024075508118, -0.9153649210929871, 0.23811075091362, 0.3148684501647949, -0.5153573751449585, -0.056243058294057846, -0.5294549465179443, -0.17025001347064972, -0.4932929277420044, -0.42295655608177185, 0.33022481203079224, -0.010186195373535156, -0.0366402231156826], "e3d798c1-4d01-4fd8-9725-59dcc73c5320": [0.3010198473930359, 0.3122033178806305, -0.38028937578201294, 0.19852299988269806, 0.7309938669204712, -0.4456823766231537, 0.2602440416812897, 0.5480668544769287, -0.32331252098083496, -0.48037371039390564, -0.22220027446746826, 0.14790943264961243, -1.12333345413208, 0.33158621191978455, 0.21580339968204498, 0.9394852519035339, 0.9485969543457031, -0.4064701199531555, -0.4603140354156494, 0.3812088072299957, -0.4168720543384552, -0.04804995283484459, -0.2908995747566223, 0.3220035135746002, 0.5317913293838501, -0.05991212651133537, -0.03262123465538025, 0.2896442711353302, -1.4558660984039307, -0.1676798164844513, 0.2727994918823242, -0.875212550163269, -0.05097046121954918, 0.08243511617183685, 0.17264628410339355, -0.12037622928619385, -0.8153571486473083, -0.48006555438041687, 0.00648566335439682, -0.2221272587776184, -0.9273471832275391, -0.40051206946372986, -0.5825176239013672, 0.24457073211669922, -0.7888349294662476, 0.100396528840065, -1.071835994720459, 0.21227622032165527, -0.7050033807754517, 0.1834387183189392, -1.254563331604004, 0.26659077405929565, -0.3907701373100281, 0.0693143829703331, 0.39848873019218445, 0.9237965941429138, -0.4475868344306946, -1.4123421907424927, -0.26450276374816895, -0.5709323883056641, 0.1708526462316513, -0.291605681180954, 0.5075333118438721, 0.06286463141441345, 0.292011022567749, -0.38173002004623413, -0.7640798091888428, 0.4220745861530304, -1.2939536571502686, -0.7114680409431458, -0.3985259234905243, 0.42361268401145935, 0.07141739130020142, -0.40801337361335754, 0.6159796118736267, -0.6070266962051392, -0.12034566700458527, 0.5020624399185181, 0.9033163785934448, 0.6608558893203735, -0.18122127652168274, 0.5968080759048462, 0.4335007071495056, 0.80888831615448, -0.284045934677124, -0.16996076703071594, -0.6482979655265808, -0.3631168603897095, -0.7210835814476013, 0.8558912873268127, -0.18692229688167572, -0.3964692950248718, 0.5513095855712891, 0.830814778804779, 0.39933034777641296, -0.16382461786270142, 0.8324372172355652, 0.1539984792470932, 0.48040658235549927, -0.027849897742271423, -0.6222963929176331, -1.0755079984664917, 0.3251047432422638, 0.2616986036300659, -1.4201250076293945, -0.6821650862693787, -0.9101544618606567, -0.17128457129001617, -0.08544927835464478, 0.22591646015644073, -0.13251376152038574, -0.869431734085083, -0.39188215136528015, -0.11149860918521881, -1.0494294166564941, 1.2756989002227783, 0.41999730467796326, 0.4009602963924408, -0.046375446021556854, 0.22014334797859192, 1.0270662307739258, 1.016588568687439, 0.6454954147338867, 1.5173139572143555, 0.33789071440696716, 0.8575577735900879, 0.12362009286880493, 0.9416546821594238, -0.6123920679092407, -0.6999005079269409, -0.01651344820857048, 0.9182485938072205, 0.017050916329026222, 0.19278988242149353, -0.4692659378051758, 0.13367336988449097, 0.16862724721431732, 0.276985764503479, 0.1556311547756195, -0.1985834389925003, -0.3229464888572693, -0.36867910623550415, 0.3279392719268799, -0.29805001616477966, 0.4942533075809479, 0.2974860370159149, -0.6172834634780884, -0.921532928943634, -0.3315522074699402, 0.7890493273735046, 0.35943689942359924, 0.18614201247692108, 1.0368187427520752, -0.6975986361503601, -0.08428109437227249, 0.6995460391044617, 0.10281793773174286, 0.19454771280288696, -0.9795721173286438, 0.31501778960227966, 0.5967798233032227, 0.008137254044413567, -0.206979438662529, -0.1810811460018158, -0.5752306580543518, -0.0021364279091358185, 0.4178197383880615, -0.5379234552383423, -0.27998894453048706, 0.34935620427131653, -0.2380870282649994, -0.8741410374641418, 0.9065275192260742, -0.05756332725286484, -0.5688917636871338, -0.13062863051891327, 1.3141369819641113, 0.3312864303588867, 0.43968215584754944, -0.18143150210380554, -0.8922702670097351, 0.6978979706764221, -0.033991239964962006, -0.48216894268989563, -0.053645625710487366, -0.46969476342201233, 1.508375883102417, -0.17992167174816132, -0.07439817488193512, -0.03237561881542206, -1.198641061782837, -0.6902691721916199, -0.368828684091568, 0.6237130761146545, 1.20494544506073, -0.1539108157157898, -0.10738076269626617, 0.7903919219970703, 0.29850584268569946, 0.7469017505645752, -0.3086393177509308, 0.767656683921814, -0.22143667936325073, -0.8436121344566345, -1.1909546852111816, 0.9484390020370483, 0.9182993173599243, 0.4607536196708679, 0.06018633767962456, 0.23350828886032104, -0.12020403891801834, 0.0697266012430191, 1.016648530960083, -0.17038869857788086, 1.0948811769485474, 0.31372717022895813, 0.4500804841518402, -0.773138165473938, 0.8575367331504822, -1.0246020555496216, 0.5245331525802612, -0.44614455103874207, -0.7798122763633728, -0.0839955061674118, -0.30672621726989746, 1.5952441692352295, 1.0552291870117188, -0.4090665578842163, -0.6207326054573059, 0.4707326591014862, 0.23617032170295715, -0.21132737398147583, 0.6385481357574463, 0.20430101454257965, -0.1466268002986908, -0.14950382709503174, -0.17807000875473022, -0.3460468649864197, 0.881318211555481, -0.6291496157646179, 0.6240754127502441, 1.3163623809814453, 0.2173263430595398, 0.5323975682258606, 0.6460605263710022, 0.10134121775627136, 0.17545990645885468, -0.5860818028450012, -0.5467261075973511, -0.28299272060394287, -0.7059550285339355, -0.412069708108902, 0.45038697123527527, -0.8083384037017822, 0.6742326617240906, -0.3544459939002991, -0.9584276080131531, 0.19040259718894958, 0.6292473673820496, 1.098175048828125, -0.4122534394264221, 0.8867408633232117, 0.5772521495819092, -0.1254834532737732, -0.38908934593200684, -1.3888009786605835, -0.3512263596057892, 0.057472243905067444, 0.4341212511062622, 0.48642614483833313, 0.4547243118286133, 0.02712314948439598, -0.421679824590683, -0.03192000836133957, -0.007077768445014954, 0.19242873787879944, 1.0742298364639282, -0.020877458155155182, -0.10794860869646072, -0.751696765422821, -0.47981277108192444, 0.8789157867431641, -0.8328096866607666, -1.147426962852478, -0.3238246440887451, -0.5733722448348999, 0.1527920961380005, -0.7519089579582214, -0.29131919145584106, 0.5919908285140991, 0.5310156345367432, 0.6659332513809204, -0.5093475580215454, 0.5922205448150635, 1.1197137832641602, 0.37104448676109314, 0.6863517165184021, 0.37952983379364014, 0.6391317844390869, 0.3373076021671295, 0.0011095106601715088, 0.817302405834198, 0.6160119771957397, 0.011718153953552246, -0.31523165106773376, -0.33784380555152893, -0.19543348252773285, -0.6845017075538635, -4.2072248458862305, 0.28633737564086914, -0.272919237613678, -0.6396503448486328, 0.2393914759159088, 0.4299544095993042, 0.5614628791809082, -1.110448956489563, -0.7458009719848633, 0.3600020110607147, -0.32469382882118225, -0.287476509809494, 0.2586100101470947, 0.42308902740478516, 0.19971305131912231, 0.7358190417289734, -0.2993201017379761, -0.6125268340110779, 0.09258338809013367, 0.5910338163375854, 0.09351785480976105, -0.9282525181770325, -0.46220678091049194, 0.7141889929771423, 0.34884151816368103, 0.40440917015075684, -0.7218169569969177, 0.8975050449371338, -0.9221730828285217, -0.4747585356235504, 0.19932565093040466, -0.5554015636444092, -0.24685098230838776, 0.16815972328186035, -0.06150638312101364, -0.7086734771728516, 0.8455595970153809, -0.04136950522661209, 0.12246929109096527, -0.07605546712875366, -0.3128223121166229, -0.8567609786987305, -0.05598630756139755, -0.5118322372436523, 0.9252151250839233, -0.3635689914226532, -0.23922085762023926, -0.7064045667648315, 0.10039575397968292, 0.7255786061286926, -0.23191948235034943, -0.45546284317970276, -0.43566402792930603, 0.29546424746513367, -0.3542957305908203, 0.026195116341114044, -0.15013711154460907, -0.24177592992782593, -0.6212931275367737, -0.012414298951625824, 0.1933324635028839, -0.4385579228401184, -0.8167975544929504, -1.0121756792068481, -0.4912155866622925, -0.6540346741676331, -0.9315465688705444, -0.7857345342636108, 0.7044731974601746, 1.1470736265182495, -0.7104162573814392, 0.702875018119812, -0.24161702394485474, -1.4537705183029175, 0.18577641248703003, -0.5907402038574219, -0.6232377290725708, -0.2597329020500183, -0.549485981464386, 0.40155696868896484, -0.6294115781784058, -0.3601134717464447, 0.10685253143310547, 0.29805463552474976, -0.12599021196365356, -0.5902688503265381, 0.0020497478544712067, -0.35927367210388184, -0.5091532468795776, -0.6808193922042847, 0.9665937423706055, -0.5549829006195068, 0.5614910125732422, -0.14130350947380066, 0.642385721206665, 0.41423752903938293, 0.2685772776603699, -0.357523113489151, 0.3509335517883301, 0.08577746152877808, 0.7098655104637146, -0.7351754903793335, 0.10972820967435837, -0.3868393898010254, 0.23757362365722656, 0.16132564842700958, -0.6310900449752808, 0.25337839126586914, 0.18740037083625793, 0.06515009701251984, 0.19192850589752197, -0.6350855231285095, -0.029839977622032166, -0.747962474822998, -0.37659206986427307, -0.5981602072715759, 0.5222037434577942, 0.7303351759910583, 0.37267300486564636, 0.2375093251466751, -0.6461684107780457, 0.30221027135849, -0.5257680416107178, -0.4999881684780121, -1.6352159976959229, 0.3717551529407501, 0.28003817796707153, 0.08323001116514206, -0.03151729330420494, 0.23887716233730316, -0.8823122382164001, -0.5295204520225525, 0.811294674873352, -0.46315720677375793, 0.37196874618530273, -0.9970064163208008, -0.2999195158481598, -0.16462363302707672, 0.7940200567245483, -0.33916860818862915, 0.3525467813014984, 0.042290348559617996, 0.349081426858902, 0.28511255979537964, 0.6349357962608337, 0.4335991442203522, -0.7791056632995605, 0.25646349787712097, -0.5629091262817383, -0.4565666913986206, 0.38441818952560425, -0.08946814388036728, 0.01131652481853962, -0.5480819344520569, -0.1586039513349533, -0.584574282169342, 0.3711244761943817, 0.04678399860858917, -0.17573684453964233, -0.8263208866119385, 0.3510279953479767, -0.5587649345397949, -0.3060653507709503, 0.127139151096344, -0.11079497635364532, 1.2920994758605957, -0.3831757605075836, 0.005469605326652527, 0.028761684894561768, 0.38304072618484497, 0.34140610694885254, -0.3482420742511749, -0.6767292618751526, 0.1812865436077118, -0.4319780170917511, 0.8216273784637451, 0.32003316283226013, -0.12737736105918884, 0.2519839406013489, 0.510017454624176, -0.28759583830833435, -0.32203441858291626, 0.448014497756958, 0.3340817987918854, 0.9623313546180725, 0.06166437268257141, 0.33466821908950806, 0.0607261061668396, -0.1513223797082901, -0.36825495958328247, 0.8841453194618225, 0.17306265234947205, -0.2968471646308899, 0.3933219015598297, -0.898259699344635, -1.4590017795562744, 0.15471671521663666, 0.008718147873878479, 0.6357356309890747, 0.20519901812076569, -0.5337679982185364, -0.23859278857707977, -0.6426052451133728, -0.07782959192991257, -0.0044928863644599915, -1.346968650817871, 0.13299275934696198, -0.012290846556425095, -0.40174269676208496, -0.27345505356788635, -0.027739040553569794, -1.0641720294952393, -0.41739264130592346, 0.2963133156299591, 0.07718021422624588, -0.7187379002571106, -0.2765071392059326, 0.017127901315689087, 0.03371545299887657, -0.33617815375328064, 0.0643790140748024, 0.12433783710002899, 0.05920673906803131, -0.24999725818634033, -1.011468768119812, 0.8233554363250732, -0.3123161494731903, -0.2863200306892395, 0.7331054210662842, -0.4008016884326935, 0.46989086270332336, -0.6382396221160889, 0.3886789083480835, 1.0614843368530273, 0.017472293227910995, 0.5276539325714111, -0.2519283890724182, 0.4289439618587494, 0.25745633244514465, 0.8159417510032654, 0.14997640252113342, 0.09836774319410324, -0.06588021665811539, -0.7162582874298096, 0.35573431849479675, -0.01286066323518753, -0.3474072515964508, -0.16214311122894287, 0.054699480533599854, 0.7387493252754211, -0.01703236810863018, 0.33479294180870056, -0.020218729972839355, -0.4695335328578949, 0.7446814179420471, -0.663966715335846, -0.47975510358810425, 0.3080448508262634, -0.5625386238098145, 0.07003442943096161, 0.14884503185749054, 0.6647871136665344, -0.947300910949707, 1.0444190502166748, 0.8133979439735413, 1.021240234375, -0.32511332631111145, -0.32008981704711914, 0.9531031847000122, -0.4889216125011444, -0.34080442786216736, -1.0822160243988037, 0.034252479672431946, 0.2948722243309021, 0.4558843672275543, -0.5452819466590881, -0.35717883706092834, -0.15983040630817413, 0.4750417470932007, -1.006896734237671, -0.6108416318893433, 0.529955267906189, -0.39856112003326416, 0.4108562171459198, 0.5012472867965698, -0.5058618187904358, -0.06689199805259705, -0.025769643485546112, 0.046130113303661346, 0.4649665355682373, -0.12350481748580933, 1.1237752437591553, -0.7350702285766602, -0.01933225244283676, 0.2822527289390564, -0.08160404860973358, 0.470352441072464, 0.8813295960426331, -0.37481170892715454, -0.21595263481140137, -0.9307034015655518, 0.6986453533172607, 0.38110530376434326, 0.40742015838623047, -0.11915482580661774, -0.18327203392982483, -0.12757541239261627, -1.075242042541504, 0.2239699363708496, 0.8224743008613586, 0.282814621925354, -0.25531819462776184, 0.7378007769584656, 0.5415083169937134, -0.769901692867279, -1.1026626825332642, -0.16285479068756104, -0.25258970260620117, 0.11247095465660095, 0.041406698524951935, 0.4385990798473358, 0.22175487875938416, 0.7908216118812561, 0.43587633967399597, 0.6156132221221924, 1.574730396270752, -0.22073939442634583, 0.19456619024276733, 0.7003770470619202, 1.1936745643615723, 1.2849808931350708, 0.37171322107315063, 0.36164745688438416, 0.8221454620361328, -1.1294198036193848, -0.6267478466033936, 0.14251407980918884, 0.021821562200784683, 0.7450959086418152, 0.16192615032196045, 0.07113568484783173, 0.6662541627883911, 0.09540905058383942, 1.3571531772613525, -0.3497505486011505, 0.22180311381816864, 0.03951822221279144, -0.20628416538238525, 0.633884847164154, -0.10250741243362427, 0.05178534612059593, 0.6151029467582703, -0.04247179627418518, -0.670386791229248, 0.024964001029729843, 0.6622300148010254, -0.10400791466236115, -0.0017415061593055725, -0.9290497303009033, 0.43944528698921204, -0.593177080154419, 1.4455971717834473, 1.0150704383850098, -0.13539478182792664, 0.29096075892448425, 0.1578715741634369, 0.4464705288410187, 0.10859231650829315, 0.65252685546875, -0.4300510287284851, -0.03032306581735611, -0.02314912900328636, -0.3519142270088196, 0.2166060209274292, 0.1127796322107315, 0.5666208267211914, 0.6096146106719971, -0.08009938150644302, -0.03644049912691116, 0.20787806808948517, 0.5894297361373901, -0.20806920528411865, -0.9352525472640991, -0.9347009062767029, -0.16109156608581543, -1.0930144786834717, -0.2150261551141739, 0.5235856771469116, -0.24377140402793884, -0.7436901330947876, -0.40579479932785034, -0.6235166192054749, 0.3399648368358612, -0.38647687435150146, -0.3385176658630371, -0.34149086475372314, 0.6454366445541382, 0.48664620518684387, 0.013427099213004112, 0.6583768725395203, 0.6004592180252075, -0.10532376915216446, -0.16553445160388947, 0.021395273506641388, 0.42095452547073364, 0.9162636399269104, -0.595578670501709, 0.28366169333457947, -1.1362807750701904, 0.6568623781204224, 0.469173789024353, 1.2118849754333496, -1.7058840990066528, 0.5806968212127686, 0.31659743189811707, -0.8672106266021729, 0.6946883797645569, 0.2523062825202942, -0.22489003837108612, -0.10330070555210114, -0.4195786714553833, -0.45827773213386536, 0.2520308494567871, 0.9285634756088257, 0.0008593127131462097, 0.8120996356010437, 0.996544599533081, 0.09758225828409195, -0.7915351986885071, -0.05451246351003647, -0.3582788407802582, 0.4306217432022095, -0.6078492403030396, -0.07968713343143463, -0.4216652810573578, -0.9109817743301392, -0.2842593789100647, 0.48934876918792725, -0.44390010833740234, -0.9422237277030945, 0.07108904421329498, -0.7767587900161743, -0.45588427782058716, 0.3143653869628906, -0.22504903376102448, -0.11477005481719971, -0.022967122495174408, -0.7644374966621399, -0.8732900619506836, 0.20110958814620972, 0.12458062171936035, -0.4250510334968567, -0.25982236862182617, -0.6400737166404724, 0.2153954803943634, -0.42184463143348694, -0.5445936918258667, 0.4706859886646271, -0.04458903521299362, -0.05211343616247177], "3b581203-bfa0-4565-9929-ea9e4a9b68a1": [0.28129294514656067, 0.11769059300422668, -0.36510834097862244, -0.10447697341442108, 1.0539506673812866, -0.31007546186447144, -0.11570319533348083, 0.33347201347351074, -0.41627055406570435, -0.33572375774383545, -0.11552529036998749, 0.24715566635131836, -1.1853975057601929, 0.4554401934146881, -0.049240466207265854, 1.022080898284912, 0.6067619323730469, -0.12966743111610413, -0.2724186182022095, 0.2767028510570526, -0.1564640998840332, 0.22046440839767456, -0.11767096817493439, 0.17902404069900513, 0.5582977533340454, 0.1844560205936432, -0.20057788491249084, 0.14271941781044006, -1.5191218852996826, 0.2778540849685669, 0.4278939366340637, -0.5449604392051697, 0.0279538556933403, -0.20294401049613953, 0.24672764539718628, 0.449243426322937, -0.6438652276992798, -0.12972190976142883, -0.17068691551685333, -0.16165724396705627, -0.7170001268386841, -0.5273104906082153, -0.3919430375099182, 0.7197760343551636, -1.3359367847442627, -0.07492858171463013, -1.062229871749878, 0.23156148195266724, -0.42399877309799194, -0.04587624967098236, -1.055191993713379, 0.4830789864063263, -0.044548384845256805, 0.0772615596652031, 0.20187830924987793, 0.7779639959335327, -0.08487258851528168, -1.2753732204437256, -0.16164369881153107, -0.36290091276168823, -0.12025757133960724, -0.10267720371484756, 0.4478011131286621, 0.12817059457302094, 0.08135166019201279, -0.3192621171474457, -0.5074350833892822, 0.6413617730140686, -1.305867075920105, -0.43807321786880493, -0.4116639196872711, 0.24112313985824585, 0.00614485889673233, -0.0016468986868858337, 0.5722113847732544, -0.46930134296417236, 0.04036684334278107, 0.43213406205177307, 0.35967785120010376, 0.6427628993988037, -0.29697999358177185, 0.5236842036247253, 0.5939041376113892, 0.8592026829719543, -0.14824163913726807, -0.02901073545217514, -0.5763127207756042, -0.5927467346191406, -0.8072159290313721, 0.5692554712295532, -0.22535036504268646, -0.28296637535095215, 0.6868755221366882, 0.6876207590103149, 0.2765580415725708, -0.3508596420288086, 0.7940648198127747, 0.2139400839805603, -0.17164921760559082, -0.1876966506242752, -0.40824049711227417, -1.0591689348220825, 0.024679258465766907, 0.03939167410135269, -1.4082632064819336, -0.4222099781036377, -0.8251821994781494, -0.0051116980612277985, -0.24318788945674896, 0.49294570088386536, -0.053842801600694656, -0.5480660200119019, -0.43833932280540466, -0.3164597153663635, -0.872279703617096, 1.440697193145752, 0.42682352662086487, 0.28395259380340576, 0.1313965916633606, -0.03369998186826706, 0.7499662041664124, 0.8591752052307129, 0.5025060176849365, 1.6508668661117554, -0.20721670985221863, 0.6217003464698792, 0.2642192244529724, 0.9484258890151978, -0.9030219912528992, -0.5638018846511841, 0.4717370271682739, 1.0016111135482788, -0.2394137978553772, 0.2490081787109375, -0.24299278855323792, 0.5024782419204712, 0.0533737987279892, 0.07617310434579849, 0.20428085327148438, 0.27671656012535095, 0.058613039553165436, -0.26742491126060486, -0.035170845687389374, 0.048591576516628265, 0.41829538345336914, -0.23348355293273926, -0.39150387048721313, -0.5457716584205627, -0.3643198013305664, 0.44038572907447815, 0.7767079472541809, 0.484681636095047, 0.7759478688240051, -0.5749150514602661, 0.07472137361764908, 0.6223809719085693, 0.2618435025215149, 0.21237672865390778, -0.7012817859649658, 0.46144822239875793, 0.4830540418624878, -0.34056738018989563, -0.18590913712978363, 0.011457465589046478, -0.387637197971344, -0.042502693831920624, 0.15034717321395874, -0.5556071996688843, -0.1732625663280487, 0.4479219913482666, -0.6506055593490601, -0.40691691637039185, 0.7873095870018005, -0.37703344225883484, -0.6557724475860596, -0.3616187274456024, 1.16781747341156, 0.4740811288356781, 0.49195393919944763, -0.23047658801078796, -1.0269802808761597, 0.6298760175704956, 0.2107674777507782, -0.4915601313114166, 0.034929968416690826, -0.1599200963973999, 1.8442411422729492, 0.07793571054935455, -0.3115212321281433, -0.005565617233514786, -1.404067039489746, -1.0249303579330444, -0.2163739949464798, 0.38800713419914246, 1.3041324615478516, -0.24636036157608032, -0.0069013722240924835, 0.8963932394981384, 0.044639717787504196, 0.8629723787307739, -0.027689307928085327, 0.6771946549415588, -0.3659060299396515, -0.7724089622497559, -0.7341305017471313, 0.7098551392555237, 0.8418275117874146, 0.15588770806789398, 0.04804592207074165, 0.3715749979019165, -0.10062351822853088, -0.06849651783704758, 1.0661742687225342, -0.36123985052108765, 0.781765341758728, 0.5304902791976929, 0.5235168933868408, -0.6329421997070312, 0.6392744183540344, -0.6670589447021484, 0.8218073844909668, -0.34764936566352844, -0.781273603439331, 0.2095431685447693, -0.4154188930988312, 1.3711493015289307, 0.8729498386383057, -0.14581267535686493, -0.6330761313438416, 0.39967554807662964, -0.005105473101139069, -0.5701022148132324, 0.7839125394821167, -0.14007477462291718, -0.14353342354297638, -0.28763750195503235, -0.41447728872299194, -0.06181016191840172, 1.118934988975525, -0.8917812705039978, 0.4497905671596527, 1.1413758993148804, -0.17716655135154724, 0.7293189764022827, 0.188817098736763, 0.3438822627067566, 0.0336436927318573, -0.2508901059627533, -0.6004727482795715, -0.1895219087600708, -0.18253031373023987, -0.543389618396759, -0.037631381303071976, -0.6807128190994263, 0.530043363571167, -0.7091715931892395, -0.8473374843597412, 0.07950799912214279, 0.8111665844917297, 1.0253822803497314, -0.46521657705307007, 0.8397318124771118, 0.3940123915672302, -0.3233315944671631, -0.3877575397491455, -1.5621529817581177, -0.29021522402763367, -0.1749686747789383, 0.37763044238090515, 0.717985987663269, 0.7362827062606812, -0.1164589673280716, -0.21365341544151306, 0.03466945141553879, -0.02334386482834816, 0.2628091275691986, 0.9405496120452881, -0.1282501369714737, -0.15914103388786316, -0.7891655564308167, -0.2301298826932907, 0.8387385010719299, -0.42541220784187317, -1.225932002067566, 0.20123694837093353, -0.6756018400192261, -0.024080827832221985, -0.5876136422157288, -0.37473011016845703, 0.3396126925945282, -0.01269996166229248, 0.7945461869239807, -0.0037093758583068848, 0.4563330113887787, 1.1781269311904907, 0.5381949543952942, 0.5626746416091919, -0.145012766122818, 0.34130191802978516, 0.14596912264823914, -0.27292221784591675, 0.6201231479644775, 0.5172415971755981, -0.1678384691476822, -0.25453653931617737, -0.0010938867926597595, -0.2020856738090515, -0.5093777179718018, -4.292108058929443, 0.15956120193004608, 0.1131514310836792, -0.8331040143966675, 0.5232270359992981, -0.16351616382598877, 0.738391637802124, -0.7069740891456604, -0.8787543773651123, 0.07354658842086792, -0.7444663643836975, -0.004513461142778397, 0.2297825962305069, 0.9652106165885925, 0.5534607172012329, 1.1730939149856567, -0.024908877909183502, -0.5733810663223267, 0.3214612901210785, 0.8420591354370117, -0.24181759357452393, -0.8251758813858032, -0.8382210731506348, 0.7891570329666138, 0.183241069316864, 0.7948136925697327, -1.0789035558700562, 0.19445805251598358, -1.2016289234161377, -0.3280383348464966, 0.4901841878890991, -0.6425056457519531, -0.1564832329750061, 0.41676121950149536, 0.017483219504356384, -0.8007586002349854, 1.0462230443954468, 0.3246289789676666, 0.0229368656873703, -0.3363930881023407, -0.4378277659416199, -0.9862139225006104, -0.2736186385154724, -0.5613483786582947, 0.7469733357429504, 0.12990885972976685, -0.21976031363010406, -0.6615100502967834, 0.09332003444433212, 0.6073732972145081, -0.34021589159965515, -0.4941914975643158, -0.6641054153442383, 0.549085795879364, -0.11692258715629578, 0.11338731646537781, 0.1512833535671234, 0.05057021602988243, -0.6532565951347351, -0.23542383313179016, 0.3459945619106293, -0.757098913192749, -0.5779232978820801, -0.8541464805603027, -0.40169212222099304, -0.7469255328178406, -1.0341930389404297, -0.58101886510849, 0.6458335518836975, 0.703936755657196, -0.6294213533401489, 0.6334889531135559, -0.31110113859176636, -1.4041132926940918, -0.08828317373991013, -0.26518115401268005, -0.45365631580352783, -0.3182927370071411, -0.1089099794626236, 0.5778784155845642, -0.7007582783699036, -0.07015922665596008, 0.3839837312698364, 0.2791304588317871, -0.11195031553506851, -0.5455604791641235, 0.2258300483226776, 0.07150271534919739, -0.6075906157493591, -0.9269986152648926, 0.9705650210380554, -0.29191237688064575, 0.4627518057823181, 0.20619958639144897, 0.47140663862228394, 0.4038650393486023, 0.2192184031009674, -0.1516576111316681, 0.5434654355049133, -0.35560280084609985, 0.6239333152770996, -0.9175208806991577, 0.3858044147491455, -0.3781917095184326, 0.3184727132320404, -0.026585562154650688, -0.6954970359802246, -0.1577417105436325, 0.2790350615978241, -0.11653167754411697, 0.5094166994094849, -0.23166589438915253, 0.1495131552219391, -0.9577334523200989, 0.008950864896178246, -0.4579232633113861, 0.3890804350376129, 0.7983044981956482, 0.27984488010406494, 0.5383211374282837, -0.9225006103515625, 0.32177332043647766, -0.8480645418167114, -0.4168142080307007, -1.3765109777450562, 0.5806657075881958, 0.5531660914421082, -0.2618568539619446, -0.11659540235996246, -0.33018872141838074, -0.4994080066680908, -0.5752626657485962, 0.4963180422782898, -0.395853191614151, 0.29180628061294556, -0.7881258726119995, -0.5385209321975708, -0.19608740508556366, 0.5184183716773987, 0.16525879502296448, 0.2183307558298111, -0.06495781987905502, 0.3848986029624939, 0.3816452920436859, 1.0255271196365356, 0.38793739676475525, -0.3618425130844116, 0.31472527980804443, -0.2605589032173157, -0.5142543315887451, 0.40642496943473816, 0.0558910071849823, -0.035093918442726135, -0.6604097485542297, 0.08815816044807434, -0.42691749334335327, 0.40983471274375916, 0.1490304321050644, -0.038938675075769424, -0.6789124011993408, 0.2682473361492157, -0.4944550693035126, -0.3105509579181671, 0.03457968682050705, -0.06746619939804077, 1.119464635848999, -0.501042366027832, 0.10172456502914429, -0.013248816132545471, 0.44154003262519836, 0.3479081988334656, -0.8038911819458008, -0.7729225754737854, 0.14873488247394562, -0.2557806372642517, 0.30448973178863525, 0.34093034267425537, 0.14186978340148926, 0.03141281008720398, 0.34505707025527954, -0.6306159496307373, -0.5084567666053772, 0.3682519793510437, 0.22476083040237427, 0.9802542924880981, 0.32028883695602417, 0.29309412837028503, -0.49506187438964844, -0.3966103196144104, -0.17305773496627808, 0.9020468592643738, 0.4356817305088043, -0.3965514600276947, 0.46413516998291016, -0.7194479703903198, -1.4445692300796509, 0.3561519384384155, 0.1431894153356552, 0.6042935252189636, 0.1859033703804016, -0.1289939433336258, -0.30209437012672424, -0.5921778678894043, -0.051641177386045456, -0.12135376036167145, -1.774214744567871, 0.21793076395988464, -0.2330956906080246, -0.4464700222015381, -0.18457406759262085, -0.31806591153144836, -0.7937864065170288, -0.35804495215415955, 0.2612934112548828, -0.0385155975818634, -0.8588845729827881, -0.029122721403837204, -0.3607630133628845, 0.2714509069919586, -0.2667486071586609, 0.25670361518859863, 0.24370867013931274, -0.2041340470314026, -0.0338163860142231, -0.6029236316680908, 0.48048916459083557, -0.3759434223175049, 0.032189808785915375, 0.3538380265235901, -0.6221910119056702, 0.5347269773483276, -0.5756009817123413, 0.5736270546913147, 1.2388269901275635, -0.06938260793685913, 0.14134901762008667, -0.38322845101356506, 0.9588436484336853, 0.2805655300617218, 0.3321622610092163, 0.07053227722644806, 0.05264724791049957, -0.06776938587427139, -0.7610511779785156, 0.6356185078620911, 0.3451409339904785, -0.1719190925359726, -0.27721887826919556, 0.024624306708574295, 0.741196870803833, 0.5228019952774048, 0.4447903633117676, -0.17895574867725372, -0.6097339987754822, 1.2186524868011475, -0.1129944697022438, -0.48288244009017944, 0.34474000334739685, -0.33898764848709106, 0.18192937970161438, 0.09206033498048782, 0.3980201184749603, -0.6855318546295166, 1.403915286064148, 0.7895409464836121, 0.7005668878555298, -0.28973472118377686, -0.1979544758796692, 0.8750229477882385, -0.433101624250412, -0.4063165485858917, -1.0491540431976318, 0.11904262751340866, 0.5709253549575806, 0.5148245096206665, -0.26746273040771484, -0.6993430256843567, -0.606306791305542, 0.292313814163208, -1.193132996559143, -0.7530882358551025, 0.14186495542526245, -0.14501306414604187, 0.09539373219013214, 0.31756511330604553, -0.6952032446861267, 0.3213375210762024, 0.2860056757926941, -0.1904812455177307, 0.3244854509830475, -0.7386702299118042, 0.9805945158004761, -0.5467621088027954, -0.21705707907676697, 0.12882837653160095, 0.12314610183238983, 0.5593386292457581, 1.022387981414795, -0.35716450214385986, -0.041703253984451294, -0.8695706725120544, 0.729432225227356, 0.6558429002761841, 0.37863850593566895, -0.161126047372818, -0.061427101492881775, -0.2524334788322449, -0.8245890140533447, 0.4885074496269226, 0.7136277556419373, 0.0396774485707283, -0.4114866256713867, 0.6355429887771606, 0.6785550117492676, -0.7673022747039795, -1.1277215480804443, -0.11247806251049042, -0.531208872795105, 0.13178986310958862, -0.0773392990231514, 0.6304118037223816, -0.22421306371688843, 1.0485742092132568, 0.27489587664604187, 0.5884028673171997, 1.4980098009109497, -0.3897903561592102, -0.15175794064998627, 0.5643037557601929, 0.9830867648124695, 1.4029896259307861, 0.8554207682609558, -0.07996463775634766, 1.2077045440673828, -1.0870412588119507, -0.8610036969184875, -0.05294486880302429, 0.08375168591737747, 0.6903516054153442, 0.11174212396144867, -0.04876185581088066, 1.0040314197540283, 0.4472388029098511, 1.0638511180877686, -0.32985517382621765, 0.25662073493003845, 0.32694053649902344, -0.20055919885635376, 0.6313928961753845, 0.03692703694105148, 0.05845025181770325, 0.1663636565208435, -0.1312108337879181, -0.4295547902584076, -0.17251364886760712, 0.4572335183620453, 0.10841043293476105, 0.14233939349651337, -1.237074851989746, 0.12283986061811447, -0.3818720579147339, 0.939007043838501, 1.2537437677383423, 0.23683924973011017, 0.36431071162223816, -0.025685656815767288, 0.3262692093849182, 0.033612191677093506, 0.4035351574420929, -0.18375447392463684, -0.0029214993119239807, 0.06821082532405853, -0.5866000652313232, 0.3009258210659027, -0.021586906164884567, 0.1514178216457367, 0.3678249716758728, -0.3577880561351776, -0.180461585521698, 0.30623793601989746, 0.8329697847366333, -0.5947232842445374, -0.9134839177131653, -0.7425446510314941, -0.4801401197910309, -1.1584974527359009, -0.18704776465892792, 0.3274674117565155, -0.23551203310489655, -0.8572084307670593, -0.5569323301315308, -0.7359123826026917, 0.2737275958061218, -0.2480509728193283, -0.5800096988677979, -0.26016950607299805, 0.5203375220298767, 0.622514545917511, 0.16417120397090912, 0.4673321843147278, 0.543802797794342, 0.09702916443347931, -0.5123990178108215, 0.07997383922338486, -0.08227217942476273, 1.0247609615325928, 0.08894030749797821, 0.26810696721076965, -1.4030113220214844, 0.6366899609565735, 0.5610849857330322, 0.5122130513191223, -1.6492451429367065, 0.887927234172821, 0.15259018540382385, -0.5302562117576599, 0.8552699089050293, 0.4582934081554413, -0.01668771728873253, 0.033249542117118835, -0.5283898115158081, -0.3610031306743622, 0.17600055038928986, 1.057241678237915, -0.6543043255805969, 0.92291659116745, 0.9610704779624939, 0.22541946172714233, -0.3886338174343109, -0.19735175371170044, -0.3326512277126312, -0.027365675196051598, -0.7513390779495239, -0.049817148596048355, -0.3412792682647705, -0.9590489864349365, -0.4497074782848358, 0.2522040903568268, -0.8784324526786804, -0.9476777911186218, -0.17982475459575653, -0.9496261477470398, -0.11060479283332825, 0.21954670548439026, -0.2340751439332962, 0.13171511888504028, -0.6192451119422913, -0.9514028429985046, -0.6453895568847656, 0.21733522415161133, 0.36340516805648804, -0.6842206716537476, -0.3683010935783386, -0.6305551528930664, -0.04268305003643036, -0.5399672985076904, -0.2547737956047058, 0.4710851013660431, 0.40055176615715027, -0.05250497907400131], "26022177-817a-4eb3-895a-71b8837d4ebd": [-0.15351994335651398, 0.2749612331390381, -0.5051006078720093, -0.06907429546117783, 0.6387820243835449, -0.5271511673927307, 0.3306270241737366, 0.6733116507530212, -0.14071530103683472, -0.5719001293182373, -0.41180819272994995, 0.20816265046596527, -1.1993389129638672, 0.36877888441085815, 0.16942185163497925, 0.9213383793830872, 0.6661149263381958, -0.23515218496322632, -0.1691247522830963, 0.025334589183330536, -0.2637365460395813, 0.22627130150794983, -0.18285025656223297, 0.3274098038673401, 0.4545678198337555, -0.044810496270656586, -0.0028560918290168047, 0.2190093696117401, -1.7035781145095825, -0.10392247885465622, 0.264610230922699, -0.5529317259788513, -0.10486699640750885, -0.1678694486618042, -0.09858964383602142, 0.12375746667385101, -0.5566264390945435, -0.4698915183544159, 0.23343828320503235, 0.12548646330833435, -0.8044804334640503, -0.45198890566825867, -0.40722769498825073, 0.20513221621513367, -0.8131813406944275, -0.011132116429507732, -1.2466466426849365, 0.1922987401485443, -0.94550621509552, -0.0011645704507827759, -1.0865540504455566, 0.2875686287879944, -0.1938346028327942, 0.144874706864357, 0.4980123043060303, 1.0443365573883057, -0.07448001950979233, -1.2362550497055054, -0.3394916355609894, -0.3824458718299866, 0.5947504043579102, -0.07083295285701752, 0.5470626354217529, 0.31848978996276855, 0.27259311079978943, -0.41960805654525757, -0.6641960740089417, 0.5427046418190002, -1.1246228218078613, -0.5942180752754211, -0.07125596702098846, 0.25292325019836426, 0.2407360076904297, -0.16356870532035828, 0.7798904180526733, -0.16019456088542938, 0.010383401066064835, 0.5576062798500061, 0.69538813829422, 0.7521463632583618, -0.10800819098949432, 0.6563889980316162, 0.3924172818660736, 0.8628738522529602, -0.5058172941207886, -0.254569947719574, -0.6840875744819641, -0.2630794048309326, -0.5935101509094238, 0.9432731866836548, -0.4983994662761688, -0.6400470733642578, 0.7356579899787903, 0.6240338087081909, 0.44334548711776733, -0.3660184144973755, 0.7786447405815125, 0.35161319375038147, 0.2176220566034317, 0.14782166481018066, -0.4667638838291168, -1.1043226718902588, 0.1935516595840454, 0.2745485007762909, -1.4008930921554565, -0.6454350352287292, -0.9056606888771057, -0.1932922750711441, 0.1993342936038971, 0.46637463569641113, -0.018402433022856712, -0.8183544874191284, -0.5106506943702698, -0.46552523970603943, -0.9047827124595642, 1.3062821626663208, 0.24170511960983276, 0.6047691106796265, 0.12008233368396759, 0.016601651906967163, 0.8894580602645874, 1.0868556499481201, 0.5873066186904907, 1.377793312072754, 0.25347161293029785, 0.9053858518600464, 0.30680641531944275, 0.8972597122192383, -0.7672961950302124, -1.1809065341949463, -0.019604049623012543, 0.8129683136940002, -0.25079411268234253, 0.1395087093114853, -0.3014766275882721, 0.3078012764453888, 0.38814014196395874, -0.01573799178004265, 0.2752191722393036, -0.0032753609120845795, -0.2394946813583374, -0.6077247858047485, 0.02094808965921402, -0.15699301660060883, 0.3423660695552826, -0.16291400790214539, -0.7542656064033508, -0.9157206416130066, -0.3729296326637268, 1.0803805589675903, 0.33447059988975525, 0.3732101321220398, 1.1308573484420776, -0.5556564331054688, 0.16680185496807098, 0.8212059736251831, 0.4489748477935791, 0.4894975423812866, -0.5603750944137573, 0.3762454092502594, 0.6663299798965454, -0.018305350095033646, -0.5161398649215698, -0.06053966283798218, -0.3441355526447296, 0.0563233345746994, 0.14815475046634674, -0.6510684490203857, 0.07673391699790955, 0.1738276332616806, -0.3801474869251251, -0.9523281455039978, 0.9774793386459351, -0.08979666233062744, -0.30840909481048584, 0.22605416178703308, 1.4329928159713745, 0.4283570945262909, 0.5869988203048706, -0.4369133710861206, -1.0942391157150269, 0.9527338147163391, -0.22463826835155487, -0.743081271648407, -0.12400521337985992, -0.48780393600463867, 1.430314302444458, 0.08826267719268799, -0.1365978866815567, 0.17136654257774353, -1.361174464225769, -1.161006212234497, -0.21007999777793884, 0.4470363259315491, 1.1858583688735962, -0.29660773277282715, -0.04209620878100395, 0.766975462436676, 0.10824636369943619, 0.6466787457466125, -0.15713538229465485, 0.7113414406776428, -0.03349404036998749, -1.120326280593872, -1.0627923011779785, 0.9916343092918396, 0.8784262537956238, 0.0035905614495277405, 0.023049283772706985, 0.4008878469467163, -0.06600581854581833, 0.12059096992015839, 0.7999142408370972, -0.10386446863412857, 0.8890840411186218, 0.5159786939620972, 0.6048277020454407, -0.8279643654823303, 0.8643549680709839, -1.0674046277999878, 0.47867467999458313, -0.3849564492702484, -0.8405889272689819, 0.22252056002616882, -0.328727126121521, 1.3867530822753906, 1.0039130449295044, -0.27489012479782104, -0.541684627532959, 0.2759012281894684, 0.05932821333408356, -0.17222490906715393, 0.7324420809745789, 0.005402343347668648, -0.10252565145492554, -0.41360902786254883, 0.03263122960925102, -0.019971758127212524, 1.204095721244812, -0.8611371517181396, 0.6552310585975647, 1.4111371040344238, -0.07666774094104767, 0.4892577528953552, 0.7718573808670044, -0.08562002331018448, 0.06867964565753937, -0.22352498769760132, -0.8838754296302795, -0.3768785893917084, -0.3161908984184265, -0.5282268524169922, 0.43174847960472107, -0.927442193031311, 0.20140430331230164, -0.3022878170013428, -0.6724583506584167, 0.15824750065803528, 0.7570067644119263, 0.9555928707122803, -0.7853193283081055, 0.6758672595024109, 0.5239789485931396, 0.054157763719558716, -0.1734868586063385, -1.2232789993286133, -0.32203197479248047, 0.19738194346427917, 0.33066707849502563, 0.1684628278017044, 0.03305641561746597, 0.14855627715587616, -0.2570657730102539, -0.2754831612110138, -0.18747401237487793, 0.13682304322719574, 0.908076822757721, 0.26301339268684387, -0.02244328334927559, -0.7712153196334839, -0.32898327708244324, 0.7177198529243469, -0.6960740685462952, -1.216505765914917, 0.02364540845155716, -0.6856511831283569, 0.22904422879219055, -0.8594437837600708, -0.3826671838760376, 0.5249545574188232, 0.3478151559829712, 0.3616631329059601, -0.44465482234954834, 0.7489314675331116, 1.3267238140106201, 0.47317010164260864, 0.4689970016479492, 0.11388777196407318, 0.3335449993610382, 0.06041155755519867, -0.003301367163658142, 0.7017831206321716, 0.6580042839050293, -0.10512594133615494, -0.2420344054698944, -0.06695445626974106, -0.3412370979785919, -0.6720117330551147, -4.174015045166016, 0.41669926047325134, -0.15276463329792023, -0.4899837374687195, 0.26144933700561523, 0.21277382969856262, 0.8598037958145142, -1.0779069662094116, -0.6479149460792542, 0.6244655251502991, -0.4984457790851593, -0.5109474658966064, 0.3450951874256134, 0.5483773946762085, -0.060424789786338806, 0.7489219903945923, -0.24671129882335663, -0.6589410901069641, 0.2771177291870117, 0.45629358291625977, 0.22276851534843445, -1.060559868812561, -0.49112680554389954, 0.4883134961128235, 0.3050621747970581, 0.30623316764831543, -0.975772500038147, 0.7089409232139587, -0.795977771282196, -0.7757911086082458, 0.3385712206363678, -0.48037031292915344, -0.5998845100402832, 0.5488246083259583, 0.26914381980895996, -0.6039776802062988, 0.7061164379119873, 0.22332340478897095, 0.11167994141578674, -0.4356386065483093, -0.43743228912353516, -0.6493851542472839, 0.031975969672203064, -0.6202124357223511, 0.9568557143211365, -0.25350040197372437, -0.4347546398639679, -0.5565040707588196, 0.24608246982097626, 0.881183385848999, -0.09088930487632751, -0.36783692240715027, -0.46456724405288696, 0.5102518200874329, -0.03224095702171326, -0.09072566032409668, 0.2788272798061371, -0.24822792410850525, -0.29029029607772827, -0.3646950125694275, 0.3769535422325134, -0.748845100402832, -0.4848828613758087, -0.7156713008880615, -0.30434978008270264, -0.8009485006332397, -0.8789016604423523, -0.5659974217414856, 0.6604706048965454, 0.9718955755233765, -0.6525939702987671, 0.7227727174758911, 0.11194631457328796, -1.3904941082000732, -0.11327285319566727, -0.6396482586860657, -0.42988842725753784, -0.3638913631439209, -0.6845666766166687, 0.23670099675655365, -0.6165851354598999, -0.2190459817647934, 0.41790345311164856, 0.6112041473388672, -0.02404327504336834, -0.7763186693191528, 0.1775549352169037, -0.27989503741264343, -0.6585054993629456, -0.4873881936073303, 0.9780450463294983, -0.6787776947021484, 0.3781588077545166, 0.420537531375885, 0.4740489423274994, 0.44326841831207275, 0.6041014790534973, -0.2603035569190979, 0.6129751801490784, -0.11613696813583374, 0.8051292896270752, -0.9792348742485046, 0.34473493695259094, -0.32192379236221313, 0.006039109081029892, -0.15781089663505554, -0.5950379371643066, 0.16861668229103088, 0.26208359003067017, 0.11528444290161133, 0.2495104968547821, -0.533144474029541, -0.21853607892990112, -0.7034204602241516, -0.5510827302932739, -0.6136330366134644, 0.4109073281288147, 0.549257755279541, 0.21446679532527924, 0.21178275346755981, -0.6255675554275513, 0.6111282706260681, -0.8018789887428284, -0.576777458190918, -1.736855149269104, 0.42601585388183594, 0.3248305022716522, 0.09163828194141388, 0.32467401027679443, 0.16277188062667847, -0.6536844372749329, -0.568569004535675, 0.6224362254142761, -0.5047987699508667, 0.3808784484863281, -0.9628881812095642, -0.27597343921661377, -0.23350247740745544, 0.3417048752307892, -0.31417906284332275, 0.17778533697128296, 0.1234893947839737, 0.5580641627311707, 0.2615775465965271, 0.595406711101532, 0.5004721879959106, -0.5237891674041748, 0.4478587508201599, -0.3527878224849701, -0.2320690155029297, 0.41088658571243286, -0.057106733322143555, 0.044996798038482666, -0.7382287383079529, -0.20287621021270752, -0.5953313112258911, 0.35627564787864685, -0.07533170282840729, -0.4595474600791931, -0.4709639549255371, 0.08349338173866272, -0.8992218375205994, -0.331505686044693, 0.17093326151371002, -0.08730121701955795, 1.0842145681381226, -0.44890865683555603, 0.21152448654174805, -0.19739601016044617, 0.32200899720191956, 0.15428543090820312, -0.21319150924682617, -0.7459838390350342, 0.370469331741333, -0.5931414365768433, 0.6909504532814026, 0.20767439901828766, 0.015792235732078552, -0.018497616052627563, 0.3804623782634735, -0.053205445408821106, 0.005964659154415131, 0.4637465476989746, 0.23092010617256165, 0.7389185428619385, -0.15108920633792877, 0.3268769681453705, -0.14357493817806244, -0.6010182499885559, -0.45182090997695923, 0.9682299494743347, 0.34239017963409424, -0.5258413553237915, 0.2898048460483551, -0.844237744808197, -1.349872350692749, 0.13275602459907532, 0.33853980898857117, 0.5492623448371887, 0.35244157910346985, -0.4850606918334961, 0.1194644570350647, -0.7318204641342163, 0.11024092137813568, 0.08257302641868591, -1.5537995100021362, 0.2728855013847351, -0.15342965722084045, -0.32087698578834534, -0.03491692245006561, -0.23493875563144684, -1.0105698108673096, -0.6849563717842102, -0.03784601390361786, 0.0665895938873291, -0.8788729310035706, -0.19048187136650085, 0.06229811906814575, 0.10833752900362015, -0.4129642844200134, 0.46290454268455505, 0.3488352596759796, 0.17711052298545837, -0.3368149995803833, -0.976671576499939, 0.623151957988739, -0.23342739045619965, -0.0802905261516571, 0.6592379212379456, -0.4022065997123718, 0.3199421167373657, -0.46335455775260925, 0.23940756916999817, 0.9887937307357788, 0.14229877293109894, 0.28338342905044556, -0.36693239212036133, 0.5403021574020386, -0.019694741815328598, 0.6189683675765991, 0.4348023533821106, 0.21514253318309784, -0.1095929741859436, -0.6998366117477417, 0.35691460967063904, 0.02865852415561676, -0.5352520942687988, -0.25979360938072205, 0.02105303853750229, 0.859762966632843, -0.02739780768752098, 0.6433237791061401, -0.2441329061985016, -0.3073224723339081, 0.7108662128448486, -0.846321165561676, -0.5592272281646729, 0.4098609685897827, -0.523310661315918, 0.48455581068992615, 0.06902477890253067, 0.5069612860679626, -0.8895015716552734, 0.9479872584342957, 0.6805980801582336, 0.7345547080039978, -0.5960720181465149, -0.3106856942176819, 0.7281197309494019, -0.4917599558830261, -0.3709257245063782, -1.283431887626648, 0.27001529932022095, 0.16676568984985352, 0.44374606013298035, -0.8688055276870728, -0.4418679475784302, 0.15113195776939392, 0.6625056266784668, -0.8283898234367371, -0.8270063996315002, 0.11752259731292725, -0.08862589299678802, 0.36815768480300903, 0.4485050439834595, -0.5486631989479065, 0.03821830078959465, 0.24810591340065002, 0.06623608618974686, 0.33972489833831787, -0.33024507761001587, 1.1496126651763916, -0.6747878193855286, -0.2188340574502945, -0.09389603137969971, 0.10986176133155823, 0.6310204267501831, 1.0425136089324951, -0.5523243546485901, -0.00044700875878334045, -0.47971171140670776, 0.4992985725402832, 0.327402800321579, 0.25786423683166504, -0.12380097061395645, -0.025744808837771416, -0.3518863022327423, -0.9091412425041199, 0.19071613252162933, 0.8936892151832581, 0.704128086566925, -0.5281509160995483, 0.7160629630088806, 0.7456248998641968, -0.9646118879318237, -0.8305839896202087, -0.2935924530029297, -0.435252845287323, -0.03240463137626648, 0.019754381850361824, 0.4930112361907959, 0.05410131812095642, 0.7621029019355774, 1.0191757678985596, 0.3375881314277649, 1.606354832649231, -0.08994550257921219, 0.07581983506679535, 0.4926919639110565, 1.0079121589660645, 1.3071855306625366, 0.41764193773269653, 0.051830366253852844, 0.8323445320129395, -1.0342073440551758, -0.6690583229064941, 0.14354169368743896, 0.055147893726825714, 0.38333746790885925, 0.10345879197120667, -0.2941141128540039, 0.7386278510093689, 0.08212531358003616, 1.2870275974273682, -0.38039642572402954, 0.44314324855804443, -0.3160054683685303, -0.14032196998596191, 0.8210616707801819, 0.21449197828769684, 0.002628520131111145, 0.6471745371818542, -0.14487005770206451, -0.5370379686355591, 0.06450935453176498, 0.6572191119194031, 0.16955837607383728, 0.008717341348528862, -0.44628921151161194, 0.30478131771087646, -0.616391122341156, 1.1081348657608032, 1.0715411901474, 0.141988605260849, 0.1288422793149948, 0.42545104026794434, 0.43735456466674805, -0.22462064027786255, 0.5256025791168213, -0.32428690791130066, -0.10588616132736206, 0.25876256823539734, -0.29137974977493286, -0.024605892598628998, -0.1457173377275467, 0.12951986491680145, 0.6204828023910522, -0.3101748824119568, 0.15648649632930756, 0.39199116826057434, 0.4292057454586029, 0.22328081727027893, -1.2985228300094604, -0.8087692260742188, -0.08739501982927322, -0.9549450278282166, -0.18715012073516846, 0.3624977767467499, -0.3838147521018982, -0.756043016910553, -0.520977795124054, -0.6711727380752563, 0.2558950185775757, -0.5012392401695251, -0.5363324880599976, -0.7080899477005005, 0.5354507565498352, 0.5263340473175049, 0.07641555368900299, 0.4885408878326416, 0.4612830579280853, 0.1713544875383377, -0.23660776019096375, 0.16502313315868378, 0.33521369099617004, 1.054440975189209, -0.6504285335540771, 0.3039337992668152, -1.0665481090545654, 0.8514439463615417, 0.5186486840248108, 1.2410776615142822, -1.5976271629333496, 0.6634399890899658, 0.3572925329208374, -0.9064510464668274, 0.47082480788230896, 0.33019158244132996, 0.231465145945549, 0.07781915366649628, -0.1402215212583542, -0.4667500853538513, 0.2552590072154999, 0.9457445740699768, -0.3824179470539093, 0.6930286288261414, 0.861184298992157, 0.3742290139198303, -0.9173260927200317, 0.07352669537067413, -0.18794575333595276, 0.5279451608657837, -0.6241055727005005, -0.1400766372680664, -0.49067580699920654, -0.9168068766593933, -0.2366856336593628, 0.5514451861381531, -0.6407997608184814, -1.1345820426940918, -0.03436509892344475, -0.7845755815505981, -0.4854350686073303, 0.24113264679908752, -0.36074498295783997, -0.21185427904129028, -0.18193954229354858, -0.859391987323761, -0.9252074360847473, 0.2525749206542969, 0.4273357689380646, -0.6852909922599792, -0.07299956679344177, -0.6991161108016968, -0.2248191237449646, -0.4147338271141052, -0.3688702881336212, 0.5372887253761292, 0.14740264415740967, 0.10658560693264008], "f15cb451-d8da-4e4f-afcc-7c195357c7a2": [0.3843742609024048, 0.4253259599208832, -0.7382279634475708, 0.3094255328178406, 0.5250857472419739, -0.23298834264278412, 0.295107901096344, 0.3460659384727478, -0.613704264163971, -0.5974094271659851, -0.38699033856391907, 0.010547641664743423, -1.48483407497406, 0.5148163437843323, 0.6343265175819397, 1.0189237594604492, 1.1131335496902466, -0.38840028643608093, 0.1649458408355713, 0.07157369703054428, -0.7431347370147705, 0.055119872093200684, -0.3206874430179596, 0.4014584422111511, 0.35042667388916016, 0.3907967507839203, -0.015452487394213676, 0.15167856216430664, -1.1949691772460938, 0.0023823752999305725, 0.1684485375881195, -0.9208148717880249, -0.09770138561725616, -0.2565692067146301, 0.10717736184597015, 0.23251283168792725, -0.3886159360408783, -0.6080939769744873, 0.18086564540863037, -0.1272849440574646, -1.0969464778900146, -0.5717645883560181, -0.7068462371826172, 0.12422716617584229, -0.891974687576294, -0.21798676252365112, -1.1833646297454834, 0.5083918571472168, -0.41166067123413086, -0.04024161398410797, -1.1807821989059448, 0.30421578884124756, -0.24933981895446777, -0.04525095596909523, 0.4252978563308716, 1.0439255237579346, -0.2513417601585388, -1.1469956636428833, -0.289439857006073, -0.45210400223731995, 0.5862070322036743, 0.03594900667667389, 0.3871297240257263, 0.14766982197761536, 0.5657485127449036, -0.4865913689136505, -0.5714386105537415, 0.599547266960144, -1.1034231185913086, -0.29964447021484375, -0.22009418904781342, 0.21401602029800415, 0.11254875361919403, -0.2956516146659851, 0.3796106278896332, -0.7395519614219666, 0.0344385951757431, 0.474631667137146, 1.0605874061584473, 0.6049637198448181, 0.16801127791404724, 0.7793208956718445, 0.44737255573272705, 0.993375301361084, -0.15934696793556213, -0.4826769232749939, -0.45792898535728455, -0.07669620960950851, -0.622866690158844, 0.48037734627723694, -0.8605313301086426, -0.5804322957992554, 0.6653633713722229, 0.7472678422927856, 0.1858442723751068, -0.3691747784614563, 0.4891798496246338, 0.18664684891700745, 0.7941935062408447, -0.00171719491481781, -0.46050435304641724, -1.2304869890213013, 0.16212481260299683, 0.15986011922359467, -1.3197734355926514, -0.5075079798698425, -0.7705899477005005, -0.34308722615242004, -0.18267971277236938, 0.4954040050506592, -0.281732439994812, -0.3360079824924469, -0.23969528079032898, -0.36261728405952454, -0.7801482677459717, 1.0145175457000732, 0.44356870651245117, 0.4550684094429016, -0.2462107092142105, -0.028246521949768066, 0.22846254706382751, 0.7615267038345337, 0.3868536651134491, 1.3970609903335571, 0.5528520345687866, 0.9689177870750427, -0.056426748633384705, 0.8504548668861389, -0.5976072549819946, -0.472963809967041, -0.10237665474414825, 1.1826817989349365, -0.1007641851902008, -0.07056266814470291, -0.20905299484729767, 0.3509426712989807, 0.5712230205535889, 0.37994566559791565, 0.5191158652305603, -0.22345122694969177, -0.34908926486968994, 0.007917920127511024, 0.04327722638845444, -0.28270694613456726, 0.5908091068267822, 0.16110068559646606, -0.35346731543540955, -1.1800837516784668, -0.00666382908821106, 1.0201236009597778, 0.07987049221992493, 0.32212328910827637, 0.9530348181724548, -0.5917220115661621, 0.4143545925617218, 0.2668894827365875, 0.1507052183151245, 0.6174910068511963, -1.0001754760742188, 0.04883059859275818, 0.5711309909820557, 0.4289189577102661, -0.026491031050682068, -0.17296433448791504, -0.2595885992050171, 0.06326089799404144, -0.1202951967716217, -0.12752419710159302, -0.08786886185407639, 0.342899352312088, -0.49647656083106995, -0.919438898563385, 0.9639474749565125, -0.19747744500637054, -0.2786409854888916, -0.10169103741645813, 1.3018262386322021, 0.48120078444480896, 0.027034692466259003, -0.5553125143051147, -1.076458215713501, 1.2399874925613403, -0.07121027261018753, -0.343669593334198, -0.46227240562438965, -0.7850208282470703, 1.4591691493988037, 0.07433832436800003, -0.048921577632427216, -0.024919185787439346, -1.0623807907104492, -0.9239493608474731, -0.22380712628364563, -0.17026421427726746, 1.3177155256271362, -0.7448132634162903, -0.1015147864818573, 0.32665133476257324, 0.07573433965444565, 0.5616340637207031, -0.4319935739040375, 0.49929171800613403, -0.07314042747020721, -0.5658509135246277, -1.2159857749938965, 0.7995707988739014, 0.7139758467674255, 0.32537639141082764, -0.183521568775177, 0.1920362412929535, 0.10595153272151947, -0.16129103302955627, 0.7259239554405212, -0.2405409812927246, 0.8284433484077454, 0.32365304231643677, 0.3964889943599701, -0.5916200876235962, 0.5910813808441162, -1.3155726194381714, 0.5049625635147095, -0.5544731616973877, -0.8775995373725891, 0.24888862669467926, -0.1969456821680069, 1.2174607515335083, 1.0377957820892334, -0.5777188539505005, -0.5870857834815979, 0.09378105401992798, 0.15399782359600067, -0.30130624771118164, 0.5691611766815186, -0.08929415047168732, -0.48601478338241577, -0.027566514909267426, 0.06973444670438766, -0.04557186737656593, 0.9454744458198547, -0.7357174158096313, 0.5216792225837708, 1.109545111656189, -0.40201514959335327, 0.7412577271461487, 0.42347756028175354, -0.021601669490337372, 0.51824951171875, -0.11799489706754684, -0.44427603483200073, -0.3070724904537201, -0.8178750276565552, -0.44921523332595825, -0.006141761317849159, -0.8785372972488403, 0.5860861539840698, -0.7922641634941101, -0.8960728645324707, 0.12121066451072693, 0.5007271766662598, 1.0339983701705933, -0.5304927825927734, 0.7697989344596863, 0.3733503222465515, -0.19671811163425446, -0.2078884392976761, -1.2272000312805176, -0.48358607292175293, 0.17544111609458923, 0.22847023606300354, 0.5836791396141052, 0.5150426030158997, 0.31313222646713257, -0.41628745198249817, -0.6485204100608826, -0.4845377206802368, 0.15092986822128296, 0.9499556422233582, 0.22613514959812164, -0.41033411026000977, -0.8036672472953796, -0.2868956923484802, 0.8838307857513428, -0.7034005522727966, -1.1889684200286865, -0.22894981503486633, -0.7468639016151428, -0.0319647416472435, -0.6684640645980835, -0.4713611304759979, 0.5168429613113403, 0.5134394764900208, 0.7173866033554077, -0.5287485122680664, 0.5583288669586182, 1.3167842626571655, 0.11416716873645782, 0.3189387321472168, 0.3391677141189575, 0.3688462972640991, -0.22091001272201538, 0.47498196363449097, 0.5526347160339355, 0.22089925408363342, 0.04562404006719589, 0.11688736081123352, -0.3667972683906555, -0.1090753972530365, -0.55043625831604, -4.110853672027588, 0.32707762718200684, -0.32866567373275757, -0.4350530505180359, 0.3190981447696686, 0.05524228513240814, 0.14497029781341553, -0.9400076270103455, -0.8883970379829407, 0.3652770519256592, -0.8446548581123352, -0.2533528804779053, 0.24950839579105377, 0.5818116664886475, 0.6227781176567078, 0.3902076482772827, -0.0021850690245628357, -0.4903701841831207, 0.27560916543006897, 0.43407970666885376, -0.24139580130577087, -0.9000638127326965, -0.3770374655723572, 0.47365856170654297, 0.26279065012931824, 0.3317311704158783, -0.8401187062263489, 0.6322128176689148, -1.1483515501022339, -0.37254348397254944, 0.38128045201301575, -0.5333086848258972, 0.1625829041004181, 0.5442990660667419, -0.16772934794425964, -0.5945104360580444, 0.8674643635749817, -0.024548791348934174, -0.05794098973274231, -0.3420448303222656, -0.4389437437057495, -0.5565751791000366, -0.2961515188217163, -0.5274040102958679, 0.7670177221298218, -0.02473466843366623, -0.2490215003490448, -0.9770761132240295, 0.09840209782123566, 0.7893826961517334, -0.11993826180696487, -0.10463646054267883, -0.6657143831253052, 0.4482807219028473, -0.2915256917476654, -0.22701404988765717, 0.17504212260246277, 0.026543769985437393, -0.7508760094642639, 0.12186944484710693, 0.24202439188957214, -0.2519448399543762, -0.7537375092506409, -0.5908242464065552, 0.02466939389705658, -0.7450656890869141, -1.0317338705062866, -0.8213688135147095, 0.6617758274078369, 1.2692805528640747, -0.6600198745727539, 0.6221566200256348, -0.1618509739637375, -1.586216688156128, 0.410914808511734, -0.23940451443195343, -0.47068414092063904, 0.03170470893383026, -0.4390953779220581, 0.6300060153007507, -0.7737417817115784, -0.31526708602905273, 0.45250383019447327, 0.2970556914806366, -0.21447551250457764, -0.8974301815032959, 0.3912377655506134, -0.2232377678155899, -0.4126707911491394, -0.6957086324691772, 1.0192091464996338, -0.7158280611038208, 0.43367648124694824, 0.35333624482154846, 0.7932336926460266, 0.6290571689605713, 0.5022633671760559, -0.3484067916870117, 0.7108333706855774, -0.25652962923049927, 0.6161776781082153, -1.120553970336914, 0.0011184252798557281, -0.1654656082391739, 0.42508673667907715, -0.35133424401283264, -0.6416030526161194, 0.1956886351108551, 0.4698447585105896, 0.10646139085292816, 0.623079240322113, -0.43494775891304016, 0.321625292301178, -0.9308832287788391, -0.1670903116464615, -0.9668000340461731, 0.49611765146255493, 0.49519065022468567, 0.4133024513721466, 0.23971688747406006, -0.5047705173492432, 0.3929356038570404, -0.5034253597259521, -0.23981384932994843, -1.8695536851882935, 0.10641258955001831, 0.276608943939209, 0.21366454660892487, 0.33425116539001465, 0.18835555016994476, -0.41805213689804077, -0.28603965044021606, 0.5680811405181885, -0.16157734394073486, 0.13434450328350067, -0.607280433177948, -0.3844585418701172, -0.5181580781936646, 0.6150288581848145, -0.48542508482933044, 0.28717097640037537, 0.08912093192338943, 0.4383337199687958, 0.0969657450914383, 0.8764569759368896, 0.620795726776123, -0.5425312519073486, 0.45953816175460815, -0.36306166648864746, -0.2990942895412445, 0.21259666979312897, -0.24065856635570526, 0.12922228872776031, -0.5758560299873352, -0.09790845215320587, -0.46379736065864563, 0.4195109009742737, 0.3222707509994507, -0.5394457578659058, -0.8303638100624084, 0.22802573442459106, -0.4047362208366394, -0.31997519731521606, -0.07186201214790344, 0.0018125884234905243, 1.2112996578216553, -0.23561590909957886, 0.22459927201271057, -0.18695762753486633, 0.12052080035209656, 0.18459366261959076, -0.07108520716428757, -0.7041536569595337, 0.09600070118904114, -0.6409846544265747, 0.5727865099906921, 0.18177497386932373, -0.07835209369659424, 0.09451907873153687, 0.26893776655197144, 0.19797629117965698, -0.3903428912162781, 0.5389156937599182, 0.13399021327495575, 0.9688950181007385, 0.16065281629562378, 0.35254359245300293, -0.7971107363700867, -0.6025140285491943, 0.29629915952682495, 0.6407483220100403, 0.11389702558517456, -0.2614199221134186, 0.20620198547840118, -0.8566745519638062, -1.2831629514694214, 0.12373314797878265, 0.2195158153772354, 0.5938765406608582, 0.2822904586791992, -0.7697553634643555, -0.18822583556175232, -0.35154402256011963, -0.08359900116920471, -0.12292934954166412, -1.3792140483856201, 0.29659464955329895, 0.005222748965024948, -0.17576190829277039, -0.20747792720794678, 0.063336580991745, -0.7180307507514954, -1.0720158815383911, 0.20636388659477234, -0.1277928501367569, -0.7513386607170105, 0.2772012948989868, -0.432873010635376, 0.09749060869216919, -0.8261730670928955, 0.7161719799041748, 0.11296847462654114, -0.4368324875831604, -0.38221028447151184, -0.8529654145240784, 0.7088592648506165, -0.32785147428512573, -0.2973479926586151, 0.44113674759864807, 0.11171996593475342, 0.7375978231430054, -0.4720243215560913, 0.1857747584581375, 0.996039092540741, -0.033406972885131836, 0.3205610513687134, -0.06127730384469032, 0.6706288456916809, -0.10866819322109222, 0.804426372051239, 0.08016980439424515, -0.3058314025402069, 0.008979186415672302, -0.8777127861976624, 0.2712556719779968, -0.15060320496559143, -0.3943958282470703, -0.040259554982185364, 0.02000308409333229, 0.8992327451705933, 0.3601086139678955, 0.8567289113998413, -0.09032118320465088, -0.29998978972435, 0.8606370687484741, -0.7295125126838684, -0.5290260314941406, 0.03804496303200722, -0.3854397237300873, 0.5804934501647949, 0.5390216708183289, 0.46520012617111206, -1.2573683261871338, 1.1003338098526, 0.7459888458251953, 0.9069318175315857, 0.037617892026901245, -0.48125168681144714, 0.8481892347335815, -0.8555366396903992, -0.23963984847068787, -1.266248345375061, -0.04755435883998871, 0.12803933024406433, 0.47817671298980713, -0.5165801048278809, -0.28947436809539795, -0.264950156211853, 0.7028465270996094, -0.9831292629241943, -1.075339674949646, 0.30128759145736694, -0.2690662741661072, 0.3396231532096863, 0.6541540622711182, -0.5874579548835754, -0.43821993470191956, -0.0589587464928627, -0.1897341012954712, 0.3777177035808563, 0.021943246945738792, 1.443323016166687, -0.7346159219741821, 0.12279535830020905, 0.09887668490409851, -0.2625202536582947, 0.932694673538208, 0.9248786568641663, -0.6262524127960205, 0.11723311245441437, -0.7174504995346069, 0.8948701620101929, 0.354684442281723, 0.48614948987960815, -0.03585955500602722, 0.1968853622674942, 0.23755064606666565, -1.0574722290039062, 0.22450944781303406, 0.9292206168174744, 0.11181178689002991, -0.30146270990371704, 0.6694965958595276, 0.5206701755523682, -1.0453808307647705, -0.9791742563247681, 0.10310591012239456, -0.13472065329551697, -0.24915528297424316, -0.0069360435009002686, 0.042715996503829956, 0.007061764597892761, 0.8152441382408142, 0.46437546610832214, 0.28516292572021484, 1.272798776626587, 0.28258830308914185, -0.11095574498176575, 0.43046724796295166, 0.5888342261314392, 1.087421178817749, 0.29455581307411194, 0.17102313041687012, 0.7842127680778503, -0.8142701983451843, -0.8733875751495361, -0.013464398682117462, 0.23106086254119873, 0.4737709164619446, 0.13618120551109314, 0.08432137966156006, 1.0654064416885376, 0.46641573309898376, 1.495776653289795, -0.38689878582954407, 0.6678972244262695, -0.01132018119096756, 0.17471951246261597, 0.7511628270149231, 0.5175167322158813, 0.25709760189056396, 0.821877121925354, -0.19114607572555542, -0.6329065561294556, -0.28879213333129883, 0.8520597219467163, -0.011810220777988434, -0.4130401313304901, -0.7748652696609497, 0.40547680854797363, -0.5129309892654419, 1.5148603916168213, 1.005631446838379, -0.17109499871730804, 0.2591761648654938, 0.09795483946800232, 0.47678181529045105, -0.11013568192720413, 0.46281683444976807, 0.14349311590194702, 0.003857705742120743, 0.041485562920570374, -0.4888231158256531, 0.16753387451171875, 0.08401239663362503, 0.5017775297164917, 1.109290361404419, -0.1761743575334549, 0.0036258678883314133, 0.041827790439128876, 0.5842456221580505, -0.2807773947715759, -0.9201004505157471, -0.5811018347740173, 0.0586107075214386, -1.032700538635254, -0.22417204082012177, 0.7321584224700928, -0.3138977885246277, -0.8179207444190979, -0.4366300702095032, -0.6142287254333496, 0.5020856261253357, -0.23063112795352936, -0.3580070436000824, -0.19113250076770782, 0.7488768100738525, 0.5391074419021606, -0.11319983005523682, 0.5874726176261902, 0.5077618360519409, 0.17196601629257202, -0.44780510663986206, 0.39502376317977905, -0.023123659193515778, 1.0620391368865967, -0.42426416277885437, 0.2983396351337433, -1.1921511888504028, 0.4309532344341278, 0.8586829900741577, 0.9465767741203308, -1.5386707782745361, 1.0557348728179932, -0.10029662400484085, -1.0819389820098877, 0.6362495422363281, 0.12767861783504486, -0.3170551061630249, -0.43925467133522034, -0.8979253768920898, -0.546220600605011, 0.24137496948242188, 1.0792208909988403, -0.41009747982025146, 1.166171908378601, 0.771896243095398, 0.1870589703321457, -0.6252480149269104, 0.0679921880364418, -0.09936349093914032, 0.027103744447231293, -0.3922240436077118, -0.4110771715641022, -0.43712225556373596, -0.8585798740386963, -0.3623427152633667, 0.6962414979934692, -0.6944144368171692, -0.9697203636169434, -0.14178572595119476, -0.690021812915802, 0.07039384543895721, 0.43919387459754944, 0.11243177950382233, 0.021800115704536438, -0.23492608964443207, -1.1861568689346313, -1.056916356086731, 0.2195703387260437, 0.09640775620937347, -0.2653080224990845, -0.2997432351112366, -0.3400428891181946, 0.05679197236895561, -0.5333948135375977, -0.01731126755475998, 0.753974437713623, -0.2636900842189789, 0.2233700156211853], "06e1128d-3441-4bd0-81ff-61e6be9a7404": [0.0813363790512085, 0.22834578156471252, -0.29917261004447937, 0.1712500900030136, 1.149481177330017, -0.07013403624296188, 0.3153858482837677, 0.16964049637317657, -0.4264804720878601, -0.3328118920326233, -0.14769968390464783, 0.12224704027175903, -1.0722512006759644, 0.3512071371078491, 0.8017815351486206, 1.107241153717041, 0.9217379093170166, -0.21707995235919952, 0.2921994924545288, 0.32498642802238464, -0.636996328830719, -0.11013869196176529, -0.45200294256210327, 0.42519283294677734, 0.22008027136325836, 0.5115779638290405, 0.026784470304846764, 0.3444264531135559, -1.418035626411438, -0.028614487498998642, 0.4292559325695038, -0.6891874074935913, 0.31162914633750916, -0.4567999243736267, 0.24251073598861694, 0.21640163660049438, -0.7902743816375732, -0.32629889249801636, 0.07474947720766068, 0.13801059126853943, -0.6752046346664429, -0.516122043132782, -0.5091691613197327, 0.10549959540367126, -1.0769803524017334, 0.057527124881744385, -1.4211740493774414, 0.44160428643226624, -0.28379905223846436, -0.09738477319478989, -1.1602450609207153, 0.3661520183086395, -0.2369634509086609, 0.24401046335697174, 0.5930917263031006, 0.9017490148544312, -0.35508912801742554, -1.1541188955307007, -0.15476436913013458, -0.28933098912239075, -0.0017656609416007996, 0.01940043270587921, 0.31652557849884033, 0.3847635090351105, 0.030343495309352875, -0.49657806754112244, -0.16110245883464813, 0.7784262299537659, -1.4820207357406616, -0.3727809190750122, -0.4893544316291809, 0.48067039251327515, -0.23942698538303375, -0.4922504723072052, 0.12408512085676193, -0.7173565626144409, -0.3700462281703949, 0.6854563355445862, 0.8945710062980652, 0.5762038230895996, -0.30419477820396423, 0.718362033367157, 0.07899731397628784, 0.6417112350463867, -0.10413826256990433, 0.06332369148731232, -0.35298916697502136, 0.014304334297776222, -0.8897061944007874, 0.5349617600440979, -0.894079327583313, -0.7200789451599121, 0.6869855523109436, 0.24045753479003906, 0.11836142838001251, -0.4152299165725708, 0.4531743824481964, 0.294108122587204, 0.6416575312614441, 0.08901399374008179, -0.6783895492553711, -0.8823664784431458, 0.04188211262226105, -0.03143908083438873, -1.2080104351043701, -0.17719203233718872, -0.9427078366279602, -0.09647546708583832, -0.5034825205802917, 0.008986826986074448, -0.06805204600095749, -0.3357953727245331, -0.18817995488643646, -0.09293187409639359, -0.9031669497489929, 0.70823073387146, 0.5239353179931641, 0.6166844367980957, -0.6382362246513367, 0.10543018579483032, 0.7985700368881226, 0.6942840814590454, 0.6045348644256592, 1.552528738975525, 0.16352105140686035, 0.910108745098114, 0.17444799840450287, 0.97328120470047, -0.29500311613082886, -0.8745401501655579, -0.27785739302635193, 0.9219192266464233, 0.33483174443244934, -0.41042739152908325, -0.012655775994062424, 0.04267895221710205, 0.14475545287132263, 0.44938379526138306, 0.5763909816741943, -0.32786065340042114, -0.06235530972480774, 0.23727548122406006, -0.2312605381011963, -0.13232797384262085, 0.71836918592453, 0.45764225721359253, -0.13777334988117218, -0.9360775351524353, -0.340756356716156, 1.0301258563995361, 0.6022319793701172, 0.760438084602356, 0.722619891166687, -0.4908311367034912, 0.2637750804424286, 0.5679150819778442, -0.19228169322013855, 0.28112220764160156, -1.096189022064209, 0.15180401504039764, 0.5128533244132996, 0.4611150920391083, 0.00636889087036252, 0.33580124378204346, -0.3172749876976013, 0.2440279722213745, 0.14422807097434998, -0.18669994175434113, 0.14186683297157288, 0.46925753355026245, -0.5962787866592407, -0.7092174887657166, 0.9006607532501221, -0.3025519847869873, -0.444558322429657, -0.33101412653923035, 1.3309482336044312, 0.2641454041004181, 0.03023890219628811, 0.03610754758119583, -1.0789680480957031, 1.1876320838928223, 0.17154347896575928, -0.17460063099861145, -0.4852059483528137, -0.4517472982406616, 1.5165754556655884, -0.27135956287384033, -0.2030644416809082, -0.04997245967388153, -1.051546335220337, -0.583848237991333, -0.01759578473865986, -0.13468465209007263, 1.1758097410202026, -0.7566002607345581, -0.29248902201652527, 0.4822534918785095, 0.1144038587808609, 0.5029475688934326, -0.37596631050109863, 0.755645215511322, -0.32904016971588135, -0.5719970464706421, -1.1831507682800293, 0.5518511533737183, 0.6595913767814636, 0.09800393879413605, 0.05255909264087677, 0.45409125089645386, 0.17241138219833374, -0.06941390037536621, 0.9331764578819275, -0.19947943091392517, 0.9581774473190308, 0.034324146807193756, 0.12121740728616714, -0.4035969078540802, 0.5409371256828308, -0.6617355942726135, 0.6360597014427185, -0.23152987658977509, -0.8095415234565735, 0.3126530647277832, -0.07400558888912201, 1.150607943534851, 1.1717382669448853, -0.8296818137168884, -0.25883471965789795, 0.2682590186595917, 0.5248149633407593, -0.24972492456436157, 0.3540218770503998, -0.3624953031539917, -0.7426851987838745, -0.5446299910545349, 0.11185318231582642, -0.08842776715755463, 0.504158616065979, -0.5037204027175903, 0.456328809261322, 1.1717393398284912, -0.09452580660581589, 0.836505651473999, 0.031909141689538956, -0.05526752024888992, 0.28852200508117676, -0.5125243663787842, -0.6131426095962524, -0.1704857349395752, -0.43562623858451843, -0.45516636967658997, 0.13424299657344818, -0.8071449995040894, 0.3105770945549011, -0.9199084639549255, -1.0085883140563965, 0.15554746985435486, 0.3082444667816162, 1.0792694091796875, -0.1553545892238617, 0.914349377155304, 0.10180647671222687, -0.6576966047286987, -0.4112866222858429, -1.5625324249267578, -0.13058893382549286, 0.1273581087589264, 0.07135151326656342, 0.654350757598877, 0.8220294713973999, 0.07562803477048874, -0.7033259868621826, -0.4980241060256958, -0.46235623955726624, 0.05635631084442139, 0.9190894365310669, -0.01664883643388748, -0.6616609692573547, -0.8544107675552368, -0.4481469392776489, 0.8311083316802979, -0.6033384799957275, -1.37614905834198, -0.6274425983428955, -0.6777048110961914, -0.20602956414222717, -0.8834142684936523, -0.3388650417327881, 0.2113121598958969, 0.26551753282546997, 0.653446614742279, -0.26193517446517944, 0.40339788794517517, 0.6603773832321167, -0.2005126178264618, 0.2200179100036621, 0.4562951326370239, 0.3742506802082062, -0.3980717658996582, 0.44934186339378357, 0.04633445292711258, 0.3456122875213623, -0.04573656991124153, -0.46372950077056885, -0.5590274930000305, -0.19673797488212585, -0.4244677424430847, -4.3037214279174805, 0.4248619079589844, -0.24108105897903442, -0.5135916471481323, 0.34792280197143555, 0.022588029503822327, -0.09579828381538391, -0.5222359299659729, -0.8644413352012634, 0.3526976406574249, -0.5838945508003235, 0.07572431862354279, 0.5708889365196228, 0.15126103162765503, 0.8506792187690735, 0.454133003950119, 0.3397175371646881, -0.1797000765800476, 0.07438373565673828, 0.5928114056587219, -0.5900049209594727, -0.746288537979126, -0.32963263988494873, 0.6721081733703613, 0.1599891036748886, 0.4380483031272888, -0.6486276984214783, 0.39818912744522095, -1.2176696062088013, -0.3014174997806549, -0.010107502341270447, -0.36511245369911194, 0.06868511438369751, 0.41715872287750244, -0.1987382024526596, -0.6682789921760559, 0.7266384959220886, -0.02317436784505844, 0.05213252454996109, -0.2652028203010559, -0.35076773166656494, -0.35803988575935364, -0.3370034098625183, -0.007013671100139618, 0.6609662771224976, 0.08580324053764343, -0.6039238572120667, -0.83879154920578, 0.032510533928871155, 0.5552420616149902, -0.13272641599178314, -0.11264704912900925, -0.7561905980110168, 0.14542566239833832, 0.11451514065265656, -0.35504603385925293, -0.15948030352592468, 0.329890638589859, -0.5867970585823059, 0.4395306706428528, -0.04432365298271179, -0.4496127665042877, -0.8258525133132935, -0.49814724922180176, -0.22847908735275269, -0.6130078434944153, -1.1677323579788208, -0.9850363731384277, 0.9120991230010986, 0.9898918271064758, -0.33543866872787476, 0.3602295517921448, -0.01873345673084259, -1.4077485799789429, 0.637068510055542, -0.20983384549617767, -0.3612026870250702, -0.20343464612960815, -0.6190645694732666, 1.0336518287658691, -0.6422614455223083, -0.1838657706975937, 0.5897974967956543, 0.22288818657398224, -0.6007811427116394, -0.7880240082740784, 0.22303852438926697, -0.3743785619735718, -0.47293540835380554, -1.0682069063186646, 1.1833139657974243, -0.6942422389984131, 0.06924013793468475, 0.6970885992050171, 0.3824634552001953, 0.4615722894668579, 0.25518855452537537, -0.3034443259239197, 0.49844467639923096, -0.01997774839401245, 0.3185005784034729, -1.0195770263671875, 0.0961010754108429, -0.16997669637203217, 0.673233687877655, -0.19365793466567993, -0.6894702315330505, -0.09796912223100662, 0.5332447290420532, 0.21126949787139893, 0.34204044938087463, -0.17856845259666443, -0.0007746107876300812, -0.7945641279220581, 0.00045972131192684174, -0.833227276802063, 0.4597727954387665, 0.5966655611991882, 0.08379095047712326, 0.13037100434303284, -1.1370009183883667, 0.37463587522506714, -0.5273750424385071, -0.19842982292175293, -1.4776942729949951, 0.39088186621665955, 0.03666175901889801, 0.2681759297847748, 0.11325182020664215, 0.15586310625076294, -0.3119874894618988, -0.19755637645721436, 0.5543270111083984, -0.052485812455415726, 0.360200434923172, -0.0030774399638175964, -0.07298410683870316, -0.6665074825286865, 0.6257280111312866, -0.4061000347137451, 0.7110670208930969, 0.08333562314510345, 0.3540786802768707, 0.007310260087251663, 1.1644034385681152, 0.5513311624526978, -0.16682085394859314, 0.43018364906311035, -0.6043092608451843, 0.043630748987197876, 0.2942727208137512, -0.30390113592147827, 0.2773698568344116, -0.6847733855247498, 0.2835005819797516, -0.2607053518295288, -0.009665712714195251, -0.17298966646194458, 0.14542894065380096, -1.174951434135437, 0.31370413303375244, -0.02237716317176819, -0.45992374420166016, -0.08592235296964645, 0.07082653790712357, 1.1618010997772217, -0.42313528060913086, 0.12900632619857788, -0.16160622239112854, 0.24277657270431519, 0.251043438911438, -0.1473110467195511, -0.7098121643066406, 0.25933802127838135, -0.07699494808912277, 0.47188857197761536, 0.48462504148483276, 0.02623789757490158, 0.277864545583725, 0.4265255928039551, 0.14897891879081726, -0.5865607857704163, -0.16640053689479828, 0.13550405204296112, 0.9970408082008362, 0.1119099110364914, 0.24757036566734314, -0.6881577968597412, -0.5274931192398071, 0.2018587589263916, 0.670333206653595, -0.0572592094540596, -0.00037876516580581665, 0.16412247717380524, -0.7257482409477234, -1.2100844383239746, 0.34300339221954346, 0.6456961631774902, 0.423320472240448, 0.09189946204423904, -0.5473681688308716, -0.3790491819381714, -0.5264305472373962, -0.3762999176979065, -0.2305465042591095, -1.309522271156311, 0.4500057101249695, 0.14365726709365845, -0.17312400043010712, -0.31758007407188416, 0.20913714170455933, -0.21330440044403076, -0.863925039768219, 0.3070630133152008, -0.06479215621948242, -0.5860564708709717, 0.21994206309318542, -0.14357170462608337, 0.14458326995372772, -0.6679484844207764, 0.3314434587955475, -0.11200898885726929, -0.5884936451911926, -0.31225016713142395, -0.46115630865097046, 0.5420429706573486, -0.4613092243671417, -0.4078184962272644, 0.6372045278549194, -0.02198902517557144, 1.0775630474090576, -0.9341570138931274, 0.2734602391719818, 1.2206602096557617, -0.36197856068611145, 0.558378279209137, -0.37378162145614624, 0.6792133450508118, -0.352551132440567, 0.8312703371047974, -0.11459767073392868, -0.3727246820926666, 0.09836657345294952, -1.1077947616577148, 0.2102748304605484, -0.14087943732738495, -0.6179949641227722, -0.08715098351240158, -0.2990800440311432, 1.2312359809875488, 0.07244431972503662, 0.7150713205337524, 0.1408374160528183, -0.318397581577301, 0.8733484745025635, -0.4339563250541687, -0.5619111657142639, -0.43030446767807007, -0.08696335554122925, 0.2381114661693573, 0.6541953086853027, 0.35221993923187256, -1.0634644031524658, 1.39333975315094, 0.6130121350288391, 0.7728989124298096, 0.2251051664352417, -0.5303171873092651, 0.7267150282859802, -0.543545663356781, -0.015826895833015442, -0.7443695664405823, -0.05964301526546478, 0.20989134907722473, 0.3909956216812134, -0.5496813058853149, -0.16094554960727692, -0.32788774371147156, 0.6557963490486145, -0.8081871867179871, -0.7050942778587341, 0.5765904188156128, -0.01713968813419342, 0.18468281626701355, 0.9146461486816406, -0.742576539516449, -0.47206535935401917, -0.2676869034767151, -0.18624348938465118, 0.3711269795894623, -0.1986686885356903, 1.6387814283370972, -0.45062243938446045, 0.09437961876392365, 0.20699843764305115, -0.37678849697113037, 0.8189471364021301, 1.1684215068817139, -0.5466299057006836, -0.3021126687526703, -0.664293110370636, 1.028151512145996, 0.4778854250907898, 0.14263221621513367, -0.007151097059249878, 0.07290506362915039, 0.5362229943275452, -1.1065154075622559, 0.4022144675254822, 0.9092537760734558, 0.25282350182533264, -0.23492923378944397, 0.673507809638977, 0.7712938785552979, -0.6096838712692261, -0.8340063691139221, 0.20429207384586334, -0.2176315188407898, -0.2795255184173584, -0.042741551995277405, 0.13475200533866882, -0.21971052885055542, 1.1939777135849, 0.04482278972864151, 0.2260880470275879, 1.2319833040237427, 0.41843289136886597, 0.034058377146720886, 0.6080667972564697, 0.548275887966156, 1.2222648859024048, 0.18884378671646118, 0.19837066531181335, 0.6310994625091553, -0.7520380020141602, -1.043721318244934, -0.09905830025672913, -0.0671849399805069, 0.5215978026390076, -0.4639953374862671, 0.47896498441696167, 1.2050646543502808, 0.1428499072790146, 1.3178150653839111, -0.14271166920661926, 0.4101162254810333, 0.034932710230350494, 0.047474175691604614, 0.7358224391937256, 0.30640745162963867, 0.24948404729366302, 0.5525442957878113, -0.321999728679657, -0.5689326524734497, 0.09189064055681229, 0.3727181851863861, -0.28012996912002563, -0.1300223171710968, -0.7773476839065552, 0.11180650442838669, -0.6842337846755981, 1.3923133611679077, 1.21804940700531, -0.07693148404359818, -0.2547076642513275, -0.08434369415044785, 0.8157284259796143, 0.20197561383247375, 0.18697917461395264, 0.13313835859298706, 0.2949700355529785, 0.4274201989173889, -0.3627714216709137, 0.2031799852848053, 0.11913049221038818, 0.21001261472702026, 1.1318297386169434, 0.04238942265510559, -0.020375527441501617, -0.014935076236724854, 0.7494503259658813, -0.9014807939529419, -0.7577036619186401, -0.6950548887252808, -0.18480180203914642, -1.1567051410675049, -0.4919281601905823, 0.8360661864280701, -0.1707567274570465, -0.7192097902297974, -0.4634343385696411, -0.8213438391685486, 0.3324848711490631, -0.36022987961769104, -0.44160497188568115, -0.12110143899917603, 0.8387905359268188, 0.20839960873126984, 0.2781916558742523, 0.4598378539085388, 0.3027532398700714, 0.03072286769747734, -0.2217787653207779, 0.40507593750953674, 0.18532730638980865, 1.049659013748169, -0.2604040801525116, 0.3059508204460144, -0.9584283828735352, 0.4312518239021301, 0.8115946054458618, 0.6320533156394958, -1.430696725845337, 0.8756710886955261, -0.3320173919200897, -1.0085647106170654, 0.8907929062843323, 0.06248942390084267, -0.20084871351718903, -0.35141706466674805, -0.9728240370750427, -0.3395332992076874, 0.095577672123909, 0.6868188977241516, -0.5518131256103516, 0.943256676197052, 0.810247004032135, 0.11069384962320328, -0.40409934520721436, -0.1747434437274933, -0.04297634959220886, -0.07181213796138763, -0.4371914267539978, -0.4973490238189697, -0.4865870475769043, -0.6682224273681641, -0.0924949049949646, 0.7638567686080933, -0.38718703389167786, -0.6760179400444031, -0.11877687275409698, -0.39504966139793396, -0.5174047946929932, 0.19522438943386078, 0.1281708925962448, 0.2589533030986786, -0.4267338216304779, -1.14748215675354, -1.1340816020965576, 0.010092129930853844, 0.05893295630812645, -0.49796271324157715, -0.10475574433803558, -0.26655933260917664, 0.11016380786895752, -0.5137969255447388, 0.19122254848480225, 0.6165438294410706, -0.3814240097999573, 0.45480746030807495], "99f90aec-e539-408d-b6c4-0f026081ffd5": [0.1387162059545517, -0.16904175281524658, -0.1494973748922348, -0.10507719218730927, 0.741992175579071, -0.008195195347070694, 0.17415523529052734, 0.3319043517112732, -0.7446269392967224, -0.18042463064193726, 0.05934038758277893, 0.2521212100982666, -1.177037239074707, 0.29144591093063354, 0.25946784019470215, 1.3058212995529175, 0.7806386947631836, -0.1620948165655136, 0.28296932578086853, 0.09421701729297638, -0.6054253578186035, -0.33396291732788086, -0.27762722969055176, 0.06821710616350174, 0.7011333703994751, 0.2656949758529663, -0.14764496684074402, 0.21661941707134247, -1.4182558059692383, -0.16511809825897217, 0.506436288356781, -0.6556656956672668, 0.14166532456874847, -0.29934847354888916, 0.35540542006492615, -0.14137257635593414, -0.6777148246765137, -0.4943743050098419, 0.3029892146587372, -0.08533692359924316, -0.6517394185066223, -0.6439931988716125, -0.6498998403549194, 0.4960644245147705, -0.9887462258338928, -0.02978929877281189, -1.4984195232391357, 0.08228272199630737, -0.3919360041618347, 0.5120484232902527, -1.4028265476226807, 0.5735070705413818, -0.06125272810459137, 0.1708795577287674, 0.42754673957824707, 0.6283535361289978, -0.14125964045524597, -1.3701609373092651, -0.3524264097213745, -0.5072456002235413, -0.08257994055747986, -0.07441122084856033, 0.49384939670562744, 0.07670191675424576, -0.09992430359125137, -0.4717716574668884, -0.36754506826400757, 0.5599052906036377, -1.6361031532287598, -0.4153154492378235, -0.7600226998329163, 0.23489165306091309, -0.03460896760225296, -0.5221559405326843, 0.12021800130605698, -0.97825688123703, -0.08871780335903168, 0.7503178715705872, 0.6931031346321106, 0.7005234956741333, -0.17488683760166168, 0.6219446063041687, 0.7133197784423828, 0.7917428612709045, -0.12239478528499603, 0.21918508410453796, -0.3310011327266693, -0.3919675946235657, -0.7888413667678833, 0.433523565530777, -0.549664318561554, -0.6211181879043579, 0.4836365282535553, 0.39098021388053894, -0.0799354761838913, -0.1540132313966751, 0.31212207674980164, 0.2097540944814682, 0.4543667435646057, 0.26365235447883606, -0.26221776008605957, -0.8838666677474976, 0.37845954298973083, -0.03036743961274624, -1.2505145072937012, -0.5818716883659363, -1.0581071376800537, -0.16937997937202454, -0.37047550082206726, 0.5088948011398315, -0.538175106048584, -0.5455306172370911, -0.3956773579120636, -0.13926240801811218, -0.8457120656967163, 1.0229110717773438, 0.43082863092422485, 0.1552799791097641, -0.19989007711410522, 0.03366649150848389, 0.965553343296051, 0.9019051194190979, 0.6112064719200134, 1.6689083576202393, 0.04626931622624397, 0.6506043076515198, 0.17406141757965088, 0.8941456079483032, -0.19076210260391235, -0.6580439805984497, 0.02592705376446247, 0.7599010467529297, 0.01177104189991951, -0.15941648185253143, 0.08519724756479263, 0.24893420934677124, 0.6612178683280945, 0.318881094455719, 0.6961240172386169, -0.2367195338010788, 0.19608037173748016, -0.20353786647319794, -0.0032074153423309326, -0.44353950023651123, 0.6953470706939697, 0.11268171668052673, -0.4208528399467468, -1.066075325012207, -0.4979110062122345, 0.8148467540740967, 0.44967204332351685, 0.7890233993530273, 0.5859991312026978, -0.5720765590667725, 0.2751724421977997, 0.5961757898330688, -0.03300551325082779, 0.20016087591648102, -0.8791676759719849, 0.3755895793437958, 0.44047480821609497, -0.0003733597695827484, -0.07143472880125046, 0.17916417121887207, -0.3488551378250122, 0.471443772315979, 0.14627614617347717, -0.5715097784996033, -0.004709906876087189, 0.3590160310268402, -0.41592514514923096, -0.8357583284378052, 0.9804505109786987, -0.39439213275909424, -0.6217777729034424, -0.33025768399238586, 1.342534065246582, 0.47267046570777893, 0.35389649868011475, -0.18311810493469238, -0.8979142308235168, 0.7770202159881592, 0.0705341249704361, -0.18719741702079773, -0.36036428809165955, -0.3225329518318176, 1.5351804494857788, -0.1499231904745102, -0.11196693778038025, -0.13460463285446167, -1.0614173412322998, -0.5866102576255798, 4.166923463344574e-05, 0.08300119638442993, 1.281762957572937, -0.4536806046962738, -0.24283410608768463, 0.6069702506065369, 0.1874873787164688, 0.8343890309333801, -0.39039814472198486, 0.840506374835968, -0.2365434467792511, -0.649124264717102, -0.7351531982421875, 0.6185179948806763, 0.8974632024765015, -0.23548676073551178, 0.017004624009132385, 0.5797013640403748, -0.019652891904115677, -0.18180744349956512, 0.9421943426132202, 0.023456960916519165, 1.0293002128601074, 0.12198351323604584, 0.5584460496902466, -0.6514305472373962, 0.2026275247335434, -0.44669654965400696, 0.5391162633895874, -0.11307172477245331, -0.8494277596473694, 0.10567423701286316, -0.1327960342168808, 1.3314651250839233, 1.0910991430282593, -0.29117313027381897, -0.5832722187042236, 0.1578788161277771, 0.4447862505912781, -0.17317551374435425, 0.30245441198349, -0.22626055777072906, -0.24829238653182983, -0.44649726152420044, -0.5403478145599365, -0.2606351971626282, 0.7867935299873352, -0.7903004884719849, 0.4298229217529297, 0.834296464920044, -0.10769269615411758, 0.5823296308517456, 0.37708479166030884, 0.021467551589012146, 0.15333852171897888, -0.44572922587394714, -0.698304295539856, -0.26022467017173767, -0.7484514713287354, -0.3590179681777954, 0.21678048372268677, -0.7633316516876221, 0.3394465446472168, -0.7006097435951233, -0.8136155605316162, 0.08336448669433594, 0.5700743198394775, 0.7886446714401245, -0.18951308727264404, 0.9464381337165833, 0.3663089871406555, -0.5700977444648743, -0.34970295429229736, -1.4575387239456177, -0.23970414698123932, 0.14443030953407288, 0.18380634486675262, 0.5810436010360718, 0.8529979586601257, -0.0669688731431961, -0.43823954463005066, -0.3553431034088135, -0.10032225400209427, 0.2588103115558624, 0.9337773323059082, -0.06413432210683823, -0.5664732456207275, -0.6052300930023193, -0.30141308903694153, 0.9198015332221985, -0.41877350211143494, -1.3336178064346313, -0.7343751788139343, -0.7246012091636658, 0.1307421624660492, -1.0454063415527344, -0.5861005187034607, 0.30557218194007874, 0.325581431388855, 0.4905707836151123, -0.25584688782691956, 0.6613914966583252, 0.9537332653999329, 0.26800885796546936, 0.35951292514801025, 0.17047002911567688, 0.3999251127243042, -0.10140826553106308, 0.061230193823575974, 0.10254297405481339, 0.5396704077720642, -0.06896933168172836, -0.5897640585899353, -0.20951396226882935, -0.26165464520454407, -0.5497598648071289, -4.32257604598999, 0.33010610938072205, -0.2081003487110138, -0.7482796907424927, 0.30244022607803345, 0.007353395223617554, 0.47614341974258423, -0.6936761140823364, -0.5779575109481812, 0.3594948947429657, -0.23776790499687195, 0.08988833427429199, 0.3404407501220703, 0.5170451402664185, 0.5379186272621155, 0.8187335729598999, -0.013425055891275406, -0.36857157945632935, 0.432529091835022, 0.6984925866127014, -0.3079148530960083, -0.6896202564239502, -0.34768763184547424, 0.7924032211303711, 0.5050934553146362, 0.8345456719398499, -0.6369559168815613, 0.25519484281539917, -0.9997170567512512, -0.3376048505306244, 0.1316610872745514, -0.39840149879455566, -0.045375414192676544, 0.5407118797302246, -0.756332516670227, -0.5798658132553101, 0.7291308641433716, -0.08584891259670258, -0.08109477162361145, -0.2394186556339264, -0.34581127762794495, -0.6728987693786621, -0.43600544333457947, -0.01801290735602379, 0.7494052052497864, 0.3577938377857208, -0.2258090078830719, -0.6336283683776855, 0.029803598299622536, 0.5621480345726013, -0.09577839076519012, -0.18730807304382324, -0.8289825320243835, 0.3076748549938202, -0.14857952296733856, -0.22029533982276917, -0.36146631836891174, 0.33358481526374817, -0.5809499025344849, 0.2673293352127075, 0.25318387150764465, -0.611556351184845, -0.7902040481567383, -0.5696337223052979, -0.7905381917953491, -0.3898790180683136, -0.7682677507400513, -0.8487836718559265, 0.9866042733192444, 0.9631499648094177, -0.18151994049549103, 0.5722470879554749, -0.23860681056976318, -1.298949122428894, 0.18517819046974182, -0.442493736743927, -0.36536523699760437, -0.09181283414363861, -0.748623788356781, 0.7622069120407104, -0.8354066014289856, -0.24993515014648438, 0.27622368931770325, 0.23290690779685974, -0.43874311447143555, -0.49710121750831604, -0.2414563000202179, -0.2757279872894287, -0.5863806009292603, -0.726182758808136, 1.0551340579986572, -0.6896792054176331, 0.3130922317504883, 0.583650529384613, 1.054901123046875, 0.3823809027671814, 0.6251134872436523, -0.21046683192253113, 0.5168602466583252, -0.15419772267341614, 0.7992408275604248, -0.9372182488441467, 0.3233707845211029, 0.07837605476379395, 0.7003768086433411, -0.18467479944229126, -0.8574315309524536, 0.1810426563024521, 0.14106392860412598, 0.17967253923416138, 0.14974017441272736, -0.538097620010376, 0.003968492150306702, -1.0442442893981934, 0.07645673304796219, -0.7822809815406799, 0.5335054993629456, 0.5649895071983337, 0.1949959546327591, 0.21518480777740479, -0.8745801448822021, 0.24186889827251434, -0.3158072829246521, -0.19988834857940674, -1.5646147727966309, 0.4099276065826416, 0.055862635374069214, 0.07226230949163437, 0.008263446390628815, -0.012203287333250046, -0.3232150375843048, -0.3658132255077362, 0.5891333222389221, -0.043957240879535675, 0.1906607449054718, -0.3405453562736511, -0.021664872765541077, -0.19962246716022491, 0.522045373916626, -0.14849354326725006, 0.6493517160415649, 0.18555252254009247, -0.041745878756046295, 0.23336458206176758, 0.7367485761642456, 0.1258356273174286, -0.15970775485038757, 0.06849177181720734, -0.3667747378349304, -0.14750772714614868, 0.3524816632270813, -0.4623980224132538, 0.10331731289625168, -1.0608673095703125, 0.3987184762954712, -0.3740411400794983, -0.12332481145858765, -0.2807720899581909, -0.10894890874624252, -0.9449329376220703, 0.5525245666503906, -0.17647866904735565, -0.3583083152770996, -0.13592664897441864, 0.032269664108753204, 1.0785949230194092, -0.5148482322692871, 0.046337105333805084, -0.13442452251911163, 0.471392959356308, 0.249004065990448, -0.2953958511352539, -0.5164885520935059, 0.25466442108154297, -0.08628947287797928, 0.36700016260147095, 0.37480834126472473, -0.011434853076934814, 0.2732871472835541, 0.6032310128211975, -0.12107802927494049, -0.758680522441864, 0.10931958258152008, 0.45585861802101135, 1.165837049484253, 0.289479523897171, 0.4599972367286682, -0.3958653211593628, -0.286621630191803, -0.03444854915142059, 0.746444046497345, 0.2818524241447449, -0.02602527290582657, 0.02249368280172348, -0.8440797924995422, -1.3482147455215454, 0.4757121503353119, 0.40560591220855713, 0.2443733662366867, 0.12425962835550308, -0.19966642558574677, -0.3582792580127716, -0.8916581273078918, -0.2685917019844055, 0.2743106484413147, -1.530684232711792, 0.2914908528327942, -0.12273760139942169, -0.29184842109680176, -0.4794827699661255, 0.24408575892448425, -0.6121482849121094, -0.7112696170806885, 0.24205903708934784, 0.02677224949002266, -0.5036734342575073, -0.038423795253038406, -0.09972048550844193, 0.12661133706569672, -0.43986913561820984, 0.20998327434062958, -0.0409339964389801, -0.27179720997810364, -0.30180197954177856, -0.7789440751075745, 0.37391799688339233, -0.660956621170044, -0.30675333738327026, 0.7707491517066956, -0.17228230834007263, 1.148480772972107, -1.1563471555709839, 0.33409181237220764, 1.6023917198181152, -0.08980903029441833, 0.5041192770004272, -0.6524104475975037, 0.5756418108940125, -0.06698822975158691, 0.8014258742332458, -0.2803402841091156, -0.1563975065946579, -0.03699420765042305, -0.7252956032752991, 0.29324108362197876, -0.3111454248428345, -0.18747533857822418, -0.5473559498786926, -0.16937723755836487, 0.927984893321991, 0.09221114218235016, 0.5313835144042969, 0.2783969044685364, -0.326937735080719, 1.0411112308502197, -0.9371777176856995, -0.6683191657066345, -0.3617418110370636, -0.2850065529346466, 0.14034301042556763, -0.14937850832939148, 0.5171055793762207, -0.7182697653770447, 1.4464998245239258, 0.74172443151474, 1.1262321472167969, -0.0266561396420002, -0.05899779498577118, 0.9233041405677795, -0.5492847561836243, -0.26973390579223633, -0.9180273413658142, -0.00461183488368988, 0.3954605758190155, 0.46687719225883484, -0.7391178011894226, -0.4409519135951996, -0.5693157315254211, 0.5049508810043335, -0.8129474520683289, -0.7595568299293518, 0.6550765037536621, -0.07564018666744232, 0.07688073813915253, 0.8837348818778992, -0.931315004825592, -0.2529076337814331, 0.21830612421035767, 0.2404167354106903, 0.7295244932174683, -0.56084805727005, 1.54055655002594, -0.5053965449333191, 0.10642850399017334, 0.35033512115478516, -0.27037715911865234, 0.5462594032287598, 1.1499111652374268, -0.6184948682785034, -0.23218730092048645, -0.6089056730270386, 0.6291671395301819, 0.399122029542923, 0.389525443315506, -0.0952509343624115, -0.03282322734594345, 0.17847242951393127, -1.1072170734405518, 0.3010714054107666, 1.0852400064468384, 0.25926855206489563, -0.2522810101509094, 0.9118240475654602, 0.8054728507995605, -0.8871918320655823, -0.6943761110305786, -0.2003423571586609, -0.5335627794265747, -0.06713230162858963, -0.17679375410079956, 0.3350153863430023, -0.2678684592247009, 0.9633687734603882, 0.39113956689834595, 0.5055870413780212, 1.2495349645614624, 0.1635875701904297, 0.0028715133666992188, 0.6104432940483093, 0.8194875717163086, 1.1831196546554565, 0.619334876537323, 0.5073668956756592, 0.6981328129768372, -0.948906421661377, -1.1015417575836182, -0.16628240048885345, 0.13427749276161194, 0.6880838871002197, -0.16685613989830017, 0.35087063908576965, 1.1313999891281128, 0.13439324498176575, 1.2195498943328857, -0.5553140044212341, 0.4798135757446289, 0.5209414958953857, -0.06275692582130432, 0.6507734656333923, 0.3284147381782532, 0.061221979558467865, 0.30194124579429626, 0.00030709803104400635, -0.4823053777217865, -0.23026791214942932, 0.38734933733940125, -0.29935216903686523, 0.009849941357970238, -0.6154658794403076, 0.4079436957836151, -0.8194592595100403, 1.4804179668426514, 0.9108468890190125, -0.09185948967933655, 0.01870792731642723, -0.1145254373550415, 0.9415158033370972, 0.0922187864780426, 0.15532071888446808, 0.0349029004573822, 0.25466424226760864, 0.10453417152166367, -0.10448150336742401, 0.45665162801742554, 0.36818727850914, 0.1741030216217041, 1.103898048400879, -0.08741725236177444, -0.15133880078792572, 0.1688425987958908, 0.6925927400588989, -0.4133317470550537, -0.9022693634033203, -0.7224277257919312, -0.22865965962409973, -0.738910436630249, -0.3351644277572632, 0.5895720720291138, 0.008158311247825623, -0.6929465532302856, -0.4635066092014313, -0.8471623063087463, 0.4297642707824707, -0.39166373014450073, -0.6420677304267883, -0.14527925848960876, 0.765543520450592, 0.31465044617652893, -0.007264632731676102, 0.4352210462093353, 0.3798476755619049, 0.21160297095775604, -0.26581400632858276, 0.2793917953968048, 0.41369161009788513, 0.9283950924873352, -0.1482856571674347, 0.3500993847846985, -1.0498383045196533, 0.3936024308204651, 0.4116009771823883, 0.875179648399353, -1.4964395761489868, 0.6420849561691284, -0.05892306566238403, -1.2025419473648071, 0.5572243928909302, 0.030317533761262894, -0.3833056688308716, -0.12228279560804367, -0.6508471965789795, -0.11161671578884125, 0.43731552362442017, 0.7887054085731506, -0.49642232060432434, 0.9607724547386169, 0.4978029131889343, -0.0035706032067537308, -0.12895432114601135, 0.234337717294693, -0.050053518265485764, -0.07878091186285019, -0.6006070971488953, -0.720693826675415, -0.5182105898857117, -0.797397255897522, -0.2588651180267334, 0.4759881794452667, -0.5734649896621704, -0.7808842658996582, -0.27603545784950256, -0.5559276342391968, -0.42008230090141296, -0.07085046172142029, 0.122277170419693, 0.3127481937408447, -0.11359195411205292, -1.0153295993804932, -0.9206824898719788, 0.23865504562854767, 0.07913121581077576, -0.5304495096206665, -0.26132193207740784, -0.5386911034584045, 0.13808155059814453, -0.5705161094665527, 0.10226351022720337, 0.3241673707962036, 0.0425834059715271, -0.06876933574676514], "9c03a722-9e11-431f-a445-106c1699e852": [0.14592686295509338, 0.3162703216075897, -0.6465492844581604, 0.07932328432798386, 0.7068042755126953, -0.003776783123612404, 0.5012713670730591, 0.18940550088882446, 0.00853777676820755, -1.0029442310333252, -0.40969955921173096, -0.144318625330925, -1.2364271879196167, 0.6646255254745483, 0.5057159662246704, 1.1100406646728516, 0.7631775736808777, -0.40668371319770813, 0.051874469965696335, 0.07192819565534592, -0.5232336521148682, -0.19862967729568481, -0.7055780291557312, 0.2913014590740204, 0.07542775571346283, 0.36911481618881226, -0.07333411276340485, 0.17013385891914368, -1.4580729007720947, -0.1727941632270813, 0.1434507817029953, -0.6286641955375671, 0.056368567049503326, -0.3693960905075073, -0.13408388197422028, 0.19052782654762268, -0.5449984073638916, -0.22694501280784607, -0.008972087875008583, -0.5690195560455322, -0.9792588949203491, -0.8045589327812195, -0.36171481013298035, 0.21643345057964325, -0.6398863792419434, 0.141773521900177, -0.8823748230934143, 0.4914330840110779, -0.7793979644775391, 0.007615804672241211, -1.1932268142700195, 0.30938297510147095, 0.010817665606737137, 0.08950851857662201, 0.419900119304657, 1.046011209487915, -0.5417136549949646, -1.062125563621521, -0.1620342880487442, -0.5903910398483276, 0.5076440572738647, -0.13699477910995483, 0.5926669239997864, 0.11422638595104218, 0.366911917924881, -0.46333053708076477, -0.4739289879798889, 1.0834548473358154, -0.936206042766571, -0.417585551738739, -0.01992449350655079, 0.4561328887939453, -0.06540244072675705, -0.3223150074481964, 0.3284265697002411, -0.39650148153305054, -0.5770821571350098, 0.6102403402328491, 0.9606675505638123, 0.7222983241081238, 0.1020767092704773, 0.6813454627990723, 0.337075799703598, 0.6461590528488159, -0.4745723009109497, -0.10704029351472855, -0.3543386161327362, 0.012342153117060661, -0.9957268238067627, 0.7954177260398865, -0.6694053411483765, -0.6139895915985107, 0.7354545593261719, 0.6460078954696655, 0.3785800039768219, -0.6431666612625122, 0.3353109061717987, 0.2460799515247345, 0.7135220170021057, 0.4895264804363251, -0.5737316012382507, -0.9601047039031982, 0.3150094151496887, 0.09174854308366776, -1.1915441751480103, -0.31187888979911804, -0.6095090508460999, -0.3899204134941101, 0.15102535486221313, 0.3318411707878113, -0.18940946459770203, -0.42334336042404175, -0.5216096043586731, -0.5109914541244507, -0.9029675126075745, 1.34274423122406, 0.5258170366287231, 0.586768627166748, -0.32389307022094727, 0.07175692170858383, 0.7596530914306641, 0.682935893535614, 0.4262317419052124, 1.3350892066955566, 0.6113848686218262, 0.9149291515350342, 0.16136200726032257, 0.44091230630874634, -0.6425540447235107, -0.9608620405197144, -0.319764107465744, 0.9208901524543762, -0.051638416945934296, -0.2049950361251831, -0.10020916908979416, 0.3066383898258209, -0.024928320199251175, 0.227446049451828, 0.26873087882995605, -0.40515410900115967, -0.34083640575408936, -0.27308154106140137, -0.1817748248577118, -0.08296146988868713, 0.48529043793678284, 0.16305354237556458, -0.6529951095581055, -0.9298400282859802, -0.06993129849433899, 0.8641318082809448, -0.10554429888725281, 0.3462965190410614, 0.9801486730575562, -0.5935965776443481, 0.06544434279203415, 1.066009283065796, 0.1942044347524643, 0.6508827209472656, -1.1163537502288818, 0.1627230942249298, 0.49326619505882263, 0.27595722675323486, -0.2775859534740448, 0.4248552918434143, -0.297369122505188, -0.031374767422676086, 0.4458414912223816, -0.031302936375141144, 0.08066500723361969, 0.2930362820625305, -0.450695663690567, -1.0637482404708862, 1.1062980890274048, -0.26098203659057617, -0.41052135825157166, 0.10278653353452682, 1.387550950050354, 0.1478699892759323, 0.2723471224308014, -0.12477131187915802, -1.3606749773025513, 1.0088880062103271, -0.2409897744655609, -0.4477657377719879, -0.23375225067138672, -0.4161257743835449, 1.5602015256881714, -0.04259534925222397, 0.22100789844989777, 0.2832892835140228, -1.0461418628692627, -1.2194347381591797, 0.26152193546295166, -0.21039985120296478, 1.266066312789917, -0.6326833963394165, -0.11910563707351685, 0.34168943762779236, 0.2856045067310333, 0.5914422273635864, -0.3656901717185974, 0.6965425610542297, 0.1030493751168251, -0.3056883215904236, -1.0353964567184448, 0.46602311730384827, 1.1260933876037598, -0.2712521255016327, 0.18261316418647766, 0.32956039905548096, -0.1123582199215889, -0.26722967624664307, 0.8387505412101746, -0.40055933594703674, 0.9907694458961487, 0.3792990744113922, 0.6919718980789185, -0.7421117424964905, 0.7200345396995544, -1.245365023612976, 0.22917556762695312, -0.48177215456962585, -1.0511674880981445, 0.31279510259628296, -0.2506423592567444, 1.0594818592071533, 1.2658792734146118, -0.42920932173728943, -0.093197301030159, 0.05890725553035736, 0.04968276619911194, -0.011615566909313202, 0.7058922052383423, 0.04173479974269867, -0.22541379928588867, -0.2870079278945923, 0.10945631563663483, -0.37454119324684143, 0.7899875640869141, -0.8413980603218079, 0.5999478101730347, 1.0303823947906494, -0.2748945355415344, 0.42144325375556946, 0.5150433778762817, -0.21129877865314484, 0.4412955045700073, -0.1923503577709198, -0.6595898866653442, 0.08762168884277344, -0.2875708043575287, -0.2770872116088867, 0.08092229068279266, -0.6034755110740662, 0.32491034269332886, -0.5679619908332825, -0.5648235082626343, 0.21631689369678497, 0.6160820722579956, 0.8256150484085083, -0.6189916729927063, 0.4095221757888794, 0.37968745827674866, -0.15230894088745117, -0.23866741359233856, -1.29629385471344, -0.6161573529243469, -0.03190615773200989, 0.47024062275886536, 0.452360063791275, 0.5581117868423462, 0.09682861715555191, -0.5599557161331177, -0.35933902859687805, 0.12008854746818542, -0.021143551915884018, 0.9867842793464661, 0.13104146718978882, 0.018374130129814148, -1.1045539379119873, -0.13384926319122314, 1.1380480527877808, -0.7877719402313232, -0.8966652750968933, -0.01657100021839142, -0.6678562760353088, 0.2565074563026428, -0.6339187622070312, -0.2298460602760315, 0.7161917090415955, 0.6223098635673523, 1.092535138130188, -0.7452408075332642, 0.4949583411216736, 1.0038948059082031, -0.13529492914676666, 0.40234604477882385, 0.5414739847183228, 0.29608896374702454, 0.1440994292497635, 0.26626139879226685, 0.3354196548461914, 0.26773133873939514, -0.42568325996398926, -0.07799557596445084, -0.316474586725235, -0.198896124958992, -0.7100715041160583, -4.1041579246521, 0.2122860848903656, -0.7519108653068542, -0.8179985880851746, 0.45956480503082275, 0.20790964365005493, 0.061519086360931396, -0.9922736883163452, -0.5990995168685913, -0.05460755527019501, -0.9949969053268433, -0.36592841148376465, 0.43480753898620605, 0.6283182501792908, 0.42175936698913574, 0.6298128962516785, -0.17940890789031982, 0.0009963884949684143, 0.18633076548576355, 0.37966710329055786, -0.07995602488517761, -0.9235185980796814, -0.43992525339126587, 0.022370051592588425, 0.17148253321647644, 0.14991649985313416, -0.8050386905670166, 0.679793655872345, -0.924004077911377, -0.5000934600830078, 0.15688952803611755, -0.5975621342658997, -0.4019240736961365, 0.06262791156768799, 0.2800154983997345, -0.7452245354652405, 0.4492192268371582, -0.2261594831943512, -0.2944778501987457, -0.6291801333427429, -0.3944932520389557, -0.8007989525794983, -0.22188791632652283, -0.6332280039787292, 1.1002197265625, -0.33842265605926514, -0.46047404408454895, -0.6607364416122437, -0.11326531320810318, 0.9481775760650635, -0.14291062951087952, 0.07842415571212769, -0.39603671431541443, 0.5057730674743652, -0.10816971957683563, -0.24961012601852417, 0.3465452492237091, 0.19173376262187958, -0.5225362181663513, 0.22165650129318237, 0.5154833793640137, -0.7894233465194702, -0.3807370066642761, -0.7206080555915833, 0.15005256235599518, -0.958717942237854, -0.7212123274803162, -0.846746563911438, 0.6255208849906921, 1.1402851343154907, -0.5947204232215881, 0.5117960572242737, -0.04744992032647133, -1.3887687921524048, 0.2744254469871521, -0.533702552318573, -0.3763127028942108, -0.3027248978614807, -0.2173563838005066, 0.7253676652908325, -0.5879069566726685, -0.42658519744873047, 0.5804259777069092, 0.21364274621009827, -0.297652930021286, -0.8510851860046387, 0.4272843897342682, -0.40813004970550537, -0.35239657759666443, -0.6223917603492737, 0.929374098777771, -0.9508708119392395, 0.3808111548423767, 0.37019655108451843, 0.6393657922744751, 0.5672939419746399, 0.49617356061935425, -0.42033785581588745, 0.572697639465332, 0.1805211305618286, 0.37157872319221497, -0.7498570680618286, 0.5391255617141724, -0.2947516441345215, 0.0008532479405403137, 0.07734370231628418, -0.6835623383522034, 0.053418684750795364, 0.3796045184135437, 0.2900058925151825, 0.48570504784584045, -0.41082993149757385, 0.06350207328796387, -0.7555330991744995, -0.25998204946517944, -0.654256284236908, 0.4709014296531677, 0.6399503946304321, 0.508644163608551, 0.4637865722179413, -0.6016939282417297, 0.3737892806529999, -0.9446702003479004, -0.1622181385755539, -1.597165584564209, 0.5302640199661255, 0.06283809244632721, 0.11002624034881592, 0.29922226071357727, 0.1334850788116455, -0.5540868639945984, -0.19358062744140625, 0.5888503193855286, -0.27129417657852173, 0.4875427782535553, -0.34029561281204224, -0.44141680002212524, -0.7720110416412354, 0.6653072237968445, -0.6534721255302429, 0.275026798248291, 0.5551702380180359, 0.6404698491096497, 0.3126346468925476, 0.7462126612663269, 0.37068885564804077, -0.5637247562408447, 0.22382846474647522, -0.317952036857605, -0.2766146957874298, 0.015920935198664665, -0.209445983171463, 0.5045979022979736, -1.1423907279968262, -0.13468317687511444, -0.4897693991661072, 0.5419486165046692, 0.3371216952800751, -0.014503926038742065, -0.8055277466773987, -0.01912858709692955, -0.8523913621902466, -0.4467875361442566, 0.14994552731513977, -0.003314003348350525, 1.4699281454086304, -0.1737985610961914, -0.13061091303825378, -0.32319727540016174, 0.24310612678527832, 0.3049454391002655, 0.386290967464447, -0.9954789876937866, 0.07025113701820374, -0.35972777009010315, 0.6384869813919067, 0.09841641783714294, 0.0033814869821071625, 0.33508843183517456, 0.45224282145500183, -0.27861231565475464, -0.2640545666217804, 0.37847408652305603, 0.07575772702693939, 0.7167808413505554, 0.047861337661743164, 0.008340470492839813, -0.6792198419570923, -0.20711812376976013, 0.01982273906469345, 0.4714841842651367, 0.15640416741371155, -0.35126203298568726, 0.2598365247249603, -0.6780055165290833, -1.2669956684112549, 0.06241195648908615, 0.6085623502731323, 0.42847931385040283, 0.21657440066337585, -0.49146437644958496, -0.20323233306407928, -0.3753325641155243, 0.29764342308044434, 0.3196035921573639, -1.347619652748108, 0.11901859194040298, -0.049129750579595566, -0.17730163037776947, 0.11588632315397263, 0.20814606547355652, -0.8987300992012024, -1.159970998764038, 0.035352833569049835, -0.29091310501098633, -0.6176798343658447, 0.0737665593624115, -0.058308862149715424, 0.14830619096755981, -0.6020150184631348, 0.5519193410873413, -0.036417655646800995, 0.11412784457206726, -0.42049312591552734, -0.7592127323150635, 0.555425763130188, -0.10705454647541046, -0.056282058358192444, 0.4698409140110016, 0.2269076406955719, 0.6943966150283813, -0.2551310658454895, 0.2700021266937256, 1.303191900253296, -0.06732936203479767, 0.3496367931365967, -0.44318535923957825, 0.49063727259635925, -0.5328754186630249, 0.6008715629577637, 0.008896825835108757, 0.13528895378112793, -0.04150780290365219, -0.7792918682098389, 0.3148229420185089, 0.09917839616537094, -0.5837625861167908, -0.5020804405212402, -0.10075865685939789, 1.0010572671890259, 0.34471896290779114, 0.8979002833366394, -0.18177422881126404, -0.2889770269393921, 0.9814346432685852, -0.36064624786376953, -0.8136644959449768, 0.034109123051166534, -0.7471686601638794, 0.33682191371917725, 0.6291776895523071, 0.46249377727508545, -0.8592755794525146, 0.9183785915374756, 0.7545189261436462, 0.871671736240387, -0.1816834807395935, -0.7658639550209045, 0.7809919118881226, -0.6454529762268066, -0.14709144830703735, -1.14531672000885, -0.3050241768360138, -0.01073632761836052, 0.23210512101650238, -0.7108724117279053, -0.23164775967597961, -0.26732510328292847, 0.7895036935806274, -0.8448095917701721, -0.935357928276062, 0.7324525713920593, -0.1891910284757614, 0.5062869191169739, 0.5676493644714355, -0.8450383543968201, -0.27520716190338135, 0.34639111161231995, -0.16608022153377533, 0.21082362532615662, -0.2110074758529663, 1.3208963871002197, -0.7773520350456238, -0.004293195903301239, 0.055670127272605896, -0.2892845571041107, 1.2153514623641968, 1.1139602661132812, -0.5233721733093262, -0.15527814626693726, -0.6656452417373657, 0.9034589529037476, 0.2997981309890747, 0.5430130958557129, -0.29237622022628784, 0.2263498455286026, 0.26666030287742615, -1.1694083213806152, -0.002739228308200836, 0.6361657977104187, 0.49531009793281555, -0.4306986331939697, 0.6085519790649414, 0.6668962240219116, -0.6214765310287476, -0.8900143504142761, 0.10102856159210205, -0.4463239908218384, -0.17853474617004395, -0.11510376632213593, 0.15961259603500366, 0.15852460265159607, 1.024384617805481, 0.42842596769332886, 0.1713811457157135, 1.256499171257019, 0.03785592317581177, 0.23903726041316986, 0.8650422096252441, 0.9597213268280029, 1.283531904220581, 0.024625778198242188, 0.26868173480033875, 0.9747636318206787, -1.0351803302764893, -0.5507989525794983, 0.3319993317127228, 0.2728404700756073, 0.4471924304962158, -0.12172208726406097, -0.26824432611465454, 1.0091402530670166, 0.6309600472450256, 1.7833830118179321, -0.22391456365585327, 0.4379116892814636, -0.16417095065116882, -0.3863891065120697, 0.6361036896705627, 0.49281054735183716, 0.03043936938047409, 0.6789494752883911, -0.16850769519805908, -0.3264785408973694, -0.04976796358823776, 0.6693320274353027, 0.15533801913261414, 0.0009772125631570816, -0.7146294713020325, 0.3458873927593231, -0.1672009974718094, 1.0666207075119019, 0.9232820272445679, -0.1630779504776001, 0.0043336451053619385, -0.09165017306804657, 0.6483557224273682, -0.33586716651916504, 0.33281373977661133, -0.28293076157569885, -0.09465044736862183, 0.3773428201675415, -1.0487539768218994, -0.07742932438850403, -0.027982275933027267, 0.23709163069725037, 1.1540393829345703, -0.058166343718767166, -0.002673784736543894, 0.04477973282337189, 0.655955970287323, -0.28699958324432373, -1.1443718671798706, -0.9756416082382202, 0.0824592262506485, -1.1436091661453247, -0.3021889925003052, 0.4886806905269623, -0.04740341752767563, -0.8161581158638, -0.6031882762908936, -0.5618406534194946, 0.2806612551212311, -0.4550361633300781, -0.3585335612297058, -0.3241298496723175, 0.9183110594749451, 0.42653536796569824, 0.062171436846256256, 0.5282273888587952, 0.6797077655792236, -0.04589763656258583, -0.30813246965408325, 0.2183568775653839, -0.004511341452598572, 1.1431204080581665, -0.4213302731513977, 0.3903392553329468, -1.3477450609207153, 0.7034028768539429, 0.8675512075424194, 1.2262663841247559, -1.305661678314209, 0.7270989418029785, 0.08743821084499359, -0.9015564918518066, 0.710923433303833, 0.16856242716312408, -0.03168422728776932, -0.33012133836746216, -0.35979706048965454, -0.417740136384964, 0.2518188953399658, 0.772188127040863, -0.5539603233337402, 0.8513759970664978, 0.690948486328125, 0.2678646445274353, -0.9732914566993713, 0.1498938798904419, -0.17707517743110657, 0.32113561034202576, -0.4332827031612396, 0.14304721355438232, -0.5916715264320374, -1.1452271938323975, -0.3612861931324005, 0.49444735050201416, -0.24588724970817566, -1.2122631072998047, -0.37842756509780884, -1.0018393993377686, -0.21067151427268982, 0.2661139667034149, -0.46955493092536926, 0.06669974327087402, -0.13178743422031403, -0.9380423426628113, -0.9386947751045227, 0.30561378598213196, 0.25368326902389526, -0.3892573118209839, -0.45747891068458557, -0.6720740795135498, 0.05492726340889931, -0.7544113397598267, -0.06084468960762024, 0.7597541809082031, -0.05837343633174896, 0.5332232713699341]}, "text_id_to_ref_doc_id": {"ed55ac15-ce09-44f2-8794-eb6f30ad4102": "4d3efd15-341c-4b29-afa7-7953188d2938", "37d71d91-c9f9-4466-b919-a2d3f4eaff84": "4d3efd15-341c-4b29-afa7-7953188d2938", "7606d974-a75a-40e4-b749-ceee37dbf1b5": "4d3efd15-341c-4b29-afa7-7953188d2938", "0ecd70b0-69e8-4c8d-bbde-4018da0126cb": "4d3efd15-341c-4b29-afa7-7953188d2938", "f4bd15e2-598d-4e37-ae15-6e03a9f08398": "6113854b-aea9-4310-bc89-6bf385c91deb", "fb970878-52f4-4123-af7f-ef6a948abf39": "6113854b-aea9-4310-bc89-6bf385c91deb", "051bf54d-d207-473e-a13b-3a0977d00377": "6113854b-aea9-4310-bc89-6bf385c91deb", "fbf04091-9814-4c59-a2af-59cf4442e28a": "6113854b-aea9-4310-bc89-6bf385c91deb", "9a424f32-a874-4f8e-ab1c-991d3a9dbe49": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "897ceee3-7af9-4300-a996-7069853dd3fe": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "c97f0f09-c85c-495b-a3a0-2edb8958a18c": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "b42d48c1-08ff-42a5-bdb4-9dd6f364a027": "43aa67f4-1213-4cfd-87bf-82baa0a7a21a", "a4892a1f-2218-4bfe-b691-4162b1d4bf80": "6dd66f92-57c2-4089-9f14-5d673d36d762", "e043659e-e9a0-4c87-8095-875bfdf7221a": "6dd66f92-57c2-4089-9f14-5d673d36d762", "122d9186-a52b-4223-b806-d42a8563c93e": "6dd66f92-57c2-4089-9f14-5d673d36d762", "9030c3b5-ba90-48a4-99dd-08c955bacadd": "6dd66f92-57c2-4089-9f14-5d673d36d762", "f60a00a0-3ba2-46c7-8cad-cd05df08c6af": "35f742cf-4dde-4ace-9e1e-d3074523760f", "032f4ec0-4f4e-4f3a-9bdd-36d1fb4a3c17": "35f742cf-4dde-4ace-9e1e-d3074523760f", "edd49718-78ae-4333-94e6-2ffda9a60166": "35f742cf-4dde-4ace-9e1e-d3074523760f", "c907930f-94ca-477b-9bea-a98af3354b65": "35f742cf-4dde-4ace-9e1e-d3074523760f", "a2fa9582-e7af-4d7d-a913-d43ec2bc1eeb": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "bf039726-614d-4d53-b16f-d119e7b18ae7": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "bcc6f32f-9b05-4747-bcff-29b82efce87d": "04e52538-f44c-4f5d-bbd5-41ae6bbd6372", "51c9d9e2-4889-4b34-84c8-76cc71f93b3f": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "6a5c70d2-97d7-4b6b-8cb3-f58187568bda": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "25316757-07dd-4e6d-9f0f-6f96b9cf63e2": "6920088c-2a84-4cbe-ad70-13f1be8704fb", "61b30575-d871-460a-af27-cd41e98c2909": "694198a8-926a-4f24-b121-897dd6ebd176", "27dbd541-35f6-4db6-954f-78e6bd9c7f78": "694198a8-926a-4f24-b121-897dd6ebd176", "2eb6f6ed-93f1-4d5a-bc86-a1cae2532af9": "694198a8-926a-4f24-b121-897dd6ebd176", "2a5b69df-3782-4a44-8674-fcc4a9fee8c4": "694198a8-926a-4f24-b121-897dd6ebd176", "6c12ef17-17b3-47f6-87b8-c92e1391bfb7": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "e4737417-44d7-46eb-b775-58b673b79554": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "d8f3c932-6c3a-4538-9bd2-192933dc2055": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "4baab847-43bf-4430-a9bf-05f0c12d9b4d": "b24612df-85d4-4dfc-b6c9-84f0cb367ee5", "a99d060e-119d-49e2-8d50-3781092ad15c": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "78a64c63-ffca-43dc-82f0-566a375395c6": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "5171b641-9ca6-48a0-bde6-d47d021f3c54": "8d3af97a-f70d-46ff-af7e-3eeb86d210a3", "8316e5ec-9820-47ce-9a03-0a5902c9bd70": "d4bec885-2ac4-4e51-b783-7835e4181f96", "5e8bf41b-f072-4f1e-a2c9-367cee63d816": "d4bec885-2ac4-4e51-b783-7835e4181f96", "a1c28ad7-78bf-4afb-b187-ab49cae10939": "d4bec885-2ac4-4e51-b783-7835e4181f96", "26bbaf3d-a5b3-4759-a25d-b7df0f43ef27": "26782402-9635-482e-b626-75e58b3de6af", "f2850e09-1c16-403b-93dd-9b73f989a8f5": "26782402-9635-482e-b626-75e58b3de6af", "17a940a6-e716-499c-9d83-542c33d3f97c": "26782402-9635-482e-b626-75e58b3de6af", "05d0a4b8-9787-412e-9ab8-92bdcec12d1e": "25b2aa80-5f4e-4746-b48d-42097f230452", "a066a9ec-d70b-45c3-9f1a-445c9a86aede": "25b2aa80-5f4e-4746-b48d-42097f230452", "7436654d-25ea-4058-9623-c981db612e37": "25b2aa80-5f4e-4746-b48d-42097f230452", "4387dad2-8b75-46de-bc1b-3ff7936eb37a": "aae303c7-88a8-425a-baa2-775741a5e48a", "2cc83fb2-2ea4-4cfb-a584-867fa8eb3c71": "aae303c7-88a8-425a-baa2-775741a5e48a", "a7c88a07-1068-4305-aa31-ce7d2ece27ab": "aae303c7-88a8-425a-baa2-775741a5e48a", "a600037b-6be1-416c-be05-c752abf38ffe": "aae303c7-88a8-425a-baa2-775741a5e48a", "8e83a6bb-1b59-4597-8b68-0af905679267": "413527a2-71f2-466f-b6c7-4b480c41b702", "469c53f1-d0e2-40b2-8f54-f84a22474d93": "413527a2-71f2-466f-b6c7-4b480c41b702", "5c7983b9-f801-4a20-9ddc-321df1a15374": "413527a2-71f2-466f-b6c7-4b480c41b702", "a7e3546c-e36e-4229-a275-24b1eba8a3fd": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "e3d798c1-4d01-4fd8-9725-59dcc73c5320": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "3b581203-bfa0-4565-9929-ea9e4a9b68a1": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "26022177-817a-4eb3-895a-71b8837d4ebd": "426429e8-7a33-4b53-a9f5-e586e1f65f2c", "f15cb451-d8da-4e4f-afcc-7c195357c7a2": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "06e1128d-3441-4bd0-81ff-61e6be9a7404": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "99f90aec-e539-408d-b6c4-0f026081ffd5": "eb266488-e2e8-4a42-b4c9-c72a9cafe32f", "9c03a722-9e11-431f-a445-106c1699e852": "b6260184-53e4-4db7-b4a2-3259dde76196"}} \ No newline at end of file diff --git a/llama_docs_bot/components.py b/llama_docs_bot/components.py index 9f1de772a800efd7bc04a9d687532c28766c7030..68b5248d5e8e1959a9a07164cd70ba7ab05aa051 100644 --- a/llama_docs_bot/components.py +++ b/llama_docs_bot/components.py @@ -1,19 +1,13 @@ from typing import Callable, Optional -from llama_index.bridge.pydantic import PrivateAttr -from llama_index.indices.postprocessor.types import BaseNodePostprocessor from llama_index.utils import globals_helper from llama_index.schema import MetadataMode -class LimitRetrievedNodesLength(BaseNodePostprocessor): - limit: int = 3000 - _tokenizer: Callable = PrivateAttr() +class LimitRetrievedNodesLength: def __init__(self, limit: int = 3000, tokenizer: Optional[Callable] = None): self._tokenizer = tokenizer or globals_helper.tokenizer - super().__init__( - limit=limit, - ) + self.limit = limit def postprocess_nodes(self, nodes, query_bundle): included_nodes = []