From 18478a8b02a286fb92bddc0358e17b120a5f88e7 Mon Sep 17 00:00:00 2001 From: m-nash <64171366+m-nash@users.noreply.github.com> Date: Wed, 25 Jan 2023 13:26:39 -0800 Subject: [PATCH] Initial checkin for openai (#33457) * initial wip * update to new location * Add netframework 4.7 to platforms in Inference, add test for client creation and simple completion * add example test secrets file * updated secrets instructions * Remove custom code for CompletionsRequest, update test * fix an edge case around calculating resourcetype from resourceid * Don't use CSharp package, remove VersionOverrides * update test case to use testframework patterns * drop net7 from frameworks and add api file * remove shared source since the temp authoring client isn't needed * remove unused fields * remove old file * add template changelog and readme * create real snippet example * remove python reference * Add hero scenario sample with updated README * Add service description to README * Pull in latest generated Embeddings classes from https://github.com/Azure/azure-sdk-for-net/blob/feature/codegened-AOAIinference-models, add embeddings test with associated deployment model variables * Update OpenAIInferenceTests.cs Make default test run mode Recorded * Added sample and updated test to use DefaultAzureCredential authentication path as well * update to latest spec * update to point at main feature branch * update ci.yml based on comments * update spelling * update link * update api * remove samples link until we have them written * revert uneeded change * added examples header back into readme * rename package to Azure.AI.OpenAI * update ci triggers * update api fle * fix embedding recordings * update cadl location to latest feature/cognitiveservices/openai-cadl sha Co-authored-by: Glenn Harper Co-authored-by: Glenn Harper <64209257+glharper@users.noreply.github.com> --- .gitignore | 2 +- .vscode/cspell.json | 8 + eng/Packages.Data.props | 1 + .../Azure.AI.OpenAI/Azure.AI.OpenAI.sln | 41 + sdk/openai/Azure.AI.OpenAI/CHANGELOG.md | 11 + .../Azure.AI.OpenAI/Directory.Build.props | 6 + sdk/openai/Azure.AI.OpenAI/README.md | 159 + .../api/Azure.AI.OpenAI.netstandard2.0.cs | 98 + .../src/Azure.AI.OpenAI.csproj | 25 + .../src/Custom/Models/Choice.Serialization.cs | 69 + .../src/Generated/Docs/OpenAIClient.xml | 383 + .../Generated/Models/Choice.Serialization.cs | 17 + .../src/Generated/Models/Choice.cs | 40 + .../Models/Completion.Serialization.cs | 78 + .../src/Generated/Models/Completion.cs | 55 + .../CompletionsLogProbsModel.Serialization.cs | 102 + .../Models/CompletionsLogProbsModel.cs | 48 + .../CompletionsRequest.Serialization.cs | 207 + .../Generated/Models/CompletionsRequest.cs | 59 + .../Models/EmbeddingItem.Serialization.cs | 56 + .../src/Generated/Models/EmbeddingItem.cs | 51 + .../Models/Embeddings.Serialization.cs | 50 + .../src/Generated/Models/Embeddings.cs | 45 + .../Models/EmbeddingsRequest.Serialization.cs | 46 + .../src/Generated/Models/EmbeddingsRequest.cs | 35 + .../src/Generated/OpenAIClient.cs | 333 + .../src/Generated/OpenAIClientOptions.cs | 37 + .../src/Properties/AssemblyInfo.cs | 4 + .../Azure.AI.OpenAI/src/cadl-location.yaml | 5 + .../tests/Azure.AI.OpenAI.Tests.csproj | 28 + .../tests/OpenAIInferenceTests.cs | 58 + .../Azure.AI.OpenAI/tests/OpenAITestBase.cs | 146 + .../tests/OpenAITestEnvironment.cs | 11 + .../Azure.AI.OpenAI/tests/Samples/Readme.cs | 33 + .../tests/Samples/Sample01_Chatbot.cs | 44 + .../Samples/Sample02_ChatbotWithToken.cs | 43 + .../OpenAIInferenceTests/CompletionTest.json | 74 + .../CompletionTestAsync.json | 74 + .../OpenAIInferenceTests/EmbeddingTest.json | 12347 ++++++++++++++++ .../EmbeddingTestAsync.json | 12347 ++++++++++++++++ .../OpenAIInferenceTests/InstanceTest.json | 10 + .../InstanceTestAsync.json | 10 + sdk/openai/ci.yml | 35 + sdk/openai/tests.yml | 7 + 44 files changed, 27337 insertions(+), 1 deletion(-) create mode 100644 sdk/openai/Azure.AI.OpenAI/Azure.AI.OpenAI.sln create mode 100644 sdk/openai/Azure.AI.OpenAI/CHANGELOG.md create mode 100644 sdk/openai/Azure.AI.OpenAI/Directory.Build.props create mode 100644 sdk/openai/Azure.AI.OpenAI/README.md create mode 100644 sdk/openai/Azure.AI.OpenAI/api/Azure.AI.OpenAI.netstandard2.0.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Azure.AI.OpenAI.csproj create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Custom/Models/Choice.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Docs/OpenAIClient.xml create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.Serialization.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClient.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClientOptions.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/Properties/AssemblyInfo.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/src/cadl-location.yaml create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/Azure.AI.OpenAI.Tests.csproj create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/OpenAIInferenceTests.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/OpenAITestBase.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/OpenAITestEnvironment.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/Samples/Readme.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample01_Chatbot.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample02_ChatbotWithToken.cs create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTest.json create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTestAsync.json create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTest.json create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTestAsync.json create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTest.json create mode 100644 sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTestAsync.json create mode 100644 sdk/openai/ci.yml create mode 100644 sdk/openai/tests.yml diff --git a/.gitignore b/.gitignore index 3f16cfb325ff..6d3b9dd76a2b 100644 --- a/.gitignore +++ b/.gitignore @@ -175,4 +175,4 @@ artifacts .assets # Temporary cadl folders for cadl generation -TempCadlFiles/ \ No newline at end of file +TempCadlFiles/ diff --git a/.vscode/cspell.json b/.vscode/cspell.json index fb8dc00aa49c..6c1895aca473 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -987,6 +987,14 @@ "Ackable", "awps" ] + }, + { + "filename": "**/sdk/openai/**/*.cs", + "words": [ + "Probs", + "Logprobs", + "Logit" + ] } ], "allowCompoundWords": true diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index a0ea664fb809..8666d50fed2e 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -185,6 +185,7 @@ + diff --git a/sdk/openai/Azure.AI.OpenAI/Azure.AI.OpenAI.sln b/sdk/openai/Azure.AI.OpenAI/Azure.AI.OpenAI.sln new file mode 100644 index 000000000000..8c6b8f13a461 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/Azure.AI.OpenAI.sln @@ -0,0 +1,41 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29806.167 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.AI.OpenAI", "src\Azure.AI.OpenAI.csproj", "{E33D09D9-D809-472C-82E6-6A26BDB86FC2}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.AI.OpenAI.Tests", "tests\Azure.AI.OpenAI.Tests.csproj", "{4F476D56-DDE7-43D3-8CB4-BA1E77F5A300}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{439F1494-8E96-4931-AB0A-5BBA7EBA15D2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E33D09D9-D809-472C-82E6-6A26BDB86FC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E33D09D9-D809-472C-82E6-6A26BDB86FC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E33D09D9-D809-472C-82E6-6A26BDB86FC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E33D09D9-D809-472C-82E6-6A26BDB86FC2}.Release|Any CPU.Build.0 = Release|Any CPU + {4F476D56-DDE7-43D3-8CB4-BA1E77F5A300}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4F476D56-DDE7-43D3-8CB4-BA1E77F5A300}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4F476D56-DDE7-43D3-8CB4-BA1E77F5A300}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4F476D56-DDE7-43D3-8CB4-BA1E77F5A300}.Release|Any CPU.Build.0 = Release|Any CPU + {439F1494-8E96-4931-AB0A-5BBA7EBA15D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {439F1494-8E96-4931-AB0A-5BBA7EBA15D2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {439F1494-8E96-4931-AB0A-5BBA7EBA15D2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {439F1494-8E96-4931-AB0A-5BBA7EBA15D2}.Release|Any CPU.Build.0 = Release|Any CPU + {71C00248-3DEE-4C44-A2BB-4CCAF994DB32}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {71C00248-3DEE-4C44-A2BB-4CCAF994DB32}.Debug|Any CPU.Build.0 = Debug|Any CPU + {71C00248-3DEE-4C44-A2BB-4CCAF994DB32}.Release|Any CPU.ActiveCfg = Release|Any CPU + {71C00248-3DEE-4C44-A2BB-4CCAF994DB32}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A97F4B90-2591-4689-B1F8-5F21FE6D6CAE} + EndGlobalSection +EndGlobal diff --git a/sdk/openai/Azure.AI.OpenAI/CHANGELOG.md b/sdk/openai/Azure.AI.OpenAI/CHANGELOG.md new file mode 100644 index 000000000000..13dd08af78ab --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/CHANGELOG.md @@ -0,0 +1,11 @@ +# Release History + +## 1.0.0-beta.1 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes diff --git a/sdk/openai/Azure.AI.OpenAI/Directory.Build.props b/sdk/openai/Azure.AI.OpenAI/Directory.Build.props new file mode 100644 index 000000000000..1a9611bd4924 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/Directory.Build.props @@ -0,0 +1,6 @@ + + + + diff --git a/sdk/openai/Azure.AI.OpenAI/README.md b/sdk/openai/Azure.AI.OpenAI/README.md new file mode 100644 index 000000000000..700783644429 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/README.md @@ -0,0 +1,159 @@ +# Azure OpenAI client library for .NET + +Azure OpenAI is a managed service that allows developers to deploy, tune, and generate content from OpenAI models on Azure resouces. + +Use the client library for to: + +* [Get secret](https://docs.microsoft.com/azure) + +[Source code][source_root] | [Package (NuGet)][package] | [API reference documentation][reference_docs] | [Product documentation][azconfig_docs] | [Samples][source_samples] + + [Source code](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/openai/Azure.AI.OpenAI/src) | [Package (NuGet)](https://www.nuget.org/packages) | [API reference documentation](https://azure.github.io/azure-sdk-for-net) | [Product documentation](https://docs.microsoft.com/azure) + +## Getting started + +This section should include everything a developer needs to do to install and create their first client connection *very quickly*. + +### Install the package + +First, provide instruction for obtaining and installing the package or library. This section might include only a single line of code, like `dotnet add package package-name`, but should enable a developer to successfully install the package from NuGet, npm, or even cloning a GitHub repository. + +Install the client library for .NET with [NuGet](https://www.nuget.org/ ): + +```dotnetcli +dotnet add package Azure.AI.OpenAI --prerelease +``` + +### Prerequisites + +Include a section after the install command that details any requirements that must be satisfied before a developer can [authenticate](#authenticate-the-client) and test all of the snippets in the [Examples](#examples) section. For example, for Cosmos DB: + +> You must have an [Azure subscription](https://azure.microsoft.com/free/dotnet/) and [Cosmos DB account](https://docs.microsoft.com/azure/cosmos-db/account-overview) (SQL API). In order to take advantage of the C# 8.0 syntax, it is recommended that you compile using the [.NET Core SDK](https://dotnet.microsoft.com/download) 3.0 or higher with a [language version](https://docs.microsoft.com/dotnet/csharp/language-reference/configure-language-version#override-a-default) of `latest`. It is also possible to compile with the .NET Core SDK 2.1.x using a language version of `preview`. + +### Authenticate the client + +If your library requires authentication for use, such as for Azure services, include instructions and example code needed for initializing and authenticating. + +For example, include details on obtaining an account key and endpoint URI, setting environment variables for each, and initializing the client object. + +## Key concepts + +The *Key concepts* section should describe the functionality of the main classes. Point out the most important and useful classes in the package (with links to their reference pages) and explain how those classes work together. Feel free to use bulleted lists, tables, code blocks, or even diagrams for clarity. + +Include the *Thread safety* and *Additional concepts* sections below at the end of your *Key concepts* section. You may remove or add links depending on what your library makes use of: + +### Thread safety + +We guarantee that all client instance methods are thread-safe and independent of each other ([guideline](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-service-methods-thread-safety)). This ensures that the recommendation of reusing client instances is always safe, even across threads. + +### Additional concepts + +[Client options](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) | +[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) | +[Long-running operations](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#consuming-long-running-operations-using-operationt) | +[Handling failures](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#reporting-errors-requestfailedexception) | +[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/Diagnostics.md) | +[Mocking](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/README.md#mocking) | +[Client lifetime](https://devblogs.microsoft.com/azure-sdk/lifetime-management-and-thread-safety-guarantees-of-azure-sdk-net-clients/) + + +## Examples + +You can familiarize yourself with different APIs using Samples. + +### Get secret + +The `GetSecret` method retrieves a secret from the service. + +```C# Snippet:Azure_OpenAI_GetSecret +string endpoint = "http://myaccount.openai.azure.com/"; +string key = "myKey"; + +OpenAIClient client = new OpenAIClient(new Uri(endpoint), new AzureKeyCredential(key)); +CompletionsRequest completionsRequest = new CompletionsRequest(); +completionsRequest.Prompt.Add("Hello world"); +completionsRequest.Prompt.Add("running over the same old ground"); +Completion response = client.Completions("myModelDeployment", completionsRequest); + +foreach (Choice choice in response.Choices) +{ + Console.WriteLine(choice.Text); +} +``` + +### Generate Chatbot Responses + +The `GenerateChatbotResponses` method gives an example of generating text responses to input prompts. + +```C# Snippet:GenerateChatbotResponses +List examplePrompts = new(){ + "How are you today?", + "What is Azure OpenAI?", + "Why do children love dinosaurs?", + "Generate a proof of Euler's identity", + "Describe in single words only the good things that come into your mind about your mother.", +}; + +foreach (var prompt in examplePrompts) +{ + Console.Write($"Input: {prompt}"); + var request = new CompletionsRequest(); + request.Prompt.Add(prompt); + + Completion completion = client.Completions("myModelDeployment", request); + var response = completion.Choices[0].Text; + Console.WriteLine($"Chatbot: {response}"); +} +``` + +### Generate Chatbot Responses With Token + +The `GenerateChatbotResponsesWithToken` method authenticates using a DefaultAzureCredential, then generates text responses to input prompts. + +```C# Snippet:GenerateChatbotResponsesWithToken +string endpoint = "http://myaccount.openai.azure.com/"; +OpenAIClient client = new OpenAIClient(new Uri(endpoint), new DefaultAzureCredential()); + +List examplePrompts = new(){ + "How are you today?", + "What is Azure OpenAI?", + "Why do children love dinosaurs?", + "Generate a proof of Euler's identity", + "Describe in single words only the good things that come into your mind about your mother.", +}; + +foreach (var prompt in examplePrompts) +{ + Console.Write($"Input: {prompt}"); + var request = new CompletionsRequest(); + request.Prompt.Add(prompt); + + Completion completion = client.Completions("myModelDeployment", request); + var response = completion.Choices[0].Text; + Console.WriteLine($"Chatbot: {response}"); +} +``` + +## Troubleshooting + +Describe common errors and exceptions, how to "unpack" them if necessary, and include guidance for graceful handling and recovery. + +Provide information to help developers avoid throttling or other service-enforced errors they might encounter. For example, provide guidance and examples for using retry or connection policies in the API. + +If the package or a related package supports it, include tips for logging or enabling instrumentation to help them debug their code. + +## Next steps + +* Provide a link to additional code examples, ideally to those sitting alongside the README in the package's `/samples` directory. +* If appropriate, point users to other packages that might be useful. +* If you think there's a good chance that developers might stumble across your package in error (because they're searching for specific functionality and mistakenly think the package provides that functionality), point them to the packages they might be looking for. + +## Contributing + +This is a template, but your SDK readme should include details on how to contribute code to the repo/package. + + +[style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization +[style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide + +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-net/sdk/openai/Azure.AI.OpenAI/README.png) diff --git a/sdk/openai/Azure.AI.OpenAI/api/Azure.AI.OpenAI.netstandard2.0.cs b/sdk/openai/Azure.AI.OpenAI/api/Azure.AI.OpenAI.netstandard2.0.cs new file mode 100644 index 000000000000..015614060c50 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/api/Azure.AI.OpenAI.netstandard2.0.cs @@ -0,0 +1,98 @@ +namespace Azure.AI.OpenAI +{ + public partial class OpenAIClient + { + protected OpenAIClient() { } + public OpenAIClient(System.Uri endpoint, Azure.AzureKeyCredential credential) { } + public OpenAIClient(System.Uri endpoint, Azure.AzureKeyCredential credential, Azure.AI.OpenAI.OpenAIClientOptions options) { } + public OpenAIClient(System.Uri endpoint, Azure.Core.TokenCredential credential) { } + public OpenAIClient(System.Uri endpoint, Azure.Core.TokenCredential credential, Azure.AI.OpenAI.OpenAIClientOptions options) { } + public virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } + public virtual Azure.Response Completions(string deploymentId, Azure.AI.OpenAI.Models.CompletionsRequest completionsRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Completions(string deploymentId, Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; } + public virtual System.Threading.Tasks.Task> CompletionsAsync(string deploymentId, Azure.AI.OpenAI.Models.CompletionsRequest completionsRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task CompletionsAsync(string deploymentId, Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; } + public virtual Azure.Response Embeddings(string deploymentId, Azure.AI.OpenAI.Models.EmbeddingsRequest embeddingsRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Embeddings(string deploymentId, Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; } + public virtual System.Threading.Tasks.Task> EmbeddingsAsync(string deploymentId, Azure.AI.OpenAI.Models.EmbeddingsRequest embeddingsRequest, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task EmbeddingsAsync(string deploymentId, Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; } + } + public partial class OpenAIClientOptions : Azure.Core.ClientOptions + { + public OpenAIClientOptions(Azure.AI.OpenAI.OpenAIClientOptions.ServiceVersion version = Azure.AI.OpenAI.OpenAIClientOptions.ServiceVersion.V2022_06_01_Preview) { } + public enum ServiceVersion + { + V2022_06_01_Preview = 1, + } + } +} +namespace Azure.AI.OpenAI.Models +{ + public partial class Choice + { + internal Choice() { } + public string FinishReason { get { throw null; } } + public int? Index { get { throw null; } } + public Azure.AI.OpenAI.Models.CompletionsLogProbsModel Logprobs { get { throw null; } } + public string Text { get { throw null; } } + } + public partial class Completion + { + internal Completion() { } + public System.Collections.Generic.IReadOnlyList Choices { get { throw null; } } + public int? Created { get { throw null; } } + public string Id { get { throw null; } } + public string Model { get { throw null; } } + public string Object { get { throw null; } } + } + public partial class CompletionsLogProbsModel + { + internal CompletionsLogProbsModel() { } + public System.Collections.Generic.IReadOnlyList TextOffset { get { throw null; } } + public System.Collections.Generic.IReadOnlyList TokenLogprobs { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Tokens { get { throw null; } } + public System.Collections.Generic.IReadOnlyList> TopLogprobs { get { throw null; } } + } + public partial class CompletionsRequest + { + public CompletionsRequest() { } + public int? BestOf { get { throw null; } set { } } + public int? CacheLevel { get { throw null; } set { } } + public string CompletionConfig { get { throw null; } set { } } + public bool? Echo { get { throw null; } set { } } + public float? FrequencyPenalty { get { throw null; } set { } } + public System.Collections.Generic.IDictionary LogitBias { get { throw null; } } + public int? Logprobs { get { throw null; } set { } } + public int? MaxTokens { get { throw null; } set { } } + public string Model { get { throw null; } set { } } + public int? N { get { throw null; } set { } } + public float? PresencePenalty { get { throw null; } set { } } + public System.Collections.Generic.IList Prompt { get { throw null; } } + public System.Collections.Generic.IList Stop { get { throw null; } } + public bool? Stream { get { throw null; } set { } } + public float? Temperature { get { throw null; } set { } } + public float? TopP { get { throw null; } set { } } + public string User { get { throw null; } set { } } + } + public partial class EmbeddingItem + { + internal EmbeddingItem() { } + public System.Collections.Generic.IReadOnlyList Embedding { get { throw null; } } + public int Index { get { throw null; } } + public string Object { get { throw null; } } + } + public partial class Embeddings + { + internal Embeddings() { } + public System.Collections.Generic.IReadOnlyList Data { get { throw null; } } + public string Object { get { throw null; } } + } + public partial class EmbeddingsRequest + { + public EmbeddingsRequest(string input) { } + public string Input { get { throw null; } } + public string InputType { get { throw null; } set { } } + public string Model { get { throw null; } set { } } + public string User { get { throw null; } set { } } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Azure.AI.OpenAI.csproj b/sdk/openai/Azure.AI.OpenAI/src/Azure.AI.OpenAI.csproj new file mode 100644 index 000000000000..0ac6c5bfa2ad --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Azure.AI.OpenAI.csproj @@ -0,0 +1,25 @@ + + + This is the Microsoft Azure Cognitive Services OpenAI client library + Microsoft Azure.AI.OpenAI client library + 1.0.0-beta.1 + Microsoft Azure OpenAI + $(RequiredTargetFrameworks) + true + $(NoWarn);CS1591;AZC0012;AZC0001 + true + + + + + + + + + + + + + + + diff --git a/sdk/openai/Azure.AI.OpenAI/src/Custom/Models/Choice.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Custom/Models/Choice.Serialization.cs new file mode 100644 index 000000000000..7a4bf0893470 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Custom/Models/Choice.Serialization.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class Choice + { + internal static Choice DeserializeChoice(JsonElement element) + { + Optional text = default; + Optional index = default; + Optional logprobs = default; + Optional finishReason = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("text")) + { + text = property.Value.GetString(); + continue; + } + if (property.NameEquals("index")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + index = null; + continue; + } + index = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("logprobs")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + logprobs = null; + continue; + } + else + { + logprobs = CompletionsLogProbsModel.DeserializeCompletionsLogProbsModel(property.Value); + continue; + } + } + if (property.NameEquals("finishReason")) + { + finishReason = property.Value.GetString(); + continue; + } + } + return new Choice(text, Optional.ToNullable(index), logprobs, finishReason); + } + + /// Deserializes the model from a raw response. + /// The response to deserialize the model from. + internal static Choice FromResponse(Response response) + { + using var document = JsonDocument.Parse(response.Content); + return DeserializeChoice(document.RootElement); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Docs/OpenAIClient.xml b/sdk/openai/Azure.AI.OpenAI/src/Generated/Docs/OpenAIClient.xml new file mode 100644 index 000000000000..a195137072be --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Docs/OpenAIClient.xml @@ -0,0 +1,383 @@ + + + + + +This sample shows how to call EmbeddingsAsync with required parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + input = new {}, +}; + +Response response = await client.EmbeddingsAsync("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("embedding")[0].ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("index").ToString()); +]]> +This sample shows how to call EmbeddingsAsync with all parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + user = "", + input_type = "", + model = "", + input = new {}, +}; + +Response response = await client.EmbeddingsAsync("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("embedding")[0].ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("index").ToString()); +]]> + + +Below is the JSON schema for the request and response payloads. + +Request Body: + +Schema for EmbeddingsRequest: +{ + user: string, # Optional. + input_type: string, # Optional. + model: string, # Optional. + input: Union, # Required. +} + + +Response Body: + +Schema for Embeddings: +{ + object: Literal, # Required. + data: [ + { + object: Literal, # Required. + embedding: [number], # Required. + index: number, # Required. + } + ], # Required. +} + + + + + + +This sample shows how to call Embeddings with required parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + input = new {}, +}; + +Response response = client.Embeddings("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("embedding")[0].ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("index").ToString()); +]]> +This sample shows how to call Embeddings with all parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + user = "", + input_type = "", + model = "", + input = new {}, +}; + +Response response = client.Embeddings("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("embedding")[0].ToString()); +Console.WriteLine(result.GetProperty("data")[0].GetProperty("index").ToString()); +]]> + + +Below is the JSON schema for the request and response payloads. + +Request Body: + +Schema for EmbeddingsRequest: +{ + user: string, # Optional. + input_type: string, # Optional. + model: string, # Optional. + input: Union, # Required. +} + + +Response Body: + +Schema for Embeddings: +{ + object: Literal, # Required. + data: [ + { + object: Literal, # Required. + embedding: [number], # Required. + index: number, # Required. + } + ], # Required. +} + + + + + + +This sample shows how to call CompletionsAsync with required parameters and parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new {}; + +Response response = await client.CompletionsAsync("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +]]> +This sample shows how to call CompletionsAsync with all parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + prompt = new[] { + "" + }, + max_tokens = 1234, + temperature = 123.45f, + top_p = 123.45f, + logit_bias = new { + key = 1234, + }, + user = "", + n = 1234, + stream = true, + logprobs = 1234, + model = "", + echo = true, + stop = new[] { + "" + }, + completion_config = "", + cache_level = 1234, + presence_penalty = 123.45f, + frequency_penalty = 123.45f, + best_of = 1234, +}; + +Response response = await client.CompletionsAsync("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("id").ToString()); +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("created").ToString()); +Console.WriteLine(result.GetProperty("model").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("text").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("index").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("tokens")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("token_logprobs")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("top_logprobs")[0].GetProperty("").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("text_offset")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("finish_reason").ToString()); +]]> + + +Below is the JSON schema for the request and response payloads. + +Request Body: + +Schema for CompletionsRequest: +{ + prompt: [string], # Optional. + max_tokens: number, # Optional. + temperature: number, # Optional. + top_p: number, # Optional. + logit_bias: Dictionary<string, number>, # Optional. + user: string, # Optional. + n: number, # Optional. + stream: boolean, # Optional. + logprobs: number, # Optional. + model: string, # Optional. + echo: boolean, # Optional. + stop: [string], # Optional. + completion_config: string, # Optional. + cache_level: number, # Optional. + presence_penalty: number, # Optional. + frequency_penalty: number, # Optional. + best_of: number, # Optional. +} + + +Response Body: + +Schema for Completion: +{ + id: string, # Optional. + object: Literal, # Required. + created: number, # Optional. + model: string, # Optional. + choices: [ + { + text: string, # Optional. + index: number, # Optional. + logprobs: { + tokens: [string], # Optional. + token_logprobs: [number], # Optional. + top_logprobs: [Dictionary<string, number>], # Optional. + text_offset: [number], # Optional. + }, # Optional. + finish_reason: string, # Optional. + } + ], # Optional. +} + + + + + + +This sample shows how to call Completions with required parameters and parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new {}; + +Response response = client.Completions("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("object").ToString()); +]]> +This sample shows how to call Completions with all parameters and request content, and how to parse the result. +"); +var endpoint = new Uri(""); +var client = new OpenAIClient(endpoint, credential); + +var data = new { + prompt = new[] { + "" + }, + max_tokens = 1234, + temperature = 123.45f, + top_p = 123.45f, + logit_bias = new { + key = 1234, + }, + user = "", + n = 1234, + stream = true, + logprobs = 1234, + model = "", + echo = true, + stop = new[] { + "" + }, + completion_config = "", + cache_level = 1234, + presence_penalty = 123.45f, + frequency_penalty = 123.45f, + best_of = 1234, +}; + +Response response = client.Completions("", RequestContent.Create(data)); + +JsonElement result = JsonDocument.Parse(response.ContentStream).RootElement; +Console.WriteLine(result.GetProperty("id").ToString()); +Console.WriteLine(result.GetProperty("object").ToString()); +Console.WriteLine(result.GetProperty("created").ToString()); +Console.WriteLine(result.GetProperty("model").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("text").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("index").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("tokens")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("token_logprobs")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("top_logprobs")[0].GetProperty("").ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("logprobs").GetProperty("text_offset")[0].ToString()); +Console.WriteLine(result.GetProperty("choices")[0].GetProperty("finish_reason").ToString()); +]]> + + +Below is the JSON schema for the request and response payloads. + +Request Body: + +Schema for CompletionsRequest: +{ + prompt: [string], # Optional. + max_tokens: number, # Optional. + temperature: number, # Optional. + top_p: number, # Optional. + logit_bias: Dictionary<string, number>, # Optional. + user: string, # Optional. + n: number, # Optional. + stream: boolean, # Optional. + logprobs: number, # Optional. + model: string, # Optional. + echo: boolean, # Optional. + stop: [string], # Optional. + completion_config: string, # Optional. + cache_level: number, # Optional. + presence_penalty: number, # Optional. + frequency_penalty: number, # Optional. + best_of: number, # Optional. +} + + +Response Body: + +Schema for Completion: +{ + id: string, # Optional. + object: Literal, # Required. + created: number, # Optional. + model: string, # Optional. + choices: [ + { + text: string, # Optional. + index: number, # Optional. + logprobs: { + tokens: [string], # Optional. + token_logprobs: [number], # Optional. + top_logprobs: [Dictionary<string, number>], # Optional. + text_offset: [number], # Optional. + }, # Optional. + finish_reason: string, # Optional. + } + ], # Optional. +} + + + + + + \ No newline at end of file diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.Serialization.cs new file mode 100644 index 000000000000..46422ae096f3 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.Serialization.cs @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class Choice + { + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.cs new file mode 100644 index 000000000000..3f210a32f33b --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Choice.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.OpenAI.Models +{ + /// Choice model within completion response. + public partial class Choice + { + /// Initializes a new instance of Choice. + internal Choice() + { + } + + /// Initializes a new instance of Choice. + /// + /// + /// + /// + internal Choice(string text, int? index, CompletionsLogProbsModel logprobs, string finishReason) + { + Text = text; + Index = index; + Logprobs = logprobs; + FinishReason = finishReason; + } + + /// Gets the text. + public string Text { get; } + /// Gets the index. + public int? Index { get; } + /// Gets the logprobs. + public CompletionsLogProbsModel Logprobs { get; } + /// Gets the finish reason. + public string FinishReason { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.Serialization.cs new file mode 100644 index 000000000000..b615f2c1ba8b --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.Serialization.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class Completion + { + internal static Completion DeserializeCompletion(JsonElement element) + { + Optional id = default; + string @object = default; + Optional created = default; + Optional model = default; + Optional> choices = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("object")) + { + @object = property.Value.GetString(); + continue; + } + if (property.NameEquals("created")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + created = null; + continue; + } + created = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("model")) + { + model = property.Value.GetString(); + continue; + } + if (property.NameEquals("choices")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(Choice.DeserializeChoice(item)); + } + choices = array; + continue; + } + } + return new Completion(id, @object, Optional.ToNullable(created), model, Optional.ToList(choices)); + } + + /// Deserializes the model from a raw response. + /// The response to deserialize the model from. + internal static Completion FromResponse(Response response) + { + using var document = JsonDocument.Parse(response.Content); + return DeserializeCompletion(document.RootElement); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.cs new file mode 100644 index 000000000000..67f5563aa991 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Completion.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// Expected response schema to completion request. + public partial class Completion + { + /// Initializes a new instance of Completion. + /// + /// is null. + internal Completion(string @object) + { + Argument.AssertNotNull(@object, nameof(@object)); + + Object = @object; + Choices = new ChangeTrackingList(); + } + + /// Initializes a new instance of Completion. + /// + /// + /// + /// + /// + internal Completion(string id, string @object, int? created, string model, IReadOnlyList choices) + { + Id = id; + Object = @object; + Created = created; + Model = model; + Choices = choices.ToList(); + } + + /// Gets the id. + public string Id { get; } + /// Gets the object. + public string Object { get; } + /// Gets the created. + public int? Created { get; } + /// Gets the model. + public string Model { get; } + /// Gets the choices. + public IReadOnlyList Choices { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.Serialization.cs new file mode 100644 index 000000000000..7eeb7df9051a --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.Serialization.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class CompletionsLogProbsModel + { + internal static CompletionsLogProbsModel DeserializeCompletionsLogProbsModel(JsonElement element) + { + Optional> tokens = default; + Optional> tokenLogprobs = default; + Optional>> topLogprobs = default; + Optional> textOffset = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("tokens")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetString()); + } + tokens = array; + continue; + } + if (property.NameEquals("token_logprobs")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetSingle()); + } + tokenLogprobs = array; + continue; + } + if (property.NameEquals("top_logprobs")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List> array = new List>(); + foreach (var item in property.Value.EnumerateArray()) + { + Dictionary dictionary = new Dictionary(); + foreach (var property0 in item.EnumerateObject()) + { + dictionary.Add(property0.Name, property0.Value.GetSingle()); + } + array.Add(dictionary); + } + topLogprobs = array; + continue; + } + if (property.NameEquals("text_offset")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetInt32()); + } + textOffset = array; + continue; + } + } + return new CompletionsLogProbsModel(Optional.ToList(tokens), Optional.ToList(tokenLogprobs), Optional.ToList(topLogprobs), Optional.ToList(textOffset)); + } + + /// Deserializes the model from a raw response. + /// The response to deserialize the model from. + internal static CompletionsLogProbsModel FromResponse(Response response) + { + using var document = JsonDocument.Parse(response.Content); + return DeserializeCompletionsLogProbsModel(document.RootElement); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.cs new file mode 100644 index 000000000000..6906bd55a70d --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsLogProbsModel.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Linq; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// LogProbs model within completion choice. + public partial class CompletionsLogProbsModel + { + /// Initializes a new instance of CompletionsLogProbsModel. + internal CompletionsLogProbsModel() + { + Tokens = new ChangeTrackingList(); + TokenLogprobs = new ChangeTrackingList(); + TopLogprobs = new ChangeTrackingList>(); + TextOffset = new ChangeTrackingList(); + } + + /// Initializes a new instance of CompletionsLogProbsModel. + /// + /// + /// + /// + internal CompletionsLogProbsModel(IReadOnlyList tokens, IReadOnlyList tokenLogprobs, IReadOnlyList> topLogprobs, IReadOnlyList textOffset) + { + Tokens = tokens.ToList(); + TokenLogprobs = tokenLogprobs.ToList(); + TopLogprobs = topLogprobs.ToList(); + TextOffset = textOffset.ToList(); + } + + /// Gets the tokens. + public IReadOnlyList Tokens { get; } + /// Gets the token logprobs. + public IReadOnlyList TokenLogprobs { get; } + /// Gets the top logprobs. + public IReadOnlyList> TopLogprobs { get; } + /// Gets the text offset. + public IReadOnlyList TextOffset { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.Serialization.cs new file mode 100644 index 000000000000..d6208937c25e --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.Serialization.cs @@ -0,0 +1,207 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class CompletionsRequest : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsCollectionDefined(Prompt)) + { + writer.WritePropertyName("prompt"); + writer.WriteStartArray(); + foreach (var item in Prompt) + { + writer.WriteStringValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(MaxTokens)) + { + if (MaxTokens != null) + { + writer.WritePropertyName("max_tokens"); + writer.WriteNumberValue(MaxTokens.Value); + } + else + { + writer.WriteNull("max_tokens"); + } + } + if (Optional.IsDefined(Temperature)) + { + if (Temperature != null) + { + writer.WritePropertyName("temperature"); + writer.WriteNumberValue(Temperature.Value); + } + else + { + writer.WriteNull("temperature"); + } + } + if (Optional.IsDefined(TopP)) + { + if (TopP != null) + { + writer.WritePropertyName("top_p"); + writer.WriteNumberValue(TopP.Value); + } + else + { + writer.WriteNull("top_p"); + } + } + if (Optional.IsCollectionDefined(LogitBias)) + { + writer.WritePropertyName("logit_bias"); + writer.WriteStartObject(); + foreach (var item in LogitBias) + { + writer.WritePropertyName(item.Key); + writer.WriteNumberValue(item.Value); + } + writer.WriteEndObject(); + } + if (Optional.IsDefined(User)) + { + writer.WritePropertyName("user"); + writer.WriteStringValue(User); + } + if (Optional.IsDefined(N)) + { + if (N != null) + { + writer.WritePropertyName("n"); + writer.WriteNumberValue(N.Value); + } + else + { + writer.WriteNull("n"); + } + } + if (Optional.IsDefined(Stream)) + { + if (Stream != null) + { + writer.WritePropertyName("stream"); + writer.WriteBooleanValue(Stream.Value); + } + else + { + writer.WriteNull("stream"); + } + } + if (Optional.IsDefined(Logprobs)) + { + if (Logprobs != null) + { + writer.WritePropertyName("logprobs"); + writer.WriteNumberValue(Logprobs.Value); + } + else + { + writer.WriteNull("logprobs"); + } + } + if (Optional.IsDefined(Model)) + { + writer.WritePropertyName("model"); + writer.WriteStringValue(Model); + } + if (Optional.IsDefined(Echo)) + { + if (Echo != null) + { + writer.WritePropertyName("echo"); + writer.WriteBooleanValue(Echo.Value); + } + else + { + writer.WriteNull("echo"); + } + } + if (Optional.IsCollectionDefined(Stop)) + { + writer.WritePropertyName("stop"); + writer.WriteStartArray(); + foreach (var item in Stop) + { + writer.WriteStringValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsDefined(CompletionConfig)) + { + writer.WritePropertyName("completion_config"); + writer.WriteStringValue(CompletionConfig); + } + if (Optional.IsDefined(CacheLevel)) + { + if (CacheLevel != null) + { + writer.WritePropertyName("cache_level"); + writer.WriteNumberValue(CacheLevel.Value); + } + else + { + writer.WriteNull("cache_level"); + } + } + if (Optional.IsDefined(PresencePenalty)) + { + if (PresencePenalty != null) + { + writer.WritePropertyName("presence_penalty"); + writer.WriteNumberValue(PresencePenalty.Value); + } + else + { + writer.WriteNull("presence_penalty"); + } + } + if (Optional.IsDefined(FrequencyPenalty)) + { + if (FrequencyPenalty != null) + { + writer.WritePropertyName("frequency_penalty"); + writer.WriteNumberValue(FrequencyPenalty.Value); + } + else + { + writer.WriteNull("frequency_penalty"); + } + } + if (Optional.IsDefined(BestOf)) + { + if (BestOf != null) + { + writer.WritePropertyName("best_of"); + writer.WriteNumberValue(BestOf.Value); + } + else + { + writer.WriteNull("best_of"); + } + } + writer.WriteEndObject(); + } + + /// Convert into a Utf8JsonRequestContent. + internal virtual RequestContent ToRequestContent() + { + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(this); + return content; + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.cs new file mode 100644 index 000000000000..b0ebd03b216d --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/CompletionsRequest.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// Post body schema to create a prompt completion from a deployment. + public partial class CompletionsRequest + { + /// Initializes a new instance of CompletionsRequest. + public CompletionsRequest() + { + Prompt = new ChangeTrackingList(); + LogitBias = new ChangeTrackingDictionary(); + Stop = new ChangeTrackingList(); + } + + /// Gets the prompt. + public IList Prompt { get; } + /// Gets or sets the max tokens. + public int? MaxTokens { get; set; } + /// Gets or sets the temperature. + public float? Temperature { get; set; } + /// Gets or sets the top p. + public float? TopP { get; set; } + /// Gets the logit bias. + public IDictionary LogitBias { get; } + /// Gets or sets the user. + public string User { get; set; } + /// Gets or sets the n. + public int? N { get; set; } + /// Gets or sets the stream. + public bool? Stream { get; set; } + /// Gets or sets the logprobs. + public int? Logprobs { get; set; } + /// Gets or sets the model. + public string Model { get; set; } + /// Gets or sets the echo. + public bool? Echo { get; set; } + /// Gets the stop. + public IList Stop { get; } + /// Gets or sets the completion config. + public string CompletionConfig { get; set; } + /// Gets or sets the cache level. + public int? CacheLevel { get; set; } + /// Gets or sets the presence penalty. + public float? PresencePenalty { get; set; } + /// Gets or sets the frequency penalty. + public float? FrequencyPenalty { get; set; } + /// Gets or sets the best of. + public int? BestOf { get; set; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.Serialization.cs new file mode 100644 index 000000000000..91e8cbe5d26d --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.Serialization.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class EmbeddingItem + { + internal static EmbeddingItem DeserializeEmbeddingItem(JsonElement element) + { + string @object = default; + IReadOnlyList embedding = default; + int index = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("object")) + { + @object = property.Value.GetString(); + continue; + } + if (property.NameEquals("embedding")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(item.GetSingle()); + } + embedding = array; + continue; + } + if (property.NameEquals("index")) + { + index = property.Value.GetInt32(); + continue; + } + } + return new EmbeddingItem(@object, embedding, index); + } + + /// Deserializes the model from a raw response. + /// The response to deserialize the model from. + internal static EmbeddingItem FromResponse(Response response) + { + using var document = JsonDocument.Parse(response.Content); + return DeserializeEmbeddingItem(document.RootElement); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.cs new file mode 100644 index 000000000000..0f0d95e791b4 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingItem.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// The EmbeddingItem. + public partial class EmbeddingItem + { + /// Initializes a new instance of EmbeddingItem. + /// + /// + /// + /// or is null. + internal EmbeddingItem(string @object, IEnumerable embedding, int index) + { + Argument.AssertNotNull(@object, nameof(@object)); + Argument.AssertNotNull(embedding, nameof(embedding)); + + Object = @object; + Embedding = embedding.ToList(); + Index = index; + } + + /// Initializes a new instance of EmbeddingItem. + /// + /// + /// + internal EmbeddingItem(string @object, IReadOnlyList embedding, int index) + { + Object = @object; + Embedding = embedding.ToList(); + Index = index; + } + + /// Gets the object. + public string Object { get; } + /// Gets the embedding. + public IReadOnlyList Embedding { get; } + /// Gets the index. + public int Index { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.Serialization.cs new file mode 100644 index 000000000000..5a8ebf9326c1 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.Serialization.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class Embeddings + { + internal static Embeddings DeserializeEmbeddings(JsonElement element) + { + string @object = default; + IReadOnlyList data = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("object")) + { + @object = property.Value.GetString(); + continue; + } + if (property.NameEquals("data")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(EmbeddingItem.DeserializeEmbeddingItem(item)); + } + data = array; + continue; + } + } + return new Embeddings(@object, data); + } + + /// Deserializes the model from a raw response. + /// The response to deserialize the model from. + internal static Embeddings FromResponse(Response response) + { + using var document = JsonDocument.Parse(response.Content); + return DeserializeEmbeddings(document.RootElement); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.cs new file mode 100644 index 000000000000..ec1fb0e301bd --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/Embeddings.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// The Embeddings. + public partial class Embeddings + { + /// Initializes a new instance of Embeddings. + /// + /// + /// or is null. + internal Embeddings(string @object, IEnumerable data) + { + Argument.AssertNotNull(@object, nameof(@object)); + Argument.AssertNotNull(data, nameof(data)); + + Object = @object; + Data = data.ToList(); + } + + /// Initializes a new instance of Embeddings. + /// + /// + internal Embeddings(string @object, IReadOnlyList data) + { + Object = @object; + Data = data.ToList(); + } + + /// Gets the object. + public string Object { get; } + /// Gets the data. + public IReadOnlyList Data { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.Serialization.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.Serialization.cs new file mode 100644 index 000000000000..30fa9db889fe --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.Serialization.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + public partial class EmbeddingsRequest : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(User)) + { + writer.WritePropertyName("user"); + writer.WriteStringValue(User); + } + if (Optional.IsDefined(InputType)) + { + writer.WritePropertyName("input_type"); + writer.WriteStringValue(InputType); + } + if (Optional.IsDefined(Model)) + { + writer.WritePropertyName("model"); + writer.WriteStringValue(Model); + } + writer.WritePropertyName("input"); + writer.WriteStringValue(Input); + writer.WriteEndObject(); + } + + /// Convert into a Utf8JsonRequestContent. + internal virtual RequestContent ToRequestContent() + { + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(this); + return content; + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.cs new file mode 100644 index 000000000000..23ddea19c620 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/Models/EmbeddingsRequest.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.Core; + +namespace Azure.AI.OpenAI.Models +{ + /// The EmbeddingsRequest. + public partial class EmbeddingsRequest + { + /// Initializes a new instance of EmbeddingsRequest. + /// + /// is null. + public EmbeddingsRequest(string input) + { + Argument.AssertNotNull(input, nameof(input)); + + Input = input; + } + + /// Gets or sets the user. + public string User { get; set; } + /// Gets or sets the input type. + public string InputType { get; set; } + /// Gets or sets the model. + public string Model { get; set; } + /// Gets the input. + public string Input { get; } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClient.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClient.cs new file mode 100644 index 000000000000..8360a448eb51 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClient.cs @@ -0,0 +1,333 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure; +using Azure.AI.OpenAI.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.AI.OpenAI +{ + // Data plane generated client. + /// Azure OpenAI APIs for completions and search. + public partial class OpenAIClient + { + private const string AuthorizationHeader = "api-key"; + private readonly AzureKeyCredential _keyCredential; + private static readonly string[] AuthorizationScopes = new string[] { "https://cognitiveservices.azure.com/.default" }; + private readonly TokenCredential _tokenCredential; + private readonly HttpPipeline _pipeline; + private readonly Uri _endpoint; + private readonly string _apiVersion; + + /// The ClientDiagnostics is used to provide tracing support for the client library. + internal ClientDiagnostics ClientDiagnostics { get; } + + /// The HTTP pipeline for sending and receiving REST requests and responses. + public virtual HttpPipeline Pipeline => _pipeline; + + /// Initializes a new instance of OpenAIClient for mocking. + protected OpenAIClient() + { + } + + /// Initializes a new instance of OpenAIClient. + /// + /// Supported Cognitive Services endpoints (protocol and hostname, for example: + /// https://westus.api.cognitive.microsoft.com). + /// + /// A credential used to authenticate to an Azure Service. + /// or is null. + public OpenAIClient(Uri endpoint, AzureKeyCredential credential) : this(endpoint, credential, new OpenAIClientOptions()) + { + } + + /// Initializes a new instance of OpenAIClient. + /// + /// Supported Cognitive Services endpoints (protocol and hostname, for example: + /// https://westus.api.cognitive.microsoft.com). + /// + /// A credential used to authenticate to an Azure Service. + /// or is null. + public OpenAIClient(Uri endpoint, TokenCredential credential) : this(endpoint, credential, new OpenAIClientOptions()) + { + } + + /// Initializes a new instance of OpenAIClient. + /// + /// Supported Cognitive Services endpoints (protocol and hostname, for example: + /// https://westus.api.cognitive.microsoft.com). + /// + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + /// or is null. + public OpenAIClient(Uri endpoint, AzureKeyCredential credential, OpenAIClientOptions options) + { + Argument.AssertNotNull(endpoint, nameof(endpoint)); + Argument.AssertNotNull(credential, nameof(credential)); + options ??= new OpenAIClientOptions(); + + ClientDiagnostics = new ClientDiagnostics(options, true); + _keyCredential = credential; + _pipeline = HttpPipelineBuilder.Build(options, Array.Empty(), new HttpPipelinePolicy[] { new AzureKeyCredentialPolicy(_keyCredential, AuthorizationHeader) }, new ResponseClassifier()); + _endpoint = endpoint; + _apiVersion = options.Version; + } + + /// Initializes a new instance of OpenAIClient. + /// + /// Supported Cognitive Services endpoints (protocol and hostname, for example: + /// https://westus.api.cognitive.microsoft.com). + /// + /// A credential used to authenticate to an Azure Service. + /// The options for configuring the client. + /// or is null. + public OpenAIClient(Uri endpoint, TokenCredential credential, OpenAIClientOptions options) + { + Argument.AssertNotNull(endpoint, nameof(endpoint)); + Argument.AssertNotNull(credential, nameof(credential)); + options ??= new OpenAIClientOptions(); + + ClientDiagnostics = new ClientDiagnostics(options, true); + _tokenCredential = credential; + _pipeline = HttpPipelineBuilder.Build(options, Array.Empty(), new HttpPipelinePolicy[] { new BearerTokenAuthenticationPolicy(_tokenCredential, AuthorizationScopes) }, new ResponseClassifier()); + _endpoint = endpoint; + _apiVersion = options.Version; + } + + /// Return the embeddings for a given prompt. + /// deployment id of the deployed model. + /// The EmbeddingsRequest to use. + /// The cancellation token to use. + /// or is null. + /// is an empty string, and was expected to be non-empty. + public virtual async Task> EmbeddingsAsync(string deploymentId, EmbeddingsRequest embeddingsRequest, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(embeddingsRequest, nameof(embeddingsRequest)); + + RequestContext context = FromCancellationToken(cancellationToken); + Response response = await EmbeddingsAsync(deploymentId, embeddingsRequest.ToRequestContent(), context).ConfigureAwait(false); + return Response.FromValue(Models.Embeddings.FromResponse(response), response); + } + + /// Return the embeddings for a given prompt. + /// deployment id of the deployed model. + /// The EmbeddingsRequest to use. + /// The cancellation token to use. + /// or is null. + /// is an empty string, and was expected to be non-empty. + public virtual Response Embeddings(string deploymentId, EmbeddingsRequest embeddingsRequest, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(embeddingsRequest, nameof(embeddingsRequest)); + + RequestContext context = FromCancellationToken(cancellationToken); + Response response = Embeddings(deploymentId, embeddingsRequest.ToRequestContent(), context); + return Response.FromValue(Models.Embeddings.FromResponse(response), response); + } + + /// Return the embeddings for a given prompt. + /// deployment id of the deployed model. + /// The content to send as the body of the request. Details of the request body schema are in the Remarks section below. + /// The request context, which can override default behaviors of the client pipeline on a per-call basis. + /// or is null. + /// is an empty string, and was expected to be non-empty. + /// Service returned a non-success status code. + /// The response returned from the service. Details of the response body schema are in the Remarks section below. + /// + public virtual async Task EmbeddingsAsync(string deploymentId, RequestContent content, RequestContext context = null) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(content, nameof(content)); + + using var scope = ClientDiagnostics.CreateScope("OpenAIClient.Embeddings"); + scope.Start(); + try + { + using HttpMessage message = CreateEmbeddingsRequest(deploymentId, content, context); + return await _pipeline.ProcessMessageAsync(message, context).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Return the embeddings for a given prompt. + /// deployment id of the deployed model. + /// The content to send as the body of the request. Details of the request body schema are in the Remarks section below. + /// The request context, which can override default behaviors of the client pipeline on a per-call basis. + /// or is null. + /// is an empty string, and was expected to be non-empty. + /// Service returned a non-success status code. + /// The response returned from the service. Details of the response body schema are in the Remarks section below. + /// + public virtual Response Embeddings(string deploymentId, RequestContent content, RequestContext context = null) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(content, nameof(content)); + + using var scope = ClientDiagnostics.CreateScope("OpenAIClient.Embeddings"); + scope.Start(); + try + { + using HttpMessage message = CreateEmbeddingsRequest(deploymentId, content, context); + return _pipeline.ProcessMessage(message, context); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Return the completions for a given prompt. + /// deployment id of the deployed model. + /// Post body schema to create a prompt completion from a deployment. + /// The cancellation token to use. + /// or is null. + /// is an empty string, and was expected to be non-empty. + public virtual async Task> CompletionsAsync(string deploymentId, CompletionsRequest completionsRequest, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(completionsRequest, nameof(completionsRequest)); + + RequestContext context = FromCancellationToken(cancellationToken); + Response response = await CompletionsAsync(deploymentId, completionsRequest.ToRequestContent(), context).ConfigureAwait(false); + return Response.FromValue(Completion.FromResponse(response), response); + } + + /// Return the completions for a given prompt. + /// deployment id of the deployed model. + /// Post body schema to create a prompt completion from a deployment. + /// The cancellation token to use. + /// or is null. + /// is an empty string, and was expected to be non-empty. + public virtual Response Completions(string deploymentId, CompletionsRequest completionsRequest, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(completionsRequest, nameof(completionsRequest)); + + RequestContext context = FromCancellationToken(cancellationToken); + Response response = Completions(deploymentId, completionsRequest.ToRequestContent(), context); + return Response.FromValue(Completion.FromResponse(response), response); + } + + /// Return the completions for a given prompt. + /// deployment id of the deployed model. + /// The content to send as the body of the request. Details of the request body schema are in the Remarks section below. + /// The request context, which can override default behaviors of the client pipeline on a per-call basis. + /// or is null. + /// is an empty string, and was expected to be non-empty. + /// Service returned a non-success status code. + /// The response returned from the service. Details of the response body schema are in the Remarks section below. + /// + public virtual async Task CompletionsAsync(string deploymentId, RequestContent content, RequestContext context = null) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(content, nameof(content)); + + using var scope = ClientDiagnostics.CreateScope("OpenAIClient.Completions"); + scope.Start(); + try + { + using HttpMessage message = CreateCompletionsRequest(deploymentId, content, context); + return await _pipeline.ProcessMessageAsync(message, context).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Return the completions for a given prompt. + /// deployment id of the deployed model. + /// The content to send as the body of the request. Details of the request body schema are in the Remarks section below. + /// The request context, which can override default behaviors of the client pipeline on a per-call basis. + /// or is null. + /// is an empty string, and was expected to be non-empty. + /// Service returned a non-success status code. + /// The response returned from the service. Details of the response body schema are in the Remarks section below. + /// + public virtual Response Completions(string deploymentId, RequestContent content, RequestContext context = null) + { + Argument.AssertNotNullOrEmpty(deploymentId, nameof(deploymentId)); + Argument.AssertNotNull(content, nameof(content)); + + using var scope = ClientDiagnostics.CreateScope("OpenAIClient.Completions"); + scope.Start(); + try + { + using HttpMessage message = CreateCompletionsRequest(deploymentId, content, context); + return _pipeline.ProcessMessage(message, context); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + internal HttpMessage CreateEmbeddingsRequest(string deploymentId, RequestContent content, RequestContext context) + { + var message = _pipeline.CreateMessage(context, ResponseClassifier200); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.Reset(_endpoint); + uri.AppendRaw("/openai", false); + uri.AppendPath("/deployments/", false); + uri.AppendPath(deploymentId, true); + uri.AppendPath("/embeddings", false); + uri.AppendQuery("api-version", _apiVersion, true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + request.Content = content; + return message; + } + + internal HttpMessage CreateCompletionsRequest(string deploymentId, RequestContent content, RequestContext context) + { + var message = _pipeline.CreateMessage(context, ResponseClassifier200); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.Reset(_endpoint); + uri.AppendRaw("/openai", false); + uri.AppendPath("/deployments/", false); + uri.AppendPath(deploymentId, true); + uri.AppendPath("/completions", false); + uri.AppendQuery("api-version", _apiVersion, true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json"); + request.Headers.Add("Content-Type", "application/json"); + request.Content = content; + return message; + } + + private static RequestContext DefaultRequestContext = new RequestContext(); + internal static RequestContext FromCancellationToken(CancellationToken cancellationToken = default) + { + if (!cancellationToken.CanBeCanceled) + { + return DefaultRequestContext; + } + + return new RequestContext() { CancellationToken = cancellationToken }; + } + + private static ResponseClassifier _responseClassifier200; + private static ResponseClassifier ResponseClassifier200 => _responseClassifier200 ??= new StatusCodeClassifier(stackalloc ushort[] { 200 }); + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClientOptions.cs b/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClientOptions.cs new file mode 100644 index 000000000000..90f3a054586e --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Generated/OpenAIClientOptions.cs @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.Core; + +namespace Azure.AI.OpenAI +{ + /// Client options for OpenAIClient. + public partial class OpenAIClientOptions : ClientOptions + { + private const ServiceVersion LatestVersion = ServiceVersion.V2022_06_01_Preview; + + /// The version of the service to use. + public enum ServiceVersion + { + /// Service version "2022-06-01-preview". + V2022_06_01_Preview = 1, + } + + internal string Version { get; } + + /// Initializes new instance of OpenAIClientOptions. + public OpenAIClientOptions(ServiceVersion version = LatestVersion) + { + Version = version switch + { + ServiceVersion.V2022_06_01_Preview => "2022-06-01-preview", + _ => throw new NotSupportedException() + }; + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/src/Properties/AssemblyInfo.cs b/sdk/openai/Azure.AI.OpenAI/src/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..c560e8a4ed07 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/Properties/AssemblyInfo.cs @@ -0,0 +1,4 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +[assembly: Azure.Core.AzureResourceProviderNamespace("Microsoft.Insights")] diff --git a/sdk/openai/Azure.AI.OpenAI/src/cadl-location.yaml b/sdk/openai/Azure.AI.OpenAI/src/cadl-location.yaml new file mode 100644 index 000000000000..c3490cd4e210 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/src/cadl-location.yaml @@ -0,0 +1,5 @@ +directory: specification/cognitiveservices/OpenAI.Inference +additionalDirectories: + - specification/cognitiveservices/OpenAI.Authoring +commit: 2d117bc4a3b76a1333540d342406bd8022fec618 +repo: Azure/azure-rest-api-specs diff --git a/sdk/openai/Azure.AI.OpenAI/tests/Azure.AI.OpenAI.Tests.csproj b/sdk/openai/Azure.AI.OpenAI/tests/Azure.AI.OpenAI.Tests.csproj new file mode 100644 index 000000000000..35778e712edd --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/Azure.AI.OpenAI.Tests.csproj @@ -0,0 +1,28 @@ + + + $(RequiredTargetFrameworks) + + + $(NoWarn);CS1591 + + + + + + + + + + + + + + + + + + + + + + diff --git a/sdk/openai/Azure.AI.OpenAI/tests/OpenAIInferenceTests.cs b/sdk/openai/Azure.AI.OpenAI/tests/OpenAIInferenceTests.cs new file mode 100644 index 000000000000..01ba51e09b33 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/OpenAIInferenceTests.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using NUnit.Framework; +using Azure.AI.OpenAI.Models; +using Azure.Core.TestFramework; +using System.Threading.Tasks; + +namespace Azure.AI.OpenAI.Tests +{ + public class OpenAIInferenceTests : OpenAITestBase + { + public OpenAIInferenceTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + + /// + /// Test an instance of OpenAIClient. + /// + [RecordedTest] + public void InstanceTest() + { + var client = GetClient(); + Assert.That(client, Is.InstanceOf()); + var tokenClient = GetClientWithToken(); + Assert.That(tokenClient, Is.InstanceOf()); + } + + /// + /// Test Completion. + /// + [RecordedTest] + public async Task CompletionTest() + { + var client = GetClient(); + CompletionsRequest completionsRequest = new CompletionsRequest(); + completionsRequest.Prompt.Add("Hello world"); + completionsRequest.Prompt.Add("running over the same old ground"); + Assert.That(completionsRequest, Is.InstanceOf()); + var response = await client.CompletionsAsync(DeploymentId, completionsRequest); + Assert.That(response, Is.InstanceOf>()); + } + + /// + /// Test Embeddings. + /// + [RecordedTest] + public async Task EmbeddingTest() + { + var client = GetClient(); + EmbeddingsRequest embeddingsRequest = new EmbeddingsRequest("Your text string goes here"); + Assert.That(embeddingsRequest, Is.InstanceOf()); + var response = await client.EmbeddingsAsync(EmbeddingsDeploymentId, embeddingsRequest); + Assert.That(response, Is.InstanceOf>()); + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestBase.cs b/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestBase.cs new file mode 100644 index 000000000000..d5ab8de71ef3 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestBase.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Linq; +using Azure.Core; +using Azure.Core.TestFramework; +using Azure.Identity; +using Azure.ResourceManager; +using Azure.ResourceManager.CognitiveServices; +using Azure.ResourceManager.CognitiveServices.Models; +using Azure.ResourceManager.Resources; +using NUnit.Framework; + +namespace Azure.AI.OpenAI.Tests +{ + public abstract class OpenAITestBase : RecordedTestBase + { + private const string DeploymentIdVariable = "OPENAI_DEPLOYMENT_ID"; + private const string EmbeddingsDeploymentIdVariable = "OPENAI_EMBEDDINGS_DEPLOYMENT_ID"; + private const string EndpointVariable = "OPENAI_ENDPOINT"; + private const string ResourceGroupName = "openai-test-rg"; + private const string CognitiveServicesAccountName = "openai-test-account"; + private const string SubDomain = "sdk"; + private static AzureLocation Location = AzureLocation.SouthCentralUS; + private CognitiveServicesAccountResource _cognitiveServiceAccount; + private string _key = "DUMMY_VALUE"; + private string _endpoint; + + protected OpenAITestBase(bool isAsync, RecordedTestMode? mode = null) : base(isAsync, mode) + { + HeaderRegexSanitizers.Add(new Core.TestFramework.Models.HeaderRegexSanitizer("api-key", "***********")); + } + + private static readonly object _deploymentIdLock = new object(); + [SetUp] + public void CreateDeployment() + { + if (Mode == RecordedTestMode.Playback) + { + DeploymentId = Recording.GetVariable(DeploymentIdVariable, null); + EmbeddingsDeploymentId = Recording.GetVariable(EmbeddingsDeploymentIdVariable, null); + _endpoint = Recording.GetVariable(EndpointVariable, null); + } + + if ((Mode == RecordedTestMode.Live || Mode == RecordedTestMode.Record) && (DeploymentId == null || EmbeddingsDeploymentId == null)) + { + lock (_deploymentIdLock) + { + if (DeploymentId == null || EmbeddingsDeploymentId == null) + { + ArmClient armClient = new ArmClient(TestEnvironment.Credential); + var subscription = armClient.GetSubscriptionResource(SubscriptionResource.CreateResourceIdentifier(TestEnvironment.SubscriptionId)); + + ResourceGroupResource resourceGroup = CreateResourceGroupIfNotExists(subscription); + + CreateCognitiveServicesAccountIfNotExists(armClient, resourceGroup); + + _endpoint = _cognitiveServiceAccount.Data.Properties.Endpoint; + Recording.SetVariable(EndpointVariable, _endpoint); + + CognitiveServicesAccountDeploymentResource modelDeployment = CreateModelDeploymentIfNotExists("text-davinci-002"); + CognitiveServicesAccountDeploymentResource embeddingsModelDeployment = CreateModelDeploymentIfNotExists("text-similarity-davinci-001"); + + DeploymentId = modelDeployment.Id.Name; + Recording.SetVariable(DeploymentIdVariable, DeploymentId); + EmbeddingsDeploymentId = embeddingsModelDeployment.Id.Name; + Recording.SetVariable(EmbeddingsDeploymentIdVariable, EmbeddingsDeploymentId); + + var keys = _cognitiveServiceAccount.GetKeys(); + _key = keys.Value.Key1; + } + } + } + } + + private CognitiveServicesAccountDeploymentResource CreateModelDeploymentIfNotExists(string modelName) + { + var models = _cognitiveServiceAccount.GetModels(); + var model = models.FirstOrDefault(m => m.Name == modelName); + if (model == null) + throw new Exception($"No models available for {_cognitiveServiceAccount.Id}"); + + var deploymentData = new CognitiveServicesAccountDeploymentData(); + deploymentData.Properties = new CognitiveServicesAccountDeploymentProperties(); + deploymentData.Properties.Model = new CognitiveServicesAccountDeploymentModel(); + deploymentData.Properties.Model.Format = model.Format; + deploymentData.Properties.Model.Name = model.Name; + deploymentData.Properties.Model.Version = model.Version; + deploymentData.Properties.ScaleSettings = new CognitiveServicesAccountDeploymentScaleSettings(); + deploymentData.Properties.ScaleSettings.ScaleType = CognitiveServicesAccountDeploymentScaleType.Standard; + + var modelDeployment = _cognitiveServiceAccount.GetCognitiveServicesAccountDeployments().Exists(model.Name) + ? _cognitiveServiceAccount.GetCognitiveServicesAccountDeployment(model.Name) + : _cognitiveServiceAccount.GetCognitiveServicesAccountDeployments().CreateOrUpdate(WaitUntil.Completed, model.Name, deploymentData).Value; + return modelDeployment; + } + + private void CreateCognitiveServicesAccountIfNotExists(ArmClient armClient, ResourceGroupResource resourceGroup) + { + var csaData = new CognitiveServicesAccountData(Location); + csaData.Kind = "OpenAI"; + csaData.Sku = new CognitiveServicesSku("S0"); + csaData.Properties = new CognitiveServicesAccountProperties(); + csaData.Properties.CustomSubDomainName = SubDomain; + try + { + _cognitiveServiceAccount = resourceGroup.GetCognitiveServicesAccounts().Exists(CognitiveServicesAccountName) + ? resourceGroup.GetCognitiveServicesAccounts().Get(CognitiveServicesAccountName) + : resourceGroup.GetCognitiveServicesAccounts().CreateOrUpdate(WaitUntil.Completed, CognitiveServicesAccountName, csaData).Value; + } + catch (RequestFailedException ex) when (ex.Status == 409) + { + var deletedAccountId = CognitiveServicesDeletedAccountResource.CreateResourceIdentifier(TestEnvironment.SubscriptionId, Location, ResourceGroupName, CognitiveServicesAccountName); + var deletedAccount = armClient.GetCognitiveServicesDeletedAccountResource(deletedAccountId); + deletedAccount.Delete(WaitUntil.Completed); + _cognitiveServiceAccount = resourceGroup.GetCognitiveServicesAccounts().CreateOrUpdate(WaitUntil.Completed, CognitiveServicesAccountName, csaData).Value; + } + } + + private static ResourceGroupResource CreateResourceGroupIfNotExists(SubscriptionResource subscription) + { + var rgData = new ResourceGroupData(Location); + rgData.Tags.Add("DeleteAfter", DateTime.Now.AddDays(2).ToString("MM/dd/yyyy hh:mm:sszzz")); + var resourceGroup = subscription.GetResourceGroups().Exists(ResourceGroupName) + ? subscription.GetResourceGroup(ResourceGroupName) + : subscription.GetResourceGroups().CreateOrUpdate(WaitUntil.Completed, ResourceGroupName, rgData).Value; + return resourceGroup; + } + + public string DeploymentId { get; private set; } + public string EmbeddingsDeploymentId { get; private set; } + + protected OpenAIClient GetClient() => InstrumentClient( + new OpenAIClient( + new Uri(_endpoint), + new AzureKeyCredential(_key), + InstrumentClientOptions(new OpenAIClientOptions(OpenAIClientOptions.ServiceVersion.V2022_06_01_Preview)))); + + protected OpenAIClient GetClientWithToken() => InstrumentClient( + new OpenAIClient( + new Uri(_endpoint), + TestEnvironment.Credential, + InstrumentClientOptions(new OpenAIClientOptions(OpenAIClientOptions.ServiceVersion.V2022_06_01_Preview)))); + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestEnvironment.cs b/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestEnvironment.cs new file mode 100644 index 000000000000..93302399a796 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/OpenAITestEnvironment.cs @@ -0,0 +1,11 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core.TestFramework; + +namespace Azure.AI.OpenAI.Tests +{ + public class OpenAITestEnvironment : TestEnvironment + { + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/Samples/Readme.cs b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Readme.cs new file mode 100644 index 000000000000..74d8aaef6854 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Readme.cs @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using Azure.AI.OpenAI.Models; +using NUnit.Framework; + +namespace Azure.AI.OpenAI.Tests.Samples +{ + internal class Readme + { + [Test] + [Ignore("Only verifying that the sample builds")] + public void CastingToSpecificType() + { + #region Snippet:Azure_OpenAI_GetSecret + string endpoint = "http://myaccount.openai.azure.com/"; + string key = "myKey"; + + OpenAIClient client = new OpenAIClient(new Uri(endpoint), new AzureKeyCredential(key)); + CompletionsRequest completionsRequest = new CompletionsRequest(); + completionsRequest.Prompt.Add("Hello world"); + completionsRequest.Prompt.Add("running over the same old ground"); + Completion response = client.Completions("myModelDeployment", completionsRequest); + + foreach (Choice choice in response.Choices) + { + Console.WriteLine(choice.Text); + } + #endregion Snippet:Azure_OpenAI_GetSecret + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample01_Chatbot.cs b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample01_Chatbot.cs new file mode 100644 index 000000000000..0ee9a24b3098 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample01_Chatbot.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using Azure.AI.OpenAI.Models; +using NUnit.Framework; + +namespace Azure.AI.OpenAI.Tests.Samples +{ + public partial class Chatbot + { + [Test] + [Ignore("Only verifying that the sample builds")] + public void GetChatbotResponses() + { + // Replace with your Azure subscription key + string key = "YOUR_AZURE_KEY"; + string endpoint = "http://myaccount.openai.azure.com/"; + OpenAIClient client = new OpenAIClient(new Uri(endpoint), new AzureKeyCredential(key)); + + #region Snippet:GenerateChatbotResponses + List examplePrompts = new(){ + "How are you today?", + "What is Azure OpenAI?", + "Why do children love dinosaurs?", + "Generate a proof of Euler's identity", + "Describe in single words only the good things that come into your mind about your mother.", + }; + + foreach (var prompt in examplePrompts) + { + Console.Write($"Input: {prompt}"); + var request = new CompletionsRequest(); + request.Prompt.Add(prompt); + + Completion completion = client.Completions("myModelDeployment", request); + var response = completion.Choices[0].Text; + Console.WriteLine($"Chatbot: {response}"); + } + #endregion + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample02_ChatbotWithToken.cs b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample02_ChatbotWithToken.cs new file mode 100644 index 000000000000..a019fa425314 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/Samples/Sample02_ChatbotWithToken.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using Azure.AI.OpenAI.Models; +using Azure.Identity; +using NUnit.Framework; + +namespace Azure.AI.OpenAI.Tests.Samples +{ + public partial class Chatbot + { + [Test] + [Ignore("Only verifying that the sample builds")] + public void GetChatbotResponsesWithToken() + { + #region Snippet:GenerateChatbotResponsesWithToken + string endpoint = "http://myaccount.openai.azure.com/"; + OpenAIClient client = new OpenAIClient(new Uri(endpoint), new DefaultAzureCredential()); + + List examplePrompts = new(){ + "How are you today?", + "What is Azure OpenAI?", + "Why do children love dinosaurs?", + "Generate a proof of Euler's identity", + "Describe in single words only the good things that come into your mind about your mother.", + }; + + foreach (var prompt in examplePrompts) + { + Console.Write($"Input: {prompt}"); + var request = new CompletionsRequest(); + request.Prompt.Add(prompt); + + Completion completion = client.Completions("myModelDeployment", request); + var response = completion.Choices[0].Text; + Console.WriteLine($"Chatbot: {response}"); + } + #endregion + } + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTest.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTest.json new file mode 100644 index 000000000000..4cf6bb06e746 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTest.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://sdk.openai.azure.com/openai/deployments/text-davinci-002/completions?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "***********", + "Content-Length": "61", + "Content-Type": "application/json", + "traceparent": "00-ed2fea002ebd226a165489171f17be07-753ea998bb635611-00", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-alpha.20230125.1 (.NET 6.0.13; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31f157a3afad4bca87bd0ff1ef2aedc4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "prompt": [ + "Hello world", + "running over the same old ground" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "07a8930a-951c-4217-a4f5-473abd1d473a", + "Cache-Control": "must-revalidate, no-cache", + "Content-Length": "406", + "Content-Type": "application/json", + "Date": "Wed, 25 Jan 2023 20:21:39 GMT", + "openai-model": "text-davinci-002", + "openai-processing-ms": "367.4606", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "31f157a3afad4bca87bd0ff1ef2aedc4", + "x-ms-region": "South Central US", + "X-Request-ID": "6cb23388-3a8e-4a87-bb80-f736b8c5e0c4" + }, + "ResponseBody": { + "id": "cmpl-6cgZ2OsoZjCT71CjGWYnUErhRLZLa", + "object": "text_completion", + "created": 1674678100, + "model": "text-davinci-002", + "choices": [ + { + "text": "\n\u002B// aaaaaaaaaaaa\n", + "index": 0, + "finish_reason": "stop", + "logprobs": null + }, + { + "text": " again\n\n repeating the same mistake\n\na worn-out phrase\n\n", + "index": 1, + "finish_reason": "length", + "logprobs": null + } + ], + "usage": { + "completion_tokens": 24, + "prompt_tokens": 8, + "total_tokens": 32 + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "RandomSeed": "1158917924", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTestAsync.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTestAsync.json new file mode 100644 index 000000000000..24266a718e91 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/CompletionTestAsync.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "https://sdk.openai.azure.com/openai/deployments/text-davinci-002/completions?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "***********", + "Content-Length": "61", + "Content-Type": "application/json", + "traceparent": "00-e7b4c527a1c7d191c6f85c9fa8366a20-94c869d64adf89d4-00", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-alpha.20230125.1 (.NET 6.0.13; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "90d4fae356b74641b86026f6bc27ec94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "prompt": [ + "Hello world", + "running over the same old ground" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "78ee7455-f60c-44d9-9ec7-a52ec2a7193b", + "Cache-Control": "must-revalidate, no-cache", + "Content-Length": "453", + "Content-Type": "application/json", + "Date": "Wed, 25 Jan 2023 20:21:42 GMT", + "openai-model": "text-davinci-002", + "openai-processing-ms": "310.945", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "x-accel-buffering": "no", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "90d4fae356b74641b86026f6bc27ec94", + "x-ms-region": "South Central US", + "X-Request-ID": "8333af59-dd1f-4502-b9be-db7aca15ddea" + }, + "ResponseBody": { + "id": "cmpl-6cgZ5ghyqSTSLQ4PURlJZJGJvy2rb", + "object": "text_completion", + "created": 1674678103, + "model": "text-davinci-002", + "choices": [ + { + "text": "\u0022: Start learning computer.\n- 2. index_1 (index_2", + "index": 0, + "finish_reason": "length", + "logprobs": null + }, + { + "text": "\n\nHaving a difficult time getting over the death of her best friend, Sarah", + "index": 1, + "finish_reason": "length", + "logprobs": null + } + ], + "usage": { + "completion_tokens": 32, + "prompt_tokens": 8, + "total_tokens": 40 + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "RandomSeed": "1067226900", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTest.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTest.json new file mode 100644 index 000000000000..95365f204635 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTest.json @@ -0,0 +1,12347 @@ +{ + "Entries": [ + { + "RequestUri": "https://sdk.openai.azure.com/openai/deployments/text-similarity-davinci-001/embeddings?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "***********", + "Content-Length": "38", + "Content-Type": "application/json", + "traceparent": "00-9450cffd6c2288972cd9a11a8ee85b05-58f4da016895ad6b-00", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-alpha.20230125.1 (.NET 6.0.13; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "679309bc1b1f1a0572e86251702fde2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "input": "Your text string goes here" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "b54e8dc9-fc8c-4226-a6f0-8db9cab3e673", + "Content-Length": "269906", + "Content-Type": "application/json", + "Date": "Wed, 25 Jan 2023 20:43:24 GMT", + "openai-processing-ms": "442.7099", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "679309bc1b1f1a0572e86251702fde2a", + "x-ms-region": "South Central US", + "X-Request-ID": "a3317fba-dd59-4627-a0c0-b7a02a1c770d" + }, + "ResponseBody": { + "object": "list", + "data": [ + { + "object": "embedding", + "index": 0, + "embedding": [ + -0.007025569, + 0.007871946, + -0.007636488, + -0.0049573537, + -0.017742107, + 0.021025797, + -0.000031495543, + 0.0027348173, + 0.0034077829, + -0.0018932127, + -0.0065228334, + -0.0026011788, + -0.00013592551, + -0.007458303, + -0.00017818472, + 0.0008917191, + -0.0059150965, + -0.005160993, + -0.011531097, + 0.011187455, + -0.0060741897, + -0.0021398077, + 0.019167585, + -0.0028016365, + 0.006366922, + 0.0022973102, + 0.016443904, + 0.0021445805, + -0.006239647, + -0.0054728165, + -0.0078910375, + 0.004161886, + -0.0020984432, + -0.0054441798, + -0.007973766, + -0.0052532675, + 0.010729265, + 0.0027554994, + -0.0028461828, + 0.014356597, + -0.013287489, + 0.0011247911, + -0.0061410093, + -0.006898294, + 0.0028318644, + 0.00081853603, + -0.00719739, + -0.010041982, + 0.007719217, + -0.00097285677, + -0.012269291, + -0.021878539, + 0.002424585, + -0.005997825, + 0.01631663, + -0.022145815, + -0.0069555677, + 0.00553009, + -0.0014047956, + -0.04808442, + -0.011244728, + -0.005679638, + -0.0031182326, + -0.0056987293, + -0.01169019, + 0.0036018768, + 0.003773698, + -0.0045246193, + 0.0075537595, + 0.005307359, + -0.008279226, + -0.0042764335, + 0.0033441454, + -0.0012107015, + 0.0016911639, + 0.010761084, + -0.01601117, + 0.026727708, + 0.009933799, + 0.013249307, + 0.00729921, + -0.015489344, + 0.0052278126, + 0.0103092585, + -0.009672885, + -0.0084255915, + 0.00455962, + 0.00043750711, + 0.00030903914, + 0.0028589102, + 0.005600091, + -0.010932906, + -0.020173056, + -0.0020093508, + -0.0032455074, + -0.003646423, + 0.006045553, + 0.0024182212, + 0.0022734462, + 0.0063032843, + 0.007611033, + -0.0034905113, + 0.008387409, + -0.011480187, + 0.0024866315, + 0.010022891, + -0.008896508, + 0.002346629, + -0.0013491128, + 0.01590935, + -0.0047887145, + 0.0027316355, + 0.0077955816, + -0.008463774, + -0.0006626244, + 0.0052819042, + -0.0028334553, + -0.0014517282, + 0.009551974, + 0.016036624, + 0.015158429, + -0.006322376, + -0.010971088, + -0.0021270802, + 0.010067437, + -0.011836557, + -0.00022730484, + -0.004887352, + 0.004772805, + -0.00041085898, + -0.002545496, + -0.007292846, + 0.00484917, + 0.0009227423, + -0.0029702757, + 0.00024599832, + 0.011378367, + -0.005756003, + -0.0013483174, + 0.010442898, + 0.008533776, + 0.0068155658, + -0.0018836671, + 0.0024357215, + -0.01883667, + 0.005157811, + 0.0036336957, + 0.0026409521, + -0.007254664, + 0.011925649, + 0.006268284, + -0.008209225, + -0.0017691198, + 0.0034714201, + -0.01646936, + -0.0072801188, + -0.0137711335, + 0.013083849, + -0.011569279, + -0.0026027698, + -0.0064941966, + 0.0069873864, + 0.0052819042, + 0.004731441, + 0.0013260443, + 0.012173834, + -0.00792922, + 0.0062778294, + -0.008788325, + -0.013783861, + 0.00040966578, + -0.006592835, + 0.0058069127, + 0.004992354, + 0.0135165835, + 0.0078910375, + 0.0053487234, + 0.0070128418, + -0.0045914385, + -0.009704703, + 0.003185052, + 0.0061791916, + -0.0050114454, + 0.00047449637, + -0.015196611, + 0.0080755865, + -0.0026616342, + -0.000978425, + -0.026778618, + 0.006834657, + 0.014611147, + -0.01737301, + -0.010691083, + -0.0075537595, + -0.0009004692, + 0.0069428403, + 0.0021079888, + -0.0062237377, + 0.015985714, + 0.004731441, + -0.01318567, + 0.004623257, + -0.015069337, + -0.0016593452, + 0.006923749, + 0.0021477623, + 0.00896651, + -0.00082887715, + 0.010360169, + 0.0014747968, + 0.0089601455, + 0.00027562949, + 0.0008344454, + -0.00524054, + 0.012154743, + -0.0002923343, + -0.011925649, + -0.013026576, + -0.008451046, + 0.013529311, + -0.006777383, + -0.0007425689, + 0.0053741783, + 0.013809316, + 0.0077510355, + -0.0071401163, + -0.008151951, + 0.0049032615, + -0.0051832665, + -0.008431955, + 0.0005627933, + 0.0039805193, + -0.0002611122, + 0.012447475, + -0.011384731, + -0.0020936704, + -0.001958441, + -0.0045023463, + -0.00040847255, + 0.0003410567, + -0.00003957451, + -0.0035923312, + -0.0010929724, + 0.0054473616, + 0.017971203, + -0.0089601455, + -0.0005981916, + 0.00070637517, + -0.007999221, + -0.002741181, + -0.011919285, + -0.008158315, + 0.0018788943, + 0.013020212, + 0.004114158, + 0.014929334, + 0.0039041545, + 0.009437427, + -0.012892937, + 0.0065419246, + 0.0041077943, + 0.0005703502, + -0.005361451, + -0.0041237036, + 0.0038055165, + 0.013732951, + -0.002255946, + -0.017856654, + 0.0006176805, + -0.004285979, + 0.010054709, + 0.007369211, + -0.015578436, + -0.004136431, + -0.0094246995, + 0.0035032388, + 0.0000071157056, + 0.008533776, + 0.006771019, + 0.002077761, + 0.011652008, + -0.0027952727, + -0.008120133, + 0.015171156, + -0.0028032274, + -0.004063248, + -0.0036400594, + 0.009201968, + 0.014611147, + 0.010283804, + 0.0029448208, + -0.0015233203, + 0.01727119, + 0.0038500628, + -0.010264712, + -0.008400137, + 0.007967402, + 0.017143916, + -0.003967792, + 0.007630124, + 0.012873846, + 0.009310151, + 0.0075092134, + -0.0046550757, + -0.008501956, + 0.0020443515, + -0.008342863, + 0.000563191, + -0.017958475, + 0.004231887, + 0.0024595854, + 0.0027475448, + 0.013338399, + -0.004667803, + 0.007738308, + 0.0051705386, + -0.0043273433, + -0.008489229, + -0.0137711335, + -0.014980244, + -0.021331256, + -0.013325672, + 0.0007930811, + -0.006392377, + 0.0010810404, + -0.005358269, + -0.017143916, + -0.0073310286, + -0.0106338095, + 0.0034364196, + -0.0010372896, + 0.0006152941, + -0.015489344, + 0.006284193, + -0.0084955925, + -0.0046328027, + 0.004333707, + -0.011734737, + 0.0075983056, + -0.008298317, + -0.006239647, + 0.0036750599, + -0.005625546, + -0.009857433, + -0.0026314065, + 0.00012379463, + 0.0037132422, + 0.0013697951, + -0.0059405514, + 0.0050337184, + 0.00008854548, + 0.0129120285, + 0.0078274, + -0.014852969, + -0.0032677804, + -0.0032105069, + 0.006169646, + 0.0007739899, + 0.0026329975, + -0.0102392575, + -0.004139613, + -0.005526908, + 0.016342085, + -0.0020729883, + 0.0084255915, + -0.012434748, + 0.00906833, + 0.0049796267, + -0.01053199, + -0.000857514, + -0.013923863, + 0.005418725, + 0.0016545724, + -0.009653794, + 0.013312944, + 0.005628728, + -0.002012533, + 0.013885681, + -0.001041267, + 0.003154824, + -0.00959652, + 0.014267505, + -0.0061791916, + 0.0021620807, + -0.0023625386, + -0.016571179, + 0.0106338095, + 0.0049891723, + -0.00406643, + -0.0055905455, + 0.0043432526, + -0.0044991644, + 0.021865811, + 0.0008093882, + 0.001858212, + 0.011524733, + 0.01631663, + -0.006411468, + 0.00268868, + -0.006898294, + 0.0043273433, + -0.015323886, + 0.007496486, + -0.015349341, + 0.005412361, + -0.00024699265, + 0.007432848, + -0.0037896072, + 0.013860226, + -0.0028843652, + 0.00002620071, + 0.013122032, + 0.0029018654, + -0.010862905, + -0.010404715, + -0.0019011673, + 0.0038055165, + -0.010862905, + -0.001310135, + -0.015476616, + 0.0010531989, + 0.0056446376, + 0.011142909, + 0.00178662, + -0.007986493, + -0.0060137343, + -0.010296531, + -0.0038023347, + -0.013554766, + -0.0074519394, + 0.0021986722, + -0.009373789, + -0.0007449553, + -0.0023514018, + -0.0010086528, + 0.013032939, + 0.011333821, + -0.00934197, + -0.01813666, + -0.00008372295, + 0.00027602722, + -0.016392995, + -0.013071122, + -0.000016108217, + -0.0019870778, + 0.00987016, + -0.0030800502, + -0.0030959595, + -0.002176399, + -0.013363854, + 0.004626439, + 0.0069364766, + -0.0046423483, + 0.012867482, + 0.005262813, + 0.013682041, + -0.019282132, + -0.0010253576, + 0.012161107, + 0.001172519, + 0.010143802, + -0.0040187016, + 0.004801442, + -0.008921963, + 0.00044983687, + -0.015769348, + 0.012651116, + -0.003894609, + -0.00035378418, + 0.0034777839, + -0.002744363, + 0.004282797, + -0.0037991528, + -0.0013077486, + -0.00075847824, + 0.0066246535, + -0.0010420624, + 0.0041300673, + 0.0053009954, + 0.010945633, + 0.014522055, + -0.00074893265, + 0.0022177633, + 0.0408043, + -0.0013809316, + 0.008839235, + -0.0024532217, + 0.020363968, + -0.0024866315, + 0.007999221, + 0.0014843424, + 0.0005126788, + -0.010684719, + -0.00033787484, + 0.02637134, + -0.01459842, + 0.005997825, + 0.011912921, + 0.014687512, + -0.0023148104, + 0.0037896072, + -0.0015503662, + 0.019676683, + 0.019943962, + -0.013402036, + -0.018658485, + -0.009418335, + -0.011403822, + 0.02106398, + 0.01194474, + -0.007789218, + -0.0025073136, + -0.0060296436, + 0.003430056, + -0.0024579945, + 0.006732837, + -0.017233009, + 0.011645644, + 0.0078019453, + -0.002885956, + -0.020147601, + 0.0031373238, + 0.0023943572, + -0.013414764, + 0.00047688276, + 0.001299794, + 0.007318301, + 0.00617601, + 0.000044769906, + 0.010971088, + 0.008839235, + -0.0019218494, + 0.01017562, + 0.00005593131, + 0.010468353, + -0.0070701153, + 0.0018948036, + 0.005157811, + -0.0031993703, + 0.002276628, + -0.0039264276, + 0.0011351322, + 0.012568386, + -0.002642543, + 0.012231109, + 0.005285086, + 0.004005974, + 0.004352798, + 0.004725077, + 0.014471144, + 0.00087183237, + -0.015463889, + 0.0045659835, + 0.019269405, + 0.004896898, + -0.003891427, + -0.0069364766, + 0.003840517, + 0.0041777953, + 0.023253106, + -0.0110283615, + -0.013783861, + -0.008444683, + 0.004575529, + 0.0039964286, + 0.014865696, + -0.0045437105, + -0.0046168934, + 0.0037355155, + -0.0156548, + 0.0039487006, + 0.0015957078, + 0.00066302216, + 0.009144695, + -0.0016124126, + 0.007025569, + -0.0070637516, + 0.0009808114, + 0.004553256, + 0.009793796, + 0.004403708, + -0.008756506, + -0.0025629962, + -0.0006705791, + -0.008451046, + -0.008221952, + -0.00089410547, + 0.008921963, + -0.0048523517, + 0.0012918392, + -0.009513792, + 0.015349341, + 0.0054537253, + -0.0035223302, + -0.025187682, + -0.0038596084, + 0.00041284764, + 0.004282797, + 0.007521941, + 0.0039264276, + 0.0052341763, + -0.00924015, + 0.0026600433, + -0.00093944714, + 0.016813, + -0.015145701, + -0.0026059516, + -0.01924395, + -0.001907531, + -0.021394894, + 0.0032407346, + 0.00082410435, + 0.0014040001, + -0.0007425689, + 0.0050305366, + -0.010264712, + -0.0068855667, + 0.011645644, + 0.0112383645, + -0.0029989125, + -0.0064210137, + 0.00047688276, + -0.00301164, + -0.007560123, + 0.003617786, + 0.001211497, + -0.0036559687, + -0.017793017, + 0.004266888, + 0.0010166075, + 0.014776604, + 0.01126382, + 0.0082855895, + -0.007362847, + -0.016329357, + -0.0068410207, + 0.017538467, + 0.0055682724, + -0.0032232343, + 0.010735629, + 0.0012854754, + -0.009501064, + -0.009316515, + 0.0085401395, + -0.01199565, + -0.010022891, + -0.014331142, + 0.0037291516, + -0.013071122, + -0.0020013961, + -0.010022891, + -0.0025820874, + 0.0030784593, + -0.0019043492, + -0.008476501, + -0.009437427, + -0.00097365223, + 0.00023545838, + 0.008241043, + -0.018467573, + -0.013427491, + -0.021203982, + 0.0076237605, + 0.0027364083, + -0.0016911639, + 0.006099645, + -0.0054059974, + 0.005660547, + 0.007496486, + -0.004801442, + -0.0038055165, + -0.011251092, + -0.0004784737, + -0.005339178, + 0.0055491813, + -0.012962938, + 0.010156529, + -0.0010961542, + -0.0026791345, + -0.008552867, + -0.004651894, + -0.0076492154, + -0.008781961, + 0.008591049, + 0.0040218835, + -0.0010722902, + -0.004597802, + 0.014063866, + 0.012969302, + -0.0013920681, + 0.016342085, + 0.0003842108, + -0.0077701267, + -0.007757399, + 0.00033688048, + -0.0005222244, + 0.012848391, + -0.0044959825, + 0.00026091334, + -0.019371225, + -0.019205768, + 0.007388302, + -0.004308252, + -0.0020904886, + 0.00581964, + -0.0014032046, + 0.00069484086, + 0.009914707, + 0.013109305, + -0.011187455, + -0.013402036, + 0.004604166, + 0.008508321, + -0.0016482087, + 0.0053009954, + -0.005310541, + -0.004165068, + -0.012485658, + -0.0021509442, + 0.0007811491, + -0.0144456895, + -0.00411734, + 0.0044641634, + -0.012072015, + 0.012962938, + -0.0058164583, + -0.00518963, + -0.0075537595, + -0.00035696605, + 0.0048555336, + -0.0041682497, + 0.0034777839, + 0.0056510014, + -0.002839819, + -0.0044100718, + 0.011155636, + -0.0025836783, + -0.010824722, + -0.00066779496, + -0.014980244, + -0.0075792144, + 0.0049000797, + -0.0007091593, + 0.004473709, + 0.0028016365, + 0.006656472, + 0.0062555564, + 0.0017516194, + 0.0036909692, + 0.0067646555, + -0.003426874, + -0.012651116, + 0.000076116296, + -0.0048364424, + -0.02040215, + 0.010385624, + 0.012434748, + 0.0055491813, + -0.00041642724, + 0.018416664, + -0.0025279957, + -0.0043050703, + 0.00089012814, + -0.011709281, + -0.011594734, + 0.005068719, + -0.012135652, + -0.00050830375, + 0.0145602375, + -0.002079352, + -0.002812773, + -0.01313476, + 0.0017452557, + -0.008317408, + 0.0031659608, + -0.008775597, + -0.0014437735, + -0.011410186, + 0.0059405514, + -0.0068410207, + -0.0088201435, + -0.0007998426, + -0.024614947, + -0.0028557284, + -0.013847498, + 0.0014851379, + 0.0108183585, + 0.0065482883, + 0.0060041887, + 0.0046328027, + 0.0028445919, + 0.0065164696, + 0.011537461, + -0.0037291516, + 0.016583906, + 0.0008845599, + -0.011410186, + 0.0066055623, + 0.0022670825, + 0.0108183585, + 0.0045882566, + 0.011607462, + 0.009621975, + -0.0056923656, + -0.0008591049, + -0.009857433, + -0.0033027811, + -0.016291175, + -0.020440333, + -0.0024595854, + -0.010372897, + -0.006923749, + 0.010977452, + 0.0007672284, + 0.015056609, + -0.0035064209, + 0.010621082, + -0.005269177, + -0.009348334, + 0.006860112, + 0.021878539, + -0.0025391323, + 0.007547396, + -0.0031039142, + -0.0024659492, + 0.016189355, + -0.007369211, + 0.0019170766, + -0.017283918, + 0.0022368545, + 0.0020411697, + -0.007560123, + 0.006121918, + -0.027160443, + -0.01037926, + -0.0038818815, + 0.007566487, + 0.018493028, + -0.002477086, + 0.0057210024, + 0.009539247, + 0.012861119, + 0.013567494, + -0.004801442, + -0.0053869057, + 0.004263706, + 0.009691976, + -0.00013244533, + -0.0050305366, + -0.004451436, + 0.0014016137, + -0.001907531, + 0.0058546406, + -0.00007333216, + -0.008826507, + -0.0020904886, + 0.00042955246, + -0.011155636, + 0.0074073933, + -0.011575643, + -0.0004263706, + 0.01235202, + -0.0068028383, + 0.0028334553, + -0.015145701, + 0.0067201094, + 0.015896622, + -0.020440333, + -0.0021063979, + -0.004537347, + -0.0010285395, + 0.007121025, + -0.006265102, + 0.0060264617, + -0.012180198, + -0.016876638, + 0.004511892, + -0.005065537, + -0.0072228448, + 0.018913036, + -0.011225637, + 0.0022384454, + 0.004228705, + 0.006246011, + 0.010538354, + 0.0014509327, + 0.0007521145, + 0.007560123, + -0.011181091, + 0.0033918736, + 0.00484917, + -0.004448254, + -0.009462882, + -0.026651343, + 0.0089601455, + 0.0073055737, + 0.00054608844, + 0.0013363854, + 0.0024627673, + 0.0037768797, + 0.005418725, + -0.011594734, + -0.004728259, + 0.012943847, + 0.032251436, + -0.013885681, + -0.0030386858, + 0.009462882, + -0.0015082064, + 0.003256644, + 0.003649605, + -0.007541032, + -0.008107405, + -0.004161886, + 0.0055173626, + 0.0005643842, + -0.004250978, + 0.0078019453, + -0.0010102438, + -0.009520155, + -0.01767847, + 0.0060805534, + -0.018709395, + -0.00573373, + 0.012173834, + 0.0133765815, + -0.0117029175, + -0.0009991071, + 0.0018311662, + 0.013682041, + -0.004779169, + 0.009138331, + 0.011613825, + -0.010474716, + -0.0076237605, + 0.00021954904, + -0.0027093624, + 0.0072037536, + -0.015642073, + 0.0002923343, + -0.012606569, + 0.0127020255, + 0.012733844, + 0.012485658, + 0.0019854868, + 0.0030402767, + -0.0029448208, + 0.0008686505, + 0.0143056875, + 0.011785647, + -0.0054091793, + 0.0027220899, + 0.0015121837, + 0.004629621, + 0.0014032046, + 0.021025797, + -0.0057114568, + -0.007254664, + 0.0062778294, + -0.0015352523, + -0.005192812, + 0.01757665, + -0.0024595854, + -0.013414764, + 0.014572965, + -0.0043050703, + 0.0016124126, + 0.004091885, + 0.0007556941, + -0.0018900308, + 0.00029591392, + 0.0011534279, + -0.0132365795, + 0.009431063, + 0.008985601, + 0.0009991071, + 0.009348334, + 0.0063764676, + 0.016023897, + 0.007999221, + 0.0019663956, + 0.003500057, + -0.0060932813, + -0.0044100718, + -0.0012083151, + 0.00091876497, + -0.0012472931, + 0.0005739298, + -0.010016527, + -0.00020383854, + 0.013923863, + -0.0119574675, + 0.005307359, + -0.009774704, + -0.006195101, + -0.007617397, + -0.014267505, + 0.010512899, + -0.0063382853, + -0.02520041, + -0.011963831, + 0.00626192, + 0.0009911525, + -0.012409293, + -0.006389195, + 0.0000660238, + -0.006086917, + -0.0037577886, + -0.001543207, + 0.011136545, + 0.0023084467, + -0.0044641634, + 0.00020523062, + 0.013389309, + 0.00086705957, + -0.004158704, + -0.0022161724, + 0.006535561, + -0.008126496, + 0.0023832207, + -0.0033950554, + -0.007471031, + -0.010022891, + 0.0021063979, + -0.0009092194, + -0.003404601, + 0.008705596, + -0.0006586471, + 0.021331256, + 0.004976445, + -0.002302083, + -0.0047855326, + -0.007591942, + 0.0033027811, + 0.0076428517, + -0.0008551276, + -0.00009819052, + -0.005221449, + -0.00886469, + -0.0049096253, + 0.0033027811, + -0.0034905113, + -0.0023673114, + 0.012078378, + 0.008253771, + -0.006188737, + 0.001934577, + 0.019218495, + -0.01434387, + -0.0064687417, + -0.0024595854, + -0.016571179, + 0.008317408, + 0.0062046465, + 0.0027554994, + -0.000076862045, + 0.0037291516, + -0.0043177977, + -0.0022702643, + -0.008247407, + 0.0013626359, + 0.007057388, + -0.011505642, + -0.010945633, + -0.007910129, + 0.004756896, + -0.0028334553, + -0.006411468, + 0.006128282, + -0.003328236, + 0.00823468, + 0.0010531989, + 0.00362415, + -0.01429296, + -0.0013228625, + 0.010589263, + -0.002788909, + 0.0015424115, + 0.016596634, + -0.014267505, + 0.0038023347, + -0.011047453, + -0.0053869057, + -0.000057671394, + 0.011442005, + -0.0023577658, + 0.0035446032, + -0.006790111, + -0.007865583, + 0.007719217, + 0.010073801, + 0.004483255, + 0.0144966, + -0.00095535646, + 0.0070701153, + -0.015731165, + -0.007541032, + 0.0067646555, + 0.01106018, + -0.0060041887, + 0.0052819042, + 0.0127720265, + 0.00070200005, + 0.0022113996, + -0.013249307, + -0.008533776, + -0.011079271, + -0.0047155316, + -0.008164679, + -0.008151951, + -0.0041046124, + 0.0051800846, + 0.0018693487, + 0.009819251, + 0.004553256, + 0.014687512, + 0.0022861736, + 0.010875632, + 0.0033823277, + 0.01601117, + -0.004012338, + -0.0081455875, + 0.0009338789, + -0.0061346455, + -0.0048841704, + -0.0015320705, + -0.00014636602, + 0.0038977908, + 0.007757399, + 0.00866105, + 0.0023291288, + 0.0037896072, + -0.0014366143, + 0.01313476, + -0.015043882, + 0.01100927, + -0.002496177, + 0.013860226, + 0.0028064093, + -0.005654183, + 0.0012974076, + -0.0017229826, + 0.0033568728, + 0.007394666, + 0.018849399, + -0.013109305, + -0.0070701153, + 0.0012934302, + 0.005355087, + -0.016685726, + -0.00048841705, + 0.0009203559, + -0.009087421, + 0.0011653599, + 0.0027809544, + -0.008597413, + 0.000484042, + 0.0015344569, + -0.003185052, + -0.0108183585, + -0.013160215, + 0.0026632252, + -0.009437427, + -0.0072292085, + -0.0068919305, + 0.012492022, + -0.011626553, + -0.01158837, + -0.0050050816, + 0.012402929, + -0.0061314637, + -0.0016561634, + -0.0010484261, + -0.009844705, + -0.0034205103, + 0.006325558, + 0.0070382967, + -0.0132365795, + -0.016138446, + 0.0014557055, + 0.003156415, + -0.0054791803, + -0.0017659379, + 0.002082534, + -0.009418335, + -0.008788325, + -0.012962938, + 0.012466567, + -0.016240265, + 0.0028732286, + -0.0037036967, + -0.011518369, + -0.0062778294, + 0.008018312, + 0.0018470755, + 0.016583906, + 0.017653015, + -0.009551974, + 0.005756003, + 0.006042371, + 0.0072610276, + -0.0013451355, + -0.007057388, + -0.011836557, + -0.024169484, + -0.013478401, + 0.002201854, + 0.0053169047, + -0.0037514248, + 0.0053200866, + 0.0025518597, + 0.011982922, + -0.009539247, + -0.011448368, + -0.0026473159, + -0.00964743, + -0.0034141466, + 0.0027077715, + 0.0017484375, + 0.004600984, + -0.013860226, + -0.0045246193, + -0.016074806, + -0.016532997, + -0.006904658, + -0.025416778, + 0.0063287397, + 0.015883895, + -0.008158315, + -0.008591049, + -0.0029973215, + -0.0036527868, + 0.004009156, + 0.012154743, + 0.0027045896, + 0.0060105524, + 0.0052532675, + 0.0102392575, + -0.0007298414, + 0.00060296437, + -0.006020098, + 0.0057910034, + 0.019409407, + -0.0057878215, + 0.0030784593, + 0.008482865, + -0.010786539, + -0.019663956, + -0.014534783, + -0.0028955017, + -0.0026504977, + 0.004314616, + 0.0007338188, + -0.0011963831, + 0.0049064434, + 0.0029145929, + 0.003331418, + 0.0024039028, + -0.017283918, + -0.016176628, + 0.020733066, + 0.008011948, + -0.017538467, + 0.0010261531, + 0.013109305, + -0.0064019226, + 0.007127389, + 0.005412361, + 0.0049255346, + -0.00719739, + 0.008775597, + 0.006771019, + -0.0019123039, + 0.007992857, + -0.003939155, + 0.007471031, + 0.006169646, + -0.00866105, + -0.004044157, + -0.003452329, + 0.0038882452, + 0.001859803, + 0.012797481, + 0.008279226, + 0.004209614, + -0.015158429, + 0.00076245563, + -0.0016370721, + -0.0105829, + -0.0037386974, + 0.005657365, + 0.010519262, + -0.0019536682, + 0.010684719, + -0.007515577, + 0.015094792, + -0.0034841476, + 0.009023784, + 0.0016800273, + -0.0100292545, + 0.0032470983, + -0.0026329975, + -0.0013244534, + 0.0013968409, + 0.0035350577, + -0.022654915, + 0.00010947621, + 0.011123817, + 0.006751928, + 0.008635595, + 0.0031802792, + -0.00011633712, + -0.006325558, + 0.0121674705, + 0.0071337526, + -0.0032152797, + 0.00046654168, + 0.009386516, + 0.00039097227, + -0.012434748, + 0.0000047168737, + -0.008794689, + -0.006481469, + 0.00027543062, + -0.0062014647, + -0.013834771, + 0.00022631051, + -0.001199565, + -0.01184292, + 0.013071122, + 0.011951104, + -0.01601117, + -0.011378367, + -0.0038086984, + -0.0017420738, + 0.0052023577, + -0.0048587155, + 0.012084742, + -0.014458417, + 0.02217127, + 0.0022639006, + -0.008508321, + -0.007413757, + 0.008011948, + 0.0005655774, + -0.002325947, + -0.0088901445, + -0.009030147, + 0.006322376, + -0.018620303, + 0.0050114454, + -0.011645644, + 0.00234822, + 0.0021238981, + 0.0018534393, + -0.004893716, + -0.008699233, + -0.003770516, + 0.008686505, + -0.019473044, + -0.0021986722, + 0.0004490414, + -0.0016975277, + -0.0057369117, + -0.011798374, + 0.0087501425, + -0.014229323, + -0.0072292085, + 0.0032741441, + -0.009602884, + 0.0007743876, + -0.0074264845, + 0.014725694, + 0.0021636717, + -0.008533776, + -0.004263706, + 0.003697333, + 0.012218381, + -0.00823468, + -0.00023048671, + 0.0023911754, + -0.0033155086, + -0.0038627903, + 0.009131967, + 0.0032677804, + 0.0049637174, + -0.012606569, + 0.0017007096, + 0.012612932, + -0.0103092585, + 0.015145701, + 0.016074806, + 0.022591278, + -0.00014040002, + -0.0053423597, + 0.0023307197, + -0.0007863196, + -0.004670985, + 0.0153747955, + -0.0020888976, + 0.00056955474, + -0.0040759756, + 0.0036877873, + 0.0035382395, + 0.002103216, + -0.023240378, + 0.0007004091, + -0.004314616, + -0.012733844, + 0.012816573, + 0.0046359845, + 0.0070192055, + 0.009501064, + -0.009418335, + -0.009672885, + -0.009526519, + -0.0054441798, + -0.0020395787, + 0.000394353, + 0.0016609362, + -0.0061314637, + -0.02632043, + -0.009437427, + -0.002201854, + -0.00043750711, + -0.007121025, + 0.011900194, + -0.010722902, + 0.0024070847, + -0.004753714, + 0.008164679, + -0.0001245901, + 0.0066755633, + 0.0075728507, + -0.007757399, + 0.0067137456, + -0.0050591733, + 0.0038023347, + 0.002421403, + -0.008482865, + 0.003961428, + 0.013147487, + -0.013249307, + -0.0030943686, + 0.0070446604, + 0.012409293, + 0.0024420852, + 0.0084065, + -0.0041459766, + -0.0019632138, + 0.0039264276, + 0.0140256835, + 0.015947532, + -0.0057210024, + 0.0048364424, + -0.0049796267, + 0.008527412, + -0.0012807027, + 0.00091717404, + 0.0027905, + -0.014102048, + -0.0051228106, + -0.00845741, + -0.0035605126, + -0.0015225247, + -0.008196497, + -0.010831086, + 0.00067932927, + 0.006904658, + -0.0035159665, + -0.004912807, + -0.01032835, + -0.0053200866, + 0.0052787224, + -0.0051291743, + 0.007547396, + 0.0060041887, + 0.005797367, + -0.0043496164, + -0.0005679638, + 0.006790111, + -0.01100927, + 0.0050782645, + 0.008470138, + -0.015616618, + 0.0161639, + -0.0059405514, + -0.00013791418, + 0.0102392575, + 0.0062523745, + -0.004285979, + 0.0050019, + 0.002863683, + -0.00420325, + -0.0041491585, + -0.0087501425, + 0.002941639, + -0.002599588, + 0.008196497, + -0.0018311662, + 0.00092592416, + -0.010194711, + -0.0024150393, + 0.01100927, + 0.011830193, + 0.0076428517, + -0.00017728982, + -0.013478401, + 0.015336613, + -0.0028095911, + 0.009418335, + -0.006191919, + -0.006631017, + -0.014114776, + -0.003942337, + 0.0122502, + 0.003208916, + 0.010945633, + -0.0022575369, + 0.007617397, + -0.010761084, + 0.0022734462, + -0.0009839933, + -0.0038977908, + 0.010360169, + 0.0050750826, + -0.0067392006, + -0.0156548, + 0.0052978136, + 0.004044157, + -0.013013848, + 0.004823715, + -0.0019473045, + 0.01691482, + 0.010646537, + -0.011652008, + -0.016736636, + 0.0034714201, + 0.018149387, + -0.00097047037, + 0.00573373, + 0.0100292545, + 0.017054824, + 0.009112876, + -0.005110083, + -0.0019950324, + -0.010506535, + 0.009876524, + 0.012014741, + 0.006790111, + -0.0011025179, + 0.009074694, + 0.013923863, + -0.0038436989, + -0.008756506, + -0.00012548499, + -0.008011948, + -0.00032136886, + 0.0070828428, + 0.015158429, + -0.0059150965, + -0.004756896, + 0.009106512, + -0.013032939, + -0.0011709281, + 0.0006351808, + 0.009914707, + -0.0010070619, + -0.0075792144, + 0.0044387085, + -0.011486551, + -0.005552363, + 0.0043655257, + -0.009800159, + 0.0031993703, + 0.015120246, + -0.011925649, + -0.00901742, + 0.01189383, + -0.0039487006, + -0.0008145587, + 0.010506535, + 0.009711067, + 0.0048141694, + 0.011181091, + 0.00008849576, + 0.017283918, + -0.0009911525, + 0.00015163599, + 0.002400721, + -0.006392377, + -0.008043767, + -0.002303674, + -0.009208332, + 0.013643859, + -0.0034555108, + 0.00045182553, + 0.000056875928, + -0.008667414, + -0.00007676261, + -0.011512006, + -0.007763763, + 0.005269177, + -0.0034714201, + -0.009284697, + 0.01048108, + 0.021751264, + -0.005507817, + -0.006316012, + -0.0062555564, + 0.014267505, + -0.009583793, + -0.0036655143, + -0.0039327913, + 0.0049032615, + -0.0019695775, + 0.0144456895, + -0.017831199, + -0.0020507153, + -0.004728259, + 0.009583793, + -0.017220281, + 0.011403822, + 0.00050949695, + 0.0066882907, + -0.008565594, + 0.0047855326, + 0.022311272, + 0.006198283, + 0.009590156, + -0.00073700066, + -0.011219273, + 0.011378367, + 0.00054370204, + -0.005638274, + -0.0029305024, + 0.0000114410595, + -0.0008046154, + -0.0029082291, + -0.0034396015, + 0.014152958, + -0.005017809, + -0.0033441454, + -0.009838342, + -0.0004748941, + 0.0056732744, + 0.0047059855, + -0.00954561, + -0.008673778, + 0.00040489295, + -0.007712853, + -0.008190134, + -0.00964743, + -0.011766556, + 0.005800549, + 0.0040759756, + 0.0084255915, + 0.012695662, + -0.01184292, + 0.008342863, + 0.0037100604, + -0.018493028, + -0.0113529125, + -0.0056128185, + 0.0037227878, + -0.008171042, + 0.0066691996, + 0.014483873, + -0.006373286, + 0.0074264845, + 0.009271969, + -0.0028064093, + 0.020389423, + -0.0019886687, + -0.0060264617, + 0.004155522, + -0.012447475, + 0.004260524, + -0.007884674, + 0.0027554994, + -0.00020881022, + 0.009717431, + -0.0026170881, + 0.0020507153, + 0.0067646555, + -0.012479294, + -0.012212018, + 0.0029050473, + -0.013465674, + -0.016647544, + -0.004005974, + 0.017169371, + -0.0064528324, + 0.0062078284, + -0.0062078284, + -0.0050591733, + 0.0041968864, + -0.0012449067, + 0.00134434, + -0.010391988, + 0.0039232457, + -0.0071846624, + -0.0009108103, + -0.003452329, + -0.007000114, + -0.000009539395, + -0.0039996104, + -0.008737415, + -0.00014626658, + -0.0056987293, + -0.0056478195, + 0.008629232, + 0.007846491, + -0.0010094483, + -0.007515577, + -0.0034650564, + 0.0007541032, + -0.00714648, + 0.010016527, + -0.0018566211, + -0.015171156, + 0.014089321, + 0.00033827257, + -0.009042875, + 0.015183884, + 0.016176628, + -0.01883667, + 0.022438547, + 0.0034427834, + 0.010646537, + -0.0040155197, + 0.0022957192, + -0.013172942, + 0.0032152797, + -0.0037323334, + 0.0029941397, + -0.0076046693, + -0.013618404, + 0.0063351034, + -0.0035923312, + -0.008317408, + 0.009590156, + -0.0039264276, + 0.0013483174, + -0.001029335, + -0.009106512, + -0.00067018135, + -0.020923978, + -0.0034682383, + 0.005195994, + -0.0077319443, + 0.0029575482, + 0.00075728504, + 0.004938262, + -0.004422799, + 0.014000228, + -0.0059882794, + -0.0017595742, + -0.012542931, + -0.015667528, + -0.0110983625, + -0.0008169451, + 0.0043973443, + 0.001885258, + 0.0037227878, + 0.0020634427, + 0.0043177977, + -0.013694769, + 0.020796703, + 0.011613825, + 0.015005699, + 0.015642073, + -0.0033855096, + 0.006481469, + -0.008603777, + -0.006169646, + 0.021776719, + -0.0005174516, + -0.0052278126, + 0.029375024, + 0.0077255806, + -0.0103538055, + -0.0059119146, + -0.008794689, + -0.0054728165, + 0.004597802, + -0.0005608046, + -0.006366922, + -0.009863797, + 0.0059628244, + -0.0003434431, + 0.0018104841, + -0.0045182556, + -0.00039773376, + -0.0061823735, + -0.0129820295, + 0.008686505, + -0.000027095612, + -0.005701911, + 0.0010531989, + -0.0037005148, + 0.003088005, + 0.011384731, + -0.0050050816, + -0.018429391, + 0.0066946545, + -0.0058641867, + 0.0076873978, + 0.0055650906, + -0.00823468, + 0.004893716, + -0.00035378418, + 0.008037403, + 0.0013777497, + 0.0029177747, + -0.0023800388, + 0.008648323, + -0.0035541488, + -0.0056923656, + -0.003331418, + 0.010926542, + 0.0047823507, + -0.004970081, + 0.0044100718, + -0.004998718, + 0.026829528, + -0.004209614, + 0.014483873, + 0.0021748082, + -0.0016975277, + 0.006246011, + 0.015247521, + -0.013847498, + 0.005415543, + -0.0043018884, + -0.0056923656, + 0.013071122, + -0.009857433, + 0.0050082635, + -0.013962045, + 0.003060959, + 0.00080779725, + 0.0016609362, + -0.0035127846, + 0.007464667, + 0.005606455, + 0.00051069015, + -0.00097047037, + -0.0010269486, + -0.004206432, + 0.0036623324, + 0.0011772919, + -0.0116329165, + 0.0061601005, + -0.021471258, + -0.003328236, + -0.0036432412, + -0.0016219582, + -0.004266888, + -0.005657365, + 0.011136545, + 0.008171042, + 0.000043278404, + -0.003328236, + -0.010461989, + -0.017169371, + 0.0004581893, + -0.012390202, + 0.013962045, + -0.005173721, + 0.016953003, + 0.0072292085, + -0.012059287, + 0.0013530903, + -0.002543905, + -0.0023132195, + -0.0035159665, + -0.017245736, + 0.00866105, + 0.010735629, + 0.015972987, + -0.0050496277, + -0.004890534, + 0.0005926233, + -0.0063510127, + 0.0072101173, + 0.0060550985, + -0.00022710598, + 0.005141902, + -0.013312944, + 0.0084955925, + -0.010181984, + -0.0077510355, + -0.017831199, + 0.0074455757, + 0.0013928636, + -0.008463774, + 0.0055459994, + 0.003350509, + -0.010990179, + 0.018340299, + -0.009806523, + -0.007101934, + -0.011811102, + 0.010181984, + -0.004919171, + -0.011187455, + -0.007362847, + 0.008228316, + -0.0037068785, + 0.009768341, + -0.0041491585, + -0.007025569, + -0.008381045, + -0.00020383854, + -0.0044132536, + 0.007547396, + 0.0067646555, + -0.006923749, + -0.0060360073, + 0.0051005376, + 0.0012751344, + 0.00088774174, + -0.011537461, + -0.018760305, + -0.015425706, + -0.003547785, + -0.003818244, + 0.0026107244, + -0.0033123267, + 0.008909236, + -0.003872336, + 0.008699233, + -0.0046868944, + 0.0020363969, + -0.0035350577, + -0.00006761474, + -0.010442898, + -0.007916492, + -0.0043973443, + -0.00823468, + 0.0038214258, + 0.009908344, + 0.0068155658, + -0.010945633, + -0.010385624, + -0.0032216434, + -0.010932906, + -0.0050050816, + -0.01083745, + 0.0049668993, + -0.001248884, + 0.005440998, + 0.017385738, + 0.017194826, + 0.0018884399, + -0.000120314464, + 0.008266498, + -0.0048396243, + -0.008546503, + -0.003186643, + 0.00094660633, + -0.0033027811, + 0.002345038, + 0.001238543, + -0.0020220785, + 0.016825728, + 0.004801442, + -0.015222066, + -0.0043496164, + 0.00896651, + -0.00051665615, + 0.0065164696, + 0.0022702643, + 0.014687512, + 0.018951219, + -0.0023864026, + -0.023049466, + -0.0012655888, + 0.02162399, + -0.0033855096, + 0.01919304, + 0.0228331, + 0.0011828602, + 0.012091106, + 0.0034109647, + 0.0025836783, + 0.01853121, + -0.0043209796, + 0.009590156, + 0.0022909464, + -0.012657479, + -0.009857433, + -0.006169646, + 0.019180313, + -0.0070701153, + 0.00017400851, + 0.007439212, + 0.00008561219, + -0.003990065, + -0.0005421111, + 0.0043877987, + -0.0049796267, + -0.00005488726, + -0.012434748, + 0.0059405514, + -0.00053177006, + 0.025264047, + 0.005638274, + 0.0072673913, + -0.002889138, + -0.0018932127, + -0.006061462, + 0.003500057, + -0.0057655484, + -0.0029670938, + -0.0024850406, + -0.004511892, + -0.00537736, + -0.0073310286, + 0.0033123267, + -0.007292846, + -0.007521941, + 0.019574864, + 0.0010094483, + 0.006561016, + 0.0075983056, + 0.008139224, + 0.0020013961, + -0.015336613, + 0.00028179438, + -0.0036368775, + 0.007216481, + -0.0027570904, + 0.009329243, + 0.010442898, + -0.009781068, + 0.03726606, + -0.01318567, + -0.039200637, + -0.010436534, + 0.009672885, + 0.015082064, + -0.0073310286, + 0.004600984, + -0.0035923312, + -0.010907451, + 0.010977452, + 0.0026075426, + -0.003891427, + -0.0012186562, + 0.0030927777, + -0.000021651631, + -0.00080421765, + -0.01596026, + -0.008050132, + 0.0062301015, + -0.009984708, + 0.0006510902, + 0.0053869057, + 0.00493508, + 0.0128420275, + -0.011002907, + -0.0054059974, + 0.012377474, + 0.0043877987, + -0.004047339, + -0.0070701153, + 0.010722902, + -0.008622868, + -0.005262813, + -0.0007286482, + 0.008298317, + 0.0022734462, + 0.006433741, + -0.0061251, + -0.0014469554, + 0.00362415, + 0.01075472, + -0.0028557284, + -0.003748243, + 0.004674167, + 0.01934577, + -0.011734737, + -0.0083555905, + -0.009831978, + -0.0063287397, + -0.0056096367, + 0.005603273, + -0.0023402653, + 0.0016991186, + -0.015476616, + -0.0024182212, + -0.0010404715, + -0.004970081, + -0.00033170995, + -0.0051705386, + 0.006487833, + 0.009131967, + 0.000770808, + -0.009685612, + -0.0008304681, + -0.0040377933, + -0.012288382, + -0.005160993, + 0.005625546, + 0.0129820295, + 0.0070701153, + -0.0072419364, + 0.006828293, + 0.0055619087, + 0.001641845, + -0.0041205217, + -0.006611926, + -0.010073801, + 0.0038532447, + 0.0038532447, + 0.006662836, + -0.002815955, + -0.002345038, + 0.0056955474, + 0.0076046693, + 0.006586471, + -0.005803731, + -0.014051138, + 0.0021588989, + -0.0007875128, + 0.01676209, + -0.0038341533, + 0.003154824, + -0.0037100604, + -0.006751928, + 0.0012496795, + 0.0029909578, + -0.014000228, + 0.007458303, + 0.006637381, + -0.008400137, + 0.0153747955, + 0.001909122, + 0.006188737, + -0.0041300673, + -0.0044641634, + -0.0053709964, + -0.00037267653, + -0.0033091449, + 0.0027936818, + -0.0029193657, + 0.010442898, + -0.0038850633, + 0.0003806312, + -0.0139111355, + -0.0067392006, + 0.008361954, + 0.007712853, + 0.00086069584, + 0.005953279, + -0.01111109, + -0.002157308, + -0.022298545, + -0.0009824024, + -0.0042732516, + -0.01121291, + -0.002346629, + -0.013694769, + -0.01272748, + 0.0045468924, + -0.0072292085, + -0.015158429, + 0.0060328254, + 0.0077064894, + -0.0071082977, + 0.012619296, + 0.009144695, + -0.0095647015, + -0.004887352, + -0.0019966234, + 0.0073755747, + 0.003942337, + 0.0045405286, + 0.00006169845, + 0.0028382281, + -0.009329243, + 0.010843813, + -0.0038500628, + -0.004403708, + 0.004483255, + -0.0038086984, + -0.0056096367, + -0.0024595854, + 0.008934691, + 0.008368318, + 0.020414878, + 0.006561016, + 0.00004181176, + -0.0071528438, + -0.0024182212, + -0.00911924, + -0.01257475, + 0.009157422, + 0.010315622, + -0.0033696003, + -0.00064949924, + 0.022209452, + 0.003129369, + -0.01934577, + -0.0011311548, + -0.0064464686, + -0.00057790714, + 0.00058427086, + 0.00995289, + 0.009380152, + 0.003500057, + 0.001431046, + -0.006732837, + -0.008101041, + -0.00021119662, + -0.007712853, + -0.0028923198, + -0.0052978136, + 0.0044418904, + -0.012282019, + 0.0007433644, + 0.013211125, + -0.0013332035, + 0.00017291475, + -0.005412361, + -0.0032773262, + -0.019714866, + 0.004801442, + -0.011798374, + -0.010805631, + 0.0036750599, + -0.0026043607, + 0.0046805306, + -0.019358497, + -0.009475609, + 0.012059287, + -0.018073022, + -0.000004754161, + 0.008603777, + -0.020198511, + -0.010691083, + -0.006106009, + 0.006968295, + 0.010041982, + -0.003958246, + 0.00714648, + 0.00076364883, + -0.009730158, + 0.0066182897, + -0.013198397, + -0.0019488954, + 0.009170149, + 0.01184292, + 0.0019027583, + -0.006637381, + -0.00045779155, + -0.0012170653, + -0.005536454, + -0.014038411, + 0.009520155, + 0.0015328659, + -0.006217374, + 0.0045946203, + -0.0014215005, + 0.006930113, + -0.007076479, + -0.0059182784, + 0.014407507, + 0.012326565, + 0.018302117, + 0.011798374, + -0.006090099, + -0.016329357, + -0.008928327, + -0.003251871, + 0.014992972, + 0.00729921, + 0.007471031, + 0.009131967, + -0.0002750329, + -0.004314616, + 0.0016959368, + -0.014038411, + 0.0002605156, + -0.0062046465, + 0.0021636717, + -0.0094246995, + 0.006631017, + 0.0020729883, + 0.0006992159, + 0.01204656, + 0.01288021, + 0.0017500285, + 0.0013133169, + -0.012161107, + -0.0037832435, + -0.009838342, + 0.011015634, + 0.012695662, + -0.010710174, + 0.00435598, + -0.00440689, + -0.009615611, + -0.0105638085, + 0.0075028497, + -0.012409293, + 0.0013737724, + -0.0045023463, + -0.013007484, + 0.00969834, + 0.0000063171306, + -0.0015591163, + -0.016392995, + 0.0011271775, + 0.00016157933, + -0.0047696233, + -0.0013507039, + -0.0029686848, + 0.008342863, + 0.009526519, + -0.0027618632, + 0.01121291, + -0.009049239, + -0.0037386974, + -0.018213024, + 0.0013196806, + 0.0027777725, + 0.005065537, + -0.013567494, + -0.0062014647, + -0.0047409865, + 0.0075028497, + 0.0049255346, + -0.0022957192, + -0.0024070847, + 0.0014811605, + 0.004454618, + 0.0061410093, + 0.0011788829, + -0.011130181, + 0.007738308, + 0.004772805, + -0.0057210024, + -0.009437427, + -0.006306466, + -0.009787432, + -0.004266888, + -0.011308366, + -0.013402036, + -0.018327571, + 0.0136311315, + -0.0051482655, + 0.001041267, + 0.0116329165, + 0.012237472, + 0.002815955, + 0.0015607072, + -0.0067646555, + 0.000857514, + -0.010080164, + -0.0039105183, + -0.0056891837, + 0.010245621, + -0.002567769, + -0.01727119, + 0.0026234519, + 0.009157422, + 0.013847498, + 0.005485544, + -0.00484917, + -0.0011645644, + -0.0052119032, + -0.013580222, + -0.007935584, + 0.0056891837, + 0.0018629848, + -0.0037896072, + 0.0058673685, + 0.0094947005, + 0.007833764, + -0.014063866, + 0.011499278, + 0.0110983625, + 0.004005974, + 0.0057687303, + 0.008953782, + 0.010468353, + 0.004912807, + 0.019231223, + 0.011906558, + 0.0047155316, + 0.0037768797, + 0.012797481, + -0.0065228334, + 0.017016642, + 0.0038818815, + -0.0004323366, + -0.0020363969, + -0.014331142, + -0.003528694, + 0.000881378, + 0.020745793, + 0.008501956, + -0.0053709964, + 0.0035636944, + 0.0047632596, + -0.004620075, + -0.0019043492, + -0.017042097, + 0.012422021, + 0.00023207764, + 0.014623875, + 0.002104807, + 0.005638274, + -0.0042477963, + 0.009857433, + -0.0043177977, + -0.0028318644, + -0.0057878215, + -0.00032017566, + -0.00095535646, + 0.0107738115, + 0.011753828, + 0.011912921, + -0.011251092, + 0.014814787, + 0.0034077829, + 0.0136311315, + 0.005043264, + 0.006771019, + -0.0099592535, + 0.003770516, + -0.008221952, + 0.0055014533, + -0.013974773, + -0.0006526811, + 0.016685726, + -0.0045628017, + 0.0076937615, + 0.006214192, + -0.0026584524, + 0.011951104, + -0.007318301, + 0.004556438, + -0.0031452784, + 0.0101692565, + -0.010372897, + -0.0075728507, + 0.012854755, + 0.011486551, + -0.0104938075, + -0.0035382395, + 0.015489344, + 0.005848277, + 0.011225637, + -0.023864025, + 0.015934804, + -0.0054696347, + -0.016252993, + 0.0060837353, + -0.0034109647, + -0.0015082064, + -0.0053741783, + -0.007025569, + 0.0100292545, + -0.011130181, + -0.00479826, + -0.013720224, + 0.010404715, + -0.0028923198, + -0.0049255346, + -0.003745061, + 0.0071146614, + 0.0052278126, + -0.0060582804, + 0.013529311, + -0.0027491357, + 0.006322376, + 0.0038309714, + 0.0122502, + 0.012033832, + -0.0050750826, + 0.009590156, + -0.013834771, + -0.012517476, + 0.00699375, + -0.009583793, + 0.0017182098, + -0.002031624, + 0.0038118802, + 0.002255946, + 0.0106338095, + -0.0027379992, + -0.010290167, + 0.0018741215, + 0.00007223839, + 0.008419228, + 0.01636754, + -0.010691083, + -0.022489456, + 0.004069612, + 0.008171042, + 0.009730158, + -0.013605677, + -0.00035875585, + -0.011785647, + -0.0028064093, + 0.0068855667, + 0.0022957192, + -0.002889138, + 0.0040727938, + -0.0019616229, + -0.0013475219, + 0.015107519, + 0.016354812, + 0.002911411, + 0.007712853, + -0.02349493, + 0.009532883, + -0.018174842, + -0.0022814008, + -0.0069873864, + -0.0043718894, + 0.004887352, + 0.005068719, + -0.009087421, + -0.01189383, + 0.017589377, + 0.002811182, + -0.010360169, + 0.008126496, + -0.0034141466, + 0.014140231, + 0.01803484, + -0.010512899, + -0.00047449637, + 0.009851069, + -0.0016132081, + 0.00039852923, + -0.016202083, + 0.010156529, + -0.0006021689, + -0.008298317, + 0.0020109417, + 0.008062859, + -0.003161188, + 0.0013689996, + 0.0033123267, + 0.0052341763, + 0.005412361, + -0.008546503, + 0.0076746703, + -0.0088901445, + -0.006701018, + 0.006150555, + -0.013096577, + -0.00792922, + -0.000037362115, + 0.013503856, + -0.0074264845, + 0.010748357, + 0.0066055623, + 0.00039216547, + 0.0049859905, + -0.02156035, + 0.00798013, + 0.009583793, + -0.0012536568, + 0.005724184, + 0.0072037536, + 0.014229323, + -0.009189241, + 0.009418335, + 0.003745061, + 0.009450154, + -0.000088147746, + 0.009201968, + 0.0016060489, + -0.011104726, + 0.002644134, + 0.003059368, + 0.008368318, + -0.0079610385, + 0.005094174, + 0.0015137746, + -0.0022861736, + -0.01235202, + 0.008578322, + 0.0122502, + 0.007464667, + -0.020096691, + 0.005265995, + 0.003129369, + 0.0052723587, + 0.0128293, + 0.009163786, + 0.006144191, + 0.0062269196, + 0.0021843538, + 0.00911924, + -0.0018629848, + -0.00964743, + 0.012390202, + -0.0055173626, + -0.009551974, + -0.012243836, + -0.008171042, + -0.012129288, + -0.004725077, + 0.00029014677, + -0.0035159665, + 0.013605677, + 0.016087534, + 0.0071082977, + -0.005355087, + 0.006631017, + 0.0064496505, + -0.015183884, + -0.0028986835, + -0.0044132536, + 0.00040429636, + 0.0026329975, + -0.0021604898, + 0.008521048, + -0.0071082977, + 0.0038818815, + 0.012517476, + -0.008877417, + -0.011970195, + 0.0068664756, + 0.004820533, + 0.0128420275, + 0.0012854754, + -0.0041300673, + -0.015349341, + 0.0053900876, + -0.0068155658, + -0.0012512704, + 0.0075537595, + 0.0004442686, + -0.008934691, + 0.007910129, + 0.011461096, + 0.007884674, + -0.016291175, + 0.014712967, + 0.005708275, + 0.013249307, + -0.017207554, + 0.01686391, + -0.018569393, + 0.0013013849, + -0.0035318758, + 0.00047568957, + -0.00597237, + -0.0017850291, + -0.0139875, + 0.020058509, + -0.00019588387, + -0.004607348, + 0.017487558, + -0.004690076, + -0.007076479, + -0.00508781, + -0.004330525, + -0.0052755405, + 0.0017691198, + 0.006751928, + -0.0049096253, + 0.0022448094, + -0.022616733, + -0.004165068, + 0.0022320817, + 0.003110278, + -0.0014294551, + 0.004973263, + 0.017169371, + 0.008196497, + -0.010207439, + 0.0026011788, + 0.0022050359, + 0.010551081, + -0.009380152, + 0.0043973443, + -0.007388302, + -0.013198397, + 0.0018995764, + -0.006001007, + -0.000005791998, + -0.0013801361, + 0.0029320933, + 0.0045914385, + 0.008253771, + 0.015832985, + 0.004970081, + -0.0012003605, + -0.0053741783, + 0.013847498, + 0.00529145, + -0.011461096, + 0.009182877, + -0.001138314, + 0.013172942, + 0.0139875, + -0.0016529815, + -0.017042097, + -0.008228316, + 0.0061123725, + -0.0027252717, + 0.00435598, + -0.011403822, + 0.011951104, + -0.008603777, + -0.0052341763, + 0.005533272, + 0.0042573423, + -0.00020264534, + -0.004537347, + 0.003350509, + 0.00009898599, + -0.010627446, + 0.010016527, + 0.0005898392, + 0.024271304, + -0.00072427315, + 0.006949204, + 0.0074837585, + -0.010640173, + -0.0020220785, + 0.0010237667, + -0.0012512704, + 0.011206546, + 0.0022829918, + 0.0024898134, + -0.0099592535, + 0.0027777725, + -0.0036305138, + -0.010366533, + 0.013109305, + 0.00911924, + 0.0038277896, + 0.0056510014, + 0.015883895, + 0.00043313205, + -0.009520155, + 0.006144191, + 0.00537736, + 0.005412361, + -0.016622089, + -0.0031357328, + -0.013542038, + 0.0041268854, + 0.0075728507, + 0.0058291857, + 0.001614799, + -0.00006318995, + 0.002157308, + -0.006637381, + -0.0023402653, + 0.007324665, + -0.017093007, + -0.009730158, + 0.014331142, + 0.00003104809, + -0.0047441684, + 0.008164679, + 0.016813, + -0.008088314, + -0.0074455757, + -0.014331142, + 0.0104938075, + 0.0017993475, + -0.0064051044, + 0.0027777725, + -0.0032280071, + -0.012059287, + -0.011473823, + 0.010188348, + 0.0070128418, + 0.0040982487, + -0.013885681, + 0.0058355494, + -0.014203868, + -0.0020077599, + -0.0066946545, + -0.016558452, + -0.00896651, + 0.010016527, + -0.01434387, + -0.008979238, + -0.005848277, + -0.0037386974, + 0.011340185, + -0.0020952614, + -0.00435598, + 0.0071782987, + -0.006510106, + 0.014687512, + -0.010118347, + -0.010411079, + -0.0040568844, + 0.0028700468, + -0.005265995, + -0.014789332, + -0.0039518825, + 0.0016529815, + 0.009946526, + -0.0049223527, + -0.005132356, + -0.00808195, + 0.004995536, + 0.007127389, + 0.009176513, + 0.0010842222, + -0.008584686, + 0.009271969, + -0.001885258, + -0.0049318983, + 0.0011486551, + -0.0015853668, + -0.01883667, + 0.01590935, + -0.0072037536, + 0.0030545953, + -0.013312944, + 0.003646423, + 0.0072101173, + 0.009787432, + 0.0023736751, + 0.017309373, + -0.008387409, + -0.0042191595, + 0.000018345469, + -0.005434634, + -0.007935584, + 0.0065737437, + -0.0011080862, + -0.0042764335, + 0.004779169, + -0.01808575, + 0.00435598, + 0.0139111355, + -0.003496875, + 0.0049859905, + 0.0016736636, + -0.0012377475, + 0.008196497, + 0.010557445, + -0.0043432526, + 0.021356711, + -0.0085401395, + 0.0037323334, + 0.0061155544, + 0.01235202, + -0.0051069013, + 0.0039709737, + -0.009112876, + 0.0076237605, + 0.017436648, + -0.011499278, + 0.001078654, + 0.00061370316, + -0.017703924, + -0.0040791575, + 0.0060519166, + 0.0066437447, + 0.007031933, + 0.004804624, + 0.009615611, + -0.0062332833, + -0.021102162, + -0.0018168478, + -0.0076237605, + -0.008883781, + -0.001504229, + -0.0013355899, + 0.012269291, + -0.00004971672, + -0.0011446777, + -0.002104807, + 0.022642188, + 0.00013304195, + 0.010232894, + 0.0017818472, + -0.010092892, + 0.010977452, + 0.0061823735, + -0.0017341191, + 0.0024261759, + 0.0049891723, + 0.0020857158, + 0.0015853668, + -0.013503856, + -0.0052819042, + -0.006144191, + -0.0042955247, + -0.0049796267, + 0.0025916332, + 0.00729921, + -0.043604348, + 0.016685726, + -0.003595513, + -0.0043973443, + 0.004750532, + -0.0047218953, + -0.010321986, + -0.009984708, + 0.0054505435, + 0.013363854, + 0.019320315, + 0.0013491128, + 0.006325558, + 0.0063510127, + -0.007865583, + -0.0072101173, + -0.003795971, + 0.0053900876, + 0.0057591847, + -0.0007541032, + 0.0059564607, + 0.0018375299, + 0.0003116244, + -0.0016155945, + -0.004009156, + -0.01429296, + -0.002885956, + -0.0072292085, + 0.0031802792, + 0.0030657318, + -0.0072101173, + -0.008107405, + -0.004209614, + -0.00077478535, + 0.009679249, + -0.0041968864, + -0.0010571763, + -0.0021938994, + -0.0016450268, + -0.008692869, + 0.009991072, + 0.0032136887, + 0.013071122, + 0.00039793263, + 0.0040282477, + -0.0156548, + 0.0037132422, + 0.009946526, + 0.010601991, + 0.0058069127, + 0.0062810113, + 0.015947532, + 0.010862905, + -0.006751928, + 0.0052564493, + 0.0016672999, + 0.006561016, + 0.008533776, + 0.009157422, + 0.009361061, + 0.006102827, + -0.0066246535, + -0.0069173854, + -0.014916606, + 0.005679638, + -0.015311158, + 0.0017563923, + -0.0076873978, + -0.007216481, + 0.012154743, + 0.010385624, + 0.007051024, + 0.0021477623, + -0.0005230199, + -0.0065801074, + -0.013796588, + 0.007318301, + -0.00934197, + 0.005603273, + 0.005603273, + -0.015018427, + -0.012479294, + -0.0085401395, + 0.0083555905, + 0.0122502, + -0.016545724, + -0.0014358188, + -0.002470722, + -0.00031619833, + -0.023469474, + -0.0058737323, + -0.008521048, + -0.018862126, + 0.013694769, + -0.0030482316, + -0.0057114568, + -0.007852855, + -0.0012242245, + 0.012014741, + 0.022514911, + 0.0051546292, + 0.0007620579, + -0.007324665, + 0.0016243446, + 0.0043241614, + 0.017551195, + 0.014203868, + -0.0030975505, + -0.009303788, + 0.007394666, + -0.007515577, + 0.002176399, + 0.00003030234, + 0.0066691996, + -0.0006339876, + -0.010939269, + -0.0069873864, + -0.0008392182, + 0.0323278, + 0.003986883, + -0.013045667, + -0.013007484, + -0.0012528613, + -0.0013809316, + -0.004871443, + 0.013001121, + -0.0011820648, + -0.004425981, + -0.0063287397, + -0.0005834754, + 0.009310151, + 0.008393773, + 0.010347442, + 0.0024627673, + -0.010990179, + -0.0054791803, + 0.004285979, + -0.005482362, + -0.01459842, + -0.015972987, + 0.013198397, + 0.0037323334, + -0.0053200866, + 0.001432637, + 0.014458417, + -0.00065069244, + 0.0027745906, + -0.013198397, + 0.007617397, + 0.007973766, + 0.0033123267, + 0.000055235276, + -0.006732837, + -0.0024516308, + 0.003598695, + 0.0015455934, + -0.01601117, + -0.00052659947, + 0.007273755, + -0.0071592075, + 0.021534896, + 0.008622868, + 0.008871053, + 0.0054091793, + -0.0077955816, + 0.004970081, + 0.0041746134, + 0.0042796154, + -0.017347556, + 0.003694151, + -0.010741993, + -0.01235202, + -0.0013411582, + 0.004690076, + -0.0036018768, + -0.010404715, + 0.0027523176, + 0.005606455, + 0.0073501198, + -0.010557445, + 0.008972874, + 0.0001501445, + -0.013732951, + 0.003449147, + -0.0047664414, + 0.008686505, + -0.005437816, + 0.011200182, + -0.009558338, + 0.009074694, + -0.00033886917, + 0.001332408, + 0.0017516194, + -0.006777383, + 0.0057878215, + -0.020033054, + 0.0026027698, + 0.0072419364, + -0.0024325396, + 0.0050273547, + 0.0007815468, + 0.0036400594, + 0.007941947, + -0.0114229135, + 0.0016084353, + 0.009049239, + -0.0033982373, + 0.0027809544, + 0.011442005, + 0.0002917377, + 0.007630124, + 0.005237358, + -0.015463889, + -0.009221059, + 0.0013960454, + 0.00636374, + 0.025925877, + -0.0094947005, + 0.0052087214, + 0.016227538, + -0.005931006, + 0.007216481, + -0.0025932242, + 0.036502413, + 0.0032105069, + 0.019651229, + -0.012364747, + 0.009539247, + 0.0077701267, + -0.0064941966, + 0.009189241, + 0.0014143413, + 0.0043464345, + 0.0022957192, + -0.016456632, + -0.011162, + -0.0041937046, + -0.0007859219, + -0.003430056, + 0.009049239, + 0.014229323, + 0.008311044, + -0.018327571, + 0.0039518825, + 0.004623257, + -0.0041268854, + 0.0025614053, + 0.005880096, + 0.0074010296, + 0.009081057, + -0.0013920681, + -0.004801442, + -0.0000802925, + 0.004556438, + -0.012969302, + 0.0042446144, + 0.0058705504, + 0.0048555336, + 0.0088201435, + 0.0064210137, + 0.003452329, + -0.0069619315, + 0.023354925, + -0.008832871, + 0.00823468, + 0.0036146042, + 0.009551974, + 0.0032216434, + 0.0067646555, + -0.014967517, + -0.002276628, + 0.0039105183, + 0.016685726, + 0.0067964746, + 0.013109305, + -0.0006415445, + -0.014216595, + 0.0037991528, + 0.0053869057, + -0.0025804965, + 0.009831978, + -0.013822043, + -0.011652008, + -0.007477395, + 0.0030498225, + -0.005902369, + -0.00813286, + 0.00021676489, + 0.01631663, + -0.004731441, + -0.010920178, + 0.0000472806, + -0.0024723131, + 0.014152958, + -0.0007739899, + -0.0061632823, + 0.0071337526, + -0.0014843424, + 0.0030736865, + -0.0063351034, + 0.00058307766, + 0.0014032046, + -0.005361451, + -0.0015742301, + 0.014254778, + -0.0062301015, + 0.010665628, + -0.0094246995, + -0.008731051, + 0.009373789, + 0.014534783, + 0.0037577886, + 0.0070637516, + -0.0016386631, + 0.0042382507, + -0.014178413, + -0.007121025, + 0.010729265, + 0.0052309944, + -0.004578711, + -0.0039296094, + -0.009144695, + -0.0018709396, + -0.001812075, + -0.0022304908, + -0.009443791, + -0.004530983, + -0.0077764904, + -0.024856769, + -0.006809202, + -0.0054919077, + -0.009469246, + -0.013351127, + -0.012052923, + 0.0066055623, + 0.0039455188, + -0.0072037536, + -0.012052923, + -0.00031540287, + -0.0032455074, + 0.011378367, + 0.0082155885, + 0.0033568728, + -0.0043209796, + -0.009322879, + 0.008349227, + 0.0071782987, + 0.013001121, + -0.00709557, + -0.012065651, + -0.0045405286, + 0.0027825453, + -0.0031643698, + -0.005504635, + -0.003162779, + 0.013160215, + 0.0035446032, + -0.0070128418, + 0.018111205, + -0.0023370835, + 0.0036655143, + -0.003528694, + -0.009488337, + -0.0014986608, + -0.00021060002, + -0.012237472, + 0.009876524, + -0.018773032, + 0.0005269972, + 0.012682934, + 0.0011168363, + -0.001934577, + -0.008979238, + -0.010939269, + -0.0032455074, + -0.009577429, + 0.0025089046, + -0.008069223, + 0.0018168478, + -0.013414764, + 0.0068155658, + -0.0025932242, + -0.015171156, + -0.0004058873, + 0.0026775436, + -0.0058132764, + 0.00012647934, + 0.00083364994, + 0.0018407118, + 0.0016370721, + 0.0022193543, + 0.0064241956, + 0.015603891, + -0.003251871, + -0.008151951, + -0.005285086, + -0.00513872, + -0.0065005603, + 0.011002907, + 0.00043432525, + 0.0069364766, + 0.0046328027, + 0.0018900308, + 0.003032322, + -0.021254892, + -0.011410186, + -0.0025550416, + -0.013885681, + 0.008781961, + -0.007235572, + -0.0062110103, + -0.01048108, + -0.0071337526, + -0.014012955, + 0.014000228, + 0.00995289, + 0.0013069531, + -0.009284697, + -0.0036018768, + -0.00073023915, + 0.011652008, + -0.007464667, + 0.004432345, + -0.009100148, + -0.0075537595, + -0.001664118, + 0.020593062, + -0.014114776, + 0.00969834, + 0.009163786, + 0.006898294, + -0.0029273203, + 0.0098892525, + 0.018556666, + 0.009221059, + 0.010442898, + 0.0035859675, + -0.010996543, + -0.0032868718, + 0.011728373, + -0.008317408, + 0.0021827628, + -0.009354698, + -0.007833764, + -0.0063191936, + 0.007655579, + -0.009023784, + -0.009386516, + 0.008387409, + 0.0075537595, + -0.0043209796, + -0.007719217, + -0.00011156432, + -0.011372004, + -0.006440105, + 0.0144456895, + 0.016507542, + -0.009882888, + 0.007922856, + 0.0005174516, + 0.0041459766, + -0.0030514135, + 0.006045553, + -0.0001549173, + -0.0016577543, + 0.0052087214, + -0.013529311, + -0.0047696233, + 0.004330525, + 0.012765663, + -0.012269291, + -0.013363854, + -0.008877417, + 0.0014970698, + -0.0050591733, + -0.0037132422, + -0.0008062063, + -0.0070192055, + -0.0021620807, + 0.0061123725, + -0.0045914385, + -0.01454751, + -0.0083555905, + 0.00091876497, + -0.01454751, + 0.008387409, + -0.008692869, + 0.0009609247, + -0.002376857, + 0.0024198121, + -0.0017659379, + -0.0061155544, + 0.012581114, + 0.008883781, + 0.0028493647, + -0.006198283, + 0.008228316, + -0.009609248, + 0.008101041, + 0.005463271, + -0.0068473844, + 0.0017229826, + -0.0040377933, + -0.006930113, + 0.009914707, + 0.0068664756, + -0.0008837644, + 0.0020538971, + 0.00039057454, + -0.0019011673, + 0.002621861, + 0.026753163, + -0.009112876, + 0.011193818, + 0.0069873864, + -0.018403936, + 0.006106009, + -0.010856541, + 0.0034777839, + -0.0021843538, + 0.008476501, + 0.010907451, + -0.0049446262, + -0.0025645872, + 0.0046868944, + 0.01262566, + -0.0100038, + 0.0027523176, + 0.005950097, + 0.010067437, + 0.0027364083, + 0.000085115025, + -0.008909236, + -0.005622364, + -0.0103538055, + 0.008056495, + 0.016723908, + -0.009081057, + -0.013287489, + -0.00003166955, + -0.009914707, + -0.012943847, + -0.0194985, + 0.009411971, + -0.008311044, + 0.015845712, + -0.006325558, + 0.002181172, + -0.0022304908, + -0.005482362, + -0.002104807, + -0.0033886915, + -0.00011484562, + 0.014420235, + 0.0008893327, + 0.0014604783, + 0.0071846624, + 0.0038850633, + 0.008597413, + -0.0009625157, + 0.006106009, + -0.002103216, + 0.0007401825, + -0.001909122, + 0.010964724, + 0.004381435, + -0.0072864825, + 0.0024166303, + -0.009711067, + -0.0056955474, + 0.017169371, + 0.006071008, + 0.0070637516, + -0.007903765, + 0.012632024, + 0.004801442, + -0.0075346683, + -0.008228316, + 0.007171935, + -0.0059182784, + -0.016711181, + 0.0112383645, + -0.006949204, + -0.00047171224, + 0.0019504863, + -0.021382166, + -0.009227423, + -0.007477395, + 0.0042700698, + 0.0053009954, + 0.00646556, + 0.0026854982, + 0.020096691, + -0.008972874, + 0.00568282, + -0.011556552, + -0.012657479, + 0.0004478482, + 0.0012783163, + -0.020160329, + -0.0027045896, + 0.003598695, + -0.0061155544, + -0.0017388919, + 0.0030720956, + 0.004260524, + -0.0002515666, + -0.003430056, + -0.008979238, + -0.0016203673, + 0.0062014647, + -0.0063319216, + 0.011041089, + 0.008470138, + -0.008953782, + -0.006214192, + 0.017945748, + 0.00015451957, + 0.0073755747, + -0.0006502947, + 0.011620189, + -0.005946915, + 0.004483255, + 0.004336889, + 0.0050337184, + -0.009851069, + 0.003719606, + 0.012632024, + -0.012695662, + -0.0043877987, + 0.012937483, + 0.0014286597, + -0.030622317, + 0.011219273, + 0.0063573765, + -0.007318301, + -0.0228331, + -0.0019202585, + 0.002811182, + -0.0027061806, + -0.0056478195, + 0.004973263, + -0.02145853, + 0.011613825, + -0.0064973785, + 0.012212018, + -0.006487833, + 0.012460203, + -0.01194474, + -0.0071146614, + 0.0052819042, + -0.009373789, + 0.009539247, + 0.0051196287, + -0.0077701267, + -0.0062332833, + 0.017156644, + -0.0054950896, + 0.0063032843, + -0.007477395, + -0.005332814, + -0.0015185474, + -0.006898294, + -0.0012639979, + -0.0055650906, + -0.017958475, + -0.0084955925, + 0.0019043492, + -0.007916492, + 0.008928327, + -0.010290167, + 0.007318301, + -0.011021998, + 0.003010049, + -0.0043209796, + 0.0053455415, + -0.0021652626, + -0.009609248, + 0.012192926, + -0.004890534, + -0.010881996, + 0.0021477623, + -0.0029145929, + -0.01429296, + 0.015527526, + 0.002470722, + -0.011461096, + 0.0086801415, + -0.006096463, + 0.012765663, + -0.012186563, + 0.010118347, + -0.007833764, + -0.00529145, + 0.0073373923, + 0.008527412, + 0.012969302, + -0.00081257004, + 0.0049223527, + -0.008381045, + -0.0012934302, + -0.0045659835, + 0.0009593338, + 0.01100927, + -0.00084558193, + 0.0022861736, + -0.0008774007, + 0.006662836, + 0.011041089, + 0.0012647933, + -0.0007091593, + 0.00641465, + 0.008209225, + -0.010601991, + 0.0032614167, + 0.002742772, + 0.002545496, + 0.009462882, + -0.0044577997, + 0.0006610335, + -0.011976559, + 0.006198283, + -0.0071401163, + 0.002765045, + -0.017093007, + 0.0119574675, + 0.0076937615, + 0.0036623324, + 0.009704703, + 0.0006339876, + -0.002077761, + 0.0014215005, + 0.021903994, + 0.010652901, + 0.00036293204, + -0.017194826, + 0.0029177747, + 0.020923978, + -0.014891151, + -0.006879203, + -0.011276548, + -0.0013928636, + -0.014280233, + -0.00071950036, + -0.0053678146, + 0.009908344, + 0.009539247, + 0.002691862, + -0.014967517, + 0.001555139, + 0.0015710483, + 0.014903879, + -0.006726473, + 0.0019329861, + -0.007464667, + 0.0021748082, + -0.0008766052, + 0.004750532, + -0.010684719, + -0.0013968409, + 0.007738308, + 0.00061370316, + 0.0001602867, + -0.0029543664, + 0.002987776, + 0.0032614167, + 0.00095535646, + -0.0051482655, + -0.004626439, + 0.0007950698, + 0.0036782417, + -0.0106338095, + -0.01184292, + -0.0025359504, + 0.007413757, + -0.015031154, + 0.004165068, + 0.005946915, + -0.01027744, + 0.0027539085, + -0.020109419, + 0.014382052, + -0.007719217, + 0.00069842045, + -0.0027984546, + 0.0029368661, + 0.0054473616, + -0.012784754, + 0.0078019453, + -0.0055650906, + 0.010512899, + -0.003107096, + 0.004976445, + 0.003162779, + 0.01919304, + -0.003033913, + 0.009940162, + 0.002006169, + -0.011734737, + -0.017436648, + -0.003748243, + 0.014178413, + 0.0083555905, + -0.010971088, + 0.01641845, + 0.0026091335, + -0.0119574675, + -0.0019648047, + 0.0056955474, + 0.010251985, + 0.008953782, + -0.0019329861, + 0.0005540431, + 0.0016203673, + 0.0026536796, + -0.001614799, + 0.0048396243, + 0.0003261417, + 0.015451161, + 0.0051705386, + -0.014751149, + -0.013732951, + -0.016482087, + -0.0016124126, + 0.007859219, + -0.009049239, + -0.00036770487, + 0.006481469, + -0.010347442, + 0.0040377933, + -0.006039189, + -0.004133249, + 0.0001498462, + -0.000929106, + 0.010366533, + -0.022667643, + 0.0025264048, + 0.0042987065, + -0.0021159435, + -0.009316515, + -0.008387409, + 0.0029448208, + -0.006042371, + 0.0032964174, + 0.013440219, + -0.0023323107, + 0.008381045, + 0.00058267993, + -0.0010913814, + -0.0032232343, + -0.005412361, + -0.018607575, + 0.003331418, + -0.01929486, + 0.0077955816, + -0.0038055165, + -0.0073819384, + 0.0044641634, + 0.008393773, + 0.0108883595, + 0.009182877, + -0.010748357, + -0.008991965, + 0.00032196546, + -0.0020093508, + -0.01075472, + -0.014763877, + 0.009157422, + -0.0018725306, + 0.017818471, + -0.005157811, + -0.001859803, + 0.0073501198, + 0.0009434245, + 0.0056414558, + 0.0026393612, + -0.0014636602, + -0.005686002, + 0.009933799, + 0.0058387313, + -0.010143802, + -0.00028497624, + -0.008311044, + -0.0054919077, + -0.006246011, + 0.0021382167, + -0.006268284, + 0.0046550757, + 0.0052341763, + 0.00023426519, + 0.0132365795, + -0.013491129, + -0.004161886, + 0.00068012474, + 0.009819251, + -0.003528694, + 0.0045405286, + -0.009259242, + -0.009201968, + 0.0078210365, + 0.0014151367, + 0.0007234777, + -0.00033230655, + 0.0031245963, + -0.0034650564, + 0.0048396243, + 0.0013212715, + 0.004095067, + -0.0023895844, + 0.0056891837, + 0.003353691, + 0.0024086756, + 0.0015527526, + -0.015794802, + -0.0077064894, + 0.006860112, + -0.0046805306, + -0.015425706, + -0.0043973443, + 0.013707496, + -0.0038246077, + -0.0051228106, + -0.0006673972, + -0.0028016365, + -0.00195685, + -0.004779169, + -0.017449375, + 0.00097603863, + -0.0047123497, + 0.009933799, + 0.021191254, + 0.00005757196, + -0.0022654915, + 0.0035541488, + 0.0021875356, + -0.005071901, + -0.013974773, + 0.0008376273, + -0.0055205445, + 0.015069337, + -0.0069364766, + -0.0014525236, + 0.0005230199, + -0.003305963, + -0.011976559, + 0.0012552477, + 0.002133444, + -0.008209225, + 0.0037800616, + 0.010442898, + 0.011021998, + 0.015832985, + -0.01106018, + -0.009539247, + -0.006071008, + -0.01434387, + 0.0073310286, + 0.002400721, + -0.0027491357, + -0.0021859447, + -0.0005075083, + -0.017487558, + -0.000018730774, + 0.0018534393, + 0.006236465, + 0.008616504, + 0.004473709, + -0.004263706, + -0.0052787224, + -0.009246514, + -0.0043687075, + -0.0034109647, + 0.002375266, + 0.0037386974, + -0.00016366744, + 0.012262927, + 0.0071846624, + -0.009532883, + 0.009348334, + 0.0014986608, + -0.00995289, + -0.0050782645, + -0.008565594, + 0.010913814, + -0.004527801, + 0.004206432, + 0.005752821, + 0.0039550643, + -0.008011948, + -0.0042414325, + 0.003598695, + -0.0041746134, + -0.014051138, + 0.0053678146, + -0.00045540516, + -0.0045468924, + 0.006220556, + 0.0022686734, + -0.007343756, + -0.0016140036, + 0.015183884, + 0.0069555677, + -0.0005759185, + 0.0037227878, + -0.0010746766, + -0.000064482585, + -0.00959652, + 0.015489344, + 0.0021445805, + -0.008845598, + 0.0021223072, + -0.001493888, + -0.0049605356, + 0.009526519, + -0.006783747, + 0.01939668, + 0.0173221, + 0.003525512, + 0.0034777839, + 0.008120133, + 0.006777383, + -0.005924642, + 0.0061601005, + -0.015311158, + 0.0016497996, + 0.02332947, + -0.00046057568, + -0.019943962, + 0.0009155831, + 0.002349811, + 0.0043018884, + -0.013402036, + -0.011658371, + -0.00019866801, + -0.0107038105, + 0.011193818, + 0.0014032046, + -0.003894609, + -0.010181984, + 0.0071082977, + -0.015336613, + -0.0070892065, + -0.011518369, + 0.013809316, + 0.012212018, + -0.0106338095, + -0.0055491813, + -0.0018645758, + -0.00093706074, + -0.018162115, + -0.008877417, + -0.0010189939, + -0.016189355, + -0.013325672, + -0.019523954, + -0.0061855554, + 0.020974888, + -0.0052119032, + -0.016953003, + 0.009526519, + 0.009940162, + -0.0055141808, + 0.0028843652, + 0.0026075426, + -0.0033855096, + -0.009501064, + -0.002303674, + 0.0028811833, + -0.0013316126, + -0.005110083, + 0.0009020601, + -0.011989286, + 0.013351127, + 0.0031770973, + 0.0133765815, + 0.0010794494, + -0.0035064209, + 0.009507428, + 0.013452946, + 0.01419114, + -0.0026854982, + 0.0035350577, + 0.008578322, + 0.0052309944, + -0.017945748, + 0.019918507, + 0.008998329, + -0.008801052, + -0.004231887, + 0.015489344, + 0.010391988, + 0.014076593, + -0.00013035724, + 0.0021668535, + 0.007636488, + 0.0036368775, + 0.0073819384, + -0.011594734, + 0.0133765815, + -0.006904658, + -0.023189468, + -0.038513355, + -0.006930113, + 0.0008614913, + -0.0023609477, + -0.005902369, + 0.006777383, + 0.0004737009, + -0.011512006, + -0.0034141466, + 0.002788909, + 0.004731441, + -0.0069428403, + -0.0068919305, + -0.0026727708, + -0.003331418, + -0.0043718894, + -0.01419114, + 0.008069223, + -0.00002863683, + -0.005628728, + 0.0013944545, + -0.014076593, + -0.0036018768, + 0.006662836, + -0.0017118461, + 0.0070828428, + -0.012714753, + -0.0030132309, + -0.017347556, + 0.011232001, + -0.008743779, + 0.005797367, + 0.0014779787, + -0.009819251, + 0.009501064, + -0.000076414595, + -0.002203445, + 0.0031755064, + -0.0063032843, + -0.003525512, + 0.00362415, + 0.009571065, + -0.010442898, + -0.0046168934, + -0.010971088, + -0.002004578, + 0.016813, + 0.012555659, + 0.0008153542, + -0.00018812806, + 0.0032041431, + 0.00010191927, + 0.0012822936, + -0.010862905, + 0.008781961, + 0.007661943, + 0.0029257294, + -0.0032868718, + 0.0108883595, + 0.008241043, + -0.018493028, + 0.015565708, + 0.008552867, + -0.0072037536, + 0.0031357328, + -0.00656738, + -0.008489229, + 0.009571065, + -0.0100292545, + 0.0052055395, + 0.003154824, + 0.009386516, + 0.0085401395, + 0.0026409521, + 0.006777383, + -0.0034618746, + -0.0073119374, + -0.004753714, + -0.008546503, + -0.017131189, + 0.005221449, + -0.014458417, + 0.0012934302, + 0.010404715, + 0.0024595854, + -0.003528694, + 0.0034650564, + -0.0009744477, + 0.0147002395, + -0.0052278126, + 0.0013141123, + 0.007343756, + 0.0055905455, + 0.01863303, + -0.006061462, + -0.007254664, + -0.0005218267, + -0.0049064434, + -0.0055141808, + 0.0039773374, + -0.008743779, + 0.012638387, + 0.0009649021, + -0.00357324, + 0.0058323676, + -0.006783747, + -0.021305801, + 0.0037418792, + 0.006701018, + 0.000978425, + 0.0077510355, + -0.009481973, + -0.017487558, + 0.0061091906, + 0.010315622, + 0.0040727938, + 0.0077255806, + -0.0031914157, + 0.0018948036, + -0.008635595, + 0.007439212, + -0.0007998426, + -0.0054441798, + 0.004400526, + 0.005730548, + -0.011276548, + 0.015972987, + 0.00440689, + -0.0016736636, + -0.012224745, + -0.0005902369, + -0.014916606, + 0.006662836, + 0.0002809989, + -0.00080779725, + -0.0103538055, + 0.026600434, + 0.013274762, + 0.0063287397, + 0.0026998166, + -0.0068855667, + 0.008164679, + -0.00048483745, + 0.000017189555, + -0.0010150166, + -0.012320201, + 0.009271969, + -0.0048300787, + -0.009201968, + -0.010449261, + -0.017169371, + -0.01288021, + 0.0025598144, + -0.007738308, + -0.001980714, + -0.00626192, + -0.007362847, + 0.00091717404, + -0.007000114, + 0.0062714657, + -0.005017809, + 0.00067654514, + -0.0012122925, + 0.006949204, + 0.0018550302, + 0.0015447979, + 0.0042700698, + -0.000843991, + -0.0047473502, + 0.008826507, + 0.014254778, + -0.008476501, + -0.006949204, + 0.006662836, + -0.0018454846, + 0.009100148, + -0.014458417, + -0.00040369976, + 0.0052723587, + -0.00055722496, + -0.017716652, + 0.00871196, + 0.0011844512, + -0.010035618, + -0.0014668421, + -0.010601991, + -0.008801052, + -0.0025884514, + 0.009520155, + -0.005116447, + 0.0040314295, + -0.0025168592, + 0.0039518825, + 0.0035541488, + -0.0029734576, + -0.009551974, + -0.00015183486, + -0.009774704, + 0.0021604898, + -0.009704703, + 0.007681034, + -0.016991185, + -0.0050337184, + 0.004626439, + -0.002815955, + 0.015972987, + -0.0018629848, + -0.0012711571, + -0.0038659722, + -0.0033950554, + 0.013427491, + -0.012956575, + 0.0035573307, + 0.0045914385, + -0.0072101173, + -0.0005516567, + 0.004362344, + -0.007318301, + 0.0058960053, + 0.014725694, + -0.0039805193, + 0.0041905227, + 0.016507542, + -0.010341077, + 0.004795078, + -0.0055619087, + 0.007458303, + -0.0068219295, + -0.00090524205, + 0.008756506, + 0.017131189, + -0.012103833, + -0.006347831, + 0.002520041, + -0.0046137115, + 0.0053200866, + 0.023074921, + 0.0047187135, + -0.00959652, + -0.010245621, + -0.00027940795, + -0.016622089, + -0.020491242, + -0.0011056998, + 0.008221952, + -0.016978458, + 0.0028748196, + 0.00911924, + -0.0058864597, + 0.0019011673, + 0.0054982714, + 0.011123817, + 0.0063351034, + 0.019702138, + -0.0070128418, + -0.0011510415, + -0.0094947005, + -0.0017182098, + 0.006828293, + -0.01313476, + 0.0029432299, + -0.0050973557, + 0.0032025522, + -0.0014859333, + -0.0056700925, + -0.0005234176, + 0.0016275265, + -0.00990198, + -0.0046550757, + -0.002200263, + -0.0037864253, + -0.0055682724, + 0.019383952, + -0.003598695, + 0.009036511, + 0.000023727303, + -0.0050114454, + -0.0034205103, + -0.0004713145, + 0.010271076, + 0.0010181984, + -0.0052469037, + -0.004919171, + 0.010881996, + -0.010131074, + -0.011747465, + 0.011276548, + 0.0117029175, + 0.017003912, + -0.008069223, + 0.0026870891, + 0.015094792, + -0.005218267, + 0.0007632511, + -0.004772805, + 0.0033982373, + -0.0027077715, + 0.01313476, + -0.0139875, + 0.013822043, + -0.013720224, + 0.014458417, + -0.005110083, + -0.008845598, + 0.01158837, + 0.0029511845, + 0.004648712, + 0.005730548, + -0.00061728276, + 0.009450154, + 0.0033123267, + 0.0110983625, + -0.0041014305, + 0.0054728165, + -0.025378596, + 0.0039232457, + 0.0032184615, + 0.0049446262, + -0.003500057, + -0.005164175, + -0.01247293, + -0.0007000114, + 0.0013244534, + 0.003646423, + 0.0095647015, + 0.0014501372, + 0.0107738115, + 0.0062269196, + -0.011862012, + -0.0067646555, + 0.0037768797, + -0.0049287165, + 0.003671878, + -0.0059182784, + -0.0017977565, + 0.00092194683, + -0.001664118, + 0.0061632823, + -0.0005604069, + 0.0020236694, + 0.007413757, + 0.016036624, + -0.019409407, + 0.009475609, + 0.0021286712, + 0.010869268, + -0.00592146, + -0.0059341877, + 0.0026520886, + 0.02150944, + -0.0040027923, + 0.00323278, + 0.0040568844, + 0.001420705, + -0.0033218723, + 0.00406643, + -0.0068855667, + -0.010805631, + -0.0053869057, + -0.00072546635, + -0.00042955246, + 0.003528694, + 0.014267505, + 0.008839235, + 0.009876524, + -0.0014596828, + -0.013198397, + 0.0037800616, + -0.0017977565, + -0.005418725, + 0.0012154743, + 0.00964743, + -0.009641066, + -0.009672885, + 0.0006045553, + -0.005024173, + -0.015336613, + -0.001029335, + -0.0022416275, + -0.0030370948, + -0.01737301, + 0.00021060002, + 0.0072037536, + 0.0026950438, + -0.005577818, + 0.0065482883, + 0.011569279, + -0.010296531, + -0.0052055395, + -0.007840128, + 0.0052023577, + -0.009895616, + -0.0077701267, + 0.001027744, + 0.007515577, + 0.004209614, + 0.008361954, + 0.007121025, + 0.016202083, + 0.0042223413, + 0.0009386517, + -0.0009744477, + -0.00084319554, + 0.001112859, + 0.011091999, + -0.0016593452, + 0.008781961, + 0.0041205217, + -0.0016450268, + 0.001492297, + -0.0012632024, + -0.015120246, + -0.01017562, + 0.007630124, + -0.0041968864, + 0.005927824, + 0.0033855096, + -0.0073564835, + 0.002130262, + 0.014942062, + -0.0042573423, + 0.001127973, + 0.0034205103, + -0.005259631, + 0.0127020255, + 0.009539247, + -0.0006880794, + -0.00087421876, + 0.004954172, + 0.02227309, + 0.0027698178, + -0.014483873, + 0.0069428403, + 0.00058665726, + -0.016494814, + -0.009539247, + 0.007521941, + -0.00592146, + 0.0022193543, + -0.010271076, + 0.008514685, + 0.0037355155, + 0.008686505, + -0.00058029353, + 0.016278448, + -0.0031516422, + 0.0098892525, + -0.013822043, + 0.0038627903, + -0.0032184615, + 0.0004184159, + 0.0067392006, + 0.012377474, + -0.0038659722, + -0.0006745564, + -0.0066882907, + 0.014178413, + -0.0045882566, + -0.0021175344, + 0.0007720012, + 0.004995536, + -0.0068664756, + 0.0024325396, + 0.008342863, + -0.0021509442, + 0.002788909, + -0.017843926, + -0.005415543, + 0.0051259925, + -0.00036850033, + -0.009278333, + 0.0110283615, + 0.008342863, + -0.0046359845, + -0.0069428403, + -0.0009831978, + -0.0011407004, + -0.005797367, + -0.000262902, + -0.013732951, + 0.006809202, + -0.013172942, + 0.0022098087, + 0.0009649021, + 0.00808195, + 0.015591163, + -0.021713082, + -0.0047441684, + 0.018365754, + -0.0019982143, + -0.0070192055, + -0.00929106, + -0.006853748, + -0.01032835, + 0.0051005376, + -0.0040823394, + -0.0018566211, + 0.012600205, + -0.009539247, + -0.0020157148, + -0.011550188, + -0.0003104312, + -0.003500057, + 0.013465674, + 0.000029133997, + 0.017156644, + 0.0014930925, + -0.005043264, + 0.005679638, + -0.009100148, + 0.0072864825, + -0.019880325, + 0.009475609, + 0.00011772919, + 0.0071082977, + 0.0076873978, + -0.0041459766, + 0.0014954789, + 0.008107405, + 0.00396461, + -0.0043273433, + -0.0045946203, + 0.01858212, + -0.008915599, + -0.0023164013, + 0.0038627903, + 0.0035859675, + 0.0070128418, + 0.0036400594, + 0.0029893669, + -0.008616504, + -0.009316515, + 0.003795971, + 0.0011120635, + 0.0038596084, + -0.007515577, + -0.008622868, + 0.00000545641, + -0.008317408, + -0.004336889, + 0.00091478764, + 0.008113769, + -0.004235069, + 0.0035700582, + 0.014789332, + 0.0026091335, + -0.004378253, + 0.00077001256, + 0.016431177, + 0.01858212, + -0.0144456895, + 0.0057814578, + -0.0029909578, + 0.002885956, + 0.006968295, + 0.003894609, + 0.012065651, + -0.0015336614, + -0.011836557, + 0.0058928235, + 0.010092892, + -0.012002014, + 0.0055491813, + 0.0039041545, + 0.00084478647, + -0.010035618, + -0.023202196, + 0.0003848074, + -0.020720338, + -0.004537347, + -0.0080755865, + -0.016329357, + -0.003697333, + -0.014789332, + 0.0070128418, + -0.004998718, + 0.01601117, + -0.0051291743, + 0.009310151, + 0.009851069, + 0.0065005603, + 0.00040489295, + -0.0070192055, + 0.005335996, + 0.0008845599, + -0.0054728165, + 0.0007421712, + -0.00084478647, + 0.009100148, + -0.006701018, + -0.00046415528, + -0.0043718894, + 0.016278448, + -0.0072864825, + 0.0054219067, + 0.001492297, + 0.0059182784, + -0.004047339, + 0.030902322, + -0.011664735, + -0.020185784, + 0.00357324, + 0.009310151, + 0.0047091674, + -0.01742392, + 0.0009020601, + 0.0056891837, + 0.0141656855, + 0.01169019, + 0.001127973, + -0.0074264845, + -0.0044450723, + -0.019753048, + -0.014127503, + -0.009711067, + 0.012409293, + 0.016902093, + -0.005335996, + -0.008909236, + 0.0001885258, + -0.0074201208, + 0.011225637, + -0.0029161838, + -0.008998329, + 0.0039009727, + -0.024907678, + -0.0039009727, + 0.0100292545, + -0.00813286, + 0.0008845599, + 0.00086944597, + -0.0067455643, + 0.0041491585, + -0.0038659722, + 0.004451436, + -0.00052898587, + 0.0228331, + 0.002224127, + -0.0120274685, + -0.007477395, + 0.009704703, + -0.008521048, + 0.0045850747, + -0.01696573, + 0.012390202, + 0.0046837125, + 0.0030243674, + 0.0057655484, + 0.00911924, + 0.0139875, + -0.0022193543, + 0.001332408, + -0.0024786768, + 0.0006069417, + 0.0044577997, + 0.0019870778, + -0.004505528, + 0.009806523, + 0.00019071334, + 0.012091106, + -0.0034682383, + 0.0100292545, + 0.010150165, + 0.006306466, + 0.012186563, + 0.005705093, + -0.014483873, + -0.0145602375, + 0.011149272, + -0.0021509442, + -0.0039327913, + 0.009170149, + -0.00023187877, + 0.006828293, + 0.004581893, + -0.0020936704, + 0.008037403, + 0.019065766, + 0.0143056875, + -0.0033027811, + -0.00798013, + 0.020478515, + 0.017436648, + -0.0014612738, + 0.0035859675, + 0.0012321791, + 0.012002014, + -0.004425981, + -0.011034725, + 0.0017023005, + 0.004795078, + 0.0048778066, + 0.016202083, + 0.003869154, + 0.011448368, + 0.00068251113, + 0.001936168, + 0.0040600663, + 0.00924015, + 0.0010675174, + -0.010678356, + 0.009030147, + 0.003990065, + 0.008858326, + 0.0072610276, + 0.0012807027, + -0.0010062665, + -0.0077701267, + 0.0135165835, + 0.010048346, + 0.019765776, + -0.00537736, + -0.012078378, + -0.00709557, + -0.016405722, + -0.020363968, + 0.0054791803, + -0.0010046754, + 0.014356597, + 0.012536568, + 0.005899187, + -0.018594848, + 0.002599588, + 0.008648323, + -0.002984594, + 0.016125718, + -0.0076746703, + 0.002469131, + 0.0011391095, + -0.023800388, + -0.010748357, + -0.010939269, + 0.004887352, + -0.020262148, + -0.007661943, + 0.0076492154, + 0.00096012925, + -0.023825843, + -0.004842806, + -0.018340299, + 0.011855648, + -0.007432848, + -0.01762756, + 0.010932906, + -0.006751928, + -0.00068728393, + -0.0013077486, + -0.00995289, + -0.009488337, + 0.010881996, + -0.0055619087, + -0.0027952727, + -0.0013801361, + -0.00871196, + -0.019129403, + 0.009303788, + 0.0022177633, + -0.00563191, + 0.003207325, + -0.007814673, + 0.011531097, + -0.0057878215, + 0.0031134598, + -0.003770516, + -0.013465674, + 0.0076237605, + -0.0034205103, + -0.00959652, + 0.00818377, + -0.0015082064, + -0.021649444, + -0.0029718666, + -0.011123817, + 0.004263706, + 0.007808309, + -0.0139111355, + 0.005603273, + -0.019116675, + 0.00040966578, + 0.0007656375, + -0.0070446604, + 0.015082064, + -0.0029368661, + -0.001444569, + 0.0021159435, + -0.004734623, + -0.012822936, + 0.013160215, + 0.0033696003, + 0.0029909578, + 0.00039912583, + -0.005686002, + -0.0018041203, + -0.0017388919, + 0.0038023347, + -0.008094678, + 0.00015322692, + 0.005243722, + 0.014152958, + 0.013656586, + -0.0041937046, + -0.00084319554, + 0.004801442, + -0.0071846624, + -0.0073819384, + -0.0026934529, + 0.014407507, + -0.0064082863, + -0.002839819, + 0.0044387085, + 0.010500171, + -0.0056160004, + -0.006172828, + 0.004336889, + -0.007318301, + 0.0068728393, + 0.018073022, + -0.01495479, + -0.004919171, + 0.00995289, + -0.012243836, + 0.02045306, + -0.00729921, + 0.005215085, + -0.0029034563, + 0.0050146272, + -0.0194985, + 0.016074806, + -0.0058355494, + 0.0057846396, + 0.017067552, + 0.0012122925, + 0.010843813, + -0.0027045896, + 0.00719739, + 0.0054314523, + 0.0017595742, + 0.011333821, + 0.0044959825, + -0.013796588, + -0.0045023463, + -0.0052946317, + 0.00021795809, + -0.010417443, + -0.0054219067, + 0.00042835926, + -0.0046582576, + -0.0004219955, + -0.009252878, + -0.015845712, + -0.004871443, + 0.0006141009, + -0.008190134, + -0.0063032843, + 0.0020141238, + -0.005654183, + 0.0026870891, + 0.015998442, + -0.00052620174, + -0.011925649, + 0.011970195, + 0.0056160004, + -0.0031007323, + -0.008381045, + -0.0045914385, + 0.010856541, + 0.01646936, + -0.014127503, + 0.00284141, + -0.010143802, + -0.0002732431, + 0.010945633, + 0.00876287, + 0.00513872, + -0.013720224, + 0.014585692, + 0.00699375, + 0.006258738, + 0.00029312976, + 0.014140231, + -0.00054728164, + 0.008266498, + 0.0008169451, + 0.01585844, + -0.0051673567, + 0.013847498, + 0.00729921, + 0.0107038105, + 0.0053264503, + -0.0010897905, + 0.011117454, + -0.018543938, + -0.0043018884, + -0.0032932356, + -0.00036770487, + -0.0044673453, + -0.0057369117, + -0.007541032, + 0.014802059, + -0.0051069013, + 0.004476891, + -0.0073119374, + 0.01272748, + -0.0052946317, + 0.0049255346, + 0.0038373352, + -0.0020873067, + -0.014483873, + 0.0020284422, + -0.020682154, + 0.012943847, + 0.0080755865, + 0.024182212, + 0.0061123725, + 0.0021907175, + -0.016647544, + 0.004069612, + 0.0061123725, + -0.018174842, + -0.008508321, + 0.007235572, + 0.01990578, + -0.0025534506, + -0.0037132422, + -0.0005775094, + -0.00038858588, + 0.025187682, + 0.0012091106, + -0.01702937, + 0.0079610385, + 0.007369211, + -0.0027125443, + -0.00017480398, + 0.0007847287, + 0.008571958, + 0.0019266224, + -0.0014262733, + 0.009061966, + 0.010080164, + 0.00018514507, + 0.0035159665, + -0.0011582007, + -0.009895616, + -0.012148379, + -0.00411734, + 0.0034014191, + -0.004289161, + -0.013338399, + -0.008699233, + -0.00075291, + 0.01974032, + 0.009405607, + 0.0026839073, + 0.0028541374, + 0.014432962, + 0.0036686962, + -0.0043464345, + 0.0063860132, + 0.007617397, + -0.00037605726, + 0.008482865, + 0.0013785452, + -0.0026234519, + 0.01163928, + -0.007292846, + -0.0034077829, + -0.00068489753, + -0.0051800846, + -0.0065228334, + 0.00729921, + -0.003745061, + 0.015502071, + -0.008196497, + -0.0074010296, + 0.0059182784, + -0.0047409865, + -0.019562136, + -0.003183461, + 0.00071472756, + -0.012498385, + 0.0019998052, + 0.00714648, + -0.0064464686, + -0.00005757196, + 0.0005958052, + -0.0004076771, + -0.004893716, + 0.004476891, + -0.0067201094, + 0.0127720265, + -0.0016370721, + -0.00939288, + 0.024767676, + -0.0072801188, + 0.009730158, + -0.015934804, + 0.017513013, + 0.0047028037, + -0.012479294, + -0.00205867, + 0.007617397, + -0.010799266, + -0.0031802792, + 0.0036400594, + -0.009526519, + -0.00031957906, + -0.0021000342, + -0.005218267, + -0.0017548014, + 0.01631663, + -0.00450871, + 0.0022400364, + 0.0077510355, + -0.007967402, + 0.012447475, + 0.009310151, + 0.0064496505, + -0.00037426746, + 0.020020327, + -0.0034427834, + -0.0032216434, + -0.003035504, + 0.012810209, + -0.000376455, + 0.0054441798, + 0.0009768341, + 0.0006964318, + 0.009278333, + 0.0057369117, + -0.0027379992, + -0.0019552591, + -0.011091999, + 0.008705596, + -0.0055428175, + 0.0049287165, + -0.006220556, + -0.002200263, + 0.021038525, + -0.012485658, + 0.0055396357, + -0.026116788, + -0.0027220899, + 0.006732837, + -0.010022891, + -0.0054759984, + 0.00056478195, + -0.0070637516, + 0.02257855, + 0.007388302, + 0.011741101, + -0.0008256953, + 0.0106338095, + -0.0040537026, + 0.011244728, + 0.0014008182, + 0.006732837, + -0.0010524035, + 0.0062046465, + 0.0105829, + -0.0011955877, + -0.004868261, + -0.0022177633, + -0.011499278, + 0.0041237036, + 0.0049828086, + 0.0033727821, + 0.0064464686, + 0.017602105, + 0.0042764335, + 0.00014845413, + -0.0078019453, + 0.0003199768, + 0.0016092308, + -0.006191919, + -0.012390202, + -0.0009625157, + 0.010201075, + 0.0026998166, + -0.005625546, + -0.014674785, + -0.007369211, + 0.002477086, + 0.007922856, + -0.016189355, + 0.0034905113, + 0.013389309, + -0.000333102, + 0.0031723245, + 0.003920064, + 0.004161886, + -0.008451046, + -0.0013188851, + 0.0059182784, + 0.021305801, + 0.0051546292, + 0.011925649, + 0.00027165216, + -0.00178662, + 0.013160215, + 0.0058546406, + 0.008171042, + 0.007464667, + -0.0018232116, + -0.008591049, + 0.0010285395, + 0.001762756, + 0.015222066, + 0.00469644, + 0.009933799, + 0.0048587155, + 0.010945633, + 0.0025725418, + 0.007789218, + 0.000109675086, + 0.0024532217, + -0.013783861, + 0.004114158, + 0.0063764676, + -0.008209225, + 0.0033345998, + -0.010945633, + -0.0011788829, + -0.002744363, + -0.016545724, + 0.0026711798, + -0.008024676, + 0.002422994, + -0.018493028, + 0.0074201208, + 0.003795971, + 0.014814787, + 0.0017834381, + 0.00484917, + 0.0047887145, + 0.008979238, + -0.00038798928, + -0.004136431, + 0.000038257014, + -0.0069428403, + 0.0016291174, + 0.002101625, + 0.0029702757, + -0.00047091677, + -0.00015422126, + -0.0056096367, + -0.0021732172, + -0.0054982714, + 0.008438319, + 0.009170149, + 0.006904658, + 0.0028923198, + -0.0014477508, + -0.020440333, + -0.0018200297, + 0.0034555108, + -7.166199e-7, + 0.015107519, + 0.004184159, + 0.023024011, + -0.015998442, + -0.005062355, + -0.014483873, + -0.0003104312, + 0.007871946, + -0.0042732516, + 0.004534165, + -0.013872953, + -0.0075092134, + 0.0027236808, + -0.0024516308, + -0.0042127958, + 0.009755613, + -0.0038532447, + -0.0034396015, + 0.0015360478, + 0.0008821735, + -0.0025614053, + 0.012288382, + 0.0060550985, + 0.0015384342, + 0.0084255915, + 0.0048173512, + -0.01596026, + -0.00028418077, + 0.007076479, + -0.0045691654, + 0.007057388, + -0.0107038105, + -0.0034714201, + 0.008533776, + -0.005663729, + 0.0056669107, + -0.00029591392, + -0.006067826, + 0.012822936, + -0.012822936, + -0.0006156918, + -0.015540253, + 0.0020729883, + -0.012733844, + 0.007369211, + -0.02217127, + 0.0025518597, + -0.0027141352, + 0.00990198, + -0.010786539, + 0.0021986722, + 0.00911924, + -0.0021159435, + 0.008011948, + 0.005358269, + 0.009615611, + 0.008788325, + -0.0037323334, + -0.00886469, + 0.004970081, + -0.004088703, + -0.008743779, + 0.0059787338, + -0.0120974695, + -0.006592835, + -0.003525512, + 0.004553256, + 0.0034777839, + -0.005679638, + -0.00117411, + -0.0041746134, + -0.011976559, + 0.009761977, + 0.0050750826, + -0.012663843, + -0.0064719236, + 0.017283918, + -0.012460203, + -0.0059437333, + 0.021445803, + 0.004890534, + 0.0024102665, + -0.010111983, + 0.006258738, + 0.0038532447, + 0.02570951, + 0.021140344, + -0.012682934, + 0.0055173626, + 0.003967792, + -0.004362344, + -0.01686391, + 0.019256677, + 0.004209614, + 0.012733844, + -0.0012178607, + -0.015489344, + 0.028229551, + -0.0010611536, + 0.0141656855, + -0.002567769, + -0.0046328027, + -0.008654687, + 0.002545496, + 0.0027761816, + 0.0057369117, + -0.0001938952, + -0.0046391664, + -0.00064830604, + 0.010678356, + 0.011715645, + 0.0053900876, + 0.006128282, + 0.01818757, + 0.0040187016, + -0.016062079, + -0.0045691654, + -0.011543824, + 0.0064910147, + -0.012600205, + -0.011123817, + 0.0025566325, + 0.011556552, + -0.01022653, + 0.0046868944, + 0.0066691996, + -0.0025582234, + -0.0082155885, + 0.009055602, + -0.026142243, + -0.012670207, + 0.012682934, + -0.010652901, + -0.010449261, + 0.006681927, + -0.006246011, + -0.009475609, + -0.0010961542, + 0.003030731, + -0.004915989, + 0.012052923, + 0.0037832435, + -0.008241043, + -0.009838342, + -0.012040196, + -0.011753828, + 0.009176513, + -0.0071401163, + 0.005533272, + -0.023100376, + 0.004184159, + 0.005596909, + 0.01262566, + 0.008858326, + -0.0020411697, + -0.00881378, + -0.016023897, + 0.009800159, + 0.005606455, + 0.0028923198, + 0.011289275, + -0.011989286, + -0.012332928, + -0.0004534165, + -0.003134142, + 0.02550587, + 0.008361954, + 0.0011184273, + -0.008431955, + -0.0017882109, + -0.005157811, + 0.003983701, + 0.0065801074, + 0.00792922, + -0.0054950896, + 0.008508321, + 0.0069364766, + 0.0031055051, + -0.006016916, + -0.00901742, + -0.006341467, + 0.003280508, + -0.010869268, + -0.004670985, + -0.012237472, + 0.0056732744, + 0.014992972, + -0.009380152, + 0.004537347, + -0.010372897, + 0.0239913, + 0.015820257, + -0.006128282, + -0.008571958, + 0.015298431, + -0.0019473045, + -0.0019870778, + 0.008514685, + -0.005329632, + -0.0014676376, + -0.022922192, + -0.006751928, + -0.0020857158, + 0.006777383, + 0.02288401, + -0.0060582804, + -0.0072228448, + 0.0023275379, + 0.007617397, + -0.009672885, + -0.0018343481, + -0.005380542, + 0.0025598144, + -0.0036623324, + -0.00813286, + -0.0006733632, + -0.010589263, + 0.0016140036, + 0.01696573, + -0.018454846, + 0.0040537026, + -0.016571179, + -0.0002996924, + -0.0075028497, + -0.005552363, + -0.012682934, + -0.0025916332, + -0.0026361793, + -0.0022607187, + 0.0064051044, + -0.0026584524, + 0.011569279, + 0.009163786, + 0.008381045, + -0.0021700354, + 0.009844705, + -0.0040218835, + 0.000063885986, + -0.0038118802, + -0.00020334138, + -0.00010177012, + -0.0057846396, + 0.002203445, + -0.0027729997, + -0.0039709737, + -0.012078378, + 0.00469644, + -0.004674167, + -0.012453839, + 0.0022209452, + 0.011499278, + -0.021382166, + 0.0039327913, + 0.013503856, + -0.0069619315, + -0.014407507, + 0.0044355267, + -0.006239647, + 0.0115629155, + -0.012205654, + 0.003375964, + 0.004069612, + 0.005946915, + 0.010652901, + -0.006923749, + 0.009233787, + -0.0077955816, + 0.0025375413, + 0.009927435, + -0.004874625, + 0.003716424, + -0.010780175, + 0.013974773, + 0.0065801074, + 0.003280508, + -0.00034065897, + -0.0024309487, + 0.006045553, + -0.0070192055, + 0.0054441798, + -0.0064560142, + -0.0082855895, + 0.011575643, + -0.002400721, + 0.00641465, + 0.01012471, + 0.003154824, + 0.0019488954, + -0.012765663, + -0.010684719, + -0.008807416, + -0.004938262, + -0.014458417, + -0.003251871, + 0.0017086642, + -0.0036368775, + -0.0020634427, + -0.00646556, + 0.0038882452, + -0.007591942, + -0.003059368, + -0.0009847888, + 0.009711067, + 0.002443676, + 0.023545839, + 0.001762756, + 0.0049032615, + -0.00581964, + 0.0015097973, + 0.005243722, + -0.024627674, + -0.004893716, + 0.0081455875, + 0.016189355, + -0.005660547, + 0.017767562, + 0.0071337526, + 0.0012393384, + -0.0011351322, + 0.0026552705, + -0.009558338, + -0.0032168706, + -0.014611147, + 0.0026552705, + 0.004677349, + -0.002300492, + 0.0031452784, + 0.0062491926, + -0.003107096, + 0.0074010296, + 0.012110197, + -0.0007250686, + -0.000046311125, + -0.016303902, + 0.0051069013, + 0.0033791459, + -0.00072069356, + 0.012243836, + 0.016596634, + 0.011849284, + 0.010939269, + 0.0049096253, + 0.00015312749, + -0.0052469037, + -0.017818471, + 0.011174727, + -0.0040568844, + -0.003967792, + -0.004629621, + -0.005600091, + -0.030189583, + -0.00823468, + -0.0040346114, + -0.0026711798, + -0.007865583, + 0.010296531, + -0.016151173, + -0.0044800728, + 0.006510106, + -0.0078274, + -0.011289275, + 0.012962938, + -0.0024373124, + -0.018607575, + -0.010875632, + 0.00823468, + -0.003161188, + 0.007560123, + -0.003033913, + -0.0020157148, + 0.008686505, + -0.0035700582, + 0.0037864253, + -0.018925764, + 0.017436648, + -0.0047887145, + 0.0037068785, + 0.013605677, + -0.0063573765, + -0.0066882907, + 0.0075283046, + -0.012759299, + 0.0035064209, + 0.012759299, + -0.0055491813, + -0.013223852, + 0.013669314, + 0.009456518, + 0.011747465, + 0.015145701, + 0.0025375413, + -0.006535561, + -0.007343756, + -0.00049080345, + -0.006726473, + -0.0008893327, + -0.0075537595, + 0.006411468, + -0.00396461, + -0.0070064776, + 0.012593841, + 0.014140231, + -0.0021238981, + -0.0120274685, + 0.0021382167, + 0.0072483, + 0.0005067128, + 0.00068768166, + 0.013083849, + 0.008705596, + 0.006611926, + -0.001764347, + 0.0047696233, + -0.017093007, + -0.007808309, + -0.0073310286, + 0.010684719, + 0.0016084353, + -0.010156529, + -0.014687512, + -0.00808195, + -0.0015471843, + 0.0051832665, + 0.009774704, + 0.00046614395, + 0.012562023, + 0.0044800728, + 0.0011454732, + 0.004511892, + 0.009806523, + 0.008788325, + 0.010761084, + 0.007273755, + 0.015082064, + 0.0030434586, + -0.0043464345, + -0.025849512, + 0.0107738115, + 0.000336085, + 0.007273755, + 0.008482865, + -0.012345656, + 0.0025773146, + -0.010162893, + -0.015158429, + -0.00450871, + 0.004047339, + -0.0035700582, + -0.009157422, + -0.00017490341, + 0.0043687075, + -0.00396461, + -0.010544717, + 0.003646423, + 0.002324356, + -0.007922856, + -0.015514798, + 0.015196611, + -0.0029734576, + -0.006258738, + 0.0033632366, + 0.010105619, + -0.0026075426, + -0.0013228625, + 0.0014405916, + -0.00896651, + 0.0021191253, + -0.015489344, + 0.0012950212, + 0.0017102552, + -0.0009251287, + -0.0058355494, + -0.0009020601, + 0.006090099, + 0.0051037194, + -0.007127389, + 0.0021652626, + -0.0013857044, + 0.0060296436, + 0.0010874041, + -0.0056160004, + -0.0020141238, + 0.00021278756, + -0.0011168363, + 0.004693258, + -0.0058514588, + -0.009679249, + -0.0013029758, + -0.010188348, + 0.011232001, + 0.0038246077, + 0.0113529125, + 0.0009935389, + 0.0030036853, + 0.011302003, + 0.0071401163, + 0.0066437447, + 0.0063510127, + -0.008228316, + -0.0040568844, + -0.0010030845, + -0.012396566, + -0.0065737437, + -0.0031182326, + -0.005778276, + 0.005724184, + -0.015387523, + 0.0013196806, + -0.0059564607, + -0.019714866, + 0.013783861, + 0.0041237036, + 0.0084955925, + 0.010251985, + 0.014229323, + 0.016380267, + 0.01803484, + -0.0055237263, + -0.007464667, + 0.011741101, + 0.010691083, + -0.0012568387, + 0.017831199, + -0.01429296, + 0.0031977794, + 0.009755613, + 0.011982922, + 0.005533272, + 0.0052087214, + -0.008050132, + 0.011982922, + -0.010016527, + 0.011951104, + -0.00037148333, + 0.002599588, + -0.009984708, + -0.002055488, + 0.0064082863, + -0.011556552, + -0.0064973785, + 0.009297424, + -0.0042159776, + 0.0011080862, + -0.012218381, + -0.008311044, + -0.011779283, + -0.005902369, + -0.0047378046, + -0.0021191253, + -0.009940162, + -0.0054537253, + 0.0008145587, + 0.0027586813, + 0.0004975649, + -0.0027475448, + 0.013274762, + 0.007490122, + 0.0029766394, + -0.007871946, + -0.009373789, + -0.009539247, + -0.0036114224, + 0.0020411697, + 0.0038977908, + 0.009933799, + -0.0034332378, + 0.0010014935, + -0.010996543, + 0.0057432754, + 0.011162, + -0.0073310286, + 0.0037768797, + -0.002499359, + 0.0026727708, + 0.0007556941, + -0.0039073364, + -0.012873846, + -0.026651343, + -0.006268284, + 0.0037673342, + -0.005218267, + 0.008654687, + 0.004575529, + -0.007439212, + 0.003646423, + -0.014534783, + 0.0057114568, + 0.0017707107, + 0.004158704, + -0.0069810227, + -0.0063382853, + -0.0016911639, + 0.016329357, + -0.015018427, + -0.001189224, + -0.004626439, + -0.0039264276, + -0.01459842, + -0.011308366, + 0.0016943457, + 0.0096347025, + 0.005288268, + 0.0029893669, + 0.0009314924, + 0.0075028497, + 0.0127720265, + -0.0016752545, + -0.009322879, + 0.008253771, + 0.005071901, + 0.0046837125, + 0.0147002395, + 0.0024786768, + 0.01636754, + -0.006395559, + 0.010780175, + 0.027389538, + 0.0036909692, + -0.004690076, + 0.011836557, + -0.016392995, + 0.002103216, + -0.008909236, + 0.011601098, + 0.0047664414, + -0.0044164355, + 0.009819251, + 0.010990179, + -0.010315622, + -0.015578436, + -0.0051037194, + -0.0067964746, + 0.0060773715, + 0.0010054709, + -0.008381045, + -0.015769348, + 0.0015328659, + -0.006370104, + 0.0029018654, + -0.005596909, + 0.014522055, + -0.005313723, + -0.007057388, + -0.009093785, + -0.0080310395, + 0.0053900876, + 0.007789218, + -0.005848277, + -0.009812887, + 0.009265605, + -0.00617601, + 0.03192052, + -0.0020523062, + -0.018862126, + 0.005062355, + -0.0004935876, + -0.008241043, + 0.0048173512, + 0.0033218723, + -0.004155522, + -0.0010356987, + -0.0021127616, + -0.00015223259, + 0.002057079, + -0.0062269196, + 0.012695662, + 0.007744672, + 0.009946526, + 0.0020745792, + -0.008272862, + -0.00234822, + -0.010570172, + -0.0059660063, + -0.004260524, + -0.015336613, + -0.008603777, + -0.007655579, + 0.008654687, + -0.00656738, + -0.0026775436, + 0.0045946203, + -0.020325786, + 0.024691312, + 0.007986493, + -0.0035223302, + -0.02368584, + -0.0129820295, + -0.015043882, + 0.013452946, + -0.009971981, + 0.024818586, + -0.0027984546, + -0.0026632252, + -0.0017770744, + -0.0056128185, + -0.004826897, + 0.015120246, + 0.0014779787, + 0.017665742, + -0.0008885372, + -0.005215085, + 0.0115629155, + 0.0037005148, + -0.009793796, + -0.0022177633, + -0.0055650906, + 0.0066437447, + 0.006172828, + -0.002275037, + 0.0032041431, + 0.008514685, + 0.012396566, + 0.048058964, + -0.017220281, + 0.005883278, + 0.0032868718, + 0.012492022, + -0.0025264048, + -0.004047339, + 0.0144966, + -0.0027968637, + 0.011531097, + 0.0016322993, + -0.00636374, + 0.006258738, + -0.003872336, + 0.023851298, + 0.013783861, + 0.026651343, + -0.0008145587, + 0.0035446032, + 0.0115629155, + 0.0035414214, + 0.009526519, + -0.008756506, + -0.0026584524, + 0.0094246995, + 0.008692869, + 0.008482865, + -0.009997436, + 0.005313723, + -0.00029432296, + 0.0066055623, + 0.0043973443, + -0.0055428175, + 0.0039041545, + -0.0029670938, + 0.00040568842, + -0.02030033, + -0.005046446, + -0.00022193544, + -0.006309648, + 0.010932906, + -0.00052978133, + 0.009876524, + -0.0057655484, + 0.0057400935, + -0.001015812, + -0.0065482883, + 0.012122924, + 0.0021843538, + 0.01853121, + 0.005927824, + 0.0022161724, + -0.010538354, + 0.028662285, + 0.015972987, + 0.01419114, + -0.013605677, + -0.0002941241, + 0.0039550643, + 0.0037768797, + -0.0072101173, + 0.013172942, + 0.009214696, + 0.01172201, + -0.00013164987, + -0.0087501425, + 0.0003692958, + -0.004091885, + -0.012052923, + -0.0014692285, + -0.007617397, + 0.003986883, + 0.0063573765, + 0.008991965, + -0.003153233, + 0.0100992555, + -0.0018454846, + 0.011601098, + -0.018314844, + 0.0041300673, + 0.0019107129, + -0.0031659608, + -0.0057369117, + 0.009004693, + -0.006510106, + -0.0037036967, + -0.004600984, + 0.006144191, + -0.0025566325, + -0.01048108, + 0.0052978136, + 0.0040537026, + -0.014267505, + 0.00719739, + -0.003983701, + 0.016151173, + 0.006726473, + 0.014331142, + -0.008953782, + -0.0032232343, + 0.0047473502, + 0.005040082, + 0.0048141694, + 0.00626192, + 0.013592949, + 0.0040027923, + 0.014254778, + -0.01419114, + 0.009310151, + -0.010487444, + -0.011932013, + 0.0024882224, + -0.01919304, + -0.0064973785, + -0.0050369003, + 0.0024102665, + -0.0060328254, + 0.011747465, + 0.011849284, + -0.007464667, + -0.006783747, + -0.009227423, + -0.0071846624, + -0.017194826, + -0.00086069584, + 0.012663843, + 0.014623875, + -0.008686505, + -0.016138446, + 0.009730158, + -0.0012560432, + 0.010131074, + 0.016571179, + 0.0073564835, + -0.01032835, + 0.0042573423, + -0.004012338, + 0.015616618, + 0.0016497996, + 0.007922856, + 0.0048141694, + 0.012262927, + 0.004820533, + -0.0072419364, + 0.005361451, + -0.0037355155, + 0.009201968, + -0.0042382507, + 0.013554766, + 0.009851069, + 0.025314959, + 0.0047600777, + 0.0063001025, + -0.0017388919, + -0.0018804852, + -0.0061410093, + -0.007833764, + 0.0043877987, + 0.0002149751, + 0.012072015, + 0.00017192042, + 0.0018820761, + -0.00017400851, + -0.010951997, + -0.0063764676, + -0.0010953587, + -0.0033982373, + 0.006506924, + 0.004534165, + 0.0039805193, + 0.010010163, + -0.0074201208, + -0.008591049, + -0.00010181984, + -0.010162893, + -0.006433741, + 0.011868375, + -0.00646556, + -0.0053455415, + 0.00911924, + -0.003773698, + -0.019816687, + 0.015362068, + 0.008400137, + 0.012695662, + 0.012962938, + -0.007076479, + 0.0037418792, + -0.00123377, + 0.0012361566, + 0.0031930066, + 0.003646423, + 0.002865274, + -0.006930113, + -0.0012282018, + -0.00025972014, + 0.010792903, + 0.011333821, + 0.00015829803, + 0.0014970698, + -0.012714753, + -0.010207439, + -0.00085830945, + -0.004292343, + 0.014738422, + -0.0043400708, + 0.0008129678, + -0.007471031, + 0.007471031, + 0.001980714, + -0.011613825, + 0.0038596084, + -0.0064973785, + -0.009138331, + 0.015272976, + 0.0043973443, + 0.011397459, + 0.0009561519, + -0.018913036, + -0.0018661667, + 0.0053519052, + -0.0057146386, + -0.007394666, + -0.009507428, + -0.0032900537, + 0.014674785, + 0.010201075, + 0.0005480771, + 0.004187341, + 0.0071337526, + -0.0051228106, + -0.013427491, + -0.0032677804, + 0.008107405, + -0.014585692, + 0.005192812, + -0.015005699, + -0.0048078056, + 0.003183461, + -0.009361061, + 0.007490122, + 0.007789218, + -0.006923749, + 0.0036527868, + 0.013020212, + -0.00067256775, + -0.00440689, + 0.001590935, + 0.022107633, + -0.0063319216, + -0.0063573765, + 0.006809202, + -0.012447475, + 0.008177406, + 0.027134988, + -0.013032939, + -0.014140231, + 0.0063860132, + -0.004025066, + 0.003818244, + -0.0029798213, + -0.018327571, + -0.008648323, + 0.0036846055, + -0.0019870778, + -0.0026123154, + -0.0022607187, + 0.0098892525, + -0.00040887028, + 0.0015249113, + 0.0044609816, + -0.02040215, + -0.0013960454, + 0.008412864, + 0.0074264845, + 0.0038341533, + -0.007471031, + -0.008699233, + 0.002422994, + 0.0065801074, + 0.0016561634, + -0.017551195, + 0.011123817, + 0.00823468, + 0.005482362, + -0.012511113, + -0.0029591392, + 0.00039137, + -0.013287489, + -0.0035382395, + 0.018200297, + 0.016991185, + -0.0080310395, + -0.012084742, + -0.014420235, + -0.011963831, + -0.005558727, + -0.001580594, + 0.007954675, + 0.0046805306, + 0.011034725, + -0.0031405056, + 0.020898523, + 0.004250978, + 0.02162399, + 0.0016577543, + 0.014509328, + 0.017882109, + -0.008253771, + -0.010710174, + 0.0012186562, + 0.006214192, + 0.0059405514, + 0.0106338095, + -0.004381435, + 0.00039654056, + 0.0120274685, + -0.005657365, + 0.008546503, + 0.0045628017, + -0.009208332, + 0.000010999825, + 0.007101934, + -0.0008073995, + 0.00518963, + 0.0057878215, + 0.0028907289, + -0.019282132, + -0.004114158, + 0.0033027811, + -0.0035382395, + -0.009653794, + 0.013809316, + 0.007318301, + -0.015972987, + 0.009278333, + 0.008342863, + 0.0030386858, + 0.0068728393, + -0.009736522, + 0.024754949, + -0.016494814, + 0.0045691654, + -0.0050782645, + 0.0019377589, + 0.006198283, + -0.0007027955, + 0.006503742, + -0.0021604898, + 0.0038309714, + -0.010487444, + 0.012835664, + -0.0032502802, + -0.0023545837, + -0.012364747, + 0.011620189, + -0.00047449637, + -0.005654183, + 0.0066882907, + -0.0043655257, + -0.011543824, + 0.021242164, + 0.0011271775, + 0.011798374, + 0.011868375, + 0.0037418792, + 4.614333e-7, + 0.009462882, + -0.002938457, + -0.0043177977, + -0.00027741928, + -0.0056669107, + 0.007782854, + -0.006513288, + 0.005383724, + 0.007941947, + 0.012740208, + -0.008018312, + -0.012313837, + 0.0023545837, + -0.01696573, + 0.005625546, + 0.0033950554, + 0.0032232343, + 0.0024611764, + -0.009711067, + 0.010799266, + 0.0041046124, + 0.0029448208, + 0.01121291, + 0.0034332378, + 0.0023895844, + 0.013071122, + -0.009335606, + 0.0046805306, + 0.0061410093, + -0.028967746, + 0.010080164, + -0.007000114, + -0.0026107244, + 0.0020300332, + 0.0005417134, + -0.0026266337, + -0.0017309373, + -0.0010794494, + 0.0031357328, + 0.0075728507, + 0.014038411, + -0.009322879, + 0.00792922, + -0.0070446604, + 0.00047171224, + -0.0022607187, + -0.0042191595, + -0.010347442, + -0.004693258, + -0.0021938994, + -0.0042414325, + -0.007922856, + -0.007292846, + 0.0048396243, + -0.004359162, + 0.007999221, + -0.004915989, + -0.011072908, + -0.002324356, + 0.017614832, + -0.010181984, + 0.0017754835, + -0.0030275492, + 0.005794185, + -0.007101934, + 0.002599588, + 0.01621481, + -0.01027744, + -0.003059368, + 0.021954903, + -0.005437816, + -0.0070064776, + -0.0007799559, + 0.0054282704, + 0.0000776078, + 0.00026707823, + -0.0005397247, + 0.011868375, + -0.003084823, + 0.0053041773, + 0.001640254, + 0.0032216434, + -0.0018948036, + 0.008941054, + 0.013032939, + 0.009271969, + 0.009590156, + 0.0026616342, + -0.012110197, + -0.0015869577, + -0.0067201094, + -0.0077510355, + -0.0041714315, + -0.018060295, + -0.006389195, + 0.01914213, + -0.0071528438, + 0.0004748941, + 0.001715028, + -0.0036846055, + -0.006172828, + 0.0070828428, + 0.00178662, + -0.0026298156, + 0.0039137, + 0.011855648, + -0.0013944545, + 0.0032439164, + -0.0058100945, + 0.0031882338, + -0.00043472298, + 0.001383318, + -0.0043909806, + 0.010302895, + -0.00012001616, + -0.015260248, + 0.009055602, + 0.0057464573, + 0.0018566211, + -0.008635595, + 0.0144966, + 0.00323278, + -0.002644134, + -0.015031154, + -0.0055841818, + -0.0016012761, + 0.016672999, + -0.0110983625, + -0.010092892, + 0.01277839, + -0.014114776, + -0.009354698, + 0.013032939, + -0.004110976, + 0.010799266, + 0.003426874, + 0.012797481, + 0.0024086756, + -0.0072864825, + -0.008062859, + 0.012065651, + -0.0048523517, + 0.014114776, + 0.014712967, + 0.007661943, + 0.009380152, + 0.013160215, + -0.0033918736, + -0.011225637, + 0.015985714, + 0.000802229, + -0.01172201, + -0.009284697, + 0.0017802563, + -0.010156529, + -0.0010691084, + 0.014967517, + -0.0015408206, + 0.0071846624, + 0.0051291743, + -0.008801052, + -0.0056128185, + -0.01083745, + 0.006389195, + -0.00058427086, + -0.00537736, + 0.0077701267, + 0.0019425317, + -0.00016853967, + -0.0010038799, + 0.010939269, + -0.008667414, + 0.0013045667, + 0.008151951, + 0.016380267, + 0.0031930066, + -0.004728259, + 0.0013419536, + -0.012612932, + -0.009831978, + -0.0044800728, + 0.013338399, + -0.016303902, + 0.00023724818, + -0.0094246995, + 0.00037009126, + 0.006099645, + -0.009481973, + -0.00076523976, + -0.0021445805, + -0.012332928, + -0.0068473844, + 0.010035618, + -0.0024659492, + 0.006611926, + 0.0025645872, + -0.021776719, + 0.024220394, + 0.006344649, + -0.0034650564, + 0.0058514588, + -0.0033377816, + -0.0012377475, + -0.008915599, + -0.0030895958, + 0.015871167, + -0.020427605, + 0.014878424, + 0.004155522, + -0.009781068, + -0.0047664414, + 0.0031373238, + -0.019523954, + 0.00959652, + 0.002224127, + 0.007992857, + -0.0033027811, + 0.00450871, + 0.0013037713, + -0.0012138834, + -0.008648323, + 0.005660547, + -0.004620075, + -0.011162, + 0.008794689, + -0.0039073364, + -0.000990357, + -0.025442233, + 0.008552867, + -0.000735012, + -0.012676571, + 0.008883781, + 0.007808309, + -0.010570172, + 0.0043050703, + 0.0022845827, + -0.013669314, + -0.004970081, + 0.014852969, + 0.014114776, + -0.010595627, + 0.009278333, + -0.00027901022, + 0.0013522948, + 0.0062810113, + 0.012364747, + 0.008597413, + -0.014509328, + 0.0038309714, + 0.013847498, + -0.004874625, + 0.012040196, + -0.010913814, + 0.01111109, + -0.0030052762, + 0.017767562, + 0.0077764904, + -0.0024532217, + -0.01194474, + -0.007852855, + 0.006309648, + 0.0040727938, + 0.00906833, + 0.008266498, + -0.015158429, + -0.009380152, + 0.0022909464, + 0.0058291857, + -0.0027236808, + -0.0008797871, + 0.005485544, + 0.012663843, + -0.009806523, + -0.014522055, + 0.014178413, + 0.020567607, + 0.016036624, + -0.0028239097, + 0.002765045, + 0.01652027, + 0.0021366258, + -0.006828293, + -0.0023116285, + 0.0056732744, + -0.0008304681, + -0.006701018, + 0.0026632252, + -0.0013618404, + -0.013262034, + -0.014509328, + -0.009195604, + 0.004231887, + -0.025633145, + 0.0053741783, + 0.001127973, + -0.0021079888, + 0.007948311, + 0.00072307995, + -0.004896898, + -0.025442233, + 0.013058394, + 0.015387523, + -0.011849284, + 0.0011343367, + 0.005953279, + -0.0017802563, + -0.022209452, + -0.0016155945, + -0.0041714315, + -0.0067392006, + -0.004756896, + -0.012676571, + 0.009093785, + 0.0143056875, + -0.0040155197, + -0.00052739494, + -0.003404601, + 0.020478515, + 0.0003366816, + -0.021394894, + 0.0029368661, + 0.009571065, + 0.016494814, + -0.002496177, + -0.0017213917, + -0.0014397962, + -0.00079705846, + 0.011091999, + 0.0034236922, + 0.008896508, + 0.014458417, + -0.0077001257, + 0.007025569, + 0.008419228, + -0.012339292, + 0.0050591733, + 0.004473709, + 0.008597413, + -0.0100038, + 0.0035350577, + -0.005953279, + -0.0064019226, + -0.0060264617, + -0.0049637174, + -0.0051037194, + 0.0011939968, + -0.0027332264, + -0.009189241, + 0.007477395, + 0.0004263706, + 0.016431177, + 0.0052723587, + -0.010805631, + -0.01968941, + 0.0039105183, + -0.00798013, + -0.01136564, + -0.005262813, + 0.009335606, + 0.0060837353, + -0.006481469, + -0.0076873978, + 0.0024500398, + -0.000464553, + 0.005880096, + 0.0161639, + -0.0036814236, + 0.007101934, + -0.005927824, + 0.0009314924, + -0.00089490094, + -0.009437427, + 0.008699233, + -0.0012568387, + -0.0015424115, + -0.006631017, + -0.0065164696, + 0.005437816, + 0.004403708, + 0.0044387085, + 0.0029161838, + 0.015425706, + 0.004734623, + -0.0034109647, + 0.0063573765, + 0.004826897, + -0.0061569186, + -0.016405722, + 0.0044928007, + 0.010983815, + 0.022744007, + 0.00084319554, + -0.015311158, + -0.006020098, + 0.007292846, + -0.010614718, + 0.012358383, + -0.019485772, + 0.011664735, + 0.0015145701, + 0.011391095, + 0.007057388, + 0.0025900423, + 0.0046137115, + -0.0034427834, + 0.0079610385, + 0.0032995993, + 0.026116788, + -0.0047664414, + 0.004228705, + 0.0018248025, + -0.00017400851, + -0.0063573765, + -0.0069173854, + 0.0047409865, + -0.0071146614, + -0.005164175, + 0.010589263, + -0.004795078, + 0.008546503, + 0.0048141694, + 0.0105638085, + -0.0063860132, + -0.0023816298, + -0.0015471843, + 0.006064644, + -0.011575643, + -0.00006706786, + -0.0025248139, + 0.0051705386, + -0.007362847, + -0.00067217, + -0.0061569186, + -0.0063605583, + -0.020949433, + -0.009138331, + -0.003449147, + -0.00631283, + -0.0060296436, + 0.00002592727, + -0.0024389033, + 0.009310151, + 0.000045242214, + 0.0010484261, + -0.000618476, + -0.008648323, + 0.007471031, + 0.0027602722, + -0.008915599, + -0.01053199, + 0.010627446, + 0.0066055623, + -0.014916606, + -0.008368318, + -0.014203868, + 0.00896651, + -0.0140256835, + 0.0014366143, + -0.016240265, + 0.014216595, + -0.012110197, + -0.01914213, + 0.004753714, + -0.006188737, + 0.0034109647, + 0.00085830945, + 0.004530983, + -0.0020220785, + -0.006631017, + 0.011620189, + -0.011251092, + 0.0060837353, + -0.0036209682, + 0.012581114, + -0.0041777953, + -0.0074264845, + 0.008724688, + 0.0019934415, + -0.018174842, + -0.012822936, + -0.00139525, + -0.011276548, + -0.008253771, + 0.0054919077, + -0.0028525465, + 0.0014787741, + 0.0050814464, + 0.0037132422, + 0.0030227765, + 0.004336889, + 0.016507542, + 0.0069110217, + 0.0076873978, + -0.0018311662, + -0.0070446604, + -0.0014795696, + -0.015400251, + -0.0026075426, + 0.0032773262, + 0.010035618, + 0.00656738, + -0.0009999026, + 0.0077064894, + 0.01686391, + -0.00017321305, + -0.006020098, + -0.0040505207, + 0.0009935389, + 0.0014588874, + -0.007051024, + -0.006395559, + 0.0054028155, + 0.008979238, + 0.009418335, + 0.0129820295, + 0.007681034, + -0.0027809544, + -0.013503856, + 0.006771019, + -0.0017913928, + -0.00396461, + -0.008953782, + -0.005775094, + 0.0028366372, + -0.02242582, + 0.0036209682, + 0.016494814, + 0.015489344, + 0.0068855667, + -0.012695662, + -0.008699233, + -0.011830193, + 0.005705093, + 0.0010420624, + 0.010245621, + -0.0060041887, + -0.00041881364, + 0.0030927777, + -0.010251985, + 0.00070756837, + 0.0013578631, + -0.008641959, + -0.014152958, + -0.0051291743, + 0.014674785, + 0.014152958, + -0.0038882452, + 0.021267619, + -0.0020634427, + -0.006751928, + 0.011174727, + 0.0069110217, + -0.00030148219, + 0.0049223527, + 0.0064528324, + 0.0016124126, + 0.0025502688, + 0.0080310395, + 0.0017404829, + -0.0004251774, + 0.00479826, + 0.005307359, + -0.008743779, + 0.014051138, + 0.005635092, + -0.00792922, + 0.01219929, + -0.027618632, + 0.0010714948, + 0.005380542, + -0.003986883, + 0.004575529, + 0.016252993, + -0.0014047956, + 0.011149272, + 0.004890534, + -0.013058394, + 0.0030991414, + 0.004336889, + 0.0004912012, + -0.013338399, + -0.018060295, + -0.00969834, + 0.01277839, + -0.005412361, + -0.0020395787, + -0.0045691654, + -0.0026123154, + 0.007808309, + -0.005173721, + -0.011970195, + 0.00818377, + -0.0029798213, + 0.00823468, + -0.0044577997, + -0.013656586, + -0.0041237036, + -0.007922856, + 0.0052500856, + 0.012186563, + 0.00729921, + -0.0033664184, + -0.0088901445, + -0.003153233, + -0.00062603294, + 0.012148379, + 0.0018407118, + -0.0140256835, + 0.013338399, + -0.0015209338, + 0.013732951, + -0.0065737437, + 0.02621861, + 0.009819251, + -0.0028095911, + 0.0032677804, + 0.00901742, + -0.012307473, + 0.0055714543, + -0.0023307197, + 0.002744363, + 0.0022591278, + 0.006195101, + 0.00195685, + -0.0020618518, + -0.0010269486, + 0.024780404, + 0.0020968523, + 0.0045691654, + -0.0039996104, + -0.0030514135, + -0.0016704818, + -0.0010269486, + 0.027669542, + 0.004069612, + -0.0045882566, + 0.0042127958, + 0.006191919, + 0.008463774, + 0.006930113, + -0.0030768684, + -0.010156529, + -0.0008686505, + 0.008043767, + -0.0025836783, + -0.006246011, + 0.0035668763, + -0.015667528, + 0.00145491, + -0.005262813, + -0.013109305, + -0.014076593, + 0.0084255915, + 0.0008543321, + 0.007719217, + 0.0037259697, + 0.000049816153, + 0.003064141, + -0.011403822, + 0.007808309, + -0.018989401, + 0.0006809202, + -0.006481469, + 0.020427605, + -0.006898294, + -0.007076479, + -0.005262813, + -0.011162, + -0.009074694, + -0.003449147, + -0.009571065, + 0.0048364424, + -0.0041523403, + -0.010512899, + -0.0141656855, + -0.007922856, + -0.0009060375, + 0.011359276, + -0.015005699, + -0.0028684558, + 0.0038755178, + 0.0016060489, + 0.012383838, + -0.0007282505, + 0.0045150737, + 0.0027618632, + -0.0068155658, + 0.005663729, + 0.0033918736, + -0.00074654625, + 0.003872336, + -0.003773698, + 0.0018932127, + 0.001960032, + 0.008871053, + -0.0012647933, + -0.0027857271, + -0.0015193429, + 0.0045150737, + -0.006529197, + -0.017703924, + 0.0022702643, + 0.0108183585, + -0.010131074, + -0.018340299, + 0.0055237263, + 0.002814364, + 0.004476891, + 0.010901087, + 0.004775987, + -0.0039741555, + -0.00009182678, + -0.0012910437, + 0.0016577543, + -0.0070382967, + -0.000727455, + 0.009978345, + -0.012205654, + -0.014789332, + -0.0015002517, + 0.0029241384, + 0.001641845, + -0.007661943, + 0.0020093508, + -0.0039550643, + -0.006707382, + -0.0053964513, + 0.0070128418, + 0.005686002, + 0.0028461828, + -0.000788706, + 0.0008956964, + -0.0062778294, + -0.0003583581, + -0.025747692, + 0.010971088, + -0.009742886, + -0.022616733, + -0.013847498, + 0.00056478195, + 0.010805631, + 0.0084065, + -0.00053892925, + -0.0053232685, + -0.0034364196, + 0.0031420966, + 0.008902872, + 0.0032280071, + 0.005460089, + -0.005504635, + -0.0011311548, + 0.012899301, + 0.0010778585, + -0.013013848, + -0.0030800502, + 0.0039073364, + -0.00071075023, + 0.0009314924, + -0.0077001257, + 0.008699233, + 0.0027905, + 0.007719217, + 0.01585844, + -0.0018279843, + 0.008037403, + -0.004871443, + 0.0143056875, + -0.017703924, + -0.012765663, + 0.00032455075, + 0.006809202, + 0.01106018, + 0.0046837125, + -0.005288268, + -0.015667528, + -0.0016155945, + 0.0066182897, + -0.006834657, + -0.010538354, + 0.0045723473, + -0.0030720956, + -0.00792922, + -0.014802059, + -0.009806523, + -0.002300492, + -0.009539247, + -0.01424205, + -0.011932013, + -0.0059405514, + 0.0012822936, + -0.0016752545, + -0.0077255806, + -0.0030370948, + -0.015451161, + 0.008247407, + -0.0043432526, + -0.010162893, + 0.0012600205, + -0.009259242, + -0.0007727967, + -0.0054950896, + 0.0057210024, + 0.009488337, + 0.004040975, + -0.0063860132, + -0.0073755747, + -0.003627332, + -0.012460203, + -0.006370104, + 0.0016466178, + 0.009768341, + 0.0038850633, + -0.011747465, + -0.004674167, + -0.0046550757, + 0.00030804478, + -0.013223852, + 0.012975666, + -0.0050305366, + -0.009456518, + 0.003961428, + -0.007719217, + 0.0017086642, + 0.0019966234, + 0.011575643, + -0.0077001257, + -0.0018009384, + 0.0045914385, + -0.0032582348, + 0.0051291743, + -0.0042000683, + -0.0061855554, + 0.006783747, + 0.014916606, + -0.012460203, + -0.000031271815, + -0.0021923084, + -0.008196497, + 0.00084240007, + -0.010251985, + -0.00032912468, + -0.01100927, + -0.0012305882, + 0.0029050473, + -0.010512899, + 0.008737415, + 0.018391209, + 0.023660386, + 0.0024054938, + 0.0023402653, + 0.013249307, + 0.017754834, + 0.015222066, + 0.0051864483, + -0.00091240124, + 0.0039041545, + -0.0046582576, + 0.008991965, + -0.017551195, + 0.005600091, + 0.011849284, + 0.0018327571, + 0.004734623, + 0.010302895, + 0.0023418562, + -0.0052469037, + 0.005730548, + 0.0006968295, + -0.010595627, + -0.0017070733, + -0.005577818, + 0.0076873978, + 0.006220556, + -0.0025550416, + 0.018709395, + 0.0076428517, + -0.004025066, + 0.002376857, + 0.018976673, + -0.0015511616, + 0.0065482883, + -0.0053932695, + -0.0026075426, + 0.0073501198, + 0.009061966, + -0.006637381, + -0.0011056998, + 0.0022193543, + 0.0063001025, + 0.00005269972, + 0.0024325396, + 0.004756896, + -0.01219929, + 0.0050273547, + 0.013949318, + 0.0010508125, + 0.0027459539, + -0.0026489068, + 0.0068410207, + 0.0046168934, + 0.009914707, + -0.00042279097, + -0.0066946545, + 0.0132365795, + -0.009227423, + -0.0027364083, + -0.0027714088, + -0.0041714315, + 0.011149272, + -0.007057388, + 0.003795971, + -0.01636754, + -0.01318567, + 0.003719606, + 0.0061314637, + -0.0033886915, + 0.007471031, + -0.005876914, + 0.013758406, + 0.00076762616, + -0.017703924, + -0.0100038, + 0.008622868, + -0.02327856, + -0.0027539085, + -0.010398352, + 0.00934197, + -0.002421403, + 0.0014970698, + -0.012733844, + 0.0038659722, + 0.004915989, + -0.0096347025, + 0.0022352636, + 0.016532997, + 0.0054282704, + -0.011512006, + -0.012511113, + -0.004085521, + -0.002002987, + 0.003627332, + -0.0063860132, + -0.0015829804, + -0.011906558, + -0.012313837, + 0.0038882452, + 0.007413757, + 0.01075472, + -0.0017563923, + 0.0023100376, + -0.0030466407, + -0.012562023, + 0.013465674, + -0.0029686848, + 0.004260524, + -0.016151173, + -0.022400364, + -0.0031945975, + 0.003840517, + 0.004260524, + 0.0018534393, + 0.009666521, + -0.008514685, + -0.016443904, + 0.000086159074, + -0.004820533, + -0.0038055165, + 0.026498614, + -0.019116675, + 0.005043264, + 0.022718553, + 0.0050591733, + 0.011582007, + 0.0023800388, + -0.0009569474, + 0.00011574052, + -0.0012313836, + 0.0005516567, + -0.010869268, + -0.014369325, + -0.0070128418, + -0.009074694, + 0.012695662, + 0.009800159, + 0.013694769, + 0.01863303, + 0.011276548, + 0.0030148218, + 0.0051514474, + -0.0051482655, + 0.0018677578, + 0.011696554, + 0.0036018768, + -0.0052946317, + 0.014636602, + 0.006090099, + -0.009571065, + 0.014420235, + 0.013885681, + 0.011454732, + -0.002278219, + 0.001078654, + 0.020427605, + 0.016825728, + 0.0017038914, + 0.0075537595, + -0.0030370948, + -0.021700354, + 0.00047648503, + 0.0007851264, + 0.006662836, + -0.0053964513, + 0.005536454, + -0.006220556, + 0.012918392, + 0.00005001502, + -0.0067582917, + -0.002567769, + -0.008196497, + -0.0035573307, + -0.000569157, + -0.010207439, + -0.00524054, + -0.0004963717, + 0.0056160004, + 0.013669314, + -0.003353691, + 0.010296531, + -0.014000228, + 0.010391988, + 0.0069619315, + -0.008584686, + -0.00871196, + 0.013274762, + -0.006484651, + 0.006930113, + 0.0020188966, + -0.008896508, + -0.0057369117, + -0.0005675661, + -0.0017563923, + 0.011244728, + 0.00573373, + 0.018442119, + -0.0037673342, + 0.0040187016, + 0.0047028037, + 0.0045150737, + 0.000954561, + 0.00062006694, + 0.009602884, + 0.012549295, + 0.00093706074, + -0.0035636944, + -0.011989286, + -0.0075537595, + 0.018060295, + 0.0046168934, + 0.0110983625, + -0.012918392, + -0.0016895729, + 0.0073819384, + 0.014407507, + -0.0015010472, + 0.0017357101, + 0.0025884514, + 0.016392995, + -0.0009871752, + 0.013592949, + -0.010156529, + -0.0023657205, + 0.0028970926, + -0.0108883595, + -0.0027029987, + -0.011091999, + 0.0070382967, + 0.0103538055, + 0.00033170995, + -0.0067964746, + 0.015285703, + 0.007954675, + -0.018200297, + 0.0045246193, + -0.0103092585, + -0.0061155544, + 0.004995536, + 0.0062555564, + -0.008298317, + -0.008050132, + -0.0019138948, + 0.010595627, + 0.0022193543, + -0.0073373923, + -0.0022909464, + 0.009781068, + 0.015247521, + -0.009914707, + 0.0066691996, + 0.014203868, + -0.009819251, + 0.014852969, + 0.030698681, + 0.0033345998, + 0.0038309714, + -0.004260524, + -0.0005055196, + -0.0009410381, + 0.017309373, + 0.009539247, + 0.0008789916, + 0.0017293463, + -0.011257456, + 0.00041921137, + 0.00906833, + -0.01247293, + -0.0035096027, + 0.013160215, + -0.0012512704, + -0.0069173854, + -0.010449261, + 0.0016171854, + -0.0060837353, + -0.0017118461, + 0.01126382, + -0.006322376, + -0.003986883, + -0.022985829, + -0.004040975, + 0.0108883595, + -0.0014899106, + 0.0015941169, + -0.0056446376, + 0.011524733, + -0.002378448, + -0.009386516, + -0.007967402, + 0.006347831, + 0.002965503, + -0.0078019453, + -0.0051514474, + -0.0035859675, + -0.0027379992, + -0.0018550302, + -0.016278448, + 0.0010691084, + 0.010461989, + -0.006287375, + 0.018098477, + 0.0015861623, + -0.0057591847, + -0.0117029175, + -0.008476501, + -0.00063716946, + -0.0027220899, + -0.006217374, + 0.013211125, + 0.011136545, + -0.01757665, + 0.012695662, + -0.00479826, + 0.0022814008, + -0.00301164, + 0.0117029175, + 0.006039189, + 0.008374682, + -0.0011924058, + -0.0027029987, + 0.006096463, + 0.010092892, + 0.0006057485, + -0.005062355, + -0.0036082405, + 0.011041089, + -0.0067137456, + -0.00017639493, + 0.0111683635, + 0.011671099, + -0.0018248025, + 0.0049637174, + 0.002176399, + 0.0008344454, + 0.007922856, + 0.006370104, + 0.0040537026, + -0.0041491585, + 0.0089601455, + 0.003251871, + -0.0050782645, + 0.00025196435, + -0.0020236694, + -0.0026950438, + 0.003449147, + 0.0044418904, + 0.0014930925, + 0.009946526, + 0.0078910375, + -0.00709557, + -0.0030657318, + 0.0114929145, + 0.00035815925, + 0.014611147, + 0.0029225475, + 0.016189355, + 0.0014453644, + -0.00006905652, + -0.01277839, + 0.003598695, + 0.0077510355, + 0.00054966804, + -0.0012934302, + 0.011454732, + 0.0034555108, + 0.005463271, + -0.0061091906, + -0.013071122, + -0.0014000228, + 0.008272862, + -0.005654183, + -0.009437427, + 0.019931234, + 0.0014994562, + 0.0055905455, + -0.005749639, + 0.00787831, + -0.024780404, + -0.0053869057, + 0.00065944256, + 0.0040155197, + -0.0058069127, + 0.0013674087, + -0.0077319443, + -0.0120274685, + 0.00016197708, + -0.0035796037, + -0.012511113, + 0.0033377816, + -0.014929334, + -0.0026743617, + -0.0014238869, + 0.00049080345, + -0.009653794, + 0.004919171, + -0.0021429895, + -0.009437427, + -0.0039137, + 0.0053741783, + -0.016711181, + -0.01464933, + 0.0016784364, + -0.0026568614, + -0.009443791, + -0.0043432526, + -0.010710174, + -0.0017484375, + 0.006172828, + 0.0084955925, + -0.0010563808, + -0.0069555677, + 0.012835664, + 0.00039972243, + -0.01909122, + -0.015247521, + -0.004250978, + 0.0107038105, + -0.0038818815, + -0.0062937387, + 0.0035764219, + -0.012256564, + -0.0039741555, + -0.011868375, + -0.01691482, + 0.0036814236, + -0.0056669107, + -0.003350509, + 0.004476891, + -0.0064082863, + -0.0136311315, + -0.00041523404, + 0.0010181984, + -0.012008377, + -0.010716538, + 0.00911924, + -0.005062355, + 0.015489344, + 0.014929334, + 0.002303674, + -0.010907451, + 0.00995289, + -0.0028827742, + -0.004779169, + 0.009844705, + 0.0000121743815, + 0.0017691198, + 0.013312944, + 0.014140231, + -0.001859803, + -0.006392377, + -0.0015217293, + -0.00027622608, + -0.0014397962, + 0.007738308, + 0.00037546066, + -0.008527412, + 0.011906558, + -0.014382052, + -0.004260524, + 0.0018677578, + -0.0024118575, + 0.009208332, + -0.0052532675, + 0.013402036, + 0.0076746703, + 0.021140344, + -0.012103833, + -0.0039964286, + 0.0002804023, + -0.0032868718, + -0.0017309373, + -0.0038277896, + -0.007235572, + 0.0036814236, + -0.0034873295, + -0.01985487, + -0.0044450723, + 0.00813286, + -0.00518963, + 0.007369211, + -0.009475609, + 0.0054759984, + -0.00046534848, + -0.007999221, + -0.014929334, + -0.005090992, + -0.007712853, + -0.0013204761, + 0.0025025408, + 0.0029225475, + 0.006239647, + 0.0026377703, + 0.0036909692, + 0.010251985, + -0.010022891, + 0.012205654, + -0.007910129, + 0.017182099, + 0.007852855, + -0.0070701153, + -0.011671099, + -0.0023291288, + -0.00041642724, + -0.01747483, + 0.0059850975, + 0.014140231, + 0.0073055737, + -0.005701911, + 0.017334828, + 0.0011558143, + 0.017054824, + 0.00026508953, + 0.001162178, + 0.007585578, + 0.0039264276, + -0.008444683, + -0.0014596828, + -0.024920406, + 0.002986185, + 0.012307473, + 0.003205734, + 0.0034714201, + 0.0050973557, + 0.009112876, + 0.0068473844, + -0.013109305, + -0.009036511, + 0.00063955586, + -0.017143916, + 0.011448368, + -0.005679638, + -0.0005739298, + 0.019027583, + 0.012390202, + 0.0015797984, + -0.0036400594, + 0.005259631, + -0.008921963, + -0.011041089, + 0.0012138834, + 0.00563191, + 0.0013387718, + -0.00906833, + 0.004231887, + 0.00040926802, + 0.016723908, + 0.0020379878, + 0.007121025, + 0.0029718666, + -0.008120133, + 0.005485544, + -0.002941639, + 0.009055602, + 0.00023108331, + -0.013822043, + -0.0054950896, + 0.01199565, + 0.0037418792, + 0.009303788, + -0.0029352752, + -0.0005150652, + 0.0038500628, + 0.0052087214, + -0.017602105, + -0.0071146614, + 0.0013403627, + -0.00592146, + -0.0110983625, + 0.012892937, + -0.00563191, + 0.009711067, + -0.0028732286, + 0.017945748, + -0.0019441226, + -0.0074264845, + 0.0055396357, + -0.0010221758, + -0.017105734, + 0.009475609, + -0.009571065, + -0.012937483, + 0.009577429, + 0.005946915, + -0.0095647015, + -0.019002128, + -0.0018916217, + -0.0053169047, + 0.0020698064, + -0.009933799, + 0.002863683, + 0.007630124, + 0.018773032, + -0.015972987, + -0.0019043492, + 0.0002996924, + 0.0034236922, + 0.0020713974, + -0.012676571, + 0.0023673114, + -0.0023673114, + -0.0021970812, + -0.0072864825, + 0.0006510902, + 0.0077701267, + -0.011836557, + -0.011671099, + 0.0009951298, + 0.0012870664, + -0.0036336957, + 0.0035668763, + 0.004938262, + -0.014751149, + 0.008578322, + 0.013007484, + 0.0015344569, + -0.016036624, + -0.0040568844, + -0.00036412524, + 0.0032423255, + 0.0066246535, + -0.011970195, + 0.009074694, + -0.002154126, + -0.013363854, + 0.0054728165, + 0.0024357215, + -0.009138331, + -0.0013475219, + 0.00046813264, + 0.0135165835, + 0.005339178, + -0.0030418676, + -0.009800159, + -0.021636717, + 0.011505642, + -0.0049446262, + -0.0036305138, + 0.0068473844, + -0.007661943, + -0.0054505435, + 0.013694769, + -0.016062079, + -0.0028907289, + -0.005288268, + -0.0021398077, + -0.006809202, + -0.0014493418, + -0.007490122, + -0.004699622, + 0.009106512, + -0.0023927663, + -0.0039327913, + -0.0037005148, + -0.012581114, + -0.012676571, + 0.0012393384, + 0.0022925374, + 0.010061073, + 0.0054696347, + -0.0074201208, + 0.0073310286, + 0.0059405514, + 0.004263706, + -0.012135652, + -0.004505528, + -0.008883781, + -0.008673778, + 0.00262027, + 0.015502071, + 0.009036511, + -0.006411468, + -0.006195101, + -0.0033155086, + -0.0020109417, + 0.008591049, + -0.00033071561, + 0.001420705, + -0.01868394, + 0.003646423, + 0.0026473159, + -0.0031389147, + -0.0029320933, + -0.0032645985, + -0.008724688, + -0.010296531, + -0.0053869057, + -0.021280346, + 0.008743779, + 0.014216595, + -0.009831978, + 0.0050019, + -0.0066882907, + 0.0079610385, + -0.0020682155, + 0.014382052, + 0.006529197, + -0.0043941624, + 0.0020236694, + -0.0009251287, + -0.013656586, + 0.00093467435, + -0.0070828428, + -0.0055619087, + -0.012428384, + 0.0046868944, + 0.0024579945, + -0.008202861, + -0.00924015, + 0.0078019453, + 0.0032232343, + 0.003646423, + 0.005899187, + 0.0032375527, + 0.003500057, + -0.0032232343, + 0.02929866, + 0.0027379992, + 0.0069873864, + -0.00013900794, + -0.0095647015, + -0.010054709, + -0.006732837, + -0.007318301, + -0.0120974695, + 0.007191026, + -0.017653015, + 0.00239913, + -0.01219929, + 0.018874854, + 0.013198397, + 0.009488337, + 0.008342863, + 0.0032439164, + -0.00055444083, + 0.012326565, + -0.011435641, + 0.006809202, + 0.0066437447, + -0.00036571617, + 0.011002907, + -0.00070597744, + -0.0009935389, + -0.017067552, + -0.017309373, + -0.0039550643, + 0.015171156, + 0.00974925, + 0.0041937046, + 0.006771019, + -0.007630124, + -0.007477395, + 0.004161886, + -0.001272748, + -0.009685612, + -0.004976445, + 0.010271076, + 0.009144695, + 0.0017579832, + 0.009176513, + -0.009577429, + 0.0008105814, + 0.014522055, + 0.000010769884, + -0.0073501198, + 0.015018427, + 0.004620075, + 0.018951219, + 0.013109305, + -0.009946526, + -0.002103216, + 0.0066755633, + 0.008527412, + 0.0009155831, + 0.012231109, + -0.015031154, + 0.0019234404, + -0.014471144, + -0.0023275379, + 0.0071401163, + 0.0052055395, + -0.00290982, + -0.0140256835, + -0.0005938165, + 0.0120274685, + -0.009170149, + -0.0045437105, + 0.0067455643, + -0.012676571, + -0.003452329, + -0.00007010058, + -0.0070446604, + 0.00699375, + -0.011715645, + -0.0051514474, + 0.015412979, + 0.014585692, + 0.0058323676, + -0.0050750826, + 0.008024676, + 0.002004578, + -0.012746572, + -0.006290557, + -0.0062491926, + 0.00039793263, + 0.016838456, + -0.015209339, + -0.006433741, + -0.015476616, + 0.0053041773, + 0.00513872, + 0.006828293, + -0.013274762, + -0.00038122782, + 0.003083232, + -0.011575643, + -0.009151058, + 0.0011796784, + 0.0027093624, + 0.002644134, + -0.004110976, + -0.005635092, + 0.011524733, + -0.0003386703, + -0.005797367, + 0.011620189, + -0.0077764904, + 0.002911411, + -0.0120974695, + -0.013351127, + -0.0058387313, + 0.003280508, + -0.014127503, + -0.00592146, + -0.0022416275, + 0.017360283, + -0.005845095, + -0.005727366, + 0.010983815, + 0.018403936, + -0.0027586813, + 0.00493508, + -0.010213803, + 0.0015328659, + 0.0060773715, + -0.0050559915, + 0.009259242, + 0.0060932813, + 0.006513288, + -0.011244728, + 0.01199565, + -0.004919171, + 0.0055014533, + 0.000336085, + 0.0064941966, + -0.005848277, + 0.017169371, + -0.008463774, + -0.010073801, + 0.00020562836, + 0.0026377703, + -0.009812887, + 0.0016203673, + 0.0032677804, + -0.015934804, + 0.015616618, + 0.010595627, + 0.00954561, + 0.008871053, + -0.006322376, + -0.01293112, + 0.0005150652, + -0.0041014305, + 0.01027744, + 0.00357324, + -0.0033123267, + 0.004874625, + -0.0042191595, + -0.015362068, + 0.005040082, + -0.0027029987, + -0.0028732286, + -0.0065228334, + -0.0020538971, + 0.005803731, + 0.012848391, + -0.0008551276, + -0.0055905455, + 0.0015933214, + -0.014916606, + -0.0030211855, + 0.014178413, + -0.011002907, + 0.006045553, + -0.014063866, + -0.006042371, + -0.0060137343, + -0.0062269196, + -0.0023418562, + -0.008260135, + -0.0002221343, + 0.009730158, + 0.0062301015, + 0.009558338, + 0.008851962, + -0.01083745, + 0.012810209, + -0.00057194114, + 0.021891266, + -0.009112876, + 0.0027507266, + -0.0057655484, + 0.007922856, + 0.0029798213, + -0.00026131107, + -0.0050082635, + 0.015082064, + 0.0008956964, + -0.025213137, + 0.014331142, + -0.0056700925, + 0.010716538, + -0.014483873, + -0.002814364, + 0.0021143525, + 0.0011534279, + 0.013198397, + -0.014751149, + -0.00011613825, + 0.0047218953, + -0.0065801074, + -0.001480365, + -0.0019775322, + 0.0127020255, + -0.010385624, + 0.008724688, + 0.014789332, + -0.0026839073, + -0.0032709623, + -0.0045628017, + 0.0001287663, + -0.011270184, + 0.0017452557, + -0.0045023463, + 0.0062746475, + -0.014763877, + -0.00030804478, + -0.010092892, + 0.0013347944, + -0.0012902482, + -0.00073700066, + 0.010894723, + -0.002718908, + 0.004626439, + 0.0057655484, + 0.014776604, + -0.003033913, + 0.0011080862, + -0.0001561105, + -0.0073819384, + 0.0041046124, + -0.011785647, + -0.008654687, + -0.0023911754, + 0.008578322, + 0.008979238, + 0.004133249, + 0.0056987293, + -0.007973766, + -0.008164679, + -0.007369211, + 0.00072546635, + -0.0038246077, + -0.013147487, + 0.0031150507, + 0.002862092, + -0.0050369003, + -0.007757399, + -0.0025614053, + -0.011664735, + -0.0075792144, + -0.009946526, + 0.0049064434, + -0.0017182098, + 0.0071146614, + 0.006258738, + -0.00017828416, + 0.00798013, + 0.011601098, + 0.00042438193, + -0.0016863911, + -0.0042446144, + 0.011181091, + 0.01172201, + -0.004995536, + -0.003010049, + 0.0015957078, + -0.01944759, + 0.012110197, + 0.011804738, + 0.011556552, + 0.0064782873, + -0.01495479, + -0.0068919305, + -0.027440447, + 0.007808309, + -0.005418725, + 0.005355087, + 0.010601991, + -0.011906558, + 0.0007612624, + -0.0016800273, + 0.0051800846, + 0.00051069015, + 0.0021461714, + 0.0005098947, + -0.017971203, + 0.0022479913, + -0.0016927548, + 0.00055125897, + 0.008018312, + 0.011925649, + 0.0076428517, + -0.0006646131, + 0.0061855554, + 0.011817466, + 0.0067582917, + -0.0058355494, + -0.0030736865, + 0.008521048, + -0.0010834268, + 0.0066691996, + -0.009895616, + -0.0068473844, + 0.018722123, + 0.014751149, + -0.02035124, + 0.021153072, + 0.0050146272, + -0.0083555905, + -0.008368318, + 0.020071236, + 0.012542931, + 0.004871443, + 0.0010014935, + 0.0053709964, + 0.010792903, + 0.003983701, + -0.004995536, + 0.0080310395, + 0.006061462, + 0.0048300787, + 0.002080943, + 0.014980244, + 0.005288268, + -0.008552867, + 0.0041777953, + 0.013605677, + 0.0069810227, + 0.009908344, + 0.0033600547, + -0.002473904, + 0.0073055737, + 0.00052540627, + -0.010417443, + 0.005708275, + -0.013096577, + 0.0020888976, + 0.0035636944, + 0.00030705045, + -0.0007787627, + 0.0005269972, + 0.0077255806, + -0.0010897905, + 0.00301164, + 0.00057313434, + -0.0034141466, + 0.0024627673, + 0.005654183, + 0.0014572964, + -0.0098892525, + 0.004155522, + 0.00097524317, + 0.002768227, + -0.015260248, + 0.011798374, + -0.015782075, + -0.008266498, + -0.002814364, + -0.021178527, + 0.0023832207, + 0.018327571, + 0.0032184615, + -0.001150246, + -0.006529197, + -0.014471144, + 0.013465674, + -0.013211125, + -0.02217127, + -0.0036400594, + -0.031945974, + -0.0064464686, + 0.0010619491, + -0.0021636717, + 0.006188737, + -0.012288382, + -0.020771248, + -0.008616504, + 0.0028811833, + 0.001420705, + -0.0062110103, + -0.0034841476, + -0.004110976, + 0.0075728507, + 0.0038309714, + 0.0030673228, + -0.0064496505, + -0.00058188447, + -0.0082855895, + -0.00328369, + -0.0016155945, + 0.011734737, + 0.0072101173, + 0.007757399, + -0.0062555564, + 0.0039773374, + -0.00929106, + -0.0031659608, + 0.026524069, + -0.015311158, + 0.0046614395, + -0.007636488, + 0.017487558, + -0.0005468839, + -0.015234794, + -0.0047664414, + 0.008673778, + 0.008934691, + -0.00031838586, + 0.023265833, + -0.009590156, + 0.006096463, + -0.0047155316, + 0.014522055, + 0.008635595, + 0.0058514588, + -0.0072419364, + 0.003033913, + 0.007165571, + -0.0053869057, + 0.006707382, + -0.0026759526, + -0.012460203, + 0.0062110103, + -0.0120274685, + 0.015616618, + -0.015616618, + -0.0037991528, + -0.005269177, + 0.006246011, + 0.0016672999, + 0.00007949703, + -0.011015634, + 0.009348334, + 0.0011088817, + -0.015540253, + -0.0069364766, + 0.00876287, + 0.0017118461, + 0.008571958, + 0.0056891837, + -0.0070828428, + -0.00974925, + 0.0015734347, + 0.0065991986, + -0.0037514248, + -0.0010563808, + 0.014089321, + -0.0011192227, + -0.007941947, + -0.007757399, + -0.003550967, + -0.0059437333, + -0.005841913, + 0.0027761816, + 0.0039932467, + 0.0045214375, + 0.010748357, + 0.015972987, + -0.005876914, + 0.016303902, + -0.0009569474, + 0.007566487, + 0.013656586, + -0.010156529, + 0.008769234, + 0.010614718, + 0.0067646555, + -0.00954561, + 0.0039964286, + 0.0018216206, + 0.013147487, + -0.010041982, + -0.013096577, + 0.018174842, + -0.006242829, + -0.0089601455, + 0.0053487234, + 0.011378367, + 0.004938262, + -0.0021477623, + 0.004995536, + -0.013147487, + -0.012746572, + -0.010468353, + -0.00573373, + -0.006443287, + -0.00524054, + -0.001221838, + 0.0036623324, + 0.00068648846, + -0.0065228334, + 0.006631017, + 0.012192926, + 0.0029925487, + -0.01702937, + -0.007477395, + 0.00018693486, + -0.0012242245, + 0.008807416, + 0.011499278, + -0.0069619315, + -0.011652008, + -0.0011613825, + -0.0056096367, + 0.007617397, + -0.009787432, + 0.011289275, + -0.0064973785, + 0.0051228106, + 0.0013228625, + -0.00016197708, + 0.007025569, + -0.0076746703, + -0.011053816, + -0.0006216579, + -0.0014191141, + -0.015094792, + 0.008094678, + 0.00055205444, + -0.0005440998, + -0.0051514474, + -0.0036146042, + -0.011671099, + -0.0116329165, + -0.011524733, + 0.0049096253, + -0.004530983, + 0.0034109647, + 0.010862905, + 0.012078378, + 0.009329243, + 0.00866105, + -0.0031755064, + 0.004336889, + 0.00513872, + -0.0033727821, + 0.00005712451, + -0.010640173, + -0.014012955, + 0.012021105, + 0.004581893, + 0.011671099, + 0.0055396357, + -0.0043750713, + -0.00054250885, + 0.008597413, + 0.0029989125, + 0.0073819384, + -0.009526519, + 0.008972874, + -0.009628339, + -0.017971203, + -0.0034650564, + 0.0041459766, + 0.011594734, + 0.005657365, + -0.018900309, + -0.01772938, + -0.01121291, + -0.01974032, + -0.013325672, + 0.0012202471, + 0.00085115025, + -0.021929448, + 0.012052923, + -0.0043655257, + -0.0011955877, + -0.0061155544, + -0.021356711, + 0.00881378, + 0.0025820874, + 0.01169019, + -0.009061966, + 0.004600984, + -0.0033345998, + -0.0034841476, + 0.0014230914, + 0.0027586813, + -0.009411971, + -0.0042573423, + 0.0006502947, + 0.00022531617, + 0.0057910034, + -0.015527526, + -0.0067201094, + -0.00406643, + 0.0035382395, + 0.012428384, + -0.0033791459, + 0.010086528, + 0.0053932695, + 0.010156529, + 0.016647544, + -0.020593062, + -0.008247407, + -0.0044928007, + -0.003840517, + 0.008196497, + 0.0007779672, + 0.005686002, + 0.010461989, + 0.020618517, + 0.006128282, + -0.017207554, + -0.0022607187, + 0.003646423, + 0.001442978, + -0.0076237605, + -0.016838456, + -0.0015678664, + 0.02504768, + -0.006417832, + 0.013503856, + 0.008775597, + -0.00006140015, + -0.008832871, + 0.0010388806, + -0.01439478, + 0.000052451138, + -0.010366533, + 0.013618404, + 0.020414878, + 0.0068728393, + 0.0077510355, + -0.007541032, + 0.005953279, + -0.016927548, + 0.004556438, + -0.0073119374, + 0.003108687, + -0.00045262103, + 0.003595513, + -0.007630124, + -0.006510106, + -0.004311434, + 0.0050750826, + -0.00037725046, + -0.0031691426, + 0.007846491, + 0.014738422, + -0.011804738, + -0.009711067, + 0.00044387087, + -0.002079352, + 0.024487672, + -0.00059779384, + 0.0030020943, + 0.012803845, + 0.009774704, + -0.0051196287, + -0.0015328659, + 0.00043273432, + 0.00066063576, + 0.006732837, + 0.0038850633, + 0.010640173, + -0.0013029758, + -0.009844705, + -0.01257475, + 0.0115629155, + 0.0025248139, + -0.007362847, + -0.003795971, + 0.0039964286, + 0.002004578, + 0.0017595742, + 0.012390202, + -0.011715645, + -0.0088901445, + -0.0023529928, + -0.0037768797, + 0.0034332378, + -0.009711067, + -0.012409293, + -0.015947532, + 0.0019138948, + 0.008120133, + 0.0027379992, + 0.012154743, + -0.0011749055, + 0.0007918879, + 0.013249307, + -0.0006785338, + 0.013402036, + 0.0052787224, + 0.0075346683, + -0.009539247, + -0.0063573765, + -0.007566487, + 0.008126496, + -0.007560123, + 0.023253106, + -0.00023028784, + 0.013452946, + -0.0076237605, + 0.00028497624, + -0.0016108217, + 0.008190134, + -0.0001962816, + -0.0074010296, + -0.004489619, + 0.006147373, + -0.009831978, + -0.011505642, + 0.006191919, + -0.00097285677, + -0.009081057, + 0.0022209452, + -0.005800549, + -0.00074773945, + 0.013338399, + -0.0012377475, + -0.0036018768, + 0.004527801, + -0.005581, + -0.005752821, + 0.0015734347, + -0.007515577, + -0.007477395, + 0.007000114, + -0.00028199324, + 0.009481973, + -0.01053199, + -0.007681034, + -0.0032614167, + -0.004400526, + 0.018251207, + -0.008629232, + 0.008769234, + -0.009666521, + 0.0069364766, + -0.003916882, + 0.0023720842, + 0.012542931, + -0.004260524, + -0.006751928, + -0.007324665, + 0.0028032274, + -0.0077510355, + -0.008629232, + -0.0066755633, + 0.0030673228, + -0.012358383, + -0.014012955, + -0.000186736, + -0.0008662641, + 0.0040314295, + -0.0039264276, + -0.014852969, + -0.019103948, + -0.010932906, + -0.010290167, + -0.0028461828, + 0.011302003, + 0.0072864825, + -0.009742886, + 0.0084955925, + -0.008323772, + -0.012129288, + 0.0024102665, + 0.002599588, + -0.0105829, + 0.004009156, + -0.00079467206, + -0.011830193, + -0.0050019, + -0.009074694, + 0.0034650564, + 0.010105619, + 0.01762756, + -0.0016863911, + 0.0009251287, + -0.00537736, + 0.010710174, + -0.0137711335, + 0.004581893, + -0.013083849, + 0.011480187, + -0.006436923, + 0.004750532, + -0.009965617, + -0.0048841704, + -0.0016609362, + -0.0014334325, + 0.011085635, + -0.008470138, + -0.0039805193, + 0.009138331, + -0.0050114454, + 0.011270184, + -0.008412864, + -0.008463774, + -0.0008368318, + -0.0022464003, + -0.0020284422, + -0.011346549, + -0.0033696003, + -0.0020968523, + -0.007871946, + 0.008972874, + 0.0019457135, + 0.009265605, + -0.0035923312, + 0.0046868944, + 0.008616504, + -0.00004389986, + -0.0011470641, + -0.0024723131, + 0.004620075, + 0.0070128418, + 0.01053199, + 0.003939155, + 0.0024373124, + -0.003331418, + 0.0067201094, + 0.00073580747, + 0.0032439164, + 0.012402929, + 0.021076707, + -0.029578663, + 0.001051608, + -0.0022416275, + -0.002252764, + -0.001980714, + 0.010487444, + 0.0031245963, + 0.0145602375, + -0.009163786, + 0.0036877873, + 0.00034304537, + -0.0010953587, + 0.014127503, + 0.004992354, + -0.0057623666, + -0.014000228, + -0.004429163, + -0.011728373, + -0.005845095, + 0.0008821735, + 0.0023545837, + 0.011079271, + -0.007897401, + 0.012078378, + 0.0017245736, + -0.00073819386, + 0.0006196692, + 0.012415657, + 0.013262034, + -0.007515577, + 0.0055873636, + -0.01813666, + 0.0021604898, + 0.0135165835, + 0.000014007685, + -0.022043996, + -0.022311272, + -0.0075983056, + -0.0010587672, + -0.0032709623, + -0.0035223302, + 0.0011088817, + 0.000388387, + 0.01570571, + 0.0033791459, + -0.0025932242, + 0.00911924, + 0.01853121, + 0.0034714201, + 0.0022352636, + 0.0021620807, + 0.0026950438, + 0.010652901, + 0.005701911, + -0.0016171854, + 0.010092892, + -0.0021716263, + 0.0033186905, + -0.0072292085, + 0.0068855667, + -0.0084255915, + 0.014152958, + 0.014356597, + 0.0052341763, + 0.010054709, + 0.0023132195, + -0.012205654, + 0.0111683635, + 0.004651894, + -0.022196725, + 0.0005174516, + 0.004165068, + -0.005969188, + 0.0069110217, + -0.001407182, + -0.009023784, + 0.009831978, + 0.0041237036, + 0.008056495, + 0.0056669107, + -0.0016784364, + 0.0008917191, + -0.012695662, + 0.00256936, + 0.00030207878, + 0.00028915243, + 0.013656586, + -0.014814787, + -0.0018502574, + -0.007566487, + 0.012746572, + -0.00071114796, + 0.008915599, + -0.01318567, + -0.0043877987, + 0.0017929837, + 0.005727366, + -0.0064687417, + -0.012110197, + -0.008909236, + -0.010850177, + 0.0015949124, + -0.006513288, + -0.011162, + -0.013198397, + 0.011855648, + 0.0019011673, + -0.0037991528, + -0.0047059855, + 0.0032407346, + -0.009100148, + 0.011817466, + -0.0053009954, + 0.017869381, + -0.014140231, + 0.011321094, + -0.0067201094, + -0.0047441684, + -0.018200297, + -0.007789218, + -0.015934804, + 0.0024595854, + -0.015985714, + 0.005625546, + 0.008921963, + 0.015527526, + -0.0048809885, + -0.011556552, + 0.006121918, + -0.005552363, + 0.007986493, + -0.0016132081, + -0.012313837, + -0.002787318, + -0.0008117746, + 0.0079610385, + 0.010334713, + -0.0011709281, + 0.00592146, + 0.0026568614, + -0.006809202, + -0.005132356, + 0.0007656375, + 0.008686505, + -0.0047378046, + -0.013122032, + 0.010652901, + -0.010939269, + -0.011874739, + -0.00042120003, + 0.009507428, + -0.00093944714, + 0.004133249, + -0.012962938, + 0.012135652, + 0.0037800616, + -0.011448368, + 0.006904658, + 0.0027125443, + -0.00034364196, + -0.0015185474, + 0.0035223302, + 0.006045553, + -0.011919285, + -0.009933799, + 0.0022845827, + -0.009081057, + 0.010869268, + -0.00974925, + -0.008934691, + -0.009112876, + -0.0013355899, + 0.009602884, + -0.02091125, + -0.00021815696, + 0.0019377589, + -0.005635092, + -0.003229598, + -0.012670207, + 0.0033950554, + -0.008896508, + 0.016023897, + 0.002346629, + -0.0007055797, + -0.008807416, + -0.008801052, + 0.0023068557, + 0.009233787, + 0.0055714543, + -0.09499791, + -0.0038818815, + -0.0025295867, + -0.017831199, + 0.009787432, + 0.01393659, + 0.003107096, + -0.011085635, + 0.011302003, + -0.0016784364, + -0.0041046124, + 0.005660547, + -0.015820257, + -0.009278333, + 0.026753163, + -0.0037100604, + 0.015005699, + 0.009004693, + 0.0037577886, + -0.012511113, + -0.006316012, + 0.0072483, + -0.0016832092, + -0.00055802043, + 0.015183884, + 0.0012051333, + -0.0007906947, + -0.0014970698, + -0.0016561634, + 0.0031786882, + -0.019994872, + 0.009259242, + -0.011327458, + -0.009851069, + -0.0022607187, + -0.005094174, + -0.0017229826, + -0.003353691, + -0.013249307, + -0.00010221757, + 0.005485544, + 0.00012329746, + 0.006834657, + -0.0006634199, + -0.0014541146, + -0.016138446, + -0.011664735, + -0.0009720613, + 0.0144456895, + 0.0010468352, + 0.008400137, + 0.0052023577, + -0.0082155885, + 0.005463271, + -0.0013260443, + -0.0024579945, + 0.014929334, + 0.00097603863, + 0.0022639006, + -0.0016370721, + 0.00028080004, + -0.011378367, + 0.0021604898, + -0.0111683635, + 0.002815955, + 0.016087534, + 0.006039189, + 0.0015599118, + 0.00094581087, + 0.02242582, + 0.00469644, + -0.014127503, + -0.004285979, + 0.010073801, + 0.0029161838, + 0.0057846396, + 0.0020698064, + -0.010181984, + 0.006879203, + 0.0042159776, + 0.0020968523, + 0.010875632, + -0.013592949, + 0.0052787224, + 0.011912921, + 0.0074519394, + -0.0114929145, + -0.013198397, + 0.0016092308, + 0.0012568387, + -0.003331418, + 0.003251871, + 0.00656738, + -0.0027459539, + 0.003035504, + -0.0023911754, + 0.0017548014, + -0.007369211, + 0.007719217, + 0.014572965, + -0.0024643582, + 0.0069873864, + 0.002125489, + -0.0001891224, + -0.013211125, + -0.0033186905, + 0.016583906, + -0.0044132536, + 0.008419228, + 0.010092892, + 0.006701018, + -0.007471031, + -0.0056478195, + -0.006930113, + -0.0027364083, + -0.012708389, + 0.008482865, + -0.0077064894, + -0.0051832665, + 0.0025375413, + -0.00022670825, + 0.0012329746, + -0.0058864597, + 0.014012955, + 0.0010691084, + 0.00524054, + -0.013974773, + 0.0039932467, + -0.00033409634, + 0.006751928, + -0.017385738, + 0.012479294, + 0.017843926, + -0.006347831, + 0.0068219295, + -0.013732951, + 0.010080164, + 0.0038532447, + -0.019320315, + 0.0010635401, + 0.0051800846, + -0.007859219, + 0.014662057, + 0.0052978136, + -0.0032184615, + -0.007986493, + 0.0074073933, + -0.0064751054, + -0.0021000342, + -0.004734623, + -0.0014382052, + 0.011607462, + 0.0063541946, + 0.004359162, + -0.005625546, + -0.013274762, + -0.014038411, + 0.011372004, + -0.00034423856, + -0.004604166, + 0.019943962, + -0.013452946, + 0.013198397, + 0.015514798, + -0.00055205444, + -0.002225718, + -0.0018470755, + 0.012447475, + -0.0067201094, + 0.00089410547, + -0.014012955, + 0.003251871, + 0.0061346455, + 0.0022384454, + 0.007744672, + 0.0006144986, + 0.0032677804, + 0.013083849, + -0.0075028497, + 0.009112876, + 0.016698454, + 0.0028827742, + -0.004429163, + 0.00015034336, + 0.0039518825, + 0.01828939, + 0.0066501084, + 0.003694151, + -0.0012894528, + -0.0035414214, + -0.0014795696, + -0.00006662041, + 0.0144456895, + 0.0051705386, + -0.0000645323, + -0.00636374, + 0.0063191936, + -0.013172942, + 0.003990065, + 0.009303788, + -0.008769234, + 0.0017691198, + -0.014089321, + -0.0049796267, + -0.008190134, + -0.004775987, + -0.004359162, + -0.007585578, + -0.0024102665, + -0.003983701, + -0.0027761816, + -0.007521941, + -0.0077255806, + 0.0014254778, + 0.0020888976, + -0.017016642, + 0.017207554, + 0.0039964286, + -0.0038246077, + -0.023800388, + -0.0033600547, + -0.013656586, + -0.012186563, + 0.008336499, + -0.000027567921, + 0.007057388, + 0.01596026, + 0.008444683, + -0.005507817, + 0.00906833, + -0.006783747, + -0.0010309259, + -0.004330525, + -0.010684719, + -0.0004987581, + -0.008024676, + -0.009049239, + 0.0057910034, + -0.0101692565, + -0.016431177, + -0.0037896072, + 0.010137438, + -0.011499278, + -0.0018279843, + -0.009316515, + 0.0194985, + 0.0061091906, + -0.005482362, + -0.0029973215, + -0.014611147, + 0.00714648, + -0.0011963831, + 0.0105638085, + -0.00023844138, + 0.009602884, + 0.015845712, + -0.006732837, + -0.008527412, + 0.0049032615, + 0.006443287, + -0.022604005, + 0.001138314, + 0.004896898, + 0.0032486892, + -0.0063573765, + -0.01429296, + -0.010786539, + -0.003872336, + 0.007884674, + 0.00876287, + -0.00318187, + -0.012937483, + -0.003773698, + 0.017080279, + -0.009431063, + -0.009812887, + -0.0007270573, + 0.0024579945, + 0.013465674, + -0.0013371808, + -0.005899187, + 0.008826507, + 0.0017659379, + 0.016838456, + 0.004970081, + 0.004725077, + 0.011225637, + 0.0013268398, + 0.006487833, + -0.0040823394, + 0.014063866, + -0.0017182098, + 0.0023673114, + 0.0074837585, + -0.0003175904, + -0.008209225, + -0.004403708, + 0.0055873636, + 0.0061537367, + -0.008247407, + -0.013974773, + -0.005437816, + -0.011575643, + -0.008826507, + -0.0072419364, + -0.0074519394, + 0.0034618746, + 0.0011295639, + 0.022464002, + 0.00597237, + 0.017767562, + 0.014852969, + -0.0005067128, + 0.009049239, + 0.0029225475, + -0.002006169, + -0.008094678, + 0.006417832, + -0.0036527868, + 0.0017086642, + -0.012791118, + -0.0054505435, + 0.0065737437, + 0.020313058, + 0.0043018884, + -0.015349341, + 0.004114158, + 0.0044387085, + -0.011855648, + -0.004874625, + 0.006366922, + 0.0023673114, + 0.004947808, + -0.0014397962, + 0.0021716263, + 0.007515577, + -0.006535561, + -0.0061091906, + 0.0068919305, + 0.007871946, + -0.0007258641, + -0.005822822, + 0.0013435446, + -0.019702138, + 0.00709557, + -0.005654183, + -0.0009991071, + 0.009176513, + 0.017067552, + 0.009221059, + -0.005040082, + -0.0032741441, + 0.01793302, + 0.018658485, + -0.01793302, + -0.0009768341, + 0.017780289, + 0.004772805, + 0.0015996852, + 0.0065228334, + 0.009590156, + 0.0035859675, + 0.0003925632, + 0.006417832, + -0.0058387313, + -0.007808309, + -0.021993086, + 0.006923749, + -0.001088995, + 0.006373286, + 0.001322067, + -0.0030482316, + 0.00508781, + 0.0060296436, + -0.013007484, + 0.00074296666, + -0.010519262, + 0.011982922, + 0.006510106, + -0.002345038, + -0.006090099, + -0.0057369117, + -0.00027602722, + -0.004954172, + 0.00396461, + -0.0018232116, + 0.004263706, + 0.003331418, + 0.0068855667, + -0.0051673567, + 0.002787318, + -0.0029480027, + 0.0014485463, + 0.007954675, + -0.00479826, + -0.00573373, + -0.0023641295, + -0.010608355, + -0.00004909526, + 0.0057114568, + -0.001983896, + -0.0019950324, + 0.002131853, + -0.011340185, + -0.0056510014, + -0.013542038, + 0.021445803, + -0.0060805534, + -0.0034714201, + 0.011779283, + 0.012339292, + 0.018340299, + 0.005994643, + -0.014967517, + 0.002181172, + 0.008622868, + 0.007101934, + 0.005116447, + -0.0025566325, + 0.010799266, + -0.0041937046, + -0.005876914, + -0.0036591506, + -0.0074264845, + -0.002179581, + 0.0015583208, + 0.0063605583, + 0.008368318, + -0.006732837, + 0.0035573307, + 0.0063541946, + -0.0040346114, + 0.000061151564, + 0.006417832, + -0.01646936, + -0.00013214703, + -0.005415543, + 0.00406643, + -0.0056955474, + -0.001381727, + -0.017767562, + 0.004731441, + -0.008718324, + -0.010512899, + 0.009914707, + 0.0073501198, + 0.017067552, + 0.00318187, + 0.0015288886, + -0.008444683, + -0.0107038105, + 0.008635595, + -0.0036368775, + 0.0032216434, + 0.005622364, + -0.0024802678, + -0.0021143525, + -0.013083849, + 0.011295639, + -0.0033791459, + 0.009666521, + -0.003030731, + 0.0064687417, + -0.0037355155, + 0.0012266109, + -0.009812887, + 0.0034332378, + -0.007954675, + -0.0007533077, + -0.018493028, + -0.0013172942, + -0.004871443, + -0.014102048, + 0.0015265022, + 0.0095647015, + -0.008018312, + -0.00035219325, + -0.0009816069, + -0.008190134, + -0.007757399, + -0.0105829, + -0.010156529, + -0.005361451, + 0.0017277554, + 0.019307587, + -0.0015336614, + -0.0038277896, + -0.008209225, + -0.0015503662, + 0.00906833, + -0.003770516, + -0.0070446604, + -0.015540253, + 0.008387409, + 0.0018677578, + 0.002839819, + -0.011372004, + 0.0014899106, + -0.0041523403, + -0.0037355155, + 0.000031147523, + 0.010640173, + 0.017882109, + 0.009711067, + -0.013032939, + 0.0022352636, + -0.0012496795, + -0.00071353436, + 0.0108183585, + 0.004165068, + 0.012803845, + -0.001885258, + -0.017016642, + 0.009144695, + 0.003452329, + -0.0044800728, + 0.00597237, + -0.01184292, + -0.014814787, + -0.009189241, + -0.0042159776, + 0.009672885, + 0.018976673, + -0.009819251, + -0.0007541032, + -0.011480187, + 0.0023195832, + -0.001051608, + 0.0011343367, + -0.0070892065, + 0.0083555905, + -0.0042191595, + -0.008400137, + 0.0017675288, + 0.0033027811, + 0.010850177, + -0.0015678664, + 0.0026536796, + 0.006879203, + 0.0036050586, + -0.006191919, + 0.013083849, + -0.010856541, + -0.00017768756, + -0.011671099, + 0.0028334553, + 0.0038246077, + -0.009679249, + -0.0007449553, + 0.010150165, + 0.0029734576, + -0.009208332, + -0.009182877, + 0.0064719236, + 0.0004677349, + -0.0015257067, + 0.013262034, + -0.006106009, + -0.003474602, + 0.013974773, + 0.00007467451, + -0.0022352636, + 0.0013626359, + -0.016380267, + 0.003158006, + 0.0021000342, + -0.0036209682, + -0.0051259925, + -0.0056446376, + 0.018162115, + -0.0074519394, + 0.00020165101, + -0.0043909806, + -0.0017516194, + 0.0005759185, + -0.0085401395, + -0.010201075, + -0.0048141694, + 0.0010993361, + 0.005899187, + -0.00631283, + 0.005157811, + 0.010748357, + 0.007477395, + -0.0051546292, + -0.022489456, + 0.0012783163, + 0.011480187, + -0.0018375299, + 0.003154824, + -0.0035700582, + -0.0052755405, + -0.002448449, + 0.007521941, + 0.0023879935, + 0.00495099, + 0.0075537595, + 0.0055237263, + -0.0082155885, + 0.0024723131, + 0.0101692565, + -0.0021907175, + -0.0037100604, + -0.022871282, + -0.008514685, + -0.016036624, + 0.003697333, + 0.0019170766, + -0.0010030845, + -0.0068664756, + 0.013732951, + 0.0028557284, + 0.0046868944, + 0.013758406, + 0.00813286, + -0.0058737323, + 0.0047409865, + -0.003134142, + 0.003035504, + 0.010506535, + 0.000128468, + -0.007833764, + 0.0114929145, + 0.005195994, + 0.009946526, + -0.013026576, + 0.012180198, + 0.0052532675, + 0.0005055196, + -0.011766556, + 0.019613046, + -0.0015050245, + 0.012924756, + 0.015362068, + 0.005199176, + -0.00061887375, + -0.0017929837, + -0.0032900537, + -0.0047664414, + 0.017080279, + 0.011696554, + 0.0009084239, + -0.0054919077, + -0.005848277, + -0.013949318, + -0.0058641867, + 0.000128468, + -0.015769348, + -0.009303788, + 0.0088901445, + 0.010290167, + 0.013389309, + -0.0018741215, + 0.0011589961, + 0.004187341, + -0.0055682724, + 0.001442978, + 0.009297424, + 0.0009139922, + 0.0063032843, + -0.008565594, + -0.0009609247, + 0.007636488, + 0.001762756, + 0.0061346455, + 0.005841913, + -0.004820533, + 0.0025279957, + -0.001859803, + 0.0058673685, + 0.0065005603, + 0.008737415, + -0.005358269, + 0.005778276, + 0.0018566211, + -0.0014755923, + -0.012638387, + 0.0018438937, + -0.01199565, + 0.02145853, + 0.004575529, + 0.0054505435, + -0.014216595, + -0.004088703, + -0.009125603, + 0.00015869577, + -0.00537736, + -0.0069619315, + -0.0043941624, + -0.013300217, + 0.003528694, + 0.014827514, + -0.00440689, + -0.011200182, + -0.006001007, + 0.0023339016, + 0.020542152, + -0.0072673913, + 0.017716652, + -0.005361451, + 0.0044991644, + 0.01017562, + 0.002543905, + -0.008794689, + 0.0060519166, + 0.0048841704, + 0.014203868, + 0.023151286, + -0.013567494, + -0.008858326, + 0.0129820295, + 0.0068219295, + -0.0030020943, + -0.00798013, + -0.0019854868, + -0.0058864597, + -0.009036511, + -0.0141656855, + 0.0048396243, + -0.002445267, + -0.013529311, + 0.0024579945, + 0.0036527868, + 0.004403708, + -0.0060328254, + -0.0045405286, + 0.00508781, + -0.006341467, + 0.0103092585, + -0.0019313951, + 0.0061569186, + 0.0058641867, + 0.0289932, + -0.007712853, + 0.014382052, + 0.0049223527, + 0.00906833, + 0.007681034, + -0.0018327571, + -0.00031182327, + 0.0072101173, + -0.0020491243, + -0.013032939, + 0.005931006, + 0.0036114224, + 0.0067646555, + -0.001886849, + -0.012180198, + -0.0030211855, + -0.01043017, + 0.006306466, + 0.0042573423, + 0.00954561, + -0.001088995, + 0.020949433, + -0.0027093624, + -0.008400137, + -0.0015137746, + 0.008979238, + -0.0019123039, + -0.0021588989, + 0.008686505, + -0.0049255346, + 0.006923749, + -0.0074201208, + -0.0009999026, + 0.012549295, + -0.006561016, + -0.012536568, + 0.0061601005, + 0.02843319, + 0.0015455934, + 0.0021461714, + -0.0018693487, + 0.0058323676, + -0.0038468807, + 0.0114229135, + -0.0060773715, + -0.0058960053, + -0.0010468352, + -0.004826897, + -0.009354698, + 0.0031230054, + 0.0041205217, + 0.0032391436, + -0.0066882907, + -0.0071782987, + 0.016647544, + -0.0011112681, + 0.006417832, + -0.0077701267, + 0.0049796267, + 0.020160329, + -0.01747483, + -0.01727119, + 0.00641465, + 0.0008392182, + -0.0009593338, + -0.009971981, + 0.015489344, + -0.0040187016, + -0.01083745, + 0.0034555108, + 0.0040537026, + -0.015336613, + -0.0047409865, + 0.0029798213, + 0.005708275, + 0.002104807, + -0.0046423483, + 0.0020857158, + -0.0059150965, + 0.0043018884, + 0.004047339, + 0.0036305138, + -0.0012568387, + 0.005876914, + 0.008521048, + -0.010945633, + 0.003256644, + 0.00484917, + -0.007916492, + 0.0023943572, + 0.010811995, + -0.0049287165, + 0.0036082405, + 0.019702138, + -0.022705825, + 0.0057878215, + -0.010519262, + 0.011162, + 0.0133765815, + -0.010207439, + 0.0054696347, + 0.0005882482, + 0.0070701153, + 0.010659264, + 0.00020821362, + -0.00009590355, + -0.018022113, + -0.003331418, + -0.00440689, + -0.00296073, + -0.0029909578, + -0.0071401163, + -0.0228331, + -0.0009474018, + -0.0034109647, + -0.009042875, + 0.011091999, + -0.005310541, + -0.0034173285, + 0.001238543, + 0.0040346114, + -0.006923749, + 0.00025017452, + 0.004069612, + 0.009711067, + 0.011359276, + -0.00581964, + -0.00020184988, + 0.008266498, + -0.0072101173, + 0.006656472, + 0.009411971, + -0.017436648, + 0.009940162, + 0.013325672, + 0.008050132, + 0.014929334, + 0.0052500856, + -0.015362068, + -0.0018884399, + 0.008953782, + -0.009201968, + 0.00714648, + 0.008546503, + -0.0060264617, + -0.0015559344, + 0.0024293577, + -0.006096463, + 0.0010842222, + -0.0074264845, + -0.0045437105, + -0.015298431, + -0.0060296436, + 0.0039327913, + 0.0021604898, + -0.009621975, + -0.007057388, + 0.007681034, + 0.009284697, + 0.00886469, + -0.0031452784, + 0.0071337526, + -0.0022464003, + -0.010111983, + 0.01048108, + 0.0019393498, + 0.006974659, + -0.0016171854, + -0.002227309, + -0.014789332, + 0.013001121, + -0.002744363, + -0.00066302216, + -0.0022464003, + -0.012364747, + 0.0067455643, + -0.0029273203, + -0.007948311, + 0.0068028383, + 0.0044450723, + -0.002125489, + 0.01590935, + 0.027389538, + 0.013669314, + 0.010538354, + -0.012084742, + -0.0021827628, + 0.01131473, + -0.0012687707, + 0.008489229, + 0.0051196287, + -0.015094792, + 0.017805744, + -0.003795971, + -0.0068919305, + -0.0060041887, + -0.0063001025, + -0.0116329165, + -0.01252384, + -0.0153747955, + 0.00087819615, + -0.009176513, + -0.014229323, + 0.008559231, + 0.010831086, + 0.004114158, + -0.009189241, + -0.010022891, + -0.002278219, + 0.0011717236, + -0.0013705905, + 0.010474716, + 0.006284193, + 0.0034396015, + -0.011512006, + -0.0009474018, + 0.008431955, + -0.0056987293, + 0.009361061, + -0.004779169, + 0.0040505207, + -0.0064528324, + -0.0061091906, + 0.0049891723, + -0.009590156, + -0.0036432412, + 0.003129369, + 0.0023959482, + 0.010792903, + 0.0068410207, + 0.0026823163, + 0.012810209, + -0.001812075, + 0.0011637689, + -0.008934691, + -0.008431955, + -0.00455962, + -0.008801052, + -0.0029686848, + -0.00062961254, + 0.0044673453, + -0.0012910437, + -0.01641845, + -0.005399633, + 0.004667803, + 0.0005063151, + 0.007025569, + -0.017665742, + 0.0056478195, + 0.0015217293, + -0.00798013, + -0.014254778, + -0.006853748, + 0.0038246077, + -0.0064496505, + 0.011410186, + 0.0021350349, + -0.0069110217, + 0.014254778, + 0.005861005, + -0.0016450268, + -0.010220166, + -0.003154824, + 0.0071846624, + -0.007954675, + -0.0043018884, + 0.011333821, + -0.022693098, + 0.017054824, + 0.009558338, + -0.015209339, + -0.012632024, + 0.025684055, + 0.0064528324, + 0.010551081, + 0.008272862, + -0.01611299, + 0.01813666, + -0.009577429, + 0.00085353665, + -0.0014413871, + 0.011346549, + 0.0008956964, + -0.00709557, + 0.0027698178, + 0.008654687, + -0.0012162698, + -0.025964059, + 0.011244728, + 0.010487444, + -0.016660271, + 0.0070128418, + 0.0027905, + 0.012682934, + -0.000056130175, + 0.0046137115, + -0.011779283, + -0.00061131676, + 0.0037864253, + -0.00049796264, + -0.0114229135, + 0.0068664756, + 0.009768341, + -0.0068155658, + 0.015145701, + -0.012682934, + 0.00046296208, + 0.0013777497, + -0.003935973, + 0.009303788, + 0.0015463888, + 0.003795971, + -0.0015622982, + 0.004629621, + -0.004893716, + -0.008654687, + 0.00096012925, + -0.008559231, + 0.007432848, + 0.0007823423, + 0.014534783, + -0.007458303, + 0.01272748, + -0.005043264, + -0.011512006, + 0.0073755747, + -0.0062110103, + -0.0055905455, + 0.005625546, + -0.014382052, + -0.0075092134, + 0.017385738, + 0.009660157, + 0.0047059855, + 0.0034936932, + 0.0018804852, + 0.013491129, + -0.004285979, + -0.015883895, + -0.0040282477, + 0.0041905227, + -0.006481469, + 0.008921963, + -0.0054314523, + 0.008260135, + -0.0051228106, + -0.012651116, + 0.004919171, + 0.011149272, + -0.0028302735, + 0.0007318301, + -0.005160993, + -0.0016084353, + 0.012243836, + 0.007521941, + 0.012943847, + -0.0013085441, + 0.006106009, + -0.009386516, + -0.007636488, + -0.0019250314, + -0.00881378, + -0.00020443514, + -0.0019902596, + 0.00818377, + 0.0014930925, + 0.0039137, + 0.007611033, + 0.0072801188, + 0.0028080002, + 0.0074201208, + -0.0017516194, + -0.0040537026, + -0.007916492, + 0.014203868, + -0.0068219295, + 0.006751928, + -0.010856541, + -0.007871946, + 0.016062079, + -0.001687982, + 0.006707382, + -0.007515577, + -0.006513288, + 0.005259631, + 0.012186563, + -0.014012955, + -0.005997825, + -0.0010364942, + 0.0034682383, + 0.0076683066, + -0.009437427, + -0.004381435, + -0.002181172, + -0.0073119374, + -0.0064305593, + 0.012402929, + -0.004887352, + 0.0007421712, + -0.0019313951, + -0.0031436875, + 0.00038321648, + 0.014865696, + -0.007541032, + 0.00085592305, + 0.008902872, + 0.0009251287, + -0.0027523176, + 0.00079944485, + -0.0105829, + 0.0039264276, + 0.0029082291, + -0.000666204, + 0.0055491813, + 0.0080755865, + -0.016660271, + 0.007941947, + -0.017563922, + -0.0019663956, + -0.002547087, + -0.011715645, + 0.0044450723, + -0.0048109875, + -0.0038341533, + 0.009411971, + 0.005574636, + 0.0100292545, + 0.0031484603, + -0.005437816, + 0.004995536, + 0.003251871, + -0.0031055051, + 0.0009299015, + 0.0015463888, + 0.000020421143, + 0.006968295, + 0.0005616001, + -0.01419114, + 0.011091999, + -0.0005210312, + 0.008005585, + 0.009303788, + 0.0041268854, + 0.00568282, + -0.023851298, + -0.0014851379, + 0.007292846, + -0.00054847484, + 0.0030705046, + 0.004890534, + -0.0153747955, + 0.002031624, + 0.0011677463, + 0.0037546067, + 0.011429277, + -0.009844705, + 0.0027348173, + -0.0030689137, + 0.0066437447, + -0.011435641, + 0.0038246077, + -0.008622868, + -0.002567769, + 0.011932013, + -0.0048618973, + -0.011346549, + -0.0014477508, + 0.006898294, + 0.006592835, + -0.0037323334, + -0.015234794, + -0.0029145929, + 0.0012393384, + 0.009462882, + -0.0012822936, + 0.0012242245, + 0.0070446604, + -0.0016100262, + -0.005924642, + -0.008941054, + 0.00709557, + -0.0075346683, + -0.006898294, + 0.0073819384, + 0.0044450723, + 0.007973766, + 0.019600319, + 0.009927435, + -0.0064782873, + 0.005412361, + -0.014725694, + -0.00924015, + -0.00924015, + -0.014763877, + 0.0027268627, + -0.00070717063, + 0.013402036, + 0.001762756, + -0.0073119374, + -0.008374682, + -0.0011820648, + -0.010321986, + -0.011486551, + 0.0026473159, + 0.0026552705, + -0.010805631, + -0.0042573423, + 0.0120274685, + -0.008591049, + -0.0032900537, + -0.007967402, + -0.0022639006, + 0.0022432185, + -0.01393659, + -0.011970195, + -0.0070701153, + 0.00901742, + -0.0034905113, + -0.019014856, + 0.00362415, + -0.0019266224, + 0.018887581, + 0.006506924, + 0.004044157, + 0.018327571, + -0.00012210426, + -0.0025423141, + -0.009284697, + -0.0156548, + 0.012313837, + -0.002057079, + 0.011709281, + -0.0077319443, + -0.0035923312, + 0.0009720613, + -0.0037641523, + -0.004804624, + -0.015769348, + -0.0010627445, + 0.014776604, + 0.00455962, + -0.004352798, + 0.012791118, + 0.012110197, + -0.004403708, + -0.01853121, + -0.0005110879, + -0.0010706993, + 0.011372004, + -0.0077701267, + 0.00011235978, + 0.0059660063, + -0.0026727708, + -0.0051864483, + -0.009074694, + 0.0022193543, + -0.012587477, + 0.0103092585, + -0.00046216662, + -0.002811182, + -0.0028048183, + 0.022324, + -0.001150246, + 0.02460222, + 0.019218495, + 0.00239913, + -0.0048523517, + -0.00081614964, + -0.0011828602, + 0.00048603065, + 0.011683826, + -0.006828293, + 0.007121025, + 0.005094174, + -0.0063764676, + 0.0050337184, + -0.0026393612, + 0.01235202, + -0.0007481372, + 0.0048141694, + 0.010360169, + 0.002570951, + -0.0054950896, + 0.004820533, + 0.01111109, + 0.000041314594, + 0.00006045553, + -0.0033696003, + 0.0071846624, + -0.01459842, + -0.0034236922, + 0.0035923312, + -0.007273755, + -0.0006451241, + -0.005946915, + 0.00602328, + -0.012288382, + -0.015412979, + -0.014763877, + 0.0047855326, + 0.00924015, + 0.002570951, + 0.0003999213, + 0.005686002, + -0.0035414214, + -0.008291953, + 0.0074010296, + -0.0014660467, + 0.00929106, + -0.0041968864, + -0.004330525, + 0.005708275, + 0.0060360073, + 0.0026123154, + -0.0135165835, + -0.0011828602, + -0.02101307, + -0.0043496164, + -0.011327458, + -0.0007942743, + -0.011556552, + 0.01626572, + 0.0012950212, + -0.0005747253, + 0.0021907175, + -0.0069364766, + -0.0039964286, + -0.00063716946, + -0.0039709737, + -0.0054441798, + 0.008991965, + -0.006783747, + -0.014789332, + 0.007541032, + 0.001641845, + 0.015222066, + -0.014980244, + -0.0057910034, + 0.010067437, + 0.0026616342, + -0.0043718894, + 0.005771912, + -0.00006676956, + -0.008533776, + 0.015438434, + 0.012256564, + 0.0039264276, + 0.012918392, + 0.0018820761, + 0.00239913, + -0.02172581, + -0.0039518825, + 0.0045850747, + 0.016202083, + -0.0012170653, + 0.0065737437, + -0.023049466, + 0.007611033, + 0.0029336843, + -0.0042955247, + 0.012638387, + -0.0076937615, + -0.007789218, + -0.00901742, + 0.017691197, + 0.00934197, + -0.00484917, + 0.0053932695, + 0.016125718, + -0.0017404829, + -0.0072419364, + 0.010449261, + 0.00015442012, + -0.0071082977, + 0.0002744363, + -0.0076492154, + 0.0059437333, + -0.018073022, + 0.00719739, + -0.0063764676, + -0.00055364537, + 0.007324665, + 0.013198397, + 0.00061887375, + 0.009023784, + 0.005625546, + 0.0077064894, + -0.0069110217, + 0.004728259, + 0.0102392575, + 0.0052723587, + 0.010557445, + 0.0033886915, + 0.013287489, + -0.01914213, + -0.008832871, + -0.002669589, + 0.008209225, + -0.0076046693, + -0.0049637174, + -0.0003937564, + -0.00029014677, + 0.0015034336, + 0.004973263, + 0.0032932356, + -0.008902872, + -0.008476501, + -0.0029798213, + -0.016494814, + -0.004136431, + 0.0034109647, + 0.011792011, + -0.0122502, + -0.011906558, + -0.006611926, + -0.008629232, + 0.0011391095, + -0.00020284421, + -0.018340299, + 0.0069873864, + -0.023673113, + -0.0016434359, + -0.0072801188, + -0.00092671963, + 0.0072610276, + -0.0070637516, + 0.0005293836, + -0.010296531, + -0.0039041545, + 0.0034586927, + 0.045029823, + -0.012294746, + 0.014280233, + 0.008151951, + -0.00306255, + 0.0049605356, + 0.007464667, + -0.028815014, + 0.005880096, + -0.012504749, + -0.015463889, + -0.0029830032, + -0.002788909, + -0.010856541, + -0.0017341191, + -0.0011351322, + 0.005415543, + -0.016482087, + 0.007216481, + -0.004874625, + 0.0008766052, + -0.0011438823, + 0.007547396, + 0.003649605, + -0.004088703, + 0.009348334, + -0.0025598144, + 0.0035414214, + -0.008247407, + -0.010608355, + 0.011671099, + -0.006217374, + 0.025569508, + -0.008985601, + 0.007273755, + -0.004690076, + 0.005596909, + 0.0015105928, + 0.017691197, + -0.010398352, + 0.0032025522, + -0.007464667, + -0.011798374, + -0.007439212, + 0.0037036967, + -0.018111205, + -0.002378448, + -0.00011037112, + -0.008088314, + 0.0010333123, + -0.008209225, + 0.0011462687, + 0.004648712, + 0.0027507266, + 0.00808195, + -0.017742107, + 0.013172942, + 0.0047823507, + 0.014229323, + -0.0007481372, + -0.010932906, + -0.00057671394, + -0.0013204761, + 0.0018470755, + 0.006481469, + 0.005558727, + -0.0028795924, + -0.0104938075, + 0.008877417, + 0.006214192, + 0.0072673913, + -0.025174955, + -0.010232894, + 0.0005576227, + -0.0049064434, + 0.008101041, + 0.002599588, + -0.001529684, + 0.013160215, + -0.019549409, + 0.0009656976, + -0.00053017907, + 0.0020618518, + 0.0030768684, + -0.015794802, + 0.0064273775, + -0.0041746134, + 0.01611299, + -0.029171385, + 0.013822043, + 0.00017848302, + 0.01158837, + 0.0052087214, + 0.0010897905, + 0.005199176, + 0.0042987065, + 0.003869154, + 0.015311158, + -0.0051069013, + 0.014509328, + -0.0098892525, + -0.0025868604, + 0.015005699, + -0.013122032, + 0.009233787, + -0.0072101173, + 0.006853748, + -0.0010476307, + -0.008578322, + -0.003748243, + -0.0068919305, + 0.0059564607, + 0.004919171, + -0.0000472806, + -0.0037768797, + 0.006067826, + 0.0042414325, + 0.0050528096, + -0.023418562, + -0.0034236922, + -0.011034725, + -0.009157422, + 0.011193818, + 0.0024850406, + 0.0032741441, + -0.00823468, + 0.00031719267, + 0.009787432, + 0.0027332264, + 0.0082855895, + 0.011302003, + 0.016049352, + -0.0020427606, + -0.019765776, + -0.0055396357, + 0.009176513, + 0.0008233089, + -0.009348334, + -0.017169371, + -0.0013021803, + 0.010474716, + 0.0019775322, + -0.0031723245, + 0.0045468924, + -0.0038977908, + -0.013503856, + 0.020593062, + -0.031004142, + 0.0026298156, + 0.0027618632, + 0.0018963945, + -0.014483873, + -0.011556552, + 0.01184292, + -0.0039550643, + -0.0020427606, + 0.0037036967, + 0.0055937273, + -0.013109305, + 0.005950097, + 0.0017945747, + 0.0011184273, + -0.009310151, + -0.0066437447, + -0.0026839073, + -0.0032343708, + -0.0053741783, + -0.003916882, + -0.008839235, + -0.0100292545, + 0.010856541, + 0.007318301, + 0.003084823, + -0.004470527, + -0.017283918, + 0.007789218, + 0.0067455643, + 0.004352798, + 0.00808195, + 0.003525512, + 0.008361954, + 0.008266498, + -0.0021445805, + 0.011760192, + 0.017831199, + 0.008247407, + 0.014585692, + -0.014687512, + -0.012549295, + 0.008559231, + -0.0036368775, + 0.0035191483, + 0.010442898, + -0.016202083, + -0.0024182212, + -0.00081933156, + -0.00061370316, + 0.008616504, + 0.0111683635, + -0.009978345, + 0.0105638085, + -0.00323278, + 0.000507906, + -0.0039009727, + 0.01318567, + 0.0038341533, + 0.013847498, + 0.0053741783, + -0.0035891493, + -0.013962045, + -0.005218267, + 0.0049796267, + -0.0044800728, + -0.0013196806, + 0.00046813264, + -0.008120133, + 0.0016561634, + -0.0057400935, + 0.000093119415, + -0.002469131, + -0.007897401, + -0.012746572, + -0.0036209682, + 0.0044609816, + 0.006631017, + 0.019549409, + -0.01017562, + -0.003208916, + -0.004842806, + 0.0056669107, + -0.00089410547, + 0.001322067, + 0.0048141694, + -0.0041714315, + -0.010118347, + -0.0017579832, + -0.008578322, + 0.007859219, + 0.008571958, + -0.014789332, + 0.0023832207, + 0.0019059401, + -0.011130181, + -0.0052246307, + 0.0009983117, + -0.015947532, + 0.0038436989, + -0.0008463774, + -0.013389309, + 0.015782075, + 0.005339178, + 0.0010977451, + -0.004823715, + 0.0005456907, + -0.0023132195, + -0.00051904254, + -0.015769348, + -0.0012321791, + -0.007814673, + 0.004667803, + 0.008705596, + 0.0044418904, + 0.011435641, + -0.0058641867, + 0.007388302, + -0.010366533, + -0.0141656855, + 0.0048173512, + 0.008291953, + 0.0022113996, + -0.018213024, + 0.0014103639, + -0.014865696, + -0.0027014078, + 0.01575662, + 0.008578322, + -0.0072037536, + 0.007121025, + 0.009965617, + -0.006656472, + 0.025531325, + -0.009825614, + -0.012861119, + -0.011900194, + 0.0027268627, + 0.0035668763, + -0.0013650223, + 0.004699622, + 0.006974659, + -0.006701018, + -0.0024118575, + -0.007611033, + 0.00057711167, + -0.0063001025, + -0.016189355, + 0.002131853, + -0.0057687303, + 0.021573078, + -0.0018566211, + 0.018251207, + -0.00067893154, + 0.00071711396, + -0.0045659835, + 0.0066755633, + -0.00524054, + 0.0017659379, + 0.004473709, + 0.0031945975, + -0.002962321, + -0.0071082977, + -0.006707382, + -0.003525512, + 0.0018073021, + 0.005880096, + -0.0022320817, + 0.00080302445, + 0.0031643698, + -0.0074837585, + 0.013834771, + 0.0038055165, + -0.015298431, + -0.010321986, + 0.0067137456, + -0.0051005376, + 0.004333707, + 0.0077319443, + -0.0013912726, + 0.0053646327, + -0.009189241, + -0.0022400364, + -0.009481973, + 0.010614718, + 0.00969834, + -0.010220166, + 0.01053199, + -0.00027045896, + -0.0008328545, + -0.0029893669, + -0.0017198008, + -0.0045723473, + -0.00094660633, + -0.015425706, + -0.004378253, + -0.0036305138, + 0.005606455, + -0.010716538, + 0.008998329, + 0.005024173, + -0.0037068785, + -0.008985601, + -0.002547087, + -0.00051546295, + 0.012797481, + -0.0013880908, + -0.0041237036, + -0.011747465, + -0.002345038, + -0.0015336614, + 0.0039996104, + 0.010468353, + -0.008094678, + -0.005628728, + -0.014483873, + 0.008202861, + 0.0009314924, + 0.011811102, + -0.0012019514, + 0.0127020255, + -0.00039097227, + -0.0008885372, + 0.0009808114, + -0.0004100635, + -0.0054728165, + -0.008113769, + -0.003716424, + -0.0013332035, + -0.007617397, + -0.0011343367, + 0.012014741, + -0.011257456, + 0.004311434, + -0.00007303386, + 0.011881103, + -0.0029511845, + -0.0065546525, + -0.0017977565, + 0.03802971, + -0.009730158, + 0.00054608844, + -0.007471031, + 0.0010881996, + -0.00954561, + -0.015629346, + 0.0079610385, + -0.009583793, + -0.007591942, + 0.0028764105, + -0.0006781361, + 0.0019170766, + 0.004161886, + -0.0156548, + -0.006144191, + -0.0019982143, + -0.0072483, + -0.0031739154, + 0.00995289, + 0.004158704, + -0.0016752545, + 0.00006716729, + -0.0011407004, + -0.0024929952, + -0.0033950554, + 0.00513872, + -0.012033832, + -0.0005834754, + 0.0012528613, + 0.0044673453, + -0.010544717, + 0.010901087, + -0.005488726, + 0.0015845713, + 0.005380542, + 0.020796703, + -0.0060105524, + -0.008934691, + 0.00066302216, + -0.0031405056, + 0.010671992, + 0.00729921, + 0.008412864, + 0.0071337526, + -0.0004251774, + 0.000059660062, + -0.009672885, + 0.0059660063, + 0.0039073364, + -0.007464667, + 0.0033473272, + -0.005024173, + 0.0029527755, + 0.007973766, + 0.002986185, + -0.0019329861, + -0.0073119374, + -0.013032939, + 0.0033823277, + 0.00906833, + -0.014280233, + 0.013491129, + 0.009844705, + -0.013402036, + -0.010220166, + 0.0027300445, + 0.0020523062, + -0.014254778, + -0.0047059855, + 0.0057623666, + 0.0022511731, + 0.000464553, + 0.01439478, + 0.0052755405, + 0.000697625, + -0.015285703, + 0.0043018884, + 0.008603777, + -0.010913814, + -0.0088901445, + -0.010105619, + 0.0019934415, + -0.007000114, + -0.026091333, + 0.0026314065, + -0.0005798958, + 0.002865274, + -0.002664816, + 0.0015782075, + 0.0005528499, + -0.0045468924, + 0.009475609, + -0.0071401163, + 0.0006526811, + 0.010519262, + -0.011607462, + 0.0058864597, + 0.009138331, + -0.005581, + 0.0023179923, + -0.008737415, + 0.0033664184, + -0.015667528, + -0.008476501, + -0.008107405, + -0.005603273, + -0.0008893327, + 0.012460203, + 0.006771019, + 0.0143056875, + 0.006771019, + 0.0056923656, + -0.0066755633, + 0.017856654, + 0.0033791459, + 0.0020682155, + -0.00017003118, + 0.00030744818, + 0.01828939, + 0.0021907175, + -0.013020212, + 0.00051784934, + 0.001211497, + -0.007000114, + 0.00026548727, + 0.0047600777, + -0.014789332, + -0.009227423, + -0.005164175, + 0.016202083, + -0.01752574, + 0.010576536, + 0.010881996, + -0.0012647933, + 0.0042414325, + 0.015998442, + 0.0077955816, + -0.011302003, + -0.018989401, + -0.0018629848, + 0.007757399, + 0.009882888, + 0.0025486778, + -0.009411971, + -0.0052055395, + -0.0009975162, + 0.0047664414, + -0.0030673228, + 0.0010874041, + -0.0072228448, + -0.005017809, + -0.013542038, + -0.015247521, + 0.006726473, + 0.0008567185, + -0.00010599605, + 0.00440689, + -0.00009988089, + 0.005848277, + -0.009691976, + -0.0080310395, + -0.0006785338, + 0.0042159776, + -0.0039487006, + 0.0034777839, + 0.008514685, + 0.011066544, + -0.015387523, + 0.0035223302, + 0.0043877987, + 0.0038564266, + -0.009615611, + -0.009170149, + 0.0013029758, + -0.006443287, + 0.00886469, + 0.006513288, + 0.012873846, + -0.0135165835, + 0.002400721, + 0.014432962, + -0.0065005603, + -0.0018995764, + -0.005628728, + -0.0047409865, + -0.012065651, + -0.014089321, + 0.010118347, + 0.02288401, + -0.011989286, + -0.0019488954, + -0.018696668, + -0.019333042, + -0.0012194517, + 0.0005973961, + 0.003942337, + -0.006656472, + 0.0033250542, + -0.00028477737, + -0.015947532, + 0.022667643, + 0.0052819042, + 0.02327856, + -0.0062110103, + -0.02060579, + -0.014636602, + -0.010512899, + 0.009768341, + 0.00357324, + -0.012517476, + -0.0020618518, + -0.0043718894, + -0.0018423027, + 0.007948311, + -0.012269291, + -0.011340185, + 0.0037864253, + 0.014051138, + 0.006513288, + 0.0032391436, + 0.00027602722, + -0.006860112, + 0.0011566097, + 0.0029973215, + 0.008139224, + 0.007490122, + 0.0030991414, + -0.009641066, + 0.0070128418, + -0.0025645872, + -0.0045405286, + 0.008673778, + -0.0012918392, + 0.0014175231, + -0.0038564266, + -0.0068410207, + 0.007031933, + 0.005924642, + -0.0007163185, + 0.0044132536, + 0.006144191, + -0.0030800502, + -0.0071082977, + 0.0018518483, + -0.0049891723, + 0.0019520773, + -0.006306466, + -0.0026632252, + 0.009049239, + -0.0136311315, + -0.0010881996, + 0.00493508, + 0.0010921769, + 0.00078433094, + -0.006370104, + 0.0011613825, + 0.007566487, + -0.0017818472, + -0.0058641867, + 0.00896651, + -0.016978458, + -0.013783861, + 0.014216595, + 0.005065537, + -0.006366922, + -0.00085592305, + 0.008565594, + 0.011524733, + 0.0018486665, + 0.001298203, + -0.0115629155, + 0.015476616, + -0.0024070847, + -0.0031198235, + -0.0011836557, + -0.0050750826, + -0.0033696003, + -0.018073022, + 0.00455962, + -0.005380542, + 0.0077764904, + 0.007057388, + -0.005931006, + -0.010220166, + -0.0061537367, + 0.004731441, + 0.017869381, + -0.0002227309, + 0.0012528613, + 0.0016179809, + -0.005533272, + 0.008991965, + 0.014114776, + 0.000023105846, + -0.0012655888, + -0.013351127, + -0.0011955877, + -0.012606569, + -0.00048682612, + -0.0066437447, + -0.006392377, + 0.014572965, + -0.0072610276, + 0.008368318, + 0.0035541488, + -0.002278219, + -0.010627446, + 0.01601117, + -0.020427605, + -0.007515577, + -0.0032168706, + 0.012447475, + 0.0037641523, + 0.008304681, + 0.0018152569, + -0.001715028, + 0.002913002, + 0.012606569, + -0.006732837, + 0.0012743389, + 0.007458303, + -0.0014342279, + -0.0055237263, + 0.007833764, + 0.0056955474, + -0.000052749438, + 0.0054091793, + 0.0076492154, + -0.002200263, + 0.001555139, + 0.003253462, + -0.00813286, + 0.010671992, + 0.003547785, + -0.0025836783, + -0.006923749, + -0.000636374, + -0.011594734, + -0.030673226, + -0.01146746, + -0.009278333, + 0.0035223302, + 0.0056987293, + 0.0065482883, + -0.011594734, + 0.012542931, + 0.009112876, + 0.00056955474, + -0.0027125443, + 0.0011534279, + 0.009921071, + -0.007661943, + 0.0007906947, + -0.006860112, + -0.0005043264, + -0.0026361793, + -0.008011948, + -0.010321986, + 0.008018312, + -0.0022495822, + 0.01596026, + 0.015680255, + -0.010220166, + 0.0066946545, + 0.010824722, + 0.004005974, + 0.017602105, + 0.018594848, + -0.0008352409, + -0.0062746475, + 0.018518483, + -0.00034781816, + 0.004725077, + -0.012415657, + 0.010398352, + 0.0012162698, + 0.00068131794, + 0.0072801188, + 0.0032502802, + -0.010442898, + 0.0144966, + -0.003840517, + 0.00813286, + -0.0061632823, + 0.0011900194, + -0.0049637174, + 0.008101041, + -0.020185784, + 0.007464667, + 0.0016848001, + 0.008463774, + -0.004505528, + -0.007840128, + 0.021076707, + 0.0067392006, + 0.0077064894, + 0.0011574052, + -0.005135538, + 0.0079610385, + 0.016736636, + -0.00787831, + 0.023558566, + -0.004823715, + -0.0076492154, + -0.0037418792, + -0.010913814, + -0.011079271, + -0.008877417, + -0.009138331, + -0.006417832, + 0.0055396357, + -0.0021127616, + 0.0026504977, + -0.006287375, + 0.012759299, + 0.015883895, + 0.010856541, + 0.002101625, + -0.005310541, + -0.010118347, + 0.0017436647, + -0.002496177, + 0.003671878, + 0.010538354, + -0.0007473417, + 0.0012361566, + -0.0084065, + -0.0035064209, + -0.0039805193, + -0.0003440397, + -0.007273755, + -0.0014557055, + 0.003084823, + 0.0008503548, + 0.0100992555, + -0.003500057, + -0.0013228625, + 0.017042097, + 0.0011160409, + -0.012695662, + 0.0037100604, + -0.006166464, + -0.004670985, + 0.0002444074, + 0.012040196, + -0.0010197894, + -0.011518369, + -0.0144966, + -0.0074455757, + 0.006949204, + 0.011626553, + 0.0127020255, + 0.0015957078, + -0.0056732744, + -0.0017357101, + -0.014254778, + 0.005065537, + -0.0076937615, + -0.026982257, + 0.0013753633, + 0.0024293577, + -0.01158837, + -0.0053741783, + -0.0044609816, + -0.0044387085, + 0.0035668763, + -0.00256936, + 0.0075283046, + -0.015692983, + -0.006090099, + 0.0050782645, + -0.012511113, + 0.0062046465, + -0.011206546, + 0.0019886687, + 0.0073819384, + 0.000394353, + 0.0001834547, + 0.0022479913, + 0.0050019, + -0.00007134349, + 0.0051514474, + 0.0008376273, + 0.009781068, + 0.022133088, + 0.008979238, + 0.008972874, + -0.0013451355, + 0.00062483974, + 0.0077764904, + -0.00729921, + -0.00881378, + 0.0027698178, + 0.0010635401, + -0.00906833, + 0.013026576, + 0.0016672999, + 0.0029193657, + -0.0031945975, + -0.006370104, + -0.017882109, + 0.006790111, + 0.00787831, + 0.0048078056, + 0.0009617202, + 0.006191919, + 0.005024173, + 0.016787546, + 0.009761977, + 0.019663956, + 0.0004196091, + 0.013592949, + -0.0025645872, + 0.00019906575, + 0.0094246995, + -0.009233787, + -0.0031245963, + 0.015514798, + -0.019536681, + 0.004314616, + -0.0007576828, + -0.017602105, + 0.00074415986, + 0.014407507, + 0.0110283615, + 0.0067137456, + -0.008164679, + 0.0034014191, + -0.011830193, + 0.0013809316, + -0.004451436, + -0.003350509, + 0.007051024, + 0.001283089, + -0.0065546525, + 0.010767448, + -0.005160993, + -0.002012533, + 0.00813286, + 0.017207554, + -0.0052023577, + -0.0136311315, + -0.0061314637, + 0.0048141694, + -0.01818757, + 0.009322879, + -0.002963912, + 0.006898294, + -0.0021191253, + -0.0033791459, + -0.0051514474, + -0.012517476, + 0.011384731, + -0.004114158, + 0.004890534, + -0.014076593, + -0.0035668763, + -0.012606569, + -0.0041014305, + -0.005339178, + -0.0025136773, + -0.00028179438, + -0.013338399, + -0.0030752774, + -0.009481973, + 0.010614718, + 0.022324, + -0.0021525351, + -0.0060932813, + -0.00656738, + 0.017843926, + 0.002690271, + 0.003547785, + 0.009322879, + 0.013478401, + -0.0061601005, + -0.0055237263, + 0.0085401395, + 0.0075092134, + 0.000020371426, + 0.0038373352, + 0.00041046125, + 0.011505642, + -0.0053869057, + -0.0029161838, + 0.0027364083, + -0.0040727938, + -0.00049318984, + -0.020987615, + -0.004308252, + -0.015336613, + -0.008902872, + -0.0018916217, + 0.0016943457, + 0.0010492216, + 0.014483873, + 0.00818377, + -0.002547087, + -0.0018311662, + 0.015718438, + -0.015591163, + -0.0022209452, + -0.014878424, + -0.024678584, + -0.0030243674, + -0.006828293, + 0.004674167, + 0.0013721815, + 0.005332814, + 0.011321094, + 0.011976559, + 0.007973766, + -0.012364747, + -0.0055682724, + -0.0059373695, + 0.000089042645, + -0.007630124, + -0.023367653, + -0.006366922, + -0.022973102, + -0.0080755865, + -0.007986493, + 0.007273755, + -0.0016816183, + -0.008368318, + 0.01075472, + 0.004674167, + -0.0037641523, + 0.0017023005, + -0.008317408, + 0.010544717, + 0.0073373923, + -0.0061091906, + 0.015171156, + -0.002033215, + 0.00033906804, + -0.011753828, + -0.0051069013, + -0.009405607, + 0.00032832922, + -0.006169646, + 0.004333707, + -0.0014517282, + -0.0019648047, + 0.0022113996, + 0.0009108103, + -0.003598695, + 0.0048396243, + 0.002298901, + -0.0006705791, + -0.00011504449, + -0.002131853, + 0.0005234176, + -0.009297424, + -0.0016625271, + -0.0044355267, + -0.00866105, + 0.013529311, + -0.0035350577, + -0.0036146042, + 0.004285979, + 0.0018963945, + -0.012632024, + 0.011900194, + -0.000297306, + 0.002349811, + -0.0003877904, + 0.01204656, + -0.004047339, + -0.007121025, + -0.0026393612, + 0.0035605126, + -0.0064973785, + -0.016049352, + -0.004801442, + 0.0019520773, + 0.027236808, + -0.0041714315, + 0.009163786, + -0.0112383645, + 0.0056732744, + 0.004282797, + -0.012282019, + 0.0045628017, + -0.0010945633, + 0.0041300673, + -0.00043909808, + -0.0033441454, + -0.0032502802, + 0.007127389, + -0.00959652, + 0.017080279, + 0.002963912, + -0.0054759984, + 0.0033377816, + 0.0019552591, + 0.0037418792, + -0.0019059401, + -0.0094246995, + 0.006258738, + -0.0026839073, + -0.0009450154, + 0.00048443972, + -0.011149272, + 0.006904658, + 0.0035191483, + -0.005876914, + -0.019282132, + -0.007388302, + 0.010131074, + -0.0019329861, + -0.010576536, + 0.0073755747, + 0.013160215, + 0.0033441454, + -0.001665709, + -0.0047473502, + 0.011244728, + 0.013363854, + -0.00092115137, + 0.00714648, + -0.004005974, + -0.014318415, + 0.0328369, + -0.017793017, + 0.001580594, + -0.009793796, + 0.0016171854, + -0.013223852, + 0.00086944597, + -0.009513792, + 0.0053264503, + 0.0038659722, + -0.013147487, + -0.0080310395, + 0.004919171, + 0.0048078056, + 0.0028350463, + 0.000098240234, + -0.010691083, + 0.0006904658, + -0.013058394, + 0.016342085, + 0.024933133, + -0.007999221, + 0.008597413, + 0.004069612, + -0.0073564835, + -0.005192812, + 0.010691083, + -0.0062523745, + 0.013898408, + 0.0036305138, + 0.0051005376, + -0.00092831056, + -0.007935584, + -0.004088703, + -0.008476501, + -0.0073564835, + 0.009354698, + 0.0025502688, + 0.0051705386, + -0.0007191026, + 0.0027157262, + -0.004597802, + -0.0022718553, + 0.0063605583, + -0.0013284307, + -0.017640287, + 0.002421403, + 0.005997825, + -0.024411308, + -0.0039232457, + 0.0026934529, + -0.012129288, + 0.0029464117, + -0.0139875, + -0.0070382967, + -0.0071528438, + 0.010181984, + 0.011512006, + 0.0067964746, + -0.0026170881, + -0.0005162584, + -0.0047155316, + 0.01762756, + -0.01813666, + 0.0067137456, + -0.0036336957, + 0.0056764563, + 0.007999221, + -0.00016993175, + -0.00987016, + -0.0007373984, + -0.0025343595, + -0.011136545, + 0.0010531989, + -0.012383838, + 0.021203982, + -0.008514685, + 0.0030227765, + -0.0062301015, + -0.011537461, + -0.019434862, + 0.010315622, + -0.00043551845, + 0.010990179, + 0.0013204761, + -0.0043496164, + -0.010608355, + -0.00896651, + -0.015412979, + -0.01017562, + -0.0099592535, + 0.011518369, + -0.00071472756, + 0.016507542, + 0.0036877873, + -0.017805744, + 0.009672885, + 0.004180977, + 0.00027045896, + 0.01100927, + 0.00009058386, + -0.009297424, + 0.0075792144, + 0.0073119374, + -0.0056446376, + 0.021980358, + 0.0050559915, + 0.0032232343, + -0.006968295, + 0.0029305024, + 0.0022193543, + 0.0018900308, + -0.004534165, + -0.006707382, + 0.0039709737, + -0.010640173, + -0.0023386744, + 0.0038564266, + 0.008928327, + -0.0005039287, + 0.0036623324, + 0.012428384, + -0.002787318, + 0.0078019453, + -0.0014501372, + -0.0041937046, + -0.0053932695, + -0.0072610276, + 0.004623257, + 0.012173834, + -0.0153747955, + -0.016685726, + -0.0132365795, + 0.0042477963, + 0.0024929952, + -0.01424205, + 0.01189383, + -0.009201968, + 0.0065737437, + 0.013682041, + -0.016227538, + -0.0031898248, + 0.0032900537, + -0.0068155658, + 0.0041205217, + 0.009971981, + -0.01184292, + -0.013045667, + 0.001737301, + 0.0102392575, + -0.00093706074, + -0.008361954, + -0.00073540973, + 0.017258463, + -0.0021175344, + 0.0026489068, + 0.005243722, + 0.008304681, + -0.009672885, + -0.000072486975, + 0.0009410381, + 0.0022686734, + 0.0055205445, + -0.00047171224, + 0.0069810227, + 0.0017038914, + 0.004973263, + -0.007076479, + 0.013338399, + -0.0073564835, + -0.0047187135, + 0.0005067128, + 0.0009410381, + 0.017742107, + 0.0075792144, + -0.01858212, + 0.010162893, + -0.0008304681, + -0.020338513, + 0.019842142, + -0.0061346455, + -0.012390202, + -0.005657365, + 0.0020459425, + -0.0065737437, + 0.0047187135, + 0.018569393, + 0.004266888, + 0.010156529, + 0.0072864825, + 0.0026854982, + 0.01393659, + -0.0025900423, + -0.0062778294, + 0.0095647015, + -0.0060105524, + 0.0083555905, + -0.005800549, + 0.0046837125, + -0.0018041203, + 0.0025264048, + 0.0012759299, + -0.003375964, + -0.0008296726, + -0.006150555, + 0.006198283, + 0.0016832092, + -0.017233009, + -0.0019170766, + -0.005218267, + -0.0047632596, + 0.008731051, + -0.0053487234, + -0.004209614, + 0.012593841, + 0.00055802043, + -0.005701911, + 0.003872336, + -0.0132365795, + 0.0030975505, + -0.0028970926, + -0.003792789, + 0.0064082863, + 0.008266498, + 0.008998329, + -0.013974773, + 0.0062714657, + 0.007833764, + -0.009151058, + -0.006064644, + 0.016736636, + 0.006879203, + 0.0020284422, + 0.009895616, + -0.0067455643, + -0.0074455757, + 0.0012289973, + 0.010213803, + -0.011461096, + 0.008323772, + -0.008489229, + -0.0008344454, + 0.010296531, + 0.0011144499, + 0.0058673685, + -0.0080310395, + 0.008921963, + 0.0049859905, + -0.0007437621, + 0.015667528, + -0.013898408, + -0.011989286, + -0.011002907, + -0.009583793, + -0.0003104312, + -0.0045437105, + -0.006071008, + 0.008934691, + -0.0001230986, + 0.0066691996, + 0.018594848, + 0.007585578, + 0.0025852693, + 0.008094678, + -0.013223852, + 0.00328369, + 0.010245621, + 0.015222066, + 0.002814364, + 0.006246011, + 0.0057178205, + -0.003430056, + 0.008202861, + -0.0034109647, + -0.015947532, + 0.0040505207, + -0.0049287165, + -0.002176399, + 0.004044157, + -0.00871196, + 0.0019934415, + -0.00021716263, + -0.011142909, + -0.00003621863, + -0.012390202, + 0.00076086464, + 0.01318567, + -0.007903765, + 0.00641465, + 0.010945633, + 0.0030466407, + -0.0051069013, + -0.0035668763, + 0.0056478195, + -0.002520041, + 0.0015479798, + -0.0011144499, + 0.00047767823, + 0.009660157, + 0.0057623666, + 0.001432637, + 0.005132356, + 0.0045405286, + -0.016202083, + -0.000040717994, + -0.007362847, + 0.011473823, + -0.015896622, + -0.0014740013, + -0.004728259, + -0.0038118802, + 0.010843813, + -0.011123817, + -0.01691482, + 0.029858667, + 0.0073055737, + -0.0048141694, + -0.015527526, + -0.012135652, + -0.0042796154, + -0.0024102665, + 0.00013731758, + -0.0027729997, + -0.0015718437, + -0.0023704933, + -0.0019234404, + -0.005460089, + 0.017360283, + -0.00508781, + -0.00010221757, + 0.016749363, + -0.0025836783, + -0.00065546524, + -0.002664816, + 0.0030991414, + 0.0027507266, + -0.013707496, + 0.0029066382, + 0.00592146, + 0.01262566, + 0.0053678146, + 0.0011311548, + -0.0012027469, + 0.0035891493, + -0.020491242, + 0.0010237667, + -0.0013626359, + -0.0009609247, + -0.0037546067, + -0.0040346114, + -0.0029734576, + 0.00035438078, + -0.0007668307, + 0.0033664184, + 0.001029335, + -0.01858212, + 0.003719606, + 0.0017038914, + -0.0026727708, + 0.010220166, + -0.007833764, + -0.012657479, + -0.02439858, + 0.00030009012, + 0.0030975505, + 0.003967792, + -0.0051005376, + -0.007076479, + -0.0038532447, + -0.0016354811, + 0.015362068, + 0.003060959, + -0.0044577997, + 0.003328236, + -0.005794185, + -0.009532883, + 0.011219273, + -0.013656586, + -0.00592146, + -0.004779169, + 0.0011224047, + -0.006732837, + 0.015985714, + 0.013262034, + 0.011225637, + 0.005533272, + 0.0007127389, + 0.013758406, + -0.00070876157, + -0.0069873864, + -0.007324665, + 0.00043392752, + 0.0047123497, + 0.0010945633, + -0.0024786768, + -0.002963912, + -0.0043464345, + -0.015463889, + 0.0029320933, + 0.007591942, + 0.010315622, + -0.0067455643, + -0.012606569, + -0.003646423, + -0.007318301, + 0.0127020255, + -0.004553256, + -0.009851069, + 0.0015559344, + 0.0012051333, + -0.005040082, + -0.0066437447, + -0.0051037194, + 0.018798487, + 0.003983701, + -0.007846491, + -0.004292343, + 0.013312944, + -0.0010341078, + -0.005285086, + -0.002717317, + 0.0022591278, + 0.0039932467, + 0.0063764676, + 0.0019107129, + 0.010831086, + 0.0036018768, + 0.0047409865, + 0.010646537, + -0.0036909692, + 0.00055563403, + -0.020173056, + -0.014216595, + 0.017283918, + -0.0070892065, + 0.00876287, + 0.0017595742, + -0.009074694, + -0.0048523517, + 0.008361954, + 0.0063319216, + 0.0028748196, + -0.009189241, + -0.009310151, + 0.0007282505, + -0.002543905, + 0.0049287165, + 0.0012457022, + -0.0007246709, + -0.0054982714, + -0.0035223302, + -0.019218495, + -0.0022066268, + 0.01032835, + -0.0037864253, + 0.0039964286, + 0.026294975, + 0.003430056, + -0.0037546067, + 0.0023832207, + -0.001979123, + 0.016329357, + 0.012816573, + -0.0064751054, + 0.0028827742, + -0.014203868, + 0.008883781, + -0.0011120635, + -0.0007517168, + -0.015145701, + -0.0017882109, + -0.010048346, + -0.0052723587, + 0.0064496505, + -0.00008143599, + -0.010640173, + 0.011021998, + 0.011225637, + 0.006923749, + -0.0072483, + 0.0026870891, + -0.011079271, + 0.010862905, + -0.014623875, + 0.0010643356, + -0.013109305, + -0.012581114, + 0.00051307655, + -0.0028334553, + -0.0011001315, + -0.014229323, + -0.013732951, + 0.0023386744, + 0.011232001, + -0.0010539944, + 0.009717431, + 0.005730548, + 0.0020491243, + 0.015540253, + -0.013026576, + 0.009443791, + -0.0033441454, + -0.00067535194, + 0.0017118461, + 0.004091885, + -0.008915599, + -0.0027777725, + 0.008317408, + 0.007000114, + -0.006484651, + -0.0008909236, + -0.007273755, + -0.0017293463, + -0.0041014305, + -0.01272748, + -0.019816687, + 0.017016642, + -0.010824722, + -0.003134142, + -0.017296646, + -0.009297424, + -0.0020936704, + 0.014471144, + 0.009246514, + -0.0039296094, + -0.00934197, + -0.0040600663, + 0.008998329, + 0.0059341877, + -0.0065228334, + 0.011486551, + 0.004381435, + 0.0017182098, + 0.0009585383, + -0.010366533, + -0.0020443515, + -0.0006093281, + -0.0038341533, + -0.0020268513, + 0.000906833, + -0.0022511731, + -0.023304015, + -0.01429296, + -0.0062523745, + 0.0029782304, + 0.008113769, + -0.0023561749, + -0.007127389, + 0.0058896416, + 0.014254778, + 0.0082155885, + 0.01083745, + -0.0020713974, + 0.0025820874, + 0.0006208624, + -0.019918507, + -0.016278448, + -0.0033027811, + 0.009189241, + 0.022998556, + -0.002742772, + 0.014076593, + 0.011728373, + -0.009189241, + -0.021585805, + -0.006771019, + 0.007585578, + 0.008769234, + 0.009691976, + 0.0021938994, + 0.014038411, + -0.015018427, + -0.010990179, + 0.007458303, + -0.0012719525, + -0.012466567, + 0.0038373352, + 0.003186643, + 0.0016895729, + -0.0010476307, + 0.003627332, + 0.012663843, + 0.004311434, + -0.00871196, + 0.0027045896, + 0.0053646327, + -0.009074694, + -0.0046582576, + 0.005329632, + 0.0051069013, + 0.0002839819, + 0.007617397, + -0.0060041887, + 0.0016848001, + -0.018747577, + -0.005307359, + -0.004820533, + 0.0012305882, + -0.00823468, + 0.0004558029, + 0.0075728507, + 0.0060932813, + -0.00016287198, + -0.007585578, + -0.009641066, + 0.008985601, + 0.008692869, + -0.0042732516, + 0.0066501084, + -0.009055602, + 0.004756896, + -0.0049000797, + -0.0004251774, + -0.008412864, + -0.011359276, + -0.008673778, + -0.013147487, + -0.009042875, + -0.009469246, + 0.0061855554, + 0.015603891, + -0.00024261759, + -0.0050146272, + 0.0037355155, + 0.0010030845, + 0.0029893669, + -0.0041205217, + -0.0024723131, + -0.004330525, + 0.003891427, + 0.0077319443, + 0.014483873, + 0.014891151, + -0.010799266, + 0.005526908, + -0.0047887145, + -0.0070446604, + 0.012091106, + -0.014916606, + -0.013542038, + 0.0064910147, + -0.007859219, + 0.0037227878, + 0.0065419246, + 0.0037005148, + 0.001764347, + -0.004040975, + -0.011270184, + 0.0003788414, + 0.008323772, + -0.00823468, + 0.0036146042, + -0.005285086, + 0.0034459652, + -0.006681927, + -0.007871946, + 0.009571065, + 0.005752821, + -0.0022957192, + 0.008291953, + 0.00006413457, + 0.0064941966, + -0.0055014533, + -0.003990065, + -0.0057114568, + -0.0017388919, + 0.007413757, + -0.0054059974, + -0.00573373, + -0.004489619, + 0.0028350463, + -0.019078493, + 0.0025773146, + -0.005466453, + -0.010487444, + 0.006879203, + -0.00007527111, + 0.013542038, + 0.02858592, + -0.0016720727, + -0.0034936932, + -0.005504635, + 0.023418562, + -0.0018041203, + -0.00028378304, + 0.009583793, + -0.0129820295, + -0.0053200866, + 0.015972987, + 0.023456747, + -0.0039264276, + 0.0061569186, + -0.0034873295, + -0.0024659492, + -0.0038755178, + -0.0012854754, + 0.0007545009, + -0.0018486665, + 0.025022225, + 0.004403708, + -0.001504229, + -0.00078194455, + 0.023036739, + 0.0055173626, + -0.0038786996, + 0.0064782873, + -0.022336727, + -0.0010993361, + 0.004187341, + -0.007566487, + -0.0018979855, + 0.011473823, + 0.0007704103, + -0.0019648047, + -0.008381045, + -0.0132365795, + 0.010570172, + -0.0084955925, + -0.003186643, + 0.0050337184, + 0.0066882907, + -0.0072483, + -0.011454732, + -0.0015622982, + 0.0023561749, + -0.0039550643, + -0.0012194517, + 0.0026775436, + -0.0013976364, + -0.0014755923, + -0.010220166, + -0.0016991186, + 0.008209225, + 0.005215085, + -0.014063866, + -0.003353691, + 0.0137711335, + 0.010506535, + -0.006771019, + -0.003891427, + -0.0066501084, + -0.002154126, + 0.010162893, + 0.00013751644, + 0.018429391, + -0.005686002, + 0.0041523403, + -0.009831978, + -0.006347831, + 0.010118347, + 0.011079271, + 0.0058387313, + 0.018314844, + -0.003010049, + -0.014331142, + -0.009666521, + -0.008801052, + -0.0050814464, + 0.018467573, + 0.0028732286, + -0.00484917, + 0.013847498, + -0.012364747, + -0.009411971, + -0.0017754835, + 0.011620189, + 0.007343756, + -0.0062237377, + 0.0043464345, + 0.006106009, + 0.0037864253, + 0.0075792144, + 0.0019775322, + -0.0054282704, + -0.0007198981, + -0.0053487234, + 0.001664118, + 0.008393773, + -0.0017420738, + -0.0020173057, + -0.007566487, + -0.0008837644, + -0.0011987695, + -0.013045667, + -0.0029909578, + 0.012422021, + 0.00032634055, + -0.0017595742, + 0.00027920908, + -0.00094581087, + -0.010780175, + -0.008641959, + 0.00060018024, + 0.000088893496, + 0.0000648306, + -0.0057464573, + -0.007216481, + 0.0058132764, + 0.005460089, + -0.012364747, + -0.00995289, + -0.00012110993, + -0.010360169, + -0.00631283, + 0.009335606, + 0.013402036, + 0.00042716606, + -0.0045468924, + 0.0066437447, + 0.00440689, + -0.004040975, + 0.0017404829, + 0.012746572, + -0.015514798, + 0.000024845931, + -0.0010237667, + 0.011181091, + -0.001310135, + -0.008113769, + 0.008667414, + -0.0020284422, + -0.0038086984, + 0.013720224, + 0.0038850633, + 0.009558338, + 0.0010006981, + -0.0072037536, + -0.00529145, + 0.0044959825, + 0.027516812, + -0.008298317, + 0.008311044, + -0.0049796267, + 0.007076479, + 0.0015090018, + -0.016558452, + 0.009131967, + 0.003134142, + -0.0022336727, + 0.00052620174, + -0.012224745, + -0.0011001315, + 0.01126382, + -0.0019663956, + -0.004040975, + 0.0021493533, + -0.0057210024, + 0.012822936, + -0.0060519166, + 0.006086917, + 0.003935973, + -0.0036209682, + -0.0062237377, + -0.0051514474, + 0.006118736, + -0.0039741555, + -0.012803845, + 0.010455625, + 0.006366922, + 0.00028716377, + 0.015578436, + 0.0065005603, + 0.0008117746, + -0.010468353, + 0.008845598, + -0.015018427, + -0.0038786996, + 0.004314616, + -0.009367425, + 0.0054982714, + 0.009348334, + 0.014420235, + -0.004607348, + 0.018047567, + -0.005876914, + 0.0017357101, + 0.0063001025, + 0.006001007, + -0.011531097, + -0.0028589102, + 0.009322879, + -0.0016338902, + 0.019103948, + -0.0071337526, + -0.0055141808, + -0.018340299, + -0.0078910375, + 0.0063860132, + 0.0068473844, + -0.0038850633, + -0.004823715, + 0.008801052, + -0.014407507 + ] + } + ], + "model": "davinci", + "usage": { + "prompt_tokens": 5, + "total_tokens": 5 + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "RandomSeed": "1415931578", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTestAsync.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTestAsync.json new file mode 100644 index 000000000000..983679b1be52 --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/EmbeddingTestAsync.json @@ -0,0 +1,12347 @@ +{ + "Entries": [ + { + "RequestUri": "https://sdk.openai.azure.com/openai/deployments/text-similarity-davinci-001/embeddings?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "api-key": "***********", + "Content-Length": "38", + "Content-Type": "application/json", + "traceparent": "00-6d8573a38fc4530f1377d3a882efd0ba-acfc807751c8c8c1-00", + "User-Agent": "azsdk-net-AI.OpenAI/1.0.0-alpha.20230125.1 (.NET 6.0.13; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3566555429d30145a19a1df42301fa6e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "input": "Your text string goes here" + }, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Origin": "*", + "apim-request-id": "777d7e87-7fef-4c21-a71a-8a3f3c553191", + "Content-Length": "269906", + "Content-Type": "application/json", + "Date": "Wed, 25 Jan 2023 20:43:47 GMT", + "openai-processing-ms": "207.772", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3566555429d30145a19a1df42301fa6e", + "x-ms-region": "South Central US", + "X-Request-ID": "72134a22-7909-4398-aa9f-56bd39fa8a5d" + }, + "ResponseBody": { + "object": "list", + "data": [ + { + "object": "embedding", + "index": 0, + "embedding": [ + -0.007025569, + 0.007871946, + -0.007636488, + -0.0049573537, + -0.017742107, + 0.021025797, + -0.000031495543, + 0.0027348173, + 0.0034077829, + -0.0018932127, + -0.0065228334, + -0.0026011788, + -0.00013592551, + -0.007458303, + -0.00017818472, + 0.0008917191, + -0.0059150965, + -0.005160993, + -0.011531097, + 0.011187455, + -0.0060741897, + -0.0021398077, + 0.019167585, + -0.0028016365, + 0.006366922, + 0.0022973102, + 0.016443904, + 0.0021445805, + -0.006239647, + -0.0054728165, + -0.0078910375, + 0.004161886, + -0.0020984432, + -0.0054441798, + -0.007973766, + -0.0052532675, + 0.010729265, + 0.0027554994, + -0.0028461828, + 0.014356597, + -0.013287489, + 0.0011247911, + -0.0061410093, + -0.006898294, + 0.0028318644, + 0.00081853603, + -0.00719739, + -0.010041982, + 0.007719217, + -0.00097285677, + -0.012269291, + -0.021878539, + 0.002424585, + -0.005997825, + 0.01631663, + -0.022145815, + -0.0069555677, + 0.00553009, + -0.0014047956, + -0.04808442, + -0.011244728, + -0.005679638, + -0.0031182326, + -0.0056987293, + -0.01169019, + 0.0036018768, + 0.003773698, + -0.0045246193, + 0.0075537595, + 0.005307359, + -0.008279226, + -0.0042764335, + 0.0033441454, + -0.0012107015, + 0.0016911639, + 0.010761084, + -0.01601117, + 0.026727708, + 0.009933799, + 0.013249307, + 0.00729921, + -0.015489344, + 0.0052278126, + 0.0103092585, + -0.009672885, + -0.0084255915, + 0.00455962, + 0.00043750711, + 0.00030903914, + 0.0028589102, + 0.005600091, + -0.010932906, + -0.020173056, + -0.0020093508, + -0.0032455074, + -0.003646423, + 0.006045553, + 0.0024182212, + 0.0022734462, + 0.0063032843, + 0.007611033, + -0.0034905113, + 0.008387409, + -0.011480187, + 0.0024866315, + 0.010022891, + -0.008896508, + 0.002346629, + -0.0013491128, + 0.01590935, + -0.0047887145, + 0.0027316355, + 0.0077955816, + -0.008463774, + -0.0006626244, + 0.0052819042, + -0.0028334553, + -0.0014517282, + 0.009551974, + 0.016036624, + 0.015158429, + -0.006322376, + -0.010971088, + -0.0021270802, + 0.010067437, + -0.011836557, + -0.00022730484, + -0.004887352, + 0.004772805, + -0.00041085898, + -0.002545496, + -0.007292846, + 0.00484917, + 0.0009227423, + -0.0029702757, + 0.00024599832, + 0.011378367, + -0.005756003, + -0.0013483174, + 0.010442898, + 0.008533776, + 0.0068155658, + -0.0018836671, + 0.0024357215, + -0.01883667, + 0.005157811, + 0.0036336957, + 0.0026409521, + -0.007254664, + 0.011925649, + 0.006268284, + -0.008209225, + -0.0017691198, + 0.0034714201, + -0.01646936, + -0.0072801188, + -0.0137711335, + 0.013083849, + -0.011569279, + -0.0026027698, + -0.0064941966, + 0.0069873864, + 0.0052819042, + 0.004731441, + 0.0013260443, + 0.012173834, + -0.00792922, + 0.0062778294, + -0.008788325, + -0.013783861, + 0.00040966578, + -0.006592835, + 0.0058069127, + 0.004992354, + 0.0135165835, + 0.0078910375, + 0.0053487234, + 0.0070128418, + -0.0045914385, + -0.009704703, + 0.003185052, + 0.0061791916, + -0.0050114454, + 0.00047449637, + -0.015196611, + 0.0080755865, + -0.0026616342, + -0.000978425, + -0.026778618, + 0.006834657, + 0.014611147, + -0.01737301, + -0.010691083, + -0.0075537595, + -0.0009004692, + 0.0069428403, + 0.0021079888, + -0.0062237377, + 0.015985714, + 0.004731441, + -0.01318567, + 0.004623257, + -0.015069337, + -0.0016593452, + 0.006923749, + 0.0021477623, + 0.00896651, + -0.00082887715, + 0.010360169, + 0.0014747968, + 0.0089601455, + 0.00027562949, + 0.0008344454, + -0.00524054, + 0.012154743, + -0.0002923343, + -0.011925649, + -0.013026576, + -0.008451046, + 0.013529311, + -0.006777383, + -0.0007425689, + 0.0053741783, + 0.013809316, + 0.0077510355, + -0.0071401163, + -0.008151951, + 0.0049032615, + -0.0051832665, + -0.008431955, + 0.0005627933, + 0.0039805193, + -0.0002611122, + 0.012447475, + -0.011384731, + -0.0020936704, + -0.001958441, + -0.0045023463, + -0.00040847255, + 0.0003410567, + -0.00003957451, + -0.0035923312, + -0.0010929724, + 0.0054473616, + 0.017971203, + -0.0089601455, + -0.0005981916, + 0.00070637517, + -0.007999221, + -0.002741181, + -0.011919285, + -0.008158315, + 0.0018788943, + 0.013020212, + 0.004114158, + 0.014929334, + 0.0039041545, + 0.009437427, + -0.012892937, + 0.0065419246, + 0.0041077943, + 0.0005703502, + -0.005361451, + -0.0041237036, + 0.0038055165, + 0.013732951, + -0.002255946, + -0.017856654, + 0.0006176805, + -0.004285979, + 0.010054709, + 0.007369211, + -0.015578436, + -0.004136431, + -0.0094246995, + 0.0035032388, + 0.0000071157056, + 0.008533776, + 0.006771019, + 0.002077761, + 0.011652008, + -0.0027952727, + -0.008120133, + 0.015171156, + -0.0028032274, + -0.004063248, + -0.0036400594, + 0.009201968, + 0.014611147, + 0.010283804, + 0.0029448208, + -0.0015233203, + 0.01727119, + 0.0038500628, + -0.010264712, + -0.008400137, + 0.007967402, + 0.017143916, + -0.003967792, + 0.007630124, + 0.012873846, + 0.009310151, + 0.0075092134, + -0.0046550757, + -0.008501956, + 0.0020443515, + -0.008342863, + 0.000563191, + -0.017958475, + 0.004231887, + 0.0024595854, + 0.0027475448, + 0.013338399, + -0.004667803, + 0.007738308, + 0.0051705386, + -0.0043273433, + -0.008489229, + -0.0137711335, + -0.014980244, + -0.021331256, + -0.013325672, + 0.0007930811, + -0.006392377, + 0.0010810404, + -0.005358269, + -0.017143916, + -0.0073310286, + -0.0106338095, + 0.0034364196, + -0.0010372896, + 0.0006152941, + -0.015489344, + 0.006284193, + -0.0084955925, + -0.0046328027, + 0.004333707, + -0.011734737, + 0.0075983056, + -0.008298317, + -0.006239647, + 0.0036750599, + -0.005625546, + -0.009857433, + -0.0026314065, + 0.00012379463, + 0.0037132422, + 0.0013697951, + -0.0059405514, + 0.0050337184, + 0.00008854548, + 0.0129120285, + 0.0078274, + -0.014852969, + -0.0032677804, + -0.0032105069, + 0.006169646, + 0.0007739899, + 0.0026329975, + -0.0102392575, + -0.004139613, + -0.005526908, + 0.016342085, + -0.0020729883, + 0.0084255915, + -0.012434748, + 0.00906833, + 0.0049796267, + -0.01053199, + -0.000857514, + -0.013923863, + 0.005418725, + 0.0016545724, + -0.009653794, + 0.013312944, + 0.005628728, + -0.002012533, + 0.013885681, + -0.001041267, + 0.003154824, + -0.00959652, + 0.014267505, + -0.0061791916, + 0.0021620807, + -0.0023625386, + -0.016571179, + 0.0106338095, + 0.0049891723, + -0.00406643, + -0.0055905455, + 0.0043432526, + -0.0044991644, + 0.021865811, + 0.0008093882, + 0.001858212, + 0.011524733, + 0.01631663, + -0.006411468, + 0.00268868, + -0.006898294, + 0.0043273433, + -0.015323886, + 0.007496486, + -0.015349341, + 0.005412361, + -0.00024699265, + 0.007432848, + -0.0037896072, + 0.013860226, + -0.0028843652, + 0.00002620071, + 0.013122032, + 0.0029018654, + -0.010862905, + -0.010404715, + -0.0019011673, + 0.0038055165, + -0.010862905, + -0.001310135, + -0.015476616, + 0.0010531989, + 0.0056446376, + 0.011142909, + 0.00178662, + -0.007986493, + -0.0060137343, + -0.010296531, + -0.0038023347, + -0.013554766, + -0.0074519394, + 0.0021986722, + -0.009373789, + -0.0007449553, + -0.0023514018, + -0.0010086528, + 0.013032939, + 0.011333821, + -0.00934197, + -0.01813666, + -0.00008372295, + 0.00027602722, + -0.016392995, + -0.013071122, + -0.000016108217, + -0.0019870778, + 0.00987016, + -0.0030800502, + -0.0030959595, + -0.002176399, + -0.013363854, + 0.004626439, + 0.0069364766, + -0.0046423483, + 0.012867482, + 0.005262813, + 0.013682041, + -0.019282132, + -0.0010253576, + 0.012161107, + 0.001172519, + 0.010143802, + -0.0040187016, + 0.004801442, + -0.008921963, + 0.00044983687, + -0.015769348, + 0.012651116, + -0.003894609, + -0.00035378418, + 0.0034777839, + -0.002744363, + 0.004282797, + -0.0037991528, + -0.0013077486, + -0.00075847824, + 0.0066246535, + -0.0010420624, + 0.0041300673, + 0.0053009954, + 0.010945633, + 0.014522055, + -0.00074893265, + 0.0022177633, + 0.0408043, + -0.0013809316, + 0.008839235, + -0.0024532217, + 0.020363968, + -0.0024866315, + 0.007999221, + 0.0014843424, + 0.0005126788, + -0.010684719, + -0.00033787484, + 0.02637134, + -0.01459842, + 0.005997825, + 0.011912921, + 0.014687512, + -0.0023148104, + 0.0037896072, + -0.0015503662, + 0.019676683, + 0.019943962, + -0.013402036, + -0.018658485, + -0.009418335, + -0.011403822, + 0.02106398, + 0.01194474, + -0.007789218, + -0.0025073136, + -0.0060296436, + 0.003430056, + -0.0024579945, + 0.006732837, + -0.017233009, + 0.011645644, + 0.0078019453, + -0.002885956, + -0.020147601, + 0.0031373238, + 0.0023943572, + -0.013414764, + 0.00047688276, + 0.001299794, + 0.007318301, + 0.00617601, + 0.000044769906, + 0.010971088, + 0.008839235, + -0.0019218494, + 0.01017562, + 0.00005593131, + 0.010468353, + -0.0070701153, + 0.0018948036, + 0.005157811, + -0.0031993703, + 0.002276628, + -0.0039264276, + 0.0011351322, + 0.012568386, + -0.002642543, + 0.012231109, + 0.005285086, + 0.004005974, + 0.004352798, + 0.004725077, + 0.014471144, + 0.00087183237, + -0.015463889, + 0.0045659835, + 0.019269405, + 0.004896898, + -0.003891427, + -0.0069364766, + 0.003840517, + 0.0041777953, + 0.023253106, + -0.0110283615, + -0.013783861, + -0.008444683, + 0.004575529, + 0.0039964286, + 0.014865696, + -0.0045437105, + -0.0046168934, + 0.0037355155, + -0.0156548, + 0.0039487006, + 0.0015957078, + 0.00066302216, + 0.009144695, + -0.0016124126, + 0.007025569, + -0.0070637516, + 0.0009808114, + 0.004553256, + 0.009793796, + 0.004403708, + -0.008756506, + -0.0025629962, + -0.0006705791, + -0.008451046, + -0.008221952, + -0.00089410547, + 0.008921963, + -0.0048523517, + 0.0012918392, + -0.009513792, + 0.015349341, + 0.0054537253, + -0.0035223302, + -0.025187682, + -0.0038596084, + 0.00041284764, + 0.004282797, + 0.007521941, + 0.0039264276, + 0.0052341763, + -0.00924015, + 0.0026600433, + -0.00093944714, + 0.016813, + -0.015145701, + -0.0026059516, + -0.01924395, + -0.001907531, + -0.021394894, + 0.0032407346, + 0.00082410435, + 0.0014040001, + -0.0007425689, + 0.0050305366, + -0.010264712, + -0.0068855667, + 0.011645644, + 0.0112383645, + -0.0029989125, + -0.0064210137, + 0.00047688276, + -0.00301164, + -0.007560123, + 0.003617786, + 0.001211497, + -0.0036559687, + -0.017793017, + 0.004266888, + 0.0010166075, + 0.014776604, + 0.01126382, + 0.0082855895, + -0.007362847, + -0.016329357, + -0.0068410207, + 0.017538467, + 0.0055682724, + -0.0032232343, + 0.010735629, + 0.0012854754, + -0.009501064, + -0.009316515, + 0.0085401395, + -0.01199565, + -0.010022891, + -0.014331142, + 0.0037291516, + -0.013071122, + -0.0020013961, + -0.010022891, + -0.0025820874, + 0.0030784593, + -0.0019043492, + -0.008476501, + -0.009437427, + -0.00097365223, + 0.00023545838, + 0.008241043, + -0.018467573, + -0.013427491, + -0.021203982, + 0.0076237605, + 0.0027364083, + -0.0016911639, + 0.006099645, + -0.0054059974, + 0.005660547, + 0.007496486, + -0.004801442, + -0.0038055165, + -0.011251092, + -0.0004784737, + -0.005339178, + 0.0055491813, + -0.012962938, + 0.010156529, + -0.0010961542, + -0.0026791345, + -0.008552867, + -0.004651894, + -0.0076492154, + -0.008781961, + 0.008591049, + 0.0040218835, + -0.0010722902, + -0.004597802, + 0.014063866, + 0.012969302, + -0.0013920681, + 0.016342085, + 0.0003842108, + -0.0077701267, + -0.007757399, + 0.00033688048, + -0.0005222244, + 0.012848391, + -0.0044959825, + 0.00026091334, + -0.019371225, + -0.019205768, + 0.007388302, + -0.004308252, + -0.0020904886, + 0.00581964, + -0.0014032046, + 0.00069484086, + 0.009914707, + 0.013109305, + -0.011187455, + -0.013402036, + 0.004604166, + 0.008508321, + -0.0016482087, + 0.0053009954, + -0.005310541, + -0.004165068, + -0.012485658, + -0.0021509442, + 0.0007811491, + -0.0144456895, + -0.00411734, + 0.0044641634, + -0.012072015, + 0.012962938, + -0.0058164583, + -0.00518963, + -0.0075537595, + -0.00035696605, + 0.0048555336, + -0.0041682497, + 0.0034777839, + 0.0056510014, + -0.002839819, + -0.0044100718, + 0.011155636, + -0.0025836783, + -0.010824722, + -0.00066779496, + -0.014980244, + -0.0075792144, + 0.0049000797, + -0.0007091593, + 0.004473709, + 0.0028016365, + 0.006656472, + 0.0062555564, + 0.0017516194, + 0.0036909692, + 0.0067646555, + -0.003426874, + -0.012651116, + 0.000076116296, + -0.0048364424, + -0.02040215, + 0.010385624, + 0.012434748, + 0.0055491813, + -0.00041642724, + 0.018416664, + -0.0025279957, + -0.0043050703, + 0.00089012814, + -0.011709281, + -0.011594734, + 0.005068719, + -0.012135652, + -0.00050830375, + 0.0145602375, + -0.002079352, + -0.002812773, + -0.01313476, + 0.0017452557, + -0.008317408, + 0.0031659608, + -0.008775597, + -0.0014437735, + -0.011410186, + 0.0059405514, + -0.0068410207, + -0.0088201435, + -0.0007998426, + -0.024614947, + -0.0028557284, + -0.013847498, + 0.0014851379, + 0.0108183585, + 0.0065482883, + 0.0060041887, + 0.0046328027, + 0.0028445919, + 0.0065164696, + 0.011537461, + -0.0037291516, + 0.016583906, + 0.0008845599, + -0.011410186, + 0.0066055623, + 0.0022670825, + 0.0108183585, + 0.0045882566, + 0.011607462, + 0.009621975, + -0.0056923656, + -0.0008591049, + -0.009857433, + -0.0033027811, + -0.016291175, + -0.020440333, + -0.0024595854, + -0.010372897, + -0.006923749, + 0.010977452, + 0.0007672284, + 0.015056609, + -0.0035064209, + 0.010621082, + -0.005269177, + -0.009348334, + 0.006860112, + 0.021878539, + -0.0025391323, + 0.007547396, + -0.0031039142, + -0.0024659492, + 0.016189355, + -0.007369211, + 0.0019170766, + -0.017283918, + 0.0022368545, + 0.0020411697, + -0.007560123, + 0.006121918, + -0.027160443, + -0.01037926, + -0.0038818815, + 0.007566487, + 0.018493028, + -0.002477086, + 0.0057210024, + 0.009539247, + 0.012861119, + 0.013567494, + -0.004801442, + -0.0053869057, + 0.004263706, + 0.009691976, + -0.00013244533, + -0.0050305366, + -0.004451436, + 0.0014016137, + -0.001907531, + 0.0058546406, + -0.00007333216, + -0.008826507, + -0.0020904886, + 0.00042955246, + -0.011155636, + 0.0074073933, + -0.011575643, + -0.0004263706, + 0.01235202, + -0.0068028383, + 0.0028334553, + -0.015145701, + 0.0067201094, + 0.015896622, + -0.020440333, + -0.0021063979, + -0.004537347, + -0.0010285395, + 0.007121025, + -0.006265102, + 0.0060264617, + -0.012180198, + -0.016876638, + 0.004511892, + -0.005065537, + -0.0072228448, + 0.018913036, + -0.011225637, + 0.0022384454, + 0.004228705, + 0.006246011, + 0.010538354, + 0.0014509327, + 0.0007521145, + 0.007560123, + -0.011181091, + 0.0033918736, + 0.00484917, + -0.004448254, + -0.009462882, + -0.026651343, + 0.0089601455, + 0.0073055737, + 0.00054608844, + 0.0013363854, + 0.0024627673, + 0.0037768797, + 0.005418725, + -0.011594734, + -0.004728259, + 0.012943847, + 0.032251436, + -0.013885681, + -0.0030386858, + 0.009462882, + -0.0015082064, + 0.003256644, + 0.003649605, + -0.007541032, + -0.008107405, + -0.004161886, + 0.0055173626, + 0.0005643842, + -0.004250978, + 0.0078019453, + -0.0010102438, + -0.009520155, + -0.01767847, + 0.0060805534, + -0.018709395, + -0.00573373, + 0.012173834, + 0.0133765815, + -0.0117029175, + -0.0009991071, + 0.0018311662, + 0.013682041, + -0.004779169, + 0.009138331, + 0.011613825, + -0.010474716, + -0.0076237605, + 0.00021954904, + -0.0027093624, + 0.0072037536, + -0.015642073, + 0.0002923343, + -0.012606569, + 0.0127020255, + 0.012733844, + 0.012485658, + 0.0019854868, + 0.0030402767, + -0.0029448208, + 0.0008686505, + 0.0143056875, + 0.011785647, + -0.0054091793, + 0.0027220899, + 0.0015121837, + 0.004629621, + 0.0014032046, + 0.021025797, + -0.0057114568, + -0.007254664, + 0.0062778294, + -0.0015352523, + -0.005192812, + 0.01757665, + -0.0024595854, + -0.013414764, + 0.014572965, + -0.0043050703, + 0.0016124126, + 0.004091885, + 0.0007556941, + -0.0018900308, + 0.00029591392, + 0.0011534279, + -0.0132365795, + 0.009431063, + 0.008985601, + 0.0009991071, + 0.009348334, + 0.0063764676, + 0.016023897, + 0.007999221, + 0.0019663956, + 0.003500057, + -0.0060932813, + -0.0044100718, + -0.0012083151, + 0.00091876497, + -0.0012472931, + 0.0005739298, + -0.010016527, + -0.00020383854, + 0.013923863, + -0.0119574675, + 0.005307359, + -0.009774704, + -0.006195101, + -0.007617397, + -0.014267505, + 0.010512899, + -0.0063382853, + -0.02520041, + -0.011963831, + 0.00626192, + 0.0009911525, + -0.012409293, + -0.006389195, + 0.0000660238, + -0.006086917, + -0.0037577886, + -0.001543207, + 0.011136545, + 0.0023084467, + -0.0044641634, + 0.00020523062, + 0.013389309, + 0.00086705957, + -0.004158704, + -0.0022161724, + 0.006535561, + -0.008126496, + 0.0023832207, + -0.0033950554, + -0.007471031, + -0.010022891, + 0.0021063979, + -0.0009092194, + -0.003404601, + 0.008705596, + -0.0006586471, + 0.021331256, + 0.004976445, + -0.002302083, + -0.0047855326, + -0.007591942, + 0.0033027811, + 0.0076428517, + -0.0008551276, + -0.00009819052, + -0.005221449, + -0.00886469, + -0.0049096253, + 0.0033027811, + -0.0034905113, + -0.0023673114, + 0.012078378, + 0.008253771, + -0.006188737, + 0.001934577, + 0.019218495, + -0.01434387, + -0.0064687417, + -0.0024595854, + -0.016571179, + 0.008317408, + 0.0062046465, + 0.0027554994, + -0.000076862045, + 0.0037291516, + -0.0043177977, + -0.0022702643, + -0.008247407, + 0.0013626359, + 0.007057388, + -0.011505642, + -0.010945633, + -0.007910129, + 0.004756896, + -0.0028334553, + -0.006411468, + 0.006128282, + -0.003328236, + 0.00823468, + 0.0010531989, + 0.00362415, + -0.01429296, + -0.0013228625, + 0.010589263, + -0.002788909, + 0.0015424115, + 0.016596634, + -0.014267505, + 0.0038023347, + -0.011047453, + -0.0053869057, + -0.000057671394, + 0.011442005, + -0.0023577658, + 0.0035446032, + -0.006790111, + -0.007865583, + 0.007719217, + 0.010073801, + 0.004483255, + 0.0144966, + -0.00095535646, + 0.0070701153, + -0.015731165, + -0.007541032, + 0.0067646555, + 0.01106018, + -0.0060041887, + 0.0052819042, + 0.0127720265, + 0.00070200005, + 0.0022113996, + -0.013249307, + -0.008533776, + -0.011079271, + -0.0047155316, + -0.008164679, + -0.008151951, + -0.0041046124, + 0.0051800846, + 0.0018693487, + 0.009819251, + 0.004553256, + 0.014687512, + 0.0022861736, + 0.010875632, + 0.0033823277, + 0.01601117, + -0.004012338, + -0.0081455875, + 0.0009338789, + -0.0061346455, + -0.0048841704, + -0.0015320705, + -0.00014636602, + 0.0038977908, + 0.007757399, + 0.00866105, + 0.0023291288, + 0.0037896072, + -0.0014366143, + 0.01313476, + -0.015043882, + 0.01100927, + -0.002496177, + 0.013860226, + 0.0028064093, + -0.005654183, + 0.0012974076, + -0.0017229826, + 0.0033568728, + 0.007394666, + 0.018849399, + -0.013109305, + -0.0070701153, + 0.0012934302, + 0.005355087, + -0.016685726, + -0.00048841705, + 0.0009203559, + -0.009087421, + 0.0011653599, + 0.0027809544, + -0.008597413, + 0.000484042, + 0.0015344569, + -0.003185052, + -0.0108183585, + -0.013160215, + 0.0026632252, + -0.009437427, + -0.0072292085, + -0.0068919305, + 0.012492022, + -0.011626553, + -0.01158837, + -0.0050050816, + 0.012402929, + -0.0061314637, + -0.0016561634, + -0.0010484261, + -0.009844705, + -0.0034205103, + 0.006325558, + 0.0070382967, + -0.0132365795, + -0.016138446, + 0.0014557055, + 0.003156415, + -0.0054791803, + -0.0017659379, + 0.002082534, + -0.009418335, + -0.008788325, + -0.012962938, + 0.012466567, + -0.016240265, + 0.0028732286, + -0.0037036967, + -0.011518369, + -0.0062778294, + 0.008018312, + 0.0018470755, + 0.016583906, + 0.017653015, + -0.009551974, + 0.005756003, + 0.006042371, + 0.0072610276, + -0.0013451355, + -0.007057388, + -0.011836557, + -0.024169484, + -0.013478401, + 0.002201854, + 0.0053169047, + -0.0037514248, + 0.0053200866, + 0.0025518597, + 0.011982922, + -0.009539247, + -0.011448368, + -0.0026473159, + -0.00964743, + -0.0034141466, + 0.0027077715, + 0.0017484375, + 0.004600984, + -0.013860226, + -0.0045246193, + -0.016074806, + -0.016532997, + -0.006904658, + -0.025416778, + 0.0063287397, + 0.015883895, + -0.008158315, + -0.008591049, + -0.0029973215, + -0.0036527868, + 0.004009156, + 0.012154743, + 0.0027045896, + 0.0060105524, + 0.0052532675, + 0.0102392575, + -0.0007298414, + 0.00060296437, + -0.006020098, + 0.0057910034, + 0.019409407, + -0.0057878215, + 0.0030784593, + 0.008482865, + -0.010786539, + -0.019663956, + -0.014534783, + -0.0028955017, + -0.0026504977, + 0.004314616, + 0.0007338188, + -0.0011963831, + 0.0049064434, + 0.0029145929, + 0.003331418, + 0.0024039028, + -0.017283918, + -0.016176628, + 0.020733066, + 0.008011948, + -0.017538467, + 0.0010261531, + 0.013109305, + -0.0064019226, + 0.007127389, + 0.005412361, + 0.0049255346, + -0.00719739, + 0.008775597, + 0.006771019, + -0.0019123039, + 0.007992857, + -0.003939155, + 0.007471031, + 0.006169646, + -0.00866105, + -0.004044157, + -0.003452329, + 0.0038882452, + 0.001859803, + 0.012797481, + 0.008279226, + 0.004209614, + -0.015158429, + 0.00076245563, + -0.0016370721, + -0.0105829, + -0.0037386974, + 0.005657365, + 0.010519262, + -0.0019536682, + 0.010684719, + -0.007515577, + 0.015094792, + -0.0034841476, + 0.009023784, + 0.0016800273, + -0.0100292545, + 0.0032470983, + -0.0026329975, + -0.0013244534, + 0.0013968409, + 0.0035350577, + -0.022654915, + 0.00010947621, + 0.011123817, + 0.006751928, + 0.008635595, + 0.0031802792, + -0.00011633712, + -0.006325558, + 0.0121674705, + 0.0071337526, + -0.0032152797, + 0.00046654168, + 0.009386516, + 0.00039097227, + -0.012434748, + 0.0000047168737, + -0.008794689, + -0.006481469, + 0.00027543062, + -0.0062014647, + -0.013834771, + 0.00022631051, + -0.001199565, + -0.01184292, + 0.013071122, + 0.011951104, + -0.01601117, + -0.011378367, + -0.0038086984, + -0.0017420738, + 0.0052023577, + -0.0048587155, + 0.012084742, + -0.014458417, + 0.02217127, + 0.0022639006, + -0.008508321, + -0.007413757, + 0.008011948, + 0.0005655774, + -0.002325947, + -0.0088901445, + -0.009030147, + 0.006322376, + -0.018620303, + 0.0050114454, + -0.011645644, + 0.00234822, + 0.0021238981, + 0.0018534393, + -0.004893716, + -0.008699233, + -0.003770516, + 0.008686505, + -0.019473044, + -0.0021986722, + 0.0004490414, + -0.0016975277, + -0.0057369117, + -0.011798374, + 0.0087501425, + -0.014229323, + -0.0072292085, + 0.0032741441, + -0.009602884, + 0.0007743876, + -0.0074264845, + 0.014725694, + 0.0021636717, + -0.008533776, + -0.004263706, + 0.003697333, + 0.012218381, + -0.00823468, + -0.00023048671, + 0.0023911754, + -0.0033155086, + -0.0038627903, + 0.009131967, + 0.0032677804, + 0.0049637174, + -0.012606569, + 0.0017007096, + 0.012612932, + -0.0103092585, + 0.015145701, + 0.016074806, + 0.022591278, + -0.00014040002, + -0.0053423597, + 0.0023307197, + -0.0007863196, + -0.004670985, + 0.0153747955, + -0.0020888976, + 0.00056955474, + -0.0040759756, + 0.0036877873, + 0.0035382395, + 0.002103216, + -0.023240378, + 0.0007004091, + -0.004314616, + -0.012733844, + 0.012816573, + 0.0046359845, + 0.0070192055, + 0.009501064, + -0.009418335, + -0.009672885, + -0.009526519, + -0.0054441798, + -0.0020395787, + 0.000394353, + 0.0016609362, + -0.0061314637, + -0.02632043, + -0.009437427, + -0.002201854, + -0.00043750711, + -0.007121025, + 0.011900194, + -0.010722902, + 0.0024070847, + -0.004753714, + 0.008164679, + -0.0001245901, + 0.0066755633, + 0.0075728507, + -0.007757399, + 0.0067137456, + -0.0050591733, + 0.0038023347, + 0.002421403, + -0.008482865, + 0.003961428, + 0.013147487, + -0.013249307, + -0.0030943686, + 0.0070446604, + 0.012409293, + 0.0024420852, + 0.0084065, + -0.0041459766, + -0.0019632138, + 0.0039264276, + 0.0140256835, + 0.015947532, + -0.0057210024, + 0.0048364424, + -0.0049796267, + 0.008527412, + -0.0012807027, + 0.00091717404, + 0.0027905, + -0.014102048, + -0.0051228106, + -0.00845741, + -0.0035605126, + -0.0015225247, + -0.008196497, + -0.010831086, + 0.00067932927, + 0.006904658, + -0.0035159665, + -0.004912807, + -0.01032835, + -0.0053200866, + 0.0052787224, + -0.0051291743, + 0.007547396, + 0.0060041887, + 0.005797367, + -0.0043496164, + -0.0005679638, + 0.006790111, + -0.01100927, + 0.0050782645, + 0.008470138, + -0.015616618, + 0.0161639, + -0.0059405514, + -0.00013791418, + 0.0102392575, + 0.0062523745, + -0.004285979, + 0.0050019, + 0.002863683, + -0.00420325, + -0.0041491585, + -0.0087501425, + 0.002941639, + -0.002599588, + 0.008196497, + -0.0018311662, + 0.00092592416, + -0.010194711, + -0.0024150393, + 0.01100927, + 0.011830193, + 0.0076428517, + -0.00017728982, + -0.013478401, + 0.015336613, + -0.0028095911, + 0.009418335, + -0.006191919, + -0.006631017, + -0.014114776, + -0.003942337, + 0.0122502, + 0.003208916, + 0.010945633, + -0.0022575369, + 0.007617397, + -0.010761084, + 0.0022734462, + -0.0009839933, + -0.0038977908, + 0.010360169, + 0.0050750826, + -0.0067392006, + -0.0156548, + 0.0052978136, + 0.004044157, + -0.013013848, + 0.004823715, + -0.0019473045, + 0.01691482, + 0.010646537, + -0.011652008, + -0.016736636, + 0.0034714201, + 0.018149387, + -0.00097047037, + 0.00573373, + 0.0100292545, + 0.017054824, + 0.009112876, + -0.005110083, + -0.0019950324, + -0.010506535, + 0.009876524, + 0.012014741, + 0.006790111, + -0.0011025179, + 0.009074694, + 0.013923863, + -0.0038436989, + -0.008756506, + -0.00012548499, + -0.008011948, + -0.00032136886, + 0.0070828428, + 0.015158429, + -0.0059150965, + -0.004756896, + 0.009106512, + -0.013032939, + -0.0011709281, + 0.0006351808, + 0.009914707, + -0.0010070619, + -0.0075792144, + 0.0044387085, + -0.011486551, + -0.005552363, + 0.0043655257, + -0.009800159, + 0.0031993703, + 0.015120246, + -0.011925649, + -0.00901742, + 0.01189383, + -0.0039487006, + -0.0008145587, + 0.010506535, + 0.009711067, + 0.0048141694, + 0.011181091, + 0.00008849576, + 0.017283918, + -0.0009911525, + 0.00015163599, + 0.002400721, + -0.006392377, + -0.008043767, + -0.002303674, + -0.009208332, + 0.013643859, + -0.0034555108, + 0.00045182553, + 0.000056875928, + -0.008667414, + -0.00007676261, + -0.011512006, + -0.007763763, + 0.005269177, + -0.0034714201, + -0.009284697, + 0.01048108, + 0.021751264, + -0.005507817, + -0.006316012, + -0.0062555564, + 0.014267505, + -0.009583793, + -0.0036655143, + -0.0039327913, + 0.0049032615, + -0.0019695775, + 0.0144456895, + -0.017831199, + -0.0020507153, + -0.004728259, + 0.009583793, + -0.017220281, + 0.011403822, + 0.00050949695, + 0.0066882907, + -0.008565594, + 0.0047855326, + 0.022311272, + 0.006198283, + 0.009590156, + -0.00073700066, + -0.011219273, + 0.011378367, + 0.00054370204, + -0.005638274, + -0.0029305024, + 0.0000114410595, + -0.0008046154, + -0.0029082291, + -0.0034396015, + 0.014152958, + -0.005017809, + -0.0033441454, + -0.009838342, + -0.0004748941, + 0.0056732744, + 0.0047059855, + -0.00954561, + -0.008673778, + 0.00040489295, + -0.007712853, + -0.008190134, + -0.00964743, + -0.011766556, + 0.005800549, + 0.0040759756, + 0.0084255915, + 0.012695662, + -0.01184292, + 0.008342863, + 0.0037100604, + -0.018493028, + -0.0113529125, + -0.0056128185, + 0.0037227878, + -0.008171042, + 0.0066691996, + 0.014483873, + -0.006373286, + 0.0074264845, + 0.009271969, + -0.0028064093, + 0.020389423, + -0.0019886687, + -0.0060264617, + 0.004155522, + -0.012447475, + 0.004260524, + -0.007884674, + 0.0027554994, + -0.00020881022, + 0.009717431, + -0.0026170881, + 0.0020507153, + 0.0067646555, + -0.012479294, + -0.012212018, + 0.0029050473, + -0.013465674, + -0.016647544, + -0.004005974, + 0.017169371, + -0.0064528324, + 0.0062078284, + -0.0062078284, + -0.0050591733, + 0.0041968864, + -0.0012449067, + 0.00134434, + -0.010391988, + 0.0039232457, + -0.0071846624, + -0.0009108103, + -0.003452329, + -0.007000114, + -0.000009539395, + -0.0039996104, + -0.008737415, + -0.00014626658, + -0.0056987293, + -0.0056478195, + 0.008629232, + 0.007846491, + -0.0010094483, + -0.007515577, + -0.0034650564, + 0.0007541032, + -0.00714648, + 0.010016527, + -0.0018566211, + -0.015171156, + 0.014089321, + 0.00033827257, + -0.009042875, + 0.015183884, + 0.016176628, + -0.01883667, + 0.022438547, + 0.0034427834, + 0.010646537, + -0.0040155197, + 0.0022957192, + -0.013172942, + 0.0032152797, + -0.0037323334, + 0.0029941397, + -0.0076046693, + -0.013618404, + 0.0063351034, + -0.0035923312, + -0.008317408, + 0.009590156, + -0.0039264276, + 0.0013483174, + -0.001029335, + -0.009106512, + -0.00067018135, + -0.020923978, + -0.0034682383, + 0.005195994, + -0.0077319443, + 0.0029575482, + 0.00075728504, + 0.004938262, + -0.004422799, + 0.014000228, + -0.0059882794, + -0.0017595742, + -0.012542931, + -0.015667528, + -0.0110983625, + -0.0008169451, + 0.0043973443, + 0.001885258, + 0.0037227878, + 0.0020634427, + 0.0043177977, + -0.013694769, + 0.020796703, + 0.011613825, + 0.015005699, + 0.015642073, + -0.0033855096, + 0.006481469, + -0.008603777, + -0.006169646, + 0.021776719, + -0.0005174516, + -0.0052278126, + 0.029375024, + 0.0077255806, + -0.0103538055, + -0.0059119146, + -0.008794689, + -0.0054728165, + 0.004597802, + -0.0005608046, + -0.006366922, + -0.009863797, + 0.0059628244, + -0.0003434431, + 0.0018104841, + -0.0045182556, + -0.00039773376, + -0.0061823735, + -0.0129820295, + 0.008686505, + -0.000027095612, + -0.005701911, + 0.0010531989, + -0.0037005148, + 0.003088005, + 0.011384731, + -0.0050050816, + -0.018429391, + 0.0066946545, + -0.0058641867, + 0.0076873978, + 0.0055650906, + -0.00823468, + 0.004893716, + -0.00035378418, + 0.008037403, + 0.0013777497, + 0.0029177747, + -0.0023800388, + 0.008648323, + -0.0035541488, + -0.0056923656, + -0.003331418, + 0.010926542, + 0.0047823507, + -0.004970081, + 0.0044100718, + -0.004998718, + 0.026829528, + -0.004209614, + 0.014483873, + 0.0021748082, + -0.0016975277, + 0.006246011, + 0.015247521, + -0.013847498, + 0.005415543, + -0.0043018884, + -0.0056923656, + 0.013071122, + -0.009857433, + 0.0050082635, + -0.013962045, + 0.003060959, + 0.00080779725, + 0.0016609362, + -0.0035127846, + 0.007464667, + 0.005606455, + 0.00051069015, + -0.00097047037, + -0.0010269486, + -0.004206432, + 0.0036623324, + 0.0011772919, + -0.0116329165, + 0.0061601005, + -0.021471258, + -0.003328236, + -0.0036432412, + -0.0016219582, + -0.004266888, + -0.005657365, + 0.011136545, + 0.008171042, + 0.000043278404, + -0.003328236, + -0.010461989, + -0.017169371, + 0.0004581893, + -0.012390202, + 0.013962045, + -0.005173721, + 0.016953003, + 0.0072292085, + -0.012059287, + 0.0013530903, + -0.002543905, + -0.0023132195, + -0.0035159665, + -0.017245736, + 0.00866105, + 0.010735629, + 0.015972987, + -0.0050496277, + -0.004890534, + 0.0005926233, + -0.0063510127, + 0.0072101173, + 0.0060550985, + -0.00022710598, + 0.005141902, + -0.013312944, + 0.0084955925, + -0.010181984, + -0.0077510355, + -0.017831199, + 0.0074455757, + 0.0013928636, + -0.008463774, + 0.0055459994, + 0.003350509, + -0.010990179, + 0.018340299, + -0.009806523, + -0.007101934, + -0.011811102, + 0.010181984, + -0.004919171, + -0.011187455, + -0.007362847, + 0.008228316, + -0.0037068785, + 0.009768341, + -0.0041491585, + -0.007025569, + -0.008381045, + -0.00020383854, + -0.0044132536, + 0.007547396, + 0.0067646555, + -0.006923749, + -0.0060360073, + 0.0051005376, + 0.0012751344, + 0.00088774174, + -0.011537461, + -0.018760305, + -0.015425706, + -0.003547785, + -0.003818244, + 0.0026107244, + -0.0033123267, + 0.008909236, + -0.003872336, + 0.008699233, + -0.0046868944, + 0.0020363969, + -0.0035350577, + -0.00006761474, + -0.010442898, + -0.007916492, + -0.0043973443, + -0.00823468, + 0.0038214258, + 0.009908344, + 0.0068155658, + -0.010945633, + -0.010385624, + -0.0032216434, + -0.010932906, + -0.0050050816, + -0.01083745, + 0.0049668993, + -0.001248884, + 0.005440998, + 0.017385738, + 0.017194826, + 0.0018884399, + -0.000120314464, + 0.008266498, + -0.0048396243, + -0.008546503, + -0.003186643, + 0.00094660633, + -0.0033027811, + 0.002345038, + 0.001238543, + -0.0020220785, + 0.016825728, + 0.004801442, + -0.015222066, + -0.0043496164, + 0.00896651, + -0.00051665615, + 0.0065164696, + 0.0022702643, + 0.014687512, + 0.018951219, + -0.0023864026, + -0.023049466, + -0.0012655888, + 0.02162399, + -0.0033855096, + 0.01919304, + 0.0228331, + 0.0011828602, + 0.012091106, + 0.0034109647, + 0.0025836783, + 0.01853121, + -0.0043209796, + 0.009590156, + 0.0022909464, + -0.012657479, + -0.009857433, + -0.006169646, + 0.019180313, + -0.0070701153, + 0.00017400851, + 0.007439212, + 0.00008561219, + -0.003990065, + -0.0005421111, + 0.0043877987, + -0.0049796267, + -0.00005488726, + -0.012434748, + 0.0059405514, + -0.00053177006, + 0.025264047, + 0.005638274, + 0.0072673913, + -0.002889138, + -0.0018932127, + -0.006061462, + 0.003500057, + -0.0057655484, + -0.0029670938, + -0.0024850406, + -0.004511892, + -0.00537736, + -0.0073310286, + 0.0033123267, + -0.007292846, + -0.007521941, + 0.019574864, + 0.0010094483, + 0.006561016, + 0.0075983056, + 0.008139224, + 0.0020013961, + -0.015336613, + 0.00028179438, + -0.0036368775, + 0.007216481, + -0.0027570904, + 0.009329243, + 0.010442898, + -0.009781068, + 0.03726606, + -0.01318567, + -0.039200637, + -0.010436534, + 0.009672885, + 0.015082064, + -0.0073310286, + 0.004600984, + -0.0035923312, + -0.010907451, + 0.010977452, + 0.0026075426, + -0.003891427, + -0.0012186562, + 0.0030927777, + -0.000021651631, + -0.00080421765, + -0.01596026, + -0.008050132, + 0.0062301015, + -0.009984708, + 0.0006510902, + 0.0053869057, + 0.00493508, + 0.0128420275, + -0.011002907, + -0.0054059974, + 0.012377474, + 0.0043877987, + -0.004047339, + -0.0070701153, + 0.010722902, + -0.008622868, + -0.005262813, + -0.0007286482, + 0.008298317, + 0.0022734462, + 0.006433741, + -0.0061251, + -0.0014469554, + 0.00362415, + 0.01075472, + -0.0028557284, + -0.003748243, + 0.004674167, + 0.01934577, + -0.011734737, + -0.0083555905, + -0.009831978, + -0.0063287397, + -0.0056096367, + 0.005603273, + -0.0023402653, + 0.0016991186, + -0.015476616, + -0.0024182212, + -0.0010404715, + -0.004970081, + -0.00033170995, + -0.0051705386, + 0.006487833, + 0.009131967, + 0.000770808, + -0.009685612, + -0.0008304681, + -0.0040377933, + -0.012288382, + -0.005160993, + 0.005625546, + 0.0129820295, + 0.0070701153, + -0.0072419364, + 0.006828293, + 0.0055619087, + 0.001641845, + -0.0041205217, + -0.006611926, + -0.010073801, + 0.0038532447, + 0.0038532447, + 0.006662836, + -0.002815955, + -0.002345038, + 0.0056955474, + 0.0076046693, + 0.006586471, + -0.005803731, + -0.014051138, + 0.0021588989, + -0.0007875128, + 0.01676209, + -0.0038341533, + 0.003154824, + -0.0037100604, + -0.006751928, + 0.0012496795, + 0.0029909578, + -0.014000228, + 0.007458303, + 0.006637381, + -0.008400137, + 0.0153747955, + 0.001909122, + 0.006188737, + -0.0041300673, + -0.0044641634, + -0.0053709964, + -0.00037267653, + -0.0033091449, + 0.0027936818, + -0.0029193657, + 0.010442898, + -0.0038850633, + 0.0003806312, + -0.0139111355, + -0.0067392006, + 0.008361954, + 0.007712853, + 0.00086069584, + 0.005953279, + -0.01111109, + -0.002157308, + -0.022298545, + -0.0009824024, + -0.0042732516, + -0.01121291, + -0.002346629, + -0.013694769, + -0.01272748, + 0.0045468924, + -0.0072292085, + -0.015158429, + 0.0060328254, + 0.0077064894, + -0.0071082977, + 0.012619296, + 0.009144695, + -0.0095647015, + -0.004887352, + -0.0019966234, + 0.0073755747, + 0.003942337, + 0.0045405286, + 0.00006169845, + 0.0028382281, + -0.009329243, + 0.010843813, + -0.0038500628, + -0.004403708, + 0.004483255, + -0.0038086984, + -0.0056096367, + -0.0024595854, + 0.008934691, + 0.008368318, + 0.020414878, + 0.006561016, + 0.00004181176, + -0.0071528438, + -0.0024182212, + -0.00911924, + -0.01257475, + 0.009157422, + 0.010315622, + -0.0033696003, + -0.00064949924, + 0.022209452, + 0.003129369, + -0.01934577, + -0.0011311548, + -0.0064464686, + -0.00057790714, + 0.00058427086, + 0.00995289, + 0.009380152, + 0.003500057, + 0.001431046, + -0.006732837, + -0.008101041, + -0.00021119662, + -0.007712853, + -0.0028923198, + -0.0052978136, + 0.0044418904, + -0.012282019, + 0.0007433644, + 0.013211125, + -0.0013332035, + 0.00017291475, + -0.005412361, + -0.0032773262, + -0.019714866, + 0.004801442, + -0.011798374, + -0.010805631, + 0.0036750599, + -0.0026043607, + 0.0046805306, + -0.019358497, + -0.009475609, + 0.012059287, + -0.018073022, + -0.000004754161, + 0.008603777, + -0.020198511, + -0.010691083, + -0.006106009, + 0.006968295, + 0.010041982, + -0.003958246, + 0.00714648, + 0.00076364883, + -0.009730158, + 0.0066182897, + -0.013198397, + -0.0019488954, + 0.009170149, + 0.01184292, + 0.0019027583, + -0.006637381, + -0.00045779155, + -0.0012170653, + -0.005536454, + -0.014038411, + 0.009520155, + 0.0015328659, + -0.006217374, + 0.0045946203, + -0.0014215005, + 0.006930113, + -0.007076479, + -0.0059182784, + 0.014407507, + 0.012326565, + 0.018302117, + 0.011798374, + -0.006090099, + -0.016329357, + -0.008928327, + -0.003251871, + 0.014992972, + 0.00729921, + 0.007471031, + 0.009131967, + -0.0002750329, + -0.004314616, + 0.0016959368, + -0.014038411, + 0.0002605156, + -0.0062046465, + 0.0021636717, + -0.0094246995, + 0.006631017, + 0.0020729883, + 0.0006992159, + 0.01204656, + 0.01288021, + 0.0017500285, + 0.0013133169, + -0.012161107, + -0.0037832435, + -0.009838342, + 0.011015634, + 0.012695662, + -0.010710174, + 0.00435598, + -0.00440689, + -0.009615611, + -0.0105638085, + 0.0075028497, + -0.012409293, + 0.0013737724, + -0.0045023463, + -0.013007484, + 0.00969834, + 0.0000063171306, + -0.0015591163, + -0.016392995, + 0.0011271775, + 0.00016157933, + -0.0047696233, + -0.0013507039, + -0.0029686848, + 0.008342863, + 0.009526519, + -0.0027618632, + 0.01121291, + -0.009049239, + -0.0037386974, + -0.018213024, + 0.0013196806, + 0.0027777725, + 0.005065537, + -0.013567494, + -0.0062014647, + -0.0047409865, + 0.0075028497, + 0.0049255346, + -0.0022957192, + -0.0024070847, + 0.0014811605, + 0.004454618, + 0.0061410093, + 0.0011788829, + -0.011130181, + 0.007738308, + 0.004772805, + -0.0057210024, + -0.009437427, + -0.006306466, + -0.009787432, + -0.004266888, + -0.011308366, + -0.013402036, + -0.018327571, + 0.0136311315, + -0.0051482655, + 0.001041267, + 0.0116329165, + 0.012237472, + 0.002815955, + 0.0015607072, + -0.0067646555, + 0.000857514, + -0.010080164, + -0.0039105183, + -0.0056891837, + 0.010245621, + -0.002567769, + -0.01727119, + 0.0026234519, + 0.009157422, + 0.013847498, + 0.005485544, + -0.00484917, + -0.0011645644, + -0.0052119032, + -0.013580222, + -0.007935584, + 0.0056891837, + 0.0018629848, + -0.0037896072, + 0.0058673685, + 0.0094947005, + 0.007833764, + -0.014063866, + 0.011499278, + 0.0110983625, + 0.004005974, + 0.0057687303, + 0.008953782, + 0.010468353, + 0.004912807, + 0.019231223, + 0.011906558, + 0.0047155316, + 0.0037768797, + 0.012797481, + -0.0065228334, + 0.017016642, + 0.0038818815, + -0.0004323366, + -0.0020363969, + -0.014331142, + -0.003528694, + 0.000881378, + 0.020745793, + 0.008501956, + -0.0053709964, + 0.0035636944, + 0.0047632596, + -0.004620075, + -0.0019043492, + -0.017042097, + 0.012422021, + 0.00023207764, + 0.014623875, + 0.002104807, + 0.005638274, + -0.0042477963, + 0.009857433, + -0.0043177977, + -0.0028318644, + -0.0057878215, + -0.00032017566, + -0.00095535646, + 0.0107738115, + 0.011753828, + 0.011912921, + -0.011251092, + 0.014814787, + 0.0034077829, + 0.0136311315, + 0.005043264, + 0.006771019, + -0.0099592535, + 0.003770516, + -0.008221952, + 0.0055014533, + -0.013974773, + -0.0006526811, + 0.016685726, + -0.0045628017, + 0.0076937615, + 0.006214192, + -0.0026584524, + 0.011951104, + -0.007318301, + 0.004556438, + -0.0031452784, + 0.0101692565, + -0.010372897, + -0.0075728507, + 0.012854755, + 0.011486551, + -0.0104938075, + -0.0035382395, + 0.015489344, + 0.005848277, + 0.011225637, + -0.023864025, + 0.015934804, + -0.0054696347, + -0.016252993, + 0.0060837353, + -0.0034109647, + -0.0015082064, + -0.0053741783, + -0.007025569, + 0.0100292545, + -0.011130181, + -0.00479826, + -0.013720224, + 0.010404715, + -0.0028923198, + -0.0049255346, + -0.003745061, + 0.0071146614, + 0.0052278126, + -0.0060582804, + 0.013529311, + -0.0027491357, + 0.006322376, + 0.0038309714, + 0.0122502, + 0.012033832, + -0.0050750826, + 0.009590156, + -0.013834771, + -0.012517476, + 0.00699375, + -0.009583793, + 0.0017182098, + -0.002031624, + 0.0038118802, + 0.002255946, + 0.0106338095, + -0.0027379992, + -0.010290167, + 0.0018741215, + 0.00007223839, + 0.008419228, + 0.01636754, + -0.010691083, + -0.022489456, + 0.004069612, + 0.008171042, + 0.009730158, + -0.013605677, + -0.00035875585, + -0.011785647, + -0.0028064093, + 0.0068855667, + 0.0022957192, + -0.002889138, + 0.0040727938, + -0.0019616229, + -0.0013475219, + 0.015107519, + 0.016354812, + 0.002911411, + 0.007712853, + -0.02349493, + 0.009532883, + -0.018174842, + -0.0022814008, + -0.0069873864, + -0.0043718894, + 0.004887352, + 0.005068719, + -0.009087421, + -0.01189383, + 0.017589377, + 0.002811182, + -0.010360169, + 0.008126496, + -0.0034141466, + 0.014140231, + 0.01803484, + -0.010512899, + -0.00047449637, + 0.009851069, + -0.0016132081, + 0.00039852923, + -0.016202083, + 0.010156529, + -0.0006021689, + -0.008298317, + 0.0020109417, + 0.008062859, + -0.003161188, + 0.0013689996, + 0.0033123267, + 0.0052341763, + 0.005412361, + -0.008546503, + 0.0076746703, + -0.0088901445, + -0.006701018, + 0.006150555, + -0.013096577, + -0.00792922, + -0.000037362115, + 0.013503856, + -0.0074264845, + 0.010748357, + 0.0066055623, + 0.00039216547, + 0.0049859905, + -0.02156035, + 0.00798013, + 0.009583793, + -0.0012536568, + 0.005724184, + 0.0072037536, + 0.014229323, + -0.009189241, + 0.009418335, + 0.003745061, + 0.009450154, + -0.000088147746, + 0.009201968, + 0.0016060489, + -0.011104726, + 0.002644134, + 0.003059368, + 0.008368318, + -0.0079610385, + 0.005094174, + 0.0015137746, + -0.0022861736, + -0.01235202, + 0.008578322, + 0.0122502, + 0.007464667, + -0.020096691, + 0.005265995, + 0.003129369, + 0.0052723587, + 0.0128293, + 0.009163786, + 0.006144191, + 0.0062269196, + 0.0021843538, + 0.00911924, + -0.0018629848, + -0.00964743, + 0.012390202, + -0.0055173626, + -0.009551974, + -0.012243836, + -0.008171042, + -0.012129288, + -0.004725077, + 0.00029014677, + -0.0035159665, + 0.013605677, + 0.016087534, + 0.0071082977, + -0.005355087, + 0.006631017, + 0.0064496505, + -0.015183884, + -0.0028986835, + -0.0044132536, + 0.00040429636, + 0.0026329975, + -0.0021604898, + 0.008521048, + -0.0071082977, + 0.0038818815, + 0.012517476, + -0.008877417, + -0.011970195, + 0.0068664756, + 0.004820533, + 0.0128420275, + 0.0012854754, + -0.0041300673, + -0.015349341, + 0.0053900876, + -0.0068155658, + -0.0012512704, + 0.0075537595, + 0.0004442686, + -0.008934691, + 0.007910129, + 0.011461096, + 0.007884674, + -0.016291175, + 0.014712967, + 0.005708275, + 0.013249307, + -0.017207554, + 0.01686391, + -0.018569393, + 0.0013013849, + -0.0035318758, + 0.00047568957, + -0.00597237, + -0.0017850291, + -0.0139875, + 0.020058509, + -0.00019588387, + -0.004607348, + 0.017487558, + -0.004690076, + -0.007076479, + -0.00508781, + -0.004330525, + -0.0052755405, + 0.0017691198, + 0.006751928, + -0.0049096253, + 0.0022448094, + -0.022616733, + -0.004165068, + 0.0022320817, + 0.003110278, + -0.0014294551, + 0.004973263, + 0.017169371, + 0.008196497, + -0.010207439, + 0.0026011788, + 0.0022050359, + 0.010551081, + -0.009380152, + 0.0043973443, + -0.007388302, + -0.013198397, + 0.0018995764, + -0.006001007, + -0.000005791998, + -0.0013801361, + 0.0029320933, + 0.0045914385, + 0.008253771, + 0.015832985, + 0.004970081, + -0.0012003605, + -0.0053741783, + 0.013847498, + 0.00529145, + -0.011461096, + 0.009182877, + -0.001138314, + 0.013172942, + 0.0139875, + -0.0016529815, + -0.017042097, + -0.008228316, + 0.0061123725, + -0.0027252717, + 0.00435598, + -0.011403822, + 0.011951104, + -0.008603777, + -0.0052341763, + 0.005533272, + 0.0042573423, + -0.00020264534, + -0.004537347, + 0.003350509, + 0.00009898599, + -0.010627446, + 0.010016527, + 0.0005898392, + 0.024271304, + -0.00072427315, + 0.006949204, + 0.0074837585, + -0.010640173, + -0.0020220785, + 0.0010237667, + -0.0012512704, + 0.011206546, + 0.0022829918, + 0.0024898134, + -0.0099592535, + 0.0027777725, + -0.0036305138, + -0.010366533, + 0.013109305, + 0.00911924, + 0.0038277896, + 0.0056510014, + 0.015883895, + 0.00043313205, + -0.009520155, + 0.006144191, + 0.00537736, + 0.005412361, + -0.016622089, + -0.0031357328, + -0.013542038, + 0.0041268854, + 0.0075728507, + 0.0058291857, + 0.001614799, + -0.00006318995, + 0.002157308, + -0.006637381, + -0.0023402653, + 0.007324665, + -0.017093007, + -0.009730158, + 0.014331142, + 0.00003104809, + -0.0047441684, + 0.008164679, + 0.016813, + -0.008088314, + -0.0074455757, + -0.014331142, + 0.0104938075, + 0.0017993475, + -0.0064051044, + 0.0027777725, + -0.0032280071, + -0.012059287, + -0.011473823, + 0.010188348, + 0.0070128418, + 0.0040982487, + -0.013885681, + 0.0058355494, + -0.014203868, + -0.0020077599, + -0.0066946545, + -0.016558452, + -0.00896651, + 0.010016527, + -0.01434387, + -0.008979238, + -0.005848277, + -0.0037386974, + 0.011340185, + -0.0020952614, + -0.00435598, + 0.0071782987, + -0.006510106, + 0.014687512, + -0.010118347, + -0.010411079, + -0.0040568844, + 0.0028700468, + -0.005265995, + -0.014789332, + -0.0039518825, + 0.0016529815, + 0.009946526, + -0.0049223527, + -0.005132356, + -0.00808195, + 0.004995536, + 0.007127389, + 0.009176513, + 0.0010842222, + -0.008584686, + 0.009271969, + -0.001885258, + -0.0049318983, + 0.0011486551, + -0.0015853668, + -0.01883667, + 0.01590935, + -0.0072037536, + 0.0030545953, + -0.013312944, + 0.003646423, + 0.0072101173, + 0.009787432, + 0.0023736751, + 0.017309373, + -0.008387409, + -0.0042191595, + 0.000018345469, + -0.005434634, + -0.007935584, + 0.0065737437, + -0.0011080862, + -0.0042764335, + 0.004779169, + -0.01808575, + 0.00435598, + 0.0139111355, + -0.003496875, + 0.0049859905, + 0.0016736636, + -0.0012377475, + 0.008196497, + 0.010557445, + -0.0043432526, + 0.021356711, + -0.0085401395, + 0.0037323334, + 0.0061155544, + 0.01235202, + -0.0051069013, + 0.0039709737, + -0.009112876, + 0.0076237605, + 0.017436648, + -0.011499278, + 0.001078654, + 0.00061370316, + -0.017703924, + -0.0040791575, + 0.0060519166, + 0.0066437447, + 0.007031933, + 0.004804624, + 0.009615611, + -0.0062332833, + -0.021102162, + -0.0018168478, + -0.0076237605, + -0.008883781, + -0.001504229, + -0.0013355899, + 0.012269291, + -0.00004971672, + -0.0011446777, + -0.002104807, + 0.022642188, + 0.00013304195, + 0.010232894, + 0.0017818472, + -0.010092892, + 0.010977452, + 0.0061823735, + -0.0017341191, + 0.0024261759, + 0.0049891723, + 0.0020857158, + 0.0015853668, + -0.013503856, + -0.0052819042, + -0.006144191, + -0.0042955247, + -0.0049796267, + 0.0025916332, + 0.00729921, + -0.043604348, + 0.016685726, + -0.003595513, + -0.0043973443, + 0.004750532, + -0.0047218953, + -0.010321986, + -0.009984708, + 0.0054505435, + 0.013363854, + 0.019320315, + 0.0013491128, + 0.006325558, + 0.0063510127, + -0.007865583, + -0.0072101173, + -0.003795971, + 0.0053900876, + 0.0057591847, + -0.0007541032, + 0.0059564607, + 0.0018375299, + 0.0003116244, + -0.0016155945, + -0.004009156, + -0.01429296, + -0.002885956, + -0.0072292085, + 0.0031802792, + 0.0030657318, + -0.0072101173, + -0.008107405, + -0.004209614, + -0.00077478535, + 0.009679249, + -0.0041968864, + -0.0010571763, + -0.0021938994, + -0.0016450268, + -0.008692869, + 0.009991072, + 0.0032136887, + 0.013071122, + 0.00039793263, + 0.0040282477, + -0.0156548, + 0.0037132422, + 0.009946526, + 0.010601991, + 0.0058069127, + 0.0062810113, + 0.015947532, + 0.010862905, + -0.006751928, + 0.0052564493, + 0.0016672999, + 0.006561016, + 0.008533776, + 0.009157422, + 0.009361061, + 0.006102827, + -0.0066246535, + -0.0069173854, + -0.014916606, + 0.005679638, + -0.015311158, + 0.0017563923, + -0.0076873978, + -0.007216481, + 0.012154743, + 0.010385624, + 0.007051024, + 0.0021477623, + -0.0005230199, + -0.0065801074, + -0.013796588, + 0.007318301, + -0.00934197, + 0.005603273, + 0.005603273, + -0.015018427, + -0.012479294, + -0.0085401395, + 0.0083555905, + 0.0122502, + -0.016545724, + -0.0014358188, + -0.002470722, + -0.00031619833, + -0.023469474, + -0.0058737323, + -0.008521048, + -0.018862126, + 0.013694769, + -0.0030482316, + -0.0057114568, + -0.007852855, + -0.0012242245, + 0.012014741, + 0.022514911, + 0.0051546292, + 0.0007620579, + -0.007324665, + 0.0016243446, + 0.0043241614, + 0.017551195, + 0.014203868, + -0.0030975505, + -0.009303788, + 0.007394666, + -0.007515577, + 0.002176399, + 0.00003030234, + 0.0066691996, + -0.0006339876, + -0.010939269, + -0.0069873864, + -0.0008392182, + 0.0323278, + 0.003986883, + -0.013045667, + -0.013007484, + -0.0012528613, + -0.0013809316, + -0.004871443, + 0.013001121, + -0.0011820648, + -0.004425981, + -0.0063287397, + -0.0005834754, + 0.009310151, + 0.008393773, + 0.010347442, + 0.0024627673, + -0.010990179, + -0.0054791803, + 0.004285979, + -0.005482362, + -0.01459842, + -0.015972987, + 0.013198397, + 0.0037323334, + -0.0053200866, + 0.001432637, + 0.014458417, + -0.00065069244, + 0.0027745906, + -0.013198397, + 0.007617397, + 0.007973766, + 0.0033123267, + 0.000055235276, + -0.006732837, + -0.0024516308, + 0.003598695, + 0.0015455934, + -0.01601117, + -0.00052659947, + 0.007273755, + -0.0071592075, + 0.021534896, + 0.008622868, + 0.008871053, + 0.0054091793, + -0.0077955816, + 0.004970081, + 0.0041746134, + 0.0042796154, + -0.017347556, + 0.003694151, + -0.010741993, + -0.01235202, + -0.0013411582, + 0.004690076, + -0.0036018768, + -0.010404715, + 0.0027523176, + 0.005606455, + 0.0073501198, + -0.010557445, + 0.008972874, + 0.0001501445, + -0.013732951, + 0.003449147, + -0.0047664414, + 0.008686505, + -0.005437816, + 0.011200182, + -0.009558338, + 0.009074694, + -0.00033886917, + 0.001332408, + 0.0017516194, + -0.006777383, + 0.0057878215, + -0.020033054, + 0.0026027698, + 0.0072419364, + -0.0024325396, + 0.0050273547, + 0.0007815468, + 0.0036400594, + 0.007941947, + -0.0114229135, + 0.0016084353, + 0.009049239, + -0.0033982373, + 0.0027809544, + 0.011442005, + 0.0002917377, + 0.007630124, + 0.005237358, + -0.015463889, + -0.009221059, + 0.0013960454, + 0.00636374, + 0.025925877, + -0.0094947005, + 0.0052087214, + 0.016227538, + -0.005931006, + 0.007216481, + -0.0025932242, + 0.036502413, + 0.0032105069, + 0.019651229, + -0.012364747, + 0.009539247, + 0.0077701267, + -0.0064941966, + 0.009189241, + 0.0014143413, + 0.0043464345, + 0.0022957192, + -0.016456632, + -0.011162, + -0.0041937046, + -0.0007859219, + -0.003430056, + 0.009049239, + 0.014229323, + 0.008311044, + -0.018327571, + 0.0039518825, + 0.004623257, + -0.0041268854, + 0.0025614053, + 0.005880096, + 0.0074010296, + 0.009081057, + -0.0013920681, + -0.004801442, + -0.0000802925, + 0.004556438, + -0.012969302, + 0.0042446144, + 0.0058705504, + 0.0048555336, + 0.0088201435, + 0.0064210137, + 0.003452329, + -0.0069619315, + 0.023354925, + -0.008832871, + 0.00823468, + 0.0036146042, + 0.009551974, + 0.0032216434, + 0.0067646555, + -0.014967517, + -0.002276628, + 0.0039105183, + 0.016685726, + 0.0067964746, + 0.013109305, + -0.0006415445, + -0.014216595, + 0.0037991528, + 0.0053869057, + -0.0025804965, + 0.009831978, + -0.013822043, + -0.011652008, + -0.007477395, + 0.0030498225, + -0.005902369, + -0.00813286, + 0.00021676489, + 0.01631663, + -0.004731441, + -0.010920178, + 0.0000472806, + -0.0024723131, + 0.014152958, + -0.0007739899, + -0.0061632823, + 0.0071337526, + -0.0014843424, + 0.0030736865, + -0.0063351034, + 0.00058307766, + 0.0014032046, + -0.005361451, + -0.0015742301, + 0.014254778, + -0.0062301015, + 0.010665628, + -0.0094246995, + -0.008731051, + 0.009373789, + 0.014534783, + 0.0037577886, + 0.0070637516, + -0.0016386631, + 0.0042382507, + -0.014178413, + -0.007121025, + 0.010729265, + 0.0052309944, + -0.004578711, + -0.0039296094, + -0.009144695, + -0.0018709396, + -0.001812075, + -0.0022304908, + -0.009443791, + -0.004530983, + -0.0077764904, + -0.024856769, + -0.006809202, + -0.0054919077, + -0.009469246, + -0.013351127, + -0.012052923, + 0.0066055623, + 0.0039455188, + -0.0072037536, + -0.012052923, + -0.00031540287, + -0.0032455074, + 0.011378367, + 0.0082155885, + 0.0033568728, + -0.0043209796, + -0.009322879, + 0.008349227, + 0.0071782987, + 0.013001121, + -0.00709557, + -0.012065651, + -0.0045405286, + 0.0027825453, + -0.0031643698, + -0.005504635, + -0.003162779, + 0.013160215, + 0.0035446032, + -0.0070128418, + 0.018111205, + -0.0023370835, + 0.0036655143, + -0.003528694, + -0.009488337, + -0.0014986608, + -0.00021060002, + -0.012237472, + 0.009876524, + -0.018773032, + 0.0005269972, + 0.012682934, + 0.0011168363, + -0.001934577, + -0.008979238, + -0.010939269, + -0.0032455074, + -0.009577429, + 0.0025089046, + -0.008069223, + 0.0018168478, + -0.013414764, + 0.0068155658, + -0.0025932242, + -0.015171156, + -0.0004058873, + 0.0026775436, + -0.0058132764, + 0.00012647934, + 0.00083364994, + 0.0018407118, + 0.0016370721, + 0.0022193543, + 0.0064241956, + 0.015603891, + -0.003251871, + -0.008151951, + -0.005285086, + -0.00513872, + -0.0065005603, + 0.011002907, + 0.00043432525, + 0.0069364766, + 0.0046328027, + 0.0018900308, + 0.003032322, + -0.021254892, + -0.011410186, + -0.0025550416, + -0.013885681, + 0.008781961, + -0.007235572, + -0.0062110103, + -0.01048108, + -0.0071337526, + -0.014012955, + 0.014000228, + 0.00995289, + 0.0013069531, + -0.009284697, + -0.0036018768, + -0.00073023915, + 0.011652008, + -0.007464667, + 0.004432345, + -0.009100148, + -0.0075537595, + -0.001664118, + 0.020593062, + -0.014114776, + 0.00969834, + 0.009163786, + 0.006898294, + -0.0029273203, + 0.0098892525, + 0.018556666, + 0.009221059, + 0.010442898, + 0.0035859675, + -0.010996543, + -0.0032868718, + 0.011728373, + -0.008317408, + 0.0021827628, + -0.009354698, + -0.007833764, + -0.0063191936, + 0.007655579, + -0.009023784, + -0.009386516, + 0.008387409, + 0.0075537595, + -0.0043209796, + -0.007719217, + -0.00011156432, + -0.011372004, + -0.006440105, + 0.0144456895, + 0.016507542, + -0.009882888, + 0.007922856, + 0.0005174516, + 0.0041459766, + -0.0030514135, + 0.006045553, + -0.0001549173, + -0.0016577543, + 0.0052087214, + -0.013529311, + -0.0047696233, + 0.004330525, + 0.012765663, + -0.012269291, + -0.013363854, + -0.008877417, + 0.0014970698, + -0.0050591733, + -0.0037132422, + -0.0008062063, + -0.0070192055, + -0.0021620807, + 0.0061123725, + -0.0045914385, + -0.01454751, + -0.0083555905, + 0.00091876497, + -0.01454751, + 0.008387409, + -0.008692869, + 0.0009609247, + -0.002376857, + 0.0024198121, + -0.0017659379, + -0.0061155544, + 0.012581114, + 0.008883781, + 0.0028493647, + -0.006198283, + 0.008228316, + -0.009609248, + 0.008101041, + 0.005463271, + -0.0068473844, + 0.0017229826, + -0.0040377933, + -0.006930113, + 0.009914707, + 0.0068664756, + -0.0008837644, + 0.0020538971, + 0.00039057454, + -0.0019011673, + 0.002621861, + 0.026753163, + -0.009112876, + 0.011193818, + 0.0069873864, + -0.018403936, + 0.006106009, + -0.010856541, + 0.0034777839, + -0.0021843538, + 0.008476501, + 0.010907451, + -0.0049446262, + -0.0025645872, + 0.0046868944, + 0.01262566, + -0.0100038, + 0.0027523176, + 0.005950097, + 0.010067437, + 0.0027364083, + 0.000085115025, + -0.008909236, + -0.005622364, + -0.0103538055, + 0.008056495, + 0.016723908, + -0.009081057, + -0.013287489, + -0.00003166955, + -0.009914707, + -0.012943847, + -0.0194985, + 0.009411971, + -0.008311044, + 0.015845712, + -0.006325558, + 0.002181172, + -0.0022304908, + -0.005482362, + -0.002104807, + -0.0033886915, + -0.00011484562, + 0.014420235, + 0.0008893327, + 0.0014604783, + 0.0071846624, + 0.0038850633, + 0.008597413, + -0.0009625157, + 0.006106009, + -0.002103216, + 0.0007401825, + -0.001909122, + 0.010964724, + 0.004381435, + -0.0072864825, + 0.0024166303, + -0.009711067, + -0.0056955474, + 0.017169371, + 0.006071008, + 0.0070637516, + -0.007903765, + 0.012632024, + 0.004801442, + -0.0075346683, + -0.008228316, + 0.007171935, + -0.0059182784, + -0.016711181, + 0.0112383645, + -0.006949204, + -0.00047171224, + 0.0019504863, + -0.021382166, + -0.009227423, + -0.007477395, + 0.0042700698, + 0.0053009954, + 0.00646556, + 0.0026854982, + 0.020096691, + -0.008972874, + 0.00568282, + -0.011556552, + -0.012657479, + 0.0004478482, + 0.0012783163, + -0.020160329, + -0.0027045896, + 0.003598695, + -0.0061155544, + -0.0017388919, + 0.0030720956, + 0.004260524, + -0.0002515666, + -0.003430056, + -0.008979238, + -0.0016203673, + 0.0062014647, + -0.0063319216, + 0.011041089, + 0.008470138, + -0.008953782, + -0.006214192, + 0.017945748, + 0.00015451957, + 0.0073755747, + -0.0006502947, + 0.011620189, + -0.005946915, + 0.004483255, + 0.004336889, + 0.0050337184, + -0.009851069, + 0.003719606, + 0.012632024, + -0.012695662, + -0.0043877987, + 0.012937483, + 0.0014286597, + -0.030622317, + 0.011219273, + 0.0063573765, + -0.007318301, + -0.0228331, + -0.0019202585, + 0.002811182, + -0.0027061806, + -0.0056478195, + 0.004973263, + -0.02145853, + 0.011613825, + -0.0064973785, + 0.012212018, + -0.006487833, + 0.012460203, + -0.01194474, + -0.0071146614, + 0.0052819042, + -0.009373789, + 0.009539247, + 0.0051196287, + -0.0077701267, + -0.0062332833, + 0.017156644, + -0.0054950896, + 0.0063032843, + -0.007477395, + -0.005332814, + -0.0015185474, + -0.006898294, + -0.0012639979, + -0.0055650906, + -0.017958475, + -0.0084955925, + 0.0019043492, + -0.007916492, + 0.008928327, + -0.010290167, + 0.007318301, + -0.011021998, + 0.003010049, + -0.0043209796, + 0.0053455415, + -0.0021652626, + -0.009609248, + 0.012192926, + -0.004890534, + -0.010881996, + 0.0021477623, + -0.0029145929, + -0.01429296, + 0.015527526, + 0.002470722, + -0.011461096, + 0.0086801415, + -0.006096463, + 0.012765663, + -0.012186563, + 0.010118347, + -0.007833764, + -0.00529145, + 0.0073373923, + 0.008527412, + 0.012969302, + -0.00081257004, + 0.0049223527, + -0.008381045, + -0.0012934302, + -0.0045659835, + 0.0009593338, + 0.01100927, + -0.00084558193, + 0.0022861736, + -0.0008774007, + 0.006662836, + 0.011041089, + 0.0012647933, + -0.0007091593, + 0.00641465, + 0.008209225, + -0.010601991, + 0.0032614167, + 0.002742772, + 0.002545496, + 0.009462882, + -0.0044577997, + 0.0006610335, + -0.011976559, + 0.006198283, + -0.0071401163, + 0.002765045, + -0.017093007, + 0.0119574675, + 0.0076937615, + 0.0036623324, + 0.009704703, + 0.0006339876, + -0.002077761, + 0.0014215005, + 0.021903994, + 0.010652901, + 0.00036293204, + -0.017194826, + 0.0029177747, + 0.020923978, + -0.014891151, + -0.006879203, + -0.011276548, + -0.0013928636, + -0.014280233, + -0.00071950036, + -0.0053678146, + 0.009908344, + 0.009539247, + 0.002691862, + -0.014967517, + 0.001555139, + 0.0015710483, + 0.014903879, + -0.006726473, + 0.0019329861, + -0.007464667, + 0.0021748082, + -0.0008766052, + 0.004750532, + -0.010684719, + -0.0013968409, + 0.007738308, + 0.00061370316, + 0.0001602867, + -0.0029543664, + 0.002987776, + 0.0032614167, + 0.00095535646, + -0.0051482655, + -0.004626439, + 0.0007950698, + 0.0036782417, + -0.0106338095, + -0.01184292, + -0.0025359504, + 0.007413757, + -0.015031154, + 0.004165068, + 0.005946915, + -0.01027744, + 0.0027539085, + -0.020109419, + 0.014382052, + -0.007719217, + 0.00069842045, + -0.0027984546, + 0.0029368661, + 0.0054473616, + -0.012784754, + 0.0078019453, + -0.0055650906, + 0.010512899, + -0.003107096, + 0.004976445, + 0.003162779, + 0.01919304, + -0.003033913, + 0.009940162, + 0.002006169, + -0.011734737, + -0.017436648, + -0.003748243, + 0.014178413, + 0.0083555905, + -0.010971088, + 0.01641845, + 0.0026091335, + -0.0119574675, + -0.0019648047, + 0.0056955474, + 0.010251985, + 0.008953782, + -0.0019329861, + 0.0005540431, + 0.0016203673, + 0.0026536796, + -0.001614799, + 0.0048396243, + 0.0003261417, + 0.015451161, + 0.0051705386, + -0.014751149, + -0.013732951, + -0.016482087, + -0.0016124126, + 0.007859219, + -0.009049239, + -0.00036770487, + 0.006481469, + -0.010347442, + 0.0040377933, + -0.006039189, + -0.004133249, + 0.0001498462, + -0.000929106, + 0.010366533, + -0.022667643, + 0.0025264048, + 0.0042987065, + -0.0021159435, + -0.009316515, + -0.008387409, + 0.0029448208, + -0.006042371, + 0.0032964174, + 0.013440219, + -0.0023323107, + 0.008381045, + 0.00058267993, + -0.0010913814, + -0.0032232343, + -0.005412361, + -0.018607575, + 0.003331418, + -0.01929486, + 0.0077955816, + -0.0038055165, + -0.0073819384, + 0.0044641634, + 0.008393773, + 0.0108883595, + 0.009182877, + -0.010748357, + -0.008991965, + 0.00032196546, + -0.0020093508, + -0.01075472, + -0.014763877, + 0.009157422, + -0.0018725306, + 0.017818471, + -0.005157811, + -0.001859803, + 0.0073501198, + 0.0009434245, + 0.0056414558, + 0.0026393612, + -0.0014636602, + -0.005686002, + 0.009933799, + 0.0058387313, + -0.010143802, + -0.00028497624, + -0.008311044, + -0.0054919077, + -0.006246011, + 0.0021382167, + -0.006268284, + 0.0046550757, + 0.0052341763, + 0.00023426519, + 0.0132365795, + -0.013491129, + -0.004161886, + 0.00068012474, + 0.009819251, + -0.003528694, + 0.0045405286, + -0.009259242, + -0.009201968, + 0.0078210365, + 0.0014151367, + 0.0007234777, + -0.00033230655, + 0.0031245963, + -0.0034650564, + 0.0048396243, + 0.0013212715, + 0.004095067, + -0.0023895844, + 0.0056891837, + 0.003353691, + 0.0024086756, + 0.0015527526, + -0.015794802, + -0.0077064894, + 0.006860112, + -0.0046805306, + -0.015425706, + -0.0043973443, + 0.013707496, + -0.0038246077, + -0.0051228106, + -0.0006673972, + -0.0028016365, + -0.00195685, + -0.004779169, + -0.017449375, + 0.00097603863, + -0.0047123497, + 0.009933799, + 0.021191254, + 0.00005757196, + -0.0022654915, + 0.0035541488, + 0.0021875356, + -0.005071901, + -0.013974773, + 0.0008376273, + -0.0055205445, + 0.015069337, + -0.0069364766, + -0.0014525236, + 0.0005230199, + -0.003305963, + -0.011976559, + 0.0012552477, + 0.002133444, + -0.008209225, + 0.0037800616, + 0.010442898, + 0.011021998, + 0.015832985, + -0.01106018, + -0.009539247, + -0.006071008, + -0.01434387, + 0.0073310286, + 0.002400721, + -0.0027491357, + -0.0021859447, + -0.0005075083, + -0.017487558, + -0.000018730774, + 0.0018534393, + 0.006236465, + 0.008616504, + 0.004473709, + -0.004263706, + -0.0052787224, + -0.009246514, + -0.0043687075, + -0.0034109647, + 0.002375266, + 0.0037386974, + -0.00016366744, + 0.012262927, + 0.0071846624, + -0.009532883, + 0.009348334, + 0.0014986608, + -0.00995289, + -0.0050782645, + -0.008565594, + 0.010913814, + -0.004527801, + 0.004206432, + 0.005752821, + 0.0039550643, + -0.008011948, + -0.0042414325, + 0.003598695, + -0.0041746134, + -0.014051138, + 0.0053678146, + -0.00045540516, + -0.0045468924, + 0.006220556, + 0.0022686734, + -0.007343756, + -0.0016140036, + 0.015183884, + 0.0069555677, + -0.0005759185, + 0.0037227878, + -0.0010746766, + -0.000064482585, + -0.00959652, + 0.015489344, + 0.0021445805, + -0.008845598, + 0.0021223072, + -0.001493888, + -0.0049605356, + 0.009526519, + -0.006783747, + 0.01939668, + 0.0173221, + 0.003525512, + 0.0034777839, + 0.008120133, + 0.006777383, + -0.005924642, + 0.0061601005, + -0.015311158, + 0.0016497996, + 0.02332947, + -0.00046057568, + -0.019943962, + 0.0009155831, + 0.002349811, + 0.0043018884, + -0.013402036, + -0.011658371, + -0.00019866801, + -0.0107038105, + 0.011193818, + 0.0014032046, + -0.003894609, + -0.010181984, + 0.0071082977, + -0.015336613, + -0.0070892065, + -0.011518369, + 0.013809316, + 0.012212018, + -0.0106338095, + -0.0055491813, + -0.0018645758, + -0.00093706074, + -0.018162115, + -0.008877417, + -0.0010189939, + -0.016189355, + -0.013325672, + -0.019523954, + -0.0061855554, + 0.020974888, + -0.0052119032, + -0.016953003, + 0.009526519, + 0.009940162, + -0.0055141808, + 0.0028843652, + 0.0026075426, + -0.0033855096, + -0.009501064, + -0.002303674, + 0.0028811833, + -0.0013316126, + -0.005110083, + 0.0009020601, + -0.011989286, + 0.013351127, + 0.0031770973, + 0.0133765815, + 0.0010794494, + -0.0035064209, + 0.009507428, + 0.013452946, + 0.01419114, + -0.0026854982, + 0.0035350577, + 0.008578322, + 0.0052309944, + -0.017945748, + 0.019918507, + 0.008998329, + -0.008801052, + -0.004231887, + 0.015489344, + 0.010391988, + 0.014076593, + -0.00013035724, + 0.0021668535, + 0.007636488, + 0.0036368775, + 0.0073819384, + -0.011594734, + 0.0133765815, + -0.006904658, + -0.023189468, + -0.038513355, + -0.006930113, + 0.0008614913, + -0.0023609477, + -0.005902369, + 0.006777383, + 0.0004737009, + -0.011512006, + -0.0034141466, + 0.002788909, + 0.004731441, + -0.0069428403, + -0.0068919305, + -0.0026727708, + -0.003331418, + -0.0043718894, + -0.01419114, + 0.008069223, + -0.00002863683, + -0.005628728, + 0.0013944545, + -0.014076593, + -0.0036018768, + 0.006662836, + -0.0017118461, + 0.0070828428, + -0.012714753, + -0.0030132309, + -0.017347556, + 0.011232001, + -0.008743779, + 0.005797367, + 0.0014779787, + -0.009819251, + 0.009501064, + -0.000076414595, + -0.002203445, + 0.0031755064, + -0.0063032843, + -0.003525512, + 0.00362415, + 0.009571065, + -0.010442898, + -0.0046168934, + -0.010971088, + -0.002004578, + 0.016813, + 0.012555659, + 0.0008153542, + -0.00018812806, + 0.0032041431, + 0.00010191927, + 0.0012822936, + -0.010862905, + 0.008781961, + 0.007661943, + 0.0029257294, + -0.0032868718, + 0.0108883595, + 0.008241043, + -0.018493028, + 0.015565708, + 0.008552867, + -0.0072037536, + 0.0031357328, + -0.00656738, + -0.008489229, + 0.009571065, + -0.0100292545, + 0.0052055395, + 0.003154824, + 0.009386516, + 0.0085401395, + 0.0026409521, + 0.006777383, + -0.0034618746, + -0.0073119374, + -0.004753714, + -0.008546503, + -0.017131189, + 0.005221449, + -0.014458417, + 0.0012934302, + 0.010404715, + 0.0024595854, + -0.003528694, + 0.0034650564, + -0.0009744477, + 0.0147002395, + -0.0052278126, + 0.0013141123, + 0.007343756, + 0.0055905455, + 0.01863303, + -0.006061462, + -0.007254664, + -0.0005218267, + -0.0049064434, + -0.0055141808, + 0.0039773374, + -0.008743779, + 0.012638387, + 0.0009649021, + -0.00357324, + 0.0058323676, + -0.006783747, + -0.021305801, + 0.0037418792, + 0.006701018, + 0.000978425, + 0.0077510355, + -0.009481973, + -0.017487558, + 0.0061091906, + 0.010315622, + 0.0040727938, + 0.0077255806, + -0.0031914157, + 0.0018948036, + -0.008635595, + 0.007439212, + -0.0007998426, + -0.0054441798, + 0.004400526, + 0.005730548, + -0.011276548, + 0.015972987, + 0.00440689, + -0.0016736636, + -0.012224745, + -0.0005902369, + -0.014916606, + 0.006662836, + 0.0002809989, + -0.00080779725, + -0.0103538055, + 0.026600434, + 0.013274762, + 0.0063287397, + 0.0026998166, + -0.0068855667, + 0.008164679, + -0.00048483745, + 0.000017189555, + -0.0010150166, + -0.012320201, + 0.009271969, + -0.0048300787, + -0.009201968, + -0.010449261, + -0.017169371, + -0.01288021, + 0.0025598144, + -0.007738308, + -0.001980714, + -0.00626192, + -0.007362847, + 0.00091717404, + -0.007000114, + 0.0062714657, + -0.005017809, + 0.00067654514, + -0.0012122925, + 0.006949204, + 0.0018550302, + 0.0015447979, + 0.0042700698, + -0.000843991, + -0.0047473502, + 0.008826507, + 0.014254778, + -0.008476501, + -0.006949204, + 0.006662836, + -0.0018454846, + 0.009100148, + -0.014458417, + -0.00040369976, + 0.0052723587, + -0.00055722496, + -0.017716652, + 0.00871196, + 0.0011844512, + -0.010035618, + -0.0014668421, + -0.010601991, + -0.008801052, + -0.0025884514, + 0.009520155, + -0.005116447, + 0.0040314295, + -0.0025168592, + 0.0039518825, + 0.0035541488, + -0.0029734576, + -0.009551974, + -0.00015183486, + -0.009774704, + 0.0021604898, + -0.009704703, + 0.007681034, + -0.016991185, + -0.0050337184, + 0.004626439, + -0.002815955, + 0.015972987, + -0.0018629848, + -0.0012711571, + -0.0038659722, + -0.0033950554, + 0.013427491, + -0.012956575, + 0.0035573307, + 0.0045914385, + -0.0072101173, + -0.0005516567, + 0.004362344, + -0.007318301, + 0.0058960053, + 0.014725694, + -0.0039805193, + 0.0041905227, + 0.016507542, + -0.010341077, + 0.004795078, + -0.0055619087, + 0.007458303, + -0.0068219295, + -0.00090524205, + 0.008756506, + 0.017131189, + -0.012103833, + -0.006347831, + 0.002520041, + -0.0046137115, + 0.0053200866, + 0.023074921, + 0.0047187135, + -0.00959652, + -0.010245621, + -0.00027940795, + -0.016622089, + -0.020491242, + -0.0011056998, + 0.008221952, + -0.016978458, + 0.0028748196, + 0.00911924, + -0.0058864597, + 0.0019011673, + 0.0054982714, + 0.011123817, + 0.0063351034, + 0.019702138, + -0.0070128418, + -0.0011510415, + -0.0094947005, + -0.0017182098, + 0.006828293, + -0.01313476, + 0.0029432299, + -0.0050973557, + 0.0032025522, + -0.0014859333, + -0.0056700925, + -0.0005234176, + 0.0016275265, + -0.00990198, + -0.0046550757, + -0.002200263, + -0.0037864253, + -0.0055682724, + 0.019383952, + -0.003598695, + 0.009036511, + 0.000023727303, + -0.0050114454, + -0.0034205103, + -0.0004713145, + 0.010271076, + 0.0010181984, + -0.0052469037, + -0.004919171, + 0.010881996, + -0.010131074, + -0.011747465, + 0.011276548, + 0.0117029175, + 0.017003912, + -0.008069223, + 0.0026870891, + 0.015094792, + -0.005218267, + 0.0007632511, + -0.004772805, + 0.0033982373, + -0.0027077715, + 0.01313476, + -0.0139875, + 0.013822043, + -0.013720224, + 0.014458417, + -0.005110083, + -0.008845598, + 0.01158837, + 0.0029511845, + 0.004648712, + 0.005730548, + -0.00061728276, + 0.009450154, + 0.0033123267, + 0.0110983625, + -0.0041014305, + 0.0054728165, + -0.025378596, + 0.0039232457, + 0.0032184615, + 0.0049446262, + -0.003500057, + -0.005164175, + -0.01247293, + -0.0007000114, + 0.0013244534, + 0.003646423, + 0.0095647015, + 0.0014501372, + 0.0107738115, + 0.0062269196, + -0.011862012, + -0.0067646555, + 0.0037768797, + -0.0049287165, + 0.003671878, + -0.0059182784, + -0.0017977565, + 0.00092194683, + -0.001664118, + 0.0061632823, + -0.0005604069, + 0.0020236694, + 0.007413757, + 0.016036624, + -0.019409407, + 0.009475609, + 0.0021286712, + 0.010869268, + -0.00592146, + -0.0059341877, + 0.0026520886, + 0.02150944, + -0.0040027923, + 0.00323278, + 0.0040568844, + 0.001420705, + -0.0033218723, + 0.00406643, + -0.0068855667, + -0.010805631, + -0.0053869057, + -0.00072546635, + -0.00042955246, + 0.003528694, + 0.014267505, + 0.008839235, + 0.009876524, + -0.0014596828, + -0.013198397, + 0.0037800616, + -0.0017977565, + -0.005418725, + 0.0012154743, + 0.00964743, + -0.009641066, + -0.009672885, + 0.0006045553, + -0.005024173, + -0.015336613, + -0.001029335, + -0.0022416275, + -0.0030370948, + -0.01737301, + 0.00021060002, + 0.0072037536, + 0.0026950438, + -0.005577818, + 0.0065482883, + 0.011569279, + -0.010296531, + -0.0052055395, + -0.007840128, + 0.0052023577, + -0.009895616, + -0.0077701267, + 0.001027744, + 0.007515577, + 0.004209614, + 0.008361954, + 0.007121025, + 0.016202083, + 0.0042223413, + 0.0009386517, + -0.0009744477, + -0.00084319554, + 0.001112859, + 0.011091999, + -0.0016593452, + 0.008781961, + 0.0041205217, + -0.0016450268, + 0.001492297, + -0.0012632024, + -0.015120246, + -0.01017562, + 0.007630124, + -0.0041968864, + 0.005927824, + 0.0033855096, + -0.0073564835, + 0.002130262, + 0.014942062, + -0.0042573423, + 0.001127973, + 0.0034205103, + -0.005259631, + 0.0127020255, + 0.009539247, + -0.0006880794, + -0.00087421876, + 0.004954172, + 0.02227309, + 0.0027698178, + -0.014483873, + 0.0069428403, + 0.00058665726, + -0.016494814, + -0.009539247, + 0.007521941, + -0.00592146, + 0.0022193543, + -0.010271076, + 0.008514685, + 0.0037355155, + 0.008686505, + -0.00058029353, + 0.016278448, + -0.0031516422, + 0.0098892525, + -0.013822043, + 0.0038627903, + -0.0032184615, + 0.0004184159, + 0.0067392006, + 0.012377474, + -0.0038659722, + -0.0006745564, + -0.0066882907, + 0.014178413, + -0.0045882566, + -0.0021175344, + 0.0007720012, + 0.004995536, + -0.0068664756, + 0.0024325396, + 0.008342863, + -0.0021509442, + 0.002788909, + -0.017843926, + -0.005415543, + 0.0051259925, + -0.00036850033, + -0.009278333, + 0.0110283615, + 0.008342863, + -0.0046359845, + -0.0069428403, + -0.0009831978, + -0.0011407004, + -0.005797367, + -0.000262902, + -0.013732951, + 0.006809202, + -0.013172942, + 0.0022098087, + 0.0009649021, + 0.00808195, + 0.015591163, + -0.021713082, + -0.0047441684, + 0.018365754, + -0.0019982143, + -0.0070192055, + -0.00929106, + -0.006853748, + -0.01032835, + 0.0051005376, + -0.0040823394, + -0.0018566211, + 0.012600205, + -0.009539247, + -0.0020157148, + -0.011550188, + -0.0003104312, + -0.003500057, + 0.013465674, + 0.000029133997, + 0.017156644, + 0.0014930925, + -0.005043264, + 0.005679638, + -0.009100148, + 0.0072864825, + -0.019880325, + 0.009475609, + 0.00011772919, + 0.0071082977, + 0.0076873978, + -0.0041459766, + 0.0014954789, + 0.008107405, + 0.00396461, + -0.0043273433, + -0.0045946203, + 0.01858212, + -0.008915599, + -0.0023164013, + 0.0038627903, + 0.0035859675, + 0.0070128418, + 0.0036400594, + 0.0029893669, + -0.008616504, + -0.009316515, + 0.003795971, + 0.0011120635, + 0.0038596084, + -0.007515577, + -0.008622868, + 0.00000545641, + -0.008317408, + -0.004336889, + 0.00091478764, + 0.008113769, + -0.004235069, + 0.0035700582, + 0.014789332, + 0.0026091335, + -0.004378253, + 0.00077001256, + 0.016431177, + 0.01858212, + -0.0144456895, + 0.0057814578, + -0.0029909578, + 0.002885956, + 0.006968295, + 0.003894609, + 0.012065651, + -0.0015336614, + -0.011836557, + 0.0058928235, + 0.010092892, + -0.012002014, + 0.0055491813, + 0.0039041545, + 0.00084478647, + -0.010035618, + -0.023202196, + 0.0003848074, + -0.020720338, + -0.004537347, + -0.0080755865, + -0.016329357, + -0.003697333, + -0.014789332, + 0.0070128418, + -0.004998718, + 0.01601117, + -0.0051291743, + 0.009310151, + 0.009851069, + 0.0065005603, + 0.00040489295, + -0.0070192055, + 0.005335996, + 0.0008845599, + -0.0054728165, + 0.0007421712, + -0.00084478647, + 0.009100148, + -0.006701018, + -0.00046415528, + -0.0043718894, + 0.016278448, + -0.0072864825, + 0.0054219067, + 0.001492297, + 0.0059182784, + -0.004047339, + 0.030902322, + -0.011664735, + -0.020185784, + 0.00357324, + 0.009310151, + 0.0047091674, + -0.01742392, + 0.0009020601, + 0.0056891837, + 0.0141656855, + 0.01169019, + 0.001127973, + -0.0074264845, + -0.0044450723, + -0.019753048, + -0.014127503, + -0.009711067, + 0.012409293, + 0.016902093, + -0.005335996, + -0.008909236, + 0.0001885258, + -0.0074201208, + 0.011225637, + -0.0029161838, + -0.008998329, + 0.0039009727, + -0.024907678, + -0.0039009727, + 0.0100292545, + -0.00813286, + 0.0008845599, + 0.00086944597, + -0.0067455643, + 0.0041491585, + -0.0038659722, + 0.004451436, + -0.00052898587, + 0.0228331, + 0.002224127, + -0.0120274685, + -0.007477395, + 0.009704703, + -0.008521048, + 0.0045850747, + -0.01696573, + 0.012390202, + 0.0046837125, + 0.0030243674, + 0.0057655484, + 0.00911924, + 0.0139875, + -0.0022193543, + 0.001332408, + -0.0024786768, + 0.0006069417, + 0.0044577997, + 0.0019870778, + -0.004505528, + 0.009806523, + 0.00019071334, + 0.012091106, + -0.0034682383, + 0.0100292545, + 0.010150165, + 0.006306466, + 0.012186563, + 0.005705093, + -0.014483873, + -0.0145602375, + 0.011149272, + -0.0021509442, + -0.0039327913, + 0.009170149, + -0.00023187877, + 0.006828293, + 0.004581893, + -0.0020936704, + 0.008037403, + 0.019065766, + 0.0143056875, + -0.0033027811, + -0.00798013, + 0.020478515, + 0.017436648, + -0.0014612738, + 0.0035859675, + 0.0012321791, + 0.012002014, + -0.004425981, + -0.011034725, + 0.0017023005, + 0.004795078, + 0.0048778066, + 0.016202083, + 0.003869154, + 0.011448368, + 0.00068251113, + 0.001936168, + 0.0040600663, + 0.00924015, + 0.0010675174, + -0.010678356, + 0.009030147, + 0.003990065, + 0.008858326, + 0.0072610276, + 0.0012807027, + -0.0010062665, + -0.0077701267, + 0.0135165835, + 0.010048346, + 0.019765776, + -0.00537736, + -0.012078378, + -0.00709557, + -0.016405722, + -0.020363968, + 0.0054791803, + -0.0010046754, + 0.014356597, + 0.012536568, + 0.005899187, + -0.018594848, + 0.002599588, + 0.008648323, + -0.002984594, + 0.016125718, + -0.0076746703, + 0.002469131, + 0.0011391095, + -0.023800388, + -0.010748357, + -0.010939269, + 0.004887352, + -0.020262148, + -0.007661943, + 0.0076492154, + 0.00096012925, + -0.023825843, + -0.004842806, + -0.018340299, + 0.011855648, + -0.007432848, + -0.01762756, + 0.010932906, + -0.006751928, + -0.00068728393, + -0.0013077486, + -0.00995289, + -0.009488337, + 0.010881996, + -0.0055619087, + -0.0027952727, + -0.0013801361, + -0.00871196, + -0.019129403, + 0.009303788, + 0.0022177633, + -0.00563191, + 0.003207325, + -0.007814673, + 0.011531097, + -0.0057878215, + 0.0031134598, + -0.003770516, + -0.013465674, + 0.0076237605, + -0.0034205103, + -0.00959652, + 0.00818377, + -0.0015082064, + -0.021649444, + -0.0029718666, + -0.011123817, + 0.004263706, + 0.007808309, + -0.0139111355, + 0.005603273, + -0.019116675, + 0.00040966578, + 0.0007656375, + -0.0070446604, + 0.015082064, + -0.0029368661, + -0.001444569, + 0.0021159435, + -0.004734623, + -0.012822936, + 0.013160215, + 0.0033696003, + 0.0029909578, + 0.00039912583, + -0.005686002, + -0.0018041203, + -0.0017388919, + 0.0038023347, + -0.008094678, + 0.00015322692, + 0.005243722, + 0.014152958, + 0.013656586, + -0.0041937046, + -0.00084319554, + 0.004801442, + -0.0071846624, + -0.0073819384, + -0.0026934529, + 0.014407507, + -0.0064082863, + -0.002839819, + 0.0044387085, + 0.010500171, + -0.0056160004, + -0.006172828, + 0.004336889, + -0.007318301, + 0.0068728393, + 0.018073022, + -0.01495479, + -0.004919171, + 0.00995289, + -0.012243836, + 0.02045306, + -0.00729921, + 0.005215085, + -0.0029034563, + 0.0050146272, + -0.0194985, + 0.016074806, + -0.0058355494, + 0.0057846396, + 0.017067552, + 0.0012122925, + 0.010843813, + -0.0027045896, + 0.00719739, + 0.0054314523, + 0.0017595742, + 0.011333821, + 0.0044959825, + -0.013796588, + -0.0045023463, + -0.0052946317, + 0.00021795809, + -0.010417443, + -0.0054219067, + 0.00042835926, + -0.0046582576, + -0.0004219955, + -0.009252878, + -0.015845712, + -0.004871443, + 0.0006141009, + -0.008190134, + -0.0063032843, + 0.0020141238, + -0.005654183, + 0.0026870891, + 0.015998442, + -0.00052620174, + -0.011925649, + 0.011970195, + 0.0056160004, + -0.0031007323, + -0.008381045, + -0.0045914385, + 0.010856541, + 0.01646936, + -0.014127503, + 0.00284141, + -0.010143802, + -0.0002732431, + 0.010945633, + 0.00876287, + 0.00513872, + -0.013720224, + 0.014585692, + 0.00699375, + 0.006258738, + 0.00029312976, + 0.014140231, + -0.00054728164, + 0.008266498, + 0.0008169451, + 0.01585844, + -0.0051673567, + 0.013847498, + 0.00729921, + 0.0107038105, + 0.0053264503, + -0.0010897905, + 0.011117454, + -0.018543938, + -0.0043018884, + -0.0032932356, + -0.00036770487, + -0.0044673453, + -0.0057369117, + -0.007541032, + 0.014802059, + -0.0051069013, + 0.004476891, + -0.0073119374, + 0.01272748, + -0.0052946317, + 0.0049255346, + 0.0038373352, + -0.0020873067, + -0.014483873, + 0.0020284422, + -0.020682154, + 0.012943847, + 0.0080755865, + 0.024182212, + 0.0061123725, + 0.0021907175, + -0.016647544, + 0.004069612, + 0.0061123725, + -0.018174842, + -0.008508321, + 0.007235572, + 0.01990578, + -0.0025534506, + -0.0037132422, + -0.0005775094, + -0.00038858588, + 0.025187682, + 0.0012091106, + -0.01702937, + 0.0079610385, + 0.007369211, + -0.0027125443, + -0.00017480398, + 0.0007847287, + 0.008571958, + 0.0019266224, + -0.0014262733, + 0.009061966, + 0.010080164, + 0.00018514507, + 0.0035159665, + -0.0011582007, + -0.009895616, + -0.012148379, + -0.00411734, + 0.0034014191, + -0.004289161, + -0.013338399, + -0.008699233, + -0.00075291, + 0.01974032, + 0.009405607, + 0.0026839073, + 0.0028541374, + 0.014432962, + 0.0036686962, + -0.0043464345, + 0.0063860132, + 0.007617397, + -0.00037605726, + 0.008482865, + 0.0013785452, + -0.0026234519, + 0.01163928, + -0.007292846, + -0.0034077829, + -0.00068489753, + -0.0051800846, + -0.0065228334, + 0.00729921, + -0.003745061, + 0.015502071, + -0.008196497, + -0.0074010296, + 0.0059182784, + -0.0047409865, + -0.019562136, + -0.003183461, + 0.00071472756, + -0.012498385, + 0.0019998052, + 0.00714648, + -0.0064464686, + -0.00005757196, + 0.0005958052, + -0.0004076771, + -0.004893716, + 0.004476891, + -0.0067201094, + 0.0127720265, + -0.0016370721, + -0.00939288, + 0.024767676, + -0.0072801188, + 0.009730158, + -0.015934804, + 0.017513013, + 0.0047028037, + -0.012479294, + -0.00205867, + 0.007617397, + -0.010799266, + -0.0031802792, + 0.0036400594, + -0.009526519, + -0.00031957906, + -0.0021000342, + -0.005218267, + -0.0017548014, + 0.01631663, + -0.00450871, + 0.0022400364, + 0.0077510355, + -0.007967402, + 0.012447475, + 0.009310151, + 0.0064496505, + -0.00037426746, + 0.020020327, + -0.0034427834, + -0.0032216434, + -0.003035504, + 0.012810209, + -0.000376455, + 0.0054441798, + 0.0009768341, + 0.0006964318, + 0.009278333, + 0.0057369117, + -0.0027379992, + -0.0019552591, + -0.011091999, + 0.008705596, + -0.0055428175, + 0.0049287165, + -0.006220556, + -0.002200263, + 0.021038525, + -0.012485658, + 0.0055396357, + -0.026116788, + -0.0027220899, + 0.006732837, + -0.010022891, + -0.0054759984, + 0.00056478195, + -0.0070637516, + 0.02257855, + 0.007388302, + 0.011741101, + -0.0008256953, + 0.0106338095, + -0.0040537026, + 0.011244728, + 0.0014008182, + 0.006732837, + -0.0010524035, + 0.0062046465, + 0.0105829, + -0.0011955877, + -0.004868261, + -0.0022177633, + -0.011499278, + 0.0041237036, + 0.0049828086, + 0.0033727821, + 0.0064464686, + 0.017602105, + 0.0042764335, + 0.00014845413, + -0.0078019453, + 0.0003199768, + 0.0016092308, + -0.006191919, + -0.012390202, + -0.0009625157, + 0.010201075, + 0.0026998166, + -0.005625546, + -0.014674785, + -0.007369211, + 0.002477086, + 0.007922856, + -0.016189355, + 0.0034905113, + 0.013389309, + -0.000333102, + 0.0031723245, + 0.003920064, + 0.004161886, + -0.008451046, + -0.0013188851, + 0.0059182784, + 0.021305801, + 0.0051546292, + 0.011925649, + 0.00027165216, + -0.00178662, + 0.013160215, + 0.0058546406, + 0.008171042, + 0.007464667, + -0.0018232116, + -0.008591049, + 0.0010285395, + 0.001762756, + 0.015222066, + 0.00469644, + 0.009933799, + 0.0048587155, + 0.010945633, + 0.0025725418, + 0.007789218, + 0.000109675086, + 0.0024532217, + -0.013783861, + 0.004114158, + 0.0063764676, + -0.008209225, + 0.0033345998, + -0.010945633, + -0.0011788829, + -0.002744363, + -0.016545724, + 0.0026711798, + -0.008024676, + 0.002422994, + -0.018493028, + 0.0074201208, + 0.003795971, + 0.014814787, + 0.0017834381, + 0.00484917, + 0.0047887145, + 0.008979238, + -0.00038798928, + -0.004136431, + 0.000038257014, + -0.0069428403, + 0.0016291174, + 0.002101625, + 0.0029702757, + -0.00047091677, + -0.00015422126, + -0.0056096367, + -0.0021732172, + -0.0054982714, + 0.008438319, + 0.009170149, + 0.006904658, + 0.0028923198, + -0.0014477508, + -0.020440333, + -0.0018200297, + 0.0034555108, + -7.166199e-7, + 0.015107519, + 0.004184159, + 0.023024011, + -0.015998442, + -0.005062355, + -0.014483873, + -0.0003104312, + 0.007871946, + -0.0042732516, + 0.004534165, + -0.013872953, + -0.0075092134, + 0.0027236808, + -0.0024516308, + -0.0042127958, + 0.009755613, + -0.0038532447, + -0.0034396015, + 0.0015360478, + 0.0008821735, + -0.0025614053, + 0.012288382, + 0.0060550985, + 0.0015384342, + 0.0084255915, + 0.0048173512, + -0.01596026, + -0.00028418077, + 0.007076479, + -0.0045691654, + 0.007057388, + -0.0107038105, + -0.0034714201, + 0.008533776, + -0.005663729, + 0.0056669107, + -0.00029591392, + -0.006067826, + 0.012822936, + -0.012822936, + -0.0006156918, + -0.015540253, + 0.0020729883, + -0.012733844, + 0.007369211, + -0.02217127, + 0.0025518597, + -0.0027141352, + 0.00990198, + -0.010786539, + 0.0021986722, + 0.00911924, + -0.0021159435, + 0.008011948, + 0.005358269, + 0.009615611, + 0.008788325, + -0.0037323334, + -0.00886469, + 0.004970081, + -0.004088703, + -0.008743779, + 0.0059787338, + -0.0120974695, + -0.006592835, + -0.003525512, + 0.004553256, + 0.0034777839, + -0.005679638, + -0.00117411, + -0.0041746134, + -0.011976559, + 0.009761977, + 0.0050750826, + -0.012663843, + -0.0064719236, + 0.017283918, + -0.012460203, + -0.0059437333, + 0.021445803, + 0.004890534, + 0.0024102665, + -0.010111983, + 0.006258738, + 0.0038532447, + 0.02570951, + 0.021140344, + -0.012682934, + 0.0055173626, + 0.003967792, + -0.004362344, + -0.01686391, + 0.019256677, + 0.004209614, + 0.012733844, + -0.0012178607, + -0.015489344, + 0.028229551, + -0.0010611536, + 0.0141656855, + -0.002567769, + -0.0046328027, + -0.008654687, + 0.002545496, + 0.0027761816, + 0.0057369117, + -0.0001938952, + -0.0046391664, + -0.00064830604, + 0.010678356, + 0.011715645, + 0.0053900876, + 0.006128282, + 0.01818757, + 0.0040187016, + -0.016062079, + -0.0045691654, + -0.011543824, + 0.0064910147, + -0.012600205, + -0.011123817, + 0.0025566325, + 0.011556552, + -0.01022653, + 0.0046868944, + 0.0066691996, + -0.0025582234, + -0.0082155885, + 0.009055602, + -0.026142243, + -0.012670207, + 0.012682934, + -0.010652901, + -0.010449261, + 0.006681927, + -0.006246011, + -0.009475609, + -0.0010961542, + 0.003030731, + -0.004915989, + 0.012052923, + 0.0037832435, + -0.008241043, + -0.009838342, + -0.012040196, + -0.011753828, + 0.009176513, + -0.0071401163, + 0.005533272, + -0.023100376, + 0.004184159, + 0.005596909, + 0.01262566, + 0.008858326, + -0.0020411697, + -0.00881378, + -0.016023897, + 0.009800159, + 0.005606455, + 0.0028923198, + 0.011289275, + -0.011989286, + -0.012332928, + -0.0004534165, + -0.003134142, + 0.02550587, + 0.008361954, + 0.0011184273, + -0.008431955, + -0.0017882109, + -0.005157811, + 0.003983701, + 0.0065801074, + 0.00792922, + -0.0054950896, + 0.008508321, + 0.0069364766, + 0.0031055051, + -0.006016916, + -0.00901742, + -0.006341467, + 0.003280508, + -0.010869268, + -0.004670985, + -0.012237472, + 0.0056732744, + 0.014992972, + -0.009380152, + 0.004537347, + -0.010372897, + 0.0239913, + 0.015820257, + -0.006128282, + -0.008571958, + 0.015298431, + -0.0019473045, + -0.0019870778, + 0.008514685, + -0.005329632, + -0.0014676376, + -0.022922192, + -0.006751928, + -0.0020857158, + 0.006777383, + 0.02288401, + -0.0060582804, + -0.0072228448, + 0.0023275379, + 0.007617397, + -0.009672885, + -0.0018343481, + -0.005380542, + 0.0025598144, + -0.0036623324, + -0.00813286, + -0.0006733632, + -0.010589263, + 0.0016140036, + 0.01696573, + -0.018454846, + 0.0040537026, + -0.016571179, + -0.0002996924, + -0.0075028497, + -0.005552363, + -0.012682934, + -0.0025916332, + -0.0026361793, + -0.0022607187, + 0.0064051044, + -0.0026584524, + 0.011569279, + 0.009163786, + 0.008381045, + -0.0021700354, + 0.009844705, + -0.0040218835, + 0.000063885986, + -0.0038118802, + -0.00020334138, + -0.00010177012, + -0.0057846396, + 0.002203445, + -0.0027729997, + -0.0039709737, + -0.012078378, + 0.00469644, + -0.004674167, + -0.012453839, + 0.0022209452, + 0.011499278, + -0.021382166, + 0.0039327913, + 0.013503856, + -0.0069619315, + -0.014407507, + 0.0044355267, + -0.006239647, + 0.0115629155, + -0.012205654, + 0.003375964, + 0.004069612, + 0.005946915, + 0.010652901, + -0.006923749, + 0.009233787, + -0.0077955816, + 0.0025375413, + 0.009927435, + -0.004874625, + 0.003716424, + -0.010780175, + 0.013974773, + 0.0065801074, + 0.003280508, + -0.00034065897, + -0.0024309487, + 0.006045553, + -0.0070192055, + 0.0054441798, + -0.0064560142, + -0.0082855895, + 0.011575643, + -0.002400721, + 0.00641465, + 0.01012471, + 0.003154824, + 0.0019488954, + -0.012765663, + -0.010684719, + -0.008807416, + -0.004938262, + -0.014458417, + -0.003251871, + 0.0017086642, + -0.0036368775, + -0.0020634427, + -0.00646556, + 0.0038882452, + -0.007591942, + -0.003059368, + -0.0009847888, + 0.009711067, + 0.002443676, + 0.023545839, + 0.001762756, + 0.0049032615, + -0.00581964, + 0.0015097973, + 0.005243722, + -0.024627674, + -0.004893716, + 0.0081455875, + 0.016189355, + -0.005660547, + 0.017767562, + 0.0071337526, + 0.0012393384, + -0.0011351322, + 0.0026552705, + -0.009558338, + -0.0032168706, + -0.014611147, + 0.0026552705, + 0.004677349, + -0.002300492, + 0.0031452784, + 0.0062491926, + -0.003107096, + 0.0074010296, + 0.012110197, + -0.0007250686, + -0.000046311125, + -0.016303902, + 0.0051069013, + 0.0033791459, + -0.00072069356, + 0.012243836, + 0.016596634, + 0.011849284, + 0.010939269, + 0.0049096253, + 0.00015312749, + -0.0052469037, + -0.017818471, + 0.011174727, + -0.0040568844, + -0.003967792, + -0.004629621, + -0.005600091, + -0.030189583, + -0.00823468, + -0.0040346114, + -0.0026711798, + -0.007865583, + 0.010296531, + -0.016151173, + -0.0044800728, + 0.006510106, + -0.0078274, + -0.011289275, + 0.012962938, + -0.0024373124, + -0.018607575, + -0.010875632, + 0.00823468, + -0.003161188, + 0.007560123, + -0.003033913, + -0.0020157148, + 0.008686505, + -0.0035700582, + 0.0037864253, + -0.018925764, + 0.017436648, + -0.0047887145, + 0.0037068785, + 0.013605677, + -0.0063573765, + -0.0066882907, + 0.0075283046, + -0.012759299, + 0.0035064209, + 0.012759299, + -0.0055491813, + -0.013223852, + 0.013669314, + 0.009456518, + 0.011747465, + 0.015145701, + 0.0025375413, + -0.006535561, + -0.007343756, + -0.00049080345, + -0.006726473, + -0.0008893327, + -0.0075537595, + 0.006411468, + -0.00396461, + -0.0070064776, + 0.012593841, + 0.014140231, + -0.0021238981, + -0.0120274685, + 0.0021382167, + 0.0072483, + 0.0005067128, + 0.00068768166, + 0.013083849, + 0.008705596, + 0.006611926, + -0.001764347, + 0.0047696233, + -0.017093007, + -0.007808309, + -0.0073310286, + 0.010684719, + 0.0016084353, + -0.010156529, + -0.014687512, + -0.00808195, + -0.0015471843, + 0.0051832665, + 0.009774704, + 0.00046614395, + 0.012562023, + 0.0044800728, + 0.0011454732, + 0.004511892, + 0.009806523, + 0.008788325, + 0.010761084, + 0.007273755, + 0.015082064, + 0.0030434586, + -0.0043464345, + -0.025849512, + 0.0107738115, + 0.000336085, + 0.007273755, + 0.008482865, + -0.012345656, + 0.0025773146, + -0.010162893, + -0.015158429, + -0.00450871, + 0.004047339, + -0.0035700582, + -0.009157422, + -0.00017490341, + 0.0043687075, + -0.00396461, + -0.010544717, + 0.003646423, + 0.002324356, + -0.007922856, + -0.015514798, + 0.015196611, + -0.0029734576, + -0.006258738, + 0.0033632366, + 0.010105619, + -0.0026075426, + -0.0013228625, + 0.0014405916, + -0.00896651, + 0.0021191253, + -0.015489344, + 0.0012950212, + 0.0017102552, + -0.0009251287, + -0.0058355494, + -0.0009020601, + 0.006090099, + 0.0051037194, + -0.007127389, + 0.0021652626, + -0.0013857044, + 0.0060296436, + 0.0010874041, + -0.0056160004, + -0.0020141238, + 0.00021278756, + -0.0011168363, + 0.004693258, + -0.0058514588, + -0.009679249, + -0.0013029758, + -0.010188348, + 0.011232001, + 0.0038246077, + 0.0113529125, + 0.0009935389, + 0.0030036853, + 0.011302003, + 0.0071401163, + 0.0066437447, + 0.0063510127, + -0.008228316, + -0.0040568844, + -0.0010030845, + -0.012396566, + -0.0065737437, + -0.0031182326, + -0.005778276, + 0.005724184, + -0.015387523, + 0.0013196806, + -0.0059564607, + -0.019714866, + 0.013783861, + 0.0041237036, + 0.0084955925, + 0.010251985, + 0.014229323, + 0.016380267, + 0.01803484, + -0.0055237263, + -0.007464667, + 0.011741101, + 0.010691083, + -0.0012568387, + 0.017831199, + -0.01429296, + 0.0031977794, + 0.009755613, + 0.011982922, + 0.005533272, + 0.0052087214, + -0.008050132, + 0.011982922, + -0.010016527, + 0.011951104, + -0.00037148333, + 0.002599588, + -0.009984708, + -0.002055488, + 0.0064082863, + -0.011556552, + -0.0064973785, + 0.009297424, + -0.0042159776, + 0.0011080862, + -0.012218381, + -0.008311044, + -0.011779283, + -0.005902369, + -0.0047378046, + -0.0021191253, + -0.009940162, + -0.0054537253, + 0.0008145587, + 0.0027586813, + 0.0004975649, + -0.0027475448, + 0.013274762, + 0.007490122, + 0.0029766394, + -0.007871946, + -0.009373789, + -0.009539247, + -0.0036114224, + 0.0020411697, + 0.0038977908, + 0.009933799, + -0.0034332378, + 0.0010014935, + -0.010996543, + 0.0057432754, + 0.011162, + -0.0073310286, + 0.0037768797, + -0.002499359, + 0.0026727708, + 0.0007556941, + -0.0039073364, + -0.012873846, + -0.026651343, + -0.006268284, + 0.0037673342, + -0.005218267, + 0.008654687, + 0.004575529, + -0.007439212, + 0.003646423, + -0.014534783, + 0.0057114568, + 0.0017707107, + 0.004158704, + -0.0069810227, + -0.0063382853, + -0.0016911639, + 0.016329357, + -0.015018427, + -0.001189224, + -0.004626439, + -0.0039264276, + -0.01459842, + -0.011308366, + 0.0016943457, + 0.0096347025, + 0.005288268, + 0.0029893669, + 0.0009314924, + 0.0075028497, + 0.0127720265, + -0.0016752545, + -0.009322879, + 0.008253771, + 0.005071901, + 0.0046837125, + 0.0147002395, + 0.0024786768, + 0.01636754, + -0.006395559, + 0.010780175, + 0.027389538, + 0.0036909692, + -0.004690076, + 0.011836557, + -0.016392995, + 0.002103216, + -0.008909236, + 0.011601098, + 0.0047664414, + -0.0044164355, + 0.009819251, + 0.010990179, + -0.010315622, + -0.015578436, + -0.0051037194, + -0.0067964746, + 0.0060773715, + 0.0010054709, + -0.008381045, + -0.015769348, + 0.0015328659, + -0.006370104, + 0.0029018654, + -0.005596909, + 0.014522055, + -0.005313723, + -0.007057388, + -0.009093785, + -0.0080310395, + 0.0053900876, + 0.007789218, + -0.005848277, + -0.009812887, + 0.009265605, + -0.00617601, + 0.03192052, + -0.0020523062, + -0.018862126, + 0.005062355, + -0.0004935876, + -0.008241043, + 0.0048173512, + 0.0033218723, + -0.004155522, + -0.0010356987, + -0.0021127616, + -0.00015223259, + 0.002057079, + -0.0062269196, + 0.012695662, + 0.007744672, + 0.009946526, + 0.0020745792, + -0.008272862, + -0.00234822, + -0.010570172, + -0.0059660063, + -0.004260524, + -0.015336613, + -0.008603777, + -0.007655579, + 0.008654687, + -0.00656738, + -0.0026775436, + 0.0045946203, + -0.020325786, + 0.024691312, + 0.007986493, + -0.0035223302, + -0.02368584, + -0.0129820295, + -0.015043882, + 0.013452946, + -0.009971981, + 0.024818586, + -0.0027984546, + -0.0026632252, + -0.0017770744, + -0.0056128185, + -0.004826897, + 0.015120246, + 0.0014779787, + 0.017665742, + -0.0008885372, + -0.005215085, + 0.0115629155, + 0.0037005148, + -0.009793796, + -0.0022177633, + -0.0055650906, + 0.0066437447, + 0.006172828, + -0.002275037, + 0.0032041431, + 0.008514685, + 0.012396566, + 0.048058964, + -0.017220281, + 0.005883278, + 0.0032868718, + 0.012492022, + -0.0025264048, + -0.004047339, + 0.0144966, + -0.0027968637, + 0.011531097, + 0.0016322993, + -0.00636374, + 0.006258738, + -0.003872336, + 0.023851298, + 0.013783861, + 0.026651343, + -0.0008145587, + 0.0035446032, + 0.0115629155, + 0.0035414214, + 0.009526519, + -0.008756506, + -0.0026584524, + 0.0094246995, + 0.008692869, + 0.008482865, + -0.009997436, + 0.005313723, + -0.00029432296, + 0.0066055623, + 0.0043973443, + -0.0055428175, + 0.0039041545, + -0.0029670938, + 0.00040568842, + -0.02030033, + -0.005046446, + -0.00022193544, + -0.006309648, + 0.010932906, + -0.00052978133, + 0.009876524, + -0.0057655484, + 0.0057400935, + -0.001015812, + -0.0065482883, + 0.012122924, + 0.0021843538, + 0.01853121, + 0.005927824, + 0.0022161724, + -0.010538354, + 0.028662285, + 0.015972987, + 0.01419114, + -0.013605677, + -0.0002941241, + 0.0039550643, + 0.0037768797, + -0.0072101173, + 0.013172942, + 0.009214696, + 0.01172201, + -0.00013164987, + -0.0087501425, + 0.0003692958, + -0.004091885, + -0.012052923, + -0.0014692285, + -0.007617397, + 0.003986883, + 0.0063573765, + 0.008991965, + -0.003153233, + 0.0100992555, + -0.0018454846, + 0.011601098, + -0.018314844, + 0.0041300673, + 0.0019107129, + -0.0031659608, + -0.0057369117, + 0.009004693, + -0.006510106, + -0.0037036967, + -0.004600984, + 0.006144191, + -0.0025566325, + -0.01048108, + 0.0052978136, + 0.0040537026, + -0.014267505, + 0.00719739, + -0.003983701, + 0.016151173, + 0.006726473, + 0.014331142, + -0.008953782, + -0.0032232343, + 0.0047473502, + 0.005040082, + 0.0048141694, + 0.00626192, + 0.013592949, + 0.0040027923, + 0.014254778, + -0.01419114, + 0.009310151, + -0.010487444, + -0.011932013, + 0.0024882224, + -0.01919304, + -0.0064973785, + -0.0050369003, + 0.0024102665, + -0.0060328254, + 0.011747465, + 0.011849284, + -0.007464667, + -0.006783747, + -0.009227423, + -0.0071846624, + -0.017194826, + -0.00086069584, + 0.012663843, + 0.014623875, + -0.008686505, + -0.016138446, + 0.009730158, + -0.0012560432, + 0.010131074, + 0.016571179, + 0.0073564835, + -0.01032835, + 0.0042573423, + -0.004012338, + 0.015616618, + 0.0016497996, + 0.007922856, + 0.0048141694, + 0.012262927, + 0.004820533, + -0.0072419364, + 0.005361451, + -0.0037355155, + 0.009201968, + -0.0042382507, + 0.013554766, + 0.009851069, + 0.025314959, + 0.0047600777, + 0.0063001025, + -0.0017388919, + -0.0018804852, + -0.0061410093, + -0.007833764, + 0.0043877987, + 0.0002149751, + 0.012072015, + 0.00017192042, + 0.0018820761, + -0.00017400851, + -0.010951997, + -0.0063764676, + -0.0010953587, + -0.0033982373, + 0.006506924, + 0.004534165, + 0.0039805193, + 0.010010163, + -0.0074201208, + -0.008591049, + -0.00010181984, + -0.010162893, + -0.006433741, + 0.011868375, + -0.00646556, + -0.0053455415, + 0.00911924, + -0.003773698, + -0.019816687, + 0.015362068, + 0.008400137, + 0.012695662, + 0.012962938, + -0.007076479, + 0.0037418792, + -0.00123377, + 0.0012361566, + 0.0031930066, + 0.003646423, + 0.002865274, + -0.006930113, + -0.0012282018, + -0.00025972014, + 0.010792903, + 0.011333821, + 0.00015829803, + 0.0014970698, + -0.012714753, + -0.010207439, + -0.00085830945, + -0.004292343, + 0.014738422, + -0.0043400708, + 0.0008129678, + -0.007471031, + 0.007471031, + 0.001980714, + -0.011613825, + 0.0038596084, + -0.0064973785, + -0.009138331, + 0.015272976, + 0.0043973443, + 0.011397459, + 0.0009561519, + -0.018913036, + -0.0018661667, + 0.0053519052, + -0.0057146386, + -0.007394666, + -0.009507428, + -0.0032900537, + 0.014674785, + 0.010201075, + 0.0005480771, + 0.004187341, + 0.0071337526, + -0.0051228106, + -0.013427491, + -0.0032677804, + 0.008107405, + -0.014585692, + 0.005192812, + -0.015005699, + -0.0048078056, + 0.003183461, + -0.009361061, + 0.007490122, + 0.007789218, + -0.006923749, + 0.0036527868, + 0.013020212, + -0.00067256775, + -0.00440689, + 0.001590935, + 0.022107633, + -0.0063319216, + -0.0063573765, + 0.006809202, + -0.012447475, + 0.008177406, + 0.027134988, + -0.013032939, + -0.014140231, + 0.0063860132, + -0.004025066, + 0.003818244, + -0.0029798213, + -0.018327571, + -0.008648323, + 0.0036846055, + -0.0019870778, + -0.0026123154, + -0.0022607187, + 0.0098892525, + -0.00040887028, + 0.0015249113, + 0.0044609816, + -0.02040215, + -0.0013960454, + 0.008412864, + 0.0074264845, + 0.0038341533, + -0.007471031, + -0.008699233, + 0.002422994, + 0.0065801074, + 0.0016561634, + -0.017551195, + 0.011123817, + 0.00823468, + 0.005482362, + -0.012511113, + -0.0029591392, + 0.00039137, + -0.013287489, + -0.0035382395, + 0.018200297, + 0.016991185, + -0.0080310395, + -0.012084742, + -0.014420235, + -0.011963831, + -0.005558727, + -0.001580594, + 0.007954675, + 0.0046805306, + 0.011034725, + -0.0031405056, + 0.020898523, + 0.004250978, + 0.02162399, + 0.0016577543, + 0.014509328, + 0.017882109, + -0.008253771, + -0.010710174, + 0.0012186562, + 0.006214192, + 0.0059405514, + 0.0106338095, + -0.004381435, + 0.00039654056, + 0.0120274685, + -0.005657365, + 0.008546503, + 0.0045628017, + -0.009208332, + 0.000010999825, + 0.007101934, + -0.0008073995, + 0.00518963, + 0.0057878215, + 0.0028907289, + -0.019282132, + -0.004114158, + 0.0033027811, + -0.0035382395, + -0.009653794, + 0.013809316, + 0.007318301, + -0.015972987, + 0.009278333, + 0.008342863, + 0.0030386858, + 0.0068728393, + -0.009736522, + 0.024754949, + -0.016494814, + 0.0045691654, + -0.0050782645, + 0.0019377589, + 0.006198283, + -0.0007027955, + 0.006503742, + -0.0021604898, + 0.0038309714, + -0.010487444, + 0.012835664, + -0.0032502802, + -0.0023545837, + -0.012364747, + 0.011620189, + -0.00047449637, + -0.005654183, + 0.0066882907, + -0.0043655257, + -0.011543824, + 0.021242164, + 0.0011271775, + 0.011798374, + 0.011868375, + 0.0037418792, + 4.614333e-7, + 0.009462882, + -0.002938457, + -0.0043177977, + -0.00027741928, + -0.0056669107, + 0.007782854, + -0.006513288, + 0.005383724, + 0.007941947, + 0.012740208, + -0.008018312, + -0.012313837, + 0.0023545837, + -0.01696573, + 0.005625546, + 0.0033950554, + 0.0032232343, + 0.0024611764, + -0.009711067, + 0.010799266, + 0.0041046124, + 0.0029448208, + 0.01121291, + 0.0034332378, + 0.0023895844, + 0.013071122, + -0.009335606, + 0.0046805306, + 0.0061410093, + -0.028967746, + 0.010080164, + -0.007000114, + -0.0026107244, + 0.0020300332, + 0.0005417134, + -0.0026266337, + -0.0017309373, + -0.0010794494, + 0.0031357328, + 0.0075728507, + 0.014038411, + -0.009322879, + 0.00792922, + -0.0070446604, + 0.00047171224, + -0.0022607187, + -0.0042191595, + -0.010347442, + -0.004693258, + -0.0021938994, + -0.0042414325, + -0.007922856, + -0.007292846, + 0.0048396243, + -0.004359162, + 0.007999221, + -0.004915989, + -0.011072908, + -0.002324356, + 0.017614832, + -0.010181984, + 0.0017754835, + -0.0030275492, + 0.005794185, + -0.007101934, + 0.002599588, + 0.01621481, + -0.01027744, + -0.003059368, + 0.021954903, + -0.005437816, + -0.0070064776, + -0.0007799559, + 0.0054282704, + 0.0000776078, + 0.00026707823, + -0.0005397247, + 0.011868375, + -0.003084823, + 0.0053041773, + 0.001640254, + 0.0032216434, + -0.0018948036, + 0.008941054, + 0.013032939, + 0.009271969, + 0.009590156, + 0.0026616342, + -0.012110197, + -0.0015869577, + -0.0067201094, + -0.0077510355, + -0.0041714315, + -0.018060295, + -0.006389195, + 0.01914213, + -0.0071528438, + 0.0004748941, + 0.001715028, + -0.0036846055, + -0.006172828, + 0.0070828428, + 0.00178662, + -0.0026298156, + 0.0039137, + 0.011855648, + -0.0013944545, + 0.0032439164, + -0.0058100945, + 0.0031882338, + -0.00043472298, + 0.001383318, + -0.0043909806, + 0.010302895, + -0.00012001616, + -0.015260248, + 0.009055602, + 0.0057464573, + 0.0018566211, + -0.008635595, + 0.0144966, + 0.00323278, + -0.002644134, + -0.015031154, + -0.0055841818, + -0.0016012761, + 0.016672999, + -0.0110983625, + -0.010092892, + 0.01277839, + -0.014114776, + -0.009354698, + 0.013032939, + -0.004110976, + 0.010799266, + 0.003426874, + 0.012797481, + 0.0024086756, + -0.0072864825, + -0.008062859, + 0.012065651, + -0.0048523517, + 0.014114776, + 0.014712967, + 0.007661943, + 0.009380152, + 0.013160215, + -0.0033918736, + -0.011225637, + 0.015985714, + 0.000802229, + -0.01172201, + -0.009284697, + 0.0017802563, + -0.010156529, + -0.0010691084, + 0.014967517, + -0.0015408206, + 0.0071846624, + 0.0051291743, + -0.008801052, + -0.0056128185, + -0.01083745, + 0.006389195, + -0.00058427086, + -0.00537736, + 0.0077701267, + 0.0019425317, + -0.00016853967, + -0.0010038799, + 0.010939269, + -0.008667414, + 0.0013045667, + 0.008151951, + 0.016380267, + 0.0031930066, + -0.004728259, + 0.0013419536, + -0.012612932, + -0.009831978, + -0.0044800728, + 0.013338399, + -0.016303902, + 0.00023724818, + -0.0094246995, + 0.00037009126, + 0.006099645, + -0.009481973, + -0.00076523976, + -0.0021445805, + -0.012332928, + -0.0068473844, + 0.010035618, + -0.0024659492, + 0.006611926, + 0.0025645872, + -0.021776719, + 0.024220394, + 0.006344649, + -0.0034650564, + 0.0058514588, + -0.0033377816, + -0.0012377475, + -0.008915599, + -0.0030895958, + 0.015871167, + -0.020427605, + 0.014878424, + 0.004155522, + -0.009781068, + -0.0047664414, + 0.0031373238, + -0.019523954, + 0.00959652, + 0.002224127, + 0.007992857, + -0.0033027811, + 0.00450871, + 0.0013037713, + -0.0012138834, + -0.008648323, + 0.005660547, + -0.004620075, + -0.011162, + 0.008794689, + -0.0039073364, + -0.000990357, + -0.025442233, + 0.008552867, + -0.000735012, + -0.012676571, + 0.008883781, + 0.007808309, + -0.010570172, + 0.0043050703, + 0.0022845827, + -0.013669314, + -0.004970081, + 0.014852969, + 0.014114776, + -0.010595627, + 0.009278333, + -0.00027901022, + 0.0013522948, + 0.0062810113, + 0.012364747, + 0.008597413, + -0.014509328, + 0.0038309714, + 0.013847498, + -0.004874625, + 0.012040196, + -0.010913814, + 0.01111109, + -0.0030052762, + 0.017767562, + 0.0077764904, + -0.0024532217, + -0.01194474, + -0.007852855, + 0.006309648, + 0.0040727938, + 0.00906833, + 0.008266498, + -0.015158429, + -0.009380152, + 0.0022909464, + 0.0058291857, + -0.0027236808, + -0.0008797871, + 0.005485544, + 0.012663843, + -0.009806523, + -0.014522055, + 0.014178413, + 0.020567607, + 0.016036624, + -0.0028239097, + 0.002765045, + 0.01652027, + 0.0021366258, + -0.006828293, + -0.0023116285, + 0.0056732744, + -0.0008304681, + -0.006701018, + 0.0026632252, + -0.0013618404, + -0.013262034, + -0.014509328, + -0.009195604, + 0.004231887, + -0.025633145, + 0.0053741783, + 0.001127973, + -0.0021079888, + 0.007948311, + 0.00072307995, + -0.004896898, + -0.025442233, + 0.013058394, + 0.015387523, + -0.011849284, + 0.0011343367, + 0.005953279, + -0.0017802563, + -0.022209452, + -0.0016155945, + -0.0041714315, + -0.0067392006, + -0.004756896, + -0.012676571, + 0.009093785, + 0.0143056875, + -0.0040155197, + -0.00052739494, + -0.003404601, + 0.020478515, + 0.0003366816, + -0.021394894, + 0.0029368661, + 0.009571065, + 0.016494814, + -0.002496177, + -0.0017213917, + -0.0014397962, + -0.00079705846, + 0.011091999, + 0.0034236922, + 0.008896508, + 0.014458417, + -0.0077001257, + 0.007025569, + 0.008419228, + -0.012339292, + 0.0050591733, + 0.004473709, + 0.008597413, + -0.0100038, + 0.0035350577, + -0.005953279, + -0.0064019226, + -0.0060264617, + -0.0049637174, + -0.0051037194, + 0.0011939968, + -0.0027332264, + -0.009189241, + 0.007477395, + 0.0004263706, + 0.016431177, + 0.0052723587, + -0.010805631, + -0.01968941, + 0.0039105183, + -0.00798013, + -0.01136564, + -0.005262813, + 0.009335606, + 0.0060837353, + -0.006481469, + -0.0076873978, + 0.0024500398, + -0.000464553, + 0.005880096, + 0.0161639, + -0.0036814236, + 0.007101934, + -0.005927824, + 0.0009314924, + -0.00089490094, + -0.009437427, + 0.008699233, + -0.0012568387, + -0.0015424115, + -0.006631017, + -0.0065164696, + 0.005437816, + 0.004403708, + 0.0044387085, + 0.0029161838, + 0.015425706, + 0.004734623, + -0.0034109647, + 0.0063573765, + 0.004826897, + -0.0061569186, + -0.016405722, + 0.0044928007, + 0.010983815, + 0.022744007, + 0.00084319554, + -0.015311158, + -0.006020098, + 0.007292846, + -0.010614718, + 0.012358383, + -0.019485772, + 0.011664735, + 0.0015145701, + 0.011391095, + 0.007057388, + 0.0025900423, + 0.0046137115, + -0.0034427834, + 0.0079610385, + 0.0032995993, + 0.026116788, + -0.0047664414, + 0.004228705, + 0.0018248025, + -0.00017400851, + -0.0063573765, + -0.0069173854, + 0.0047409865, + -0.0071146614, + -0.005164175, + 0.010589263, + -0.004795078, + 0.008546503, + 0.0048141694, + 0.0105638085, + -0.0063860132, + -0.0023816298, + -0.0015471843, + 0.006064644, + -0.011575643, + -0.00006706786, + -0.0025248139, + 0.0051705386, + -0.007362847, + -0.00067217, + -0.0061569186, + -0.0063605583, + -0.020949433, + -0.009138331, + -0.003449147, + -0.00631283, + -0.0060296436, + 0.00002592727, + -0.0024389033, + 0.009310151, + 0.000045242214, + 0.0010484261, + -0.000618476, + -0.008648323, + 0.007471031, + 0.0027602722, + -0.008915599, + -0.01053199, + 0.010627446, + 0.0066055623, + -0.014916606, + -0.008368318, + -0.014203868, + 0.00896651, + -0.0140256835, + 0.0014366143, + -0.016240265, + 0.014216595, + -0.012110197, + -0.01914213, + 0.004753714, + -0.006188737, + 0.0034109647, + 0.00085830945, + 0.004530983, + -0.0020220785, + -0.006631017, + 0.011620189, + -0.011251092, + 0.0060837353, + -0.0036209682, + 0.012581114, + -0.0041777953, + -0.0074264845, + 0.008724688, + 0.0019934415, + -0.018174842, + -0.012822936, + -0.00139525, + -0.011276548, + -0.008253771, + 0.0054919077, + -0.0028525465, + 0.0014787741, + 0.0050814464, + 0.0037132422, + 0.0030227765, + 0.004336889, + 0.016507542, + 0.0069110217, + 0.0076873978, + -0.0018311662, + -0.0070446604, + -0.0014795696, + -0.015400251, + -0.0026075426, + 0.0032773262, + 0.010035618, + 0.00656738, + -0.0009999026, + 0.0077064894, + 0.01686391, + -0.00017321305, + -0.006020098, + -0.0040505207, + 0.0009935389, + 0.0014588874, + -0.007051024, + -0.006395559, + 0.0054028155, + 0.008979238, + 0.009418335, + 0.0129820295, + 0.007681034, + -0.0027809544, + -0.013503856, + 0.006771019, + -0.0017913928, + -0.00396461, + -0.008953782, + -0.005775094, + 0.0028366372, + -0.02242582, + 0.0036209682, + 0.016494814, + 0.015489344, + 0.0068855667, + -0.012695662, + -0.008699233, + -0.011830193, + 0.005705093, + 0.0010420624, + 0.010245621, + -0.0060041887, + -0.00041881364, + 0.0030927777, + -0.010251985, + 0.00070756837, + 0.0013578631, + -0.008641959, + -0.014152958, + -0.0051291743, + 0.014674785, + 0.014152958, + -0.0038882452, + 0.021267619, + -0.0020634427, + -0.006751928, + 0.011174727, + 0.0069110217, + -0.00030148219, + 0.0049223527, + 0.0064528324, + 0.0016124126, + 0.0025502688, + 0.0080310395, + 0.0017404829, + -0.0004251774, + 0.00479826, + 0.005307359, + -0.008743779, + 0.014051138, + 0.005635092, + -0.00792922, + 0.01219929, + -0.027618632, + 0.0010714948, + 0.005380542, + -0.003986883, + 0.004575529, + 0.016252993, + -0.0014047956, + 0.011149272, + 0.004890534, + -0.013058394, + 0.0030991414, + 0.004336889, + 0.0004912012, + -0.013338399, + -0.018060295, + -0.00969834, + 0.01277839, + -0.005412361, + -0.0020395787, + -0.0045691654, + -0.0026123154, + 0.007808309, + -0.005173721, + -0.011970195, + 0.00818377, + -0.0029798213, + 0.00823468, + -0.0044577997, + -0.013656586, + -0.0041237036, + -0.007922856, + 0.0052500856, + 0.012186563, + 0.00729921, + -0.0033664184, + -0.0088901445, + -0.003153233, + -0.00062603294, + 0.012148379, + 0.0018407118, + -0.0140256835, + 0.013338399, + -0.0015209338, + 0.013732951, + -0.0065737437, + 0.02621861, + 0.009819251, + -0.0028095911, + 0.0032677804, + 0.00901742, + -0.012307473, + 0.0055714543, + -0.0023307197, + 0.002744363, + 0.0022591278, + 0.006195101, + 0.00195685, + -0.0020618518, + -0.0010269486, + 0.024780404, + 0.0020968523, + 0.0045691654, + -0.0039996104, + -0.0030514135, + -0.0016704818, + -0.0010269486, + 0.027669542, + 0.004069612, + -0.0045882566, + 0.0042127958, + 0.006191919, + 0.008463774, + 0.006930113, + -0.0030768684, + -0.010156529, + -0.0008686505, + 0.008043767, + -0.0025836783, + -0.006246011, + 0.0035668763, + -0.015667528, + 0.00145491, + -0.005262813, + -0.013109305, + -0.014076593, + 0.0084255915, + 0.0008543321, + 0.007719217, + 0.0037259697, + 0.000049816153, + 0.003064141, + -0.011403822, + 0.007808309, + -0.018989401, + 0.0006809202, + -0.006481469, + 0.020427605, + -0.006898294, + -0.007076479, + -0.005262813, + -0.011162, + -0.009074694, + -0.003449147, + -0.009571065, + 0.0048364424, + -0.0041523403, + -0.010512899, + -0.0141656855, + -0.007922856, + -0.0009060375, + 0.011359276, + -0.015005699, + -0.0028684558, + 0.0038755178, + 0.0016060489, + 0.012383838, + -0.0007282505, + 0.0045150737, + 0.0027618632, + -0.0068155658, + 0.005663729, + 0.0033918736, + -0.00074654625, + 0.003872336, + -0.003773698, + 0.0018932127, + 0.001960032, + 0.008871053, + -0.0012647933, + -0.0027857271, + -0.0015193429, + 0.0045150737, + -0.006529197, + -0.017703924, + 0.0022702643, + 0.0108183585, + -0.010131074, + -0.018340299, + 0.0055237263, + 0.002814364, + 0.004476891, + 0.010901087, + 0.004775987, + -0.0039741555, + -0.00009182678, + -0.0012910437, + 0.0016577543, + -0.0070382967, + -0.000727455, + 0.009978345, + -0.012205654, + -0.014789332, + -0.0015002517, + 0.0029241384, + 0.001641845, + -0.007661943, + 0.0020093508, + -0.0039550643, + -0.006707382, + -0.0053964513, + 0.0070128418, + 0.005686002, + 0.0028461828, + -0.000788706, + 0.0008956964, + -0.0062778294, + -0.0003583581, + -0.025747692, + 0.010971088, + -0.009742886, + -0.022616733, + -0.013847498, + 0.00056478195, + 0.010805631, + 0.0084065, + -0.00053892925, + -0.0053232685, + -0.0034364196, + 0.0031420966, + 0.008902872, + 0.0032280071, + 0.005460089, + -0.005504635, + -0.0011311548, + 0.012899301, + 0.0010778585, + -0.013013848, + -0.0030800502, + 0.0039073364, + -0.00071075023, + 0.0009314924, + -0.0077001257, + 0.008699233, + 0.0027905, + 0.007719217, + 0.01585844, + -0.0018279843, + 0.008037403, + -0.004871443, + 0.0143056875, + -0.017703924, + -0.012765663, + 0.00032455075, + 0.006809202, + 0.01106018, + 0.0046837125, + -0.005288268, + -0.015667528, + -0.0016155945, + 0.0066182897, + -0.006834657, + -0.010538354, + 0.0045723473, + -0.0030720956, + -0.00792922, + -0.014802059, + -0.009806523, + -0.002300492, + -0.009539247, + -0.01424205, + -0.011932013, + -0.0059405514, + 0.0012822936, + -0.0016752545, + -0.0077255806, + -0.0030370948, + -0.015451161, + 0.008247407, + -0.0043432526, + -0.010162893, + 0.0012600205, + -0.009259242, + -0.0007727967, + -0.0054950896, + 0.0057210024, + 0.009488337, + 0.004040975, + -0.0063860132, + -0.0073755747, + -0.003627332, + -0.012460203, + -0.006370104, + 0.0016466178, + 0.009768341, + 0.0038850633, + -0.011747465, + -0.004674167, + -0.0046550757, + 0.00030804478, + -0.013223852, + 0.012975666, + -0.0050305366, + -0.009456518, + 0.003961428, + -0.007719217, + 0.0017086642, + 0.0019966234, + 0.011575643, + -0.0077001257, + -0.0018009384, + 0.0045914385, + -0.0032582348, + 0.0051291743, + -0.0042000683, + -0.0061855554, + 0.006783747, + 0.014916606, + -0.012460203, + -0.000031271815, + -0.0021923084, + -0.008196497, + 0.00084240007, + -0.010251985, + -0.00032912468, + -0.01100927, + -0.0012305882, + 0.0029050473, + -0.010512899, + 0.008737415, + 0.018391209, + 0.023660386, + 0.0024054938, + 0.0023402653, + 0.013249307, + 0.017754834, + 0.015222066, + 0.0051864483, + -0.00091240124, + 0.0039041545, + -0.0046582576, + 0.008991965, + -0.017551195, + 0.005600091, + 0.011849284, + 0.0018327571, + 0.004734623, + 0.010302895, + 0.0023418562, + -0.0052469037, + 0.005730548, + 0.0006968295, + -0.010595627, + -0.0017070733, + -0.005577818, + 0.0076873978, + 0.006220556, + -0.0025550416, + 0.018709395, + 0.0076428517, + -0.004025066, + 0.002376857, + 0.018976673, + -0.0015511616, + 0.0065482883, + -0.0053932695, + -0.0026075426, + 0.0073501198, + 0.009061966, + -0.006637381, + -0.0011056998, + 0.0022193543, + 0.0063001025, + 0.00005269972, + 0.0024325396, + 0.004756896, + -0.01219929, + 0.0050273547, + 0.013949318, + 0.0010508125, + 0.0027459539, + -0.0026489068, + 0.0068410207, + 0.0046168934, + 0.009914707, + -0.00042279097, + -0.0066946545, + 0.0132365795, + -0.009227423, + -0.0027364083, + -0.0027714088, + -0.0041714315, + 0.011149272, + -0.007057388, + 0.003795971, + -0.01636754, + -0.01318567, + 0.003719606, + 0.0061314637, + -0.0033886915, + 0.007471031, + -0.005876914, + 0.013758406, + 0.00076762616, + -0.017703924, + -0.0100038, + 0.008622868, + -0.02327856, + -0.0027539085, + -0.010398352, + 0.00934197, + -0.002421403, + 0.0014970698, + -0.012733844, + 0.0038659722, + 0.004915989, + -0.0096347025, + 0.0022352636, + 0.016532997, + 0.0054282704, + -0.011512006, + -0.012511113, + -0.004085521, + -0.002002987, + 0.003627332, + -0.0063860132, + -0.0015829804, + -0.011906558, + -0.012313837, + 0.0038882452, + 0.007413757, + 0.01075472, + -0.0017563923, + 0.0023100376, + -0.0030466407, + -0.012562023, + 0.013465674, + -0.0029686848, + 0.004260524, + -0.016151173, + -0.022400364, + -0.0031945975, + 0.003840517, + 0.004260524, + 0.0018534393, + 0.009666521, + -0.008514685, + -0.016443904, + 0.000086159074, + -0.004820533, + -0.0038055165, + 0.026498614, + -0.019116675, + 0.005043264, + 0.022718553, + 0.0050591733, + 0.011582007, + 0.0023800388, + -0.0009569474, + 0.00011574052, + -0.0012313836, + 0.0005516567, + -0.010869268, + -0.014369325, + -0.0070128418, + -0.009074694, + 0.012695662, + 0.009800159, + 0.013694769, + 0.01863303, + 0.011276548, + 0.0030148218, + 0.0051514474, + -0.0051482655, + 0.0018677578, + 0.011696554, + 0.0036018768, + -0.0052946317, + 0.014636602, + 0.006090099, + -0.009571065, + 0.014420235, + 0.013885681, + 0.011454732, + -0.002278219, + 0.001078654, + 0.020427605, + 0.016825728, + 0.0017038914, + 0.0075537595, + -0.0030370948, + -0.021700354, + 0.00047648503, + 0.0007851264, + 0.006662836, + -0.0053964513, + 0.005536454, + -0.006220556, + 0.012918392, + 0.00005001502, + -0.0067582917, + -0.002567769, + -0.008196497, + -0.0035573307, + -0.000569157, + -0.010207439, + -0.00524054, + -0.0004963717, + 0.0056160004, + 0.013669314, + -0.003353691, + 0.010296531, + -0.014000228, + 0.010391988, + 0.0069619315, + -0.008584686, + -0.00871196, + 0.013274762, + -0.006484651, + 0.006930113, + 0.0020188966, + -0.008896508, + -0.0057369117, + -0.0005675661, + -0.0017563923, + 0.011244728, + 0.00573373, + 0.018442119, + -0.0037673342, + 0.0040187016, + 0.0047028037, + 0.0045150737, + 0.000954561, + 0.00062006694, + 0.009602884, + 0.012549295, + 0.00093706074, + -0.0035636944, + -0.011989286, + -0.0075537595, + 0.018060295, + 0.0046168934, + 0.0110983625, + -0.012918392, + -0.0016895729, + 0.0073819384, + 0.014407507, + -0.0015010472, + 0.0017357101, + 0.0025884514, + 0.016392995, + -0.0009871752, + 0.013592949, + -0.010156529, + -0.0023657205, + 0.0028970926, + -0.0108883595, + -0.0027029987, + -0.011091999, + 0.0070382967, + 0.0103538055, + 0.00033170995, + -0.0067964746, + 0.015285703, + 0.007954675, + -0.018200297, + 0.0045246193, + -0.0103092585, + -0.0061155544, + 0.004995536, + 0.0062555564, + -0.008298317, + -0.008050132, + -0.0019138948, + 0.010595627, + 0.0022193543, + -0.0073373923, + -0.0022909464, + 0.009781068, + 0.015247521, + -0.009914707, + 0.0066691996, + 0.014203868, + -0.009819251, + 0.014852969, + 0.030698681, + 0.0033345998, + 0.0038309714, + -0.004260524, + -0.0005055196, + -0.0009410381, + 0.017309373, + 0.009539247, + 0.0008789916, + 0.0017293463, + -0.011257456, + 0.00041921137, + 0.00906833, + -0.01247293, + -0.0035096027, + 0.013160215, + -0.0012512704, + -0.0069173854, + -0.010449261, + 0.0016171854, + -0.0060837353, + -0.0017118461, + 0.01126382, + -0.006322376, + -0.003986883, + -0.022985829, + -0.004040975, + 0.0108883595, + -0.0014899106, + 0.0015941169, + -0.0056446376, + 0.011524733, + -0.002378448, + -0.009386516, + -0.007967402, + 0.006347831, + 0.002965503, + -0.0078019453, + -0.0051514474, + -0.0035859675, + -0.0027379992, + -0.0018550302, + -0.016278448, + 0.0010691084, + 0.010461989, + -0.006287375, + 0.018098477, + 0.0015861623, + -0.0057591847, + -0.0117029175, + -0.008476501, + -0.00063716946, + -0.0027220899, + -0.006217374, + 0.013211125, + 0.011136545, + -0.01757665, + 0.012695662, + -0.00479826, + 0.0022814008, + -0.00301164, + 0.0117029175, + 0.006039189, + 0.008374682, + -0.0011924058, + -0.0027029987, + 0.006096463, + 0.010092892, + 0.0006057485, + -0.005062355, + -0.0036082405, + 0.011041089, + -0.0067137456, + -0.00017639493, + 0.0111683635, + 0.011671099, + -0.0018248025, + 0.0049637174, + 0.002176399, + 0.0008344454, + 0.007922856, + 0.006370104, + 0.0040537026, + -0.0041491585, + 0.0089601455, + 0.003251871, + -0.0050782645, + 0.00025196435, + -0.0020236694, + -0.0026950438, + 0.003449147, + 0.0044418904, + 0.0014930925, + 0.009946526, + 0.0078910375, + -0.00709557, + -0.0030657318, + 0.0114929145, + 0.00035815925, + 0.014611147, + 0.0029225475, + 0.016189355, + 0.0014453644, + -0.00006905652, + -0.01277839, + 0.003598695, + 0.0077510355, + 0.00054966804, + -0.0012934302, + 0.011454732, + 0.0034555108, + 0.005463271, + -0.0061091906, + -0.013071122, + -0.0014000228, + 0.008272862, + -0.005654183, + -0.009437427, + 0.019931234, + 0.0014994562, + 0.0055905455, + -0.005749639, + 0.00787831, + -0.024780404, + -0.0053869057, + 0.00065944256, + 0.0040155197, + -0.0058069127, + 0.0013674087, + -0.0077319443, + -0.0120274685, + 0.00016197708, + -0.0035796037, + -0.012511113, + 0.0033377816, + -0.014929334, + -0.0026743617, + -0.0014238869, + 0.00049080345, + -0.009653794, + 0.004919171, + -0.0021429895, + -0.009437427, + -0.0039137, + 0.0053741783, + -0.016711181, + -0.01464933, + 0.0016784364, + -0.0026568614, + -0.009443791, + -0.0043432526, + -0.010710174, + -0.0017484375, + 0.006172828, + 0.0084955925, + -0.0010563808, + -0.0069555677, + 0.012835664, + 0.00039972243, + -0.01909122, + -0.015247521, + -0.004250978, + 0.0107038105, + -0.0038818815, + -0.0062937387, + 0.0035764219, + -0.012256564, + -0.0039741555, + -0.011868375, + -0.01691482, + 0.0036814236, + -0.0056669107, + -0.003350509, + 0.004476891, + -0.0064082863, + -0.0136311315, + -0.00041523404, + 0.0010181984, + -0.012008377, + -0.010716538, + 0.00911924, + -0.005062355, + 0.015489344, + 0.014929334, + 0.002303674, + -0.010907451, + 0.00995289, + -0.0028827742, + -0.004779169, + 0.009844705, + 0.0000121743815, + 0.0017691198, + 0.013312944, + 0.014140231, + -0.001859803, + -0.006392377, + -0.0015217293, + -0.00027622608, + -0.0014397962, + 0.007738308, + 0.00037546066, + -0.008527412, + 0.011906558, + -0.014382052, + -0.004260524, + 0.0018677578, + -0.0024118575, + 0.009208332, + -0.0052532675, + 0.013402036, + 0.0076746703, + 0.021140344, + -0.012103833, + -0.0039964286, + 0.0002804023, + -0.0032868718, + -0.0017309373, + -0.0038277896, + -0.007235572, + 0.0036814236, + -0.0034873295, + -0.01985487, + -0.0044450723, + 0.00813286, + -0.00518963, + 0.007369211, + -0.009475609, + 0.0054759984, + -0.00046534848, + -0.007999221, + -0.014929334, + -0.005090992, + -0.007712853, + -0.0013204761, + 0.0025025408, + 0.0029225475, + 0.006239647, + 0.0026377703, + 0.0036909692, + 0.010251985, + -0.010022891, + 0.012205654, + -0.007910129, + 0.017182099, + 0.007852855, + -0.0070701153, + -0.011671099, + -0.0023291288, + -0.00041642724, + -0.01747483, + 0.0059850975, + 0.014140231, + 0.0073055737, + -0.005701911, + 0.017334828, + 0.0011558143, + 0.017054824, + 0.00026508953, + 0.001162178, + 0.007585578, + 0.0039264276, + -0.008444683, + -0.0014596828, + -0.024920406, + 0.002986185, + 0.012307473, + 0.003205734, + 0.0034714201, + 0.0050973557, + 0.009112876, + 0.0068473844, + -0.013109305, + -0.009036511, + 0.00063955586, + -0.017143916, + 0.011448368, + -0.005679638, + -0.0005739298, + 0.019027583, + 0.012390202, + 0.0015797984, + -0.0036400594, + 0.005259631, + -0.008921963, + -0.011041089, + 0.0012138834, + 0.00563191, + 0.0013387718, + -0.00906833, + 0.004231887, + 0.00040926802, + 0.016723908, + 0.0020379878, + 0.007121025, + 0.0029718666, + -0.008120133, + 0.005485544, + -0.002941639, + 0.009055602, + 0.00023108331, + -0.013822043, + -0.0054950896, + 0.01199565, + 0.0037418792, + 0.009303788, + -0.0029352752, + -0.0005150652, + 0.0038500628, + 0.0052087214, + -0.017602105, + -0.0071146614, + 0.0013403627, + -0.00592146, + -0.0110983625, + 0.012892937, + -0.00563191, + 0.009711067, + -0.0028732286, + 0.017945748, + -0.0019441226, + -0.0074264845, + 0.0055396357, + -0.0010221758, + -0.017105734, + 0.009475609, + -0.009571065, + -0.012937483, + 0.009577429, + 0.005946915, + -0.0095647015, + -0.019002128, + -0.0018916217, + -0.0053169047, + 0.0020698064, + -0.009933799, + 0.002863683, + 0.007630124, + 0.018773032, + -0.015972987, + -0.0019043492, + 0.0002996924, + 0.0034236922, + 0.0020713974, + -0.012676571, + 0.0023673114, + -0.0023673114, + -0.0021970812, + -0.0072864825, + 0.0006510902, + 0.0077701267, + -0.011836557, + -0.011671099, + 0.0009951298, + 0.0012870664, + -0.0036336957, + 0.0035668763, + 0.004938262, + -0.014751149, + 0.008578322, + 0.013007484, + 0.0015344569, + -0.016036624, + -0.0040568844, + -0.00036412524, + 0.0032423255, + 0.0066246535, + -0.011970195, + 0.009074694, + -0.002154126, + -0.013363854, + 0.0054728165, + 0.0024357215, + -0.009138331, + -0.0013475219, + 0.00046813264, + 0.0135165835, + 0.005339178, + -0.0030418676, + -0.009800159, + -0.021636717, + 0.011505642, + -0.0049446262, + -0.0036305138, + 0.0068473844, + -0.007661943, + -0.0054505435, + 0.013694769, + -0.016062079, + -0.0028907289, + -0.005288268, + -0.0021398077, + -0.006809202, + -0.0014493418, + -0.007490122, + -0.004699622, + 0.009106512, + -0.0023927663, + -0.0039327913, + -0.0037005148, + -0.012581114, + -0.012676571, + 0.0012393384, + 0.0022925374, + 0.010061073, + 0.0054696347, + -0.0074201208, + 0.0073310286, + 0.0059405514, + 0.004263706, + -0.012135652, + -0.004505528, + -0.008883781, + -0.008673778, + 0.00262027, + 0.015502071, + 0.009036511, + -0.006411468, + -0.006195101, + -0.0033155086, + -0.0020109417, + 0.008591049, + -0.00033071561, + 0.001420705, + -0.01868394, + 0.003646423, + 0.0026473159, + -0.0031389147, + -0.0029320933, + -0.0032645985, + -0.008724688, + -0.010296531, + -0.0053869057, + -0.021280346, + 0.008743779, + 0.014216595, + -0.009831978, + 0.0050019, + -0.0066882907, + 0.0079610385, + -0.0020682155, + 0.014382052, + 0.006529197, + -0.0043941624, + 0.0020236694, + -0.0009251287, + -0.013656586, + 0.00093467435, + -0.0070828428, + -0.0055619087, + -0.012428384, + 0.0046868944, + 0.0024579945, + -0.008202861, + -0.00924015, + 0.0078019453, + 0.0032232343, + 0.003646423, + 0.005899187, + 0.0032375527, + 0.003500057, + -0.0032232343, + 0.02929866, + 0.0027379992, + 0.0069873864, + -0.00013900794, + -0.0095647015, + -0.010054709, + -0.006732837, + -0.007318301, + -0.0120974695, + 0.007191026, + -0.017653015, + 0.00239913, + -0.01219929, + 0.018874854, + 0.013198397, + 0.009488337, + 0.008342863, + 0.0032439164, + -0.00055444083, + 0.012326565, + -0.011435641, + 0.006809202, + 0.0066437447, + -0.00036571617, + 0.011002907, + -0.00070597744, + -0.0009935389, + -0.017067552, + -0.017309373, + -0.0039550643, + 0.015171156, + 0.00974925, + 0.0041937046, + 0.006771019, + -0.007630124, + -0.007477395, + 0.004161886, + -0.001272748, + -0.009685612, + -0.004976445, + 0.010271076, + 0.009144695, + 0.0017579832, + 0.009176513, + -0.009577429, + 0.0008105814, + 0.014522055, + 0.000010769884, + -0.0073501198, + 0.015018427, + 0.004620075, + 0.018951219, + 0.013109305, + -0.009946526, + -0.002103216, + 0.0066755633, + 0.008527412, + 0.0009155831, + 0.012231109, + -0.015031154, + 0.0019234404, + -0.014471144, + -0.0023275379, + 0.0071401163, + 0.0052055395, + -0.00290982, + -0.0140256835, + -0.0005938165, + 0.0120274685, + -0.009170149, + -0.0045437105, + 0.0067455643, + -0.012676571, + -0.003452329, + -0.00007010058, + -0.0070446604, + 0.00699375, + -0.011715645, + -0.0051514474, + 0.015412979, + 0.014585692, + 0.0058323676, + -0.0050750826, + 0.008024676, + 0.002004578, + -0.012746572, + -0.006290557, + -0.0062491926, + 0.00039793263, + 0.016838456, + -0.015209339, + -0.006433741, + -0.015476616, + 0.0053041773, + 0.00513872, + 0.006828293, + -0.013274762, + -0.00038122782, + 0.003083232, + -0.011575643, + -0.009151058, + 0.0011796784, + 0.0027093624, + 0.002644134, + -0.004110976, + -0.005635092, + 0.011524733, + -0.0003386703, + -0.005797367, + 0.011620189, + -0.0077764904, + 0.002911411, + -0.0120974695, + -0.013351127, + -0.0058387313, + 0.003280508, + -0.014127503, + -0.00592146, + -0.0022416275, + 0.017360283, + -0.005845095, + -0.005727366, + 0.010983815, + 0.018403936, + -0.0027586813, + 0.00493508, + -0.010213803, + 0.0015328659, + 0.0060773715, + -0.0050559915, + 0.009259242, + 0.0060932813, + 0.006513288, + -0.011244728, + 0.01199565, + -0.004919171, + 0.0055014533, + 0.000336085, + 0.0064941966, + -0.005848277, + 0.017169371, + -0.008463774, + -0.010073801, + 0.00020562836, + 0.0026377703, + -0.009812887, + 0.0016203673, + 0.0032677804, + -0.015934804, + 0.015616618, + 0.010595627, + 0.00954561, + 0.008871053, + -0.006322376, + -0.01293112, + 0.0005150652, + -0.0041014305, + 0.01027744, + 0.00357324, + -0.0033123267, + 0.004874625, + -0.0042191595, + -0.015362068, + 0.005040082, + -0.0027029987, + -0.0028732286, + -0.0065228334, + -0.0020538971, + 0.005803731, + 0.012848391, + -0.0008551276, + -0.0055905455, + 0.0015933214, + -0.014916606, + -0.0030211855, + 0.014178413, + -0.011002907, + 0.006045553, + -0.014063866, + -0.006042371, + -0.0060137343, + -0.0062269196, + -0.0023418562, + -0.008260135, + -0.0002221343, + 0.009730158, + 0.0062301015, + 0.009558338, + 0.008851962, + -0.01083745, + 0.012810209, + -0.00057194114, + 0.021891266, + -0.009112876, + 0.0027507266, + -0.0057655484, + 0.007922856, + 0.0029798213, + -0.00026131107, + -0.0050082635, + 0.015082064, + 0.0008956964, + -0.025213137, + 0.014331142, + -0.0056700925, + 0.010716538, + -0.014483873, + -0.002814364, + 0.0021143525, + 0.0011534279, + 0.013198397, + -0.014751149, + -0.00011613825, + 0.0047218953, + -0.0065801074, + -0.001480365, + -0.0019775322, + 0.0127020255, + -0.010385624, + 0.008724688, + 0.014789332, + -0.0026839073, + -0.0032709623, + -0.0045628017, + 0.0001287663, + -0.011270184, + 0.0017452557, + -0.0045023463, + 0.0062746475, + -0.014763877, + -0.00030804478, + -0.010092892, + 0.0013347944, + -0.0012902482, + -0.00073700066, + 0.010894723, + -0.002718908, + 0.004626439, + 0.0057655484, + 0.014776604, + -0.003033913, + 0.0011080862, + -0.0001561105, + -0.0073819384, + 0.0041046124, + -0.011785647, + -0.008654687, + -0.0023911754, + 0.008578322, + 0.008979238, + 0.004133249, + 0.0056987293, + -0.007973766, + -0.008164679, + -0.007369211, + 0.00072546635, + -0.0038246077, + -0.013147487, + 0.0031150507, + 0.002862092, + -0.0050369003, + -0.007757399, + -0.0025614053, + -0.011664735, + -0.0075792144, + -0.009946526, + 0.0049064434, + -0.0017182098, + 0.0071146614, + 0.006258738, + -0.00017828416, + 0.00798013, + 0.011601098, + 0.00042438193, + -0.0016863911, + -0.0042446144, + 0.011181091, + 0.01172201, + -0.004995536, + -0.003010049, + 0.0015957078, + -0.01944759, + 0.012110197, + 0.011804738, + 0.011556552, + 0.0064782873, + -0.01495479, + -0.0068919305, + -0.027440447, + 0.007808309, + -0.005418725, + 0.005355087, + 0.010601991, + -0.011906558, + 0.0007612624, + -0.0016800273, + 0.0051800846, + 0.00051069015, + 0.0021461714, + 0.0005098947, + -0.017971203, + 0.0022479913, + -0.0016927548, + 0.00055125897, + 0.008018312, + 0.011925649, + 0.0076428517, + -0.0006646131, + 0.0061855554, + 0.011817466, + 0.0067582917, + -0.0058355494, + -0.0030736865, + 0.008521048, + -0.0010834268, + 0.0066691996, + -0.009895616, + -0.0068473844, + 0.018722123, + 0.014751149, + -0.02035124, + 0.021153072, + 0.0050146272, + -0.0083555905, + -0.008368318, + 0.020071236, + 0.012542931, + 0.004871443, + 0.0010014935, + 0.0053709964, + 0.010792903, + 0.003983701, + -0.004995536, + 0.0080310395, + 0.006061462, + 0.0048300787, + 0.002080943, + 0.014980244, + 0.005288268, + -0.008552867, + 0.0041777953, + 0.013605677, + 0.0069810227, + 0.009908344, + 0.0033600547, + -0.002473904, + 0.0073055737, + 0.00052540627, + -0.010417443, + 0.005708275, + -0.013096577, + 0.0020888976, + 0.0035636944, + 0.00030705045, + -0.0007787627, + 0.0005269972, + 0.0077255806, + -0.0010897905, + 0.00301164, + 0.00057313434, + -0.0034141466, + 0.0024627673, + 0.005654183, + 0.0014572964, + -0.0098892525, + 0.004155522, + 0.00097524317, + 0.002768227, + -0.015260248, + 0.011798374, + -0.015782075, + -0.008266498, + -0.002814364, + -0.021178527, + 0.0023832207, + 0.018327571, + 0.0032184615, + -0.001150246, + -0.006529197, + -0.014471144, + 0.013465674, + -0.013211125, + -0.02217127, + -0.0036400594, + -0.031945974, + -0.0064464686, + 0.0010619491, + -0.0021636717, + 0.006188737, + -0.012288382, + -0.020771248, + -0.008616504, + 0.0028811833, + 0.001420705, + -0.0062110103, + -0.0034841476, + -0.004110976, + 0.0075728507, + 0.0038309714, + 0.0030673228, + -0.0064496505, + -0.00058188447, + -0.0082855895, + -0.00328369, + -0.0016155945, + 0.011734737, + 0.0072101173, + 0.007757399, + -0.0062555564, + 0.0039773374, + -0.00929106, + -0.0031659608, + 0.026524069, + -0.015311158, + 0.0046614395, + -0.007636488, + 0.017487558, + -0.0005468839, + -0.015234794, + -0.0047664414, + 0.008673778, + 0.008934691, + -0.00031838586, + 0.023265833, + -0.009590156, + 0.006096463, + -0.0047155316, + 0.014522055, + 0.008635595, + 0.0058514588, + -0.0072419364, + 0.003033913, + 0.007165571, + -0.0053869057, + 0.006707382, + -0.0026759526, + -0.012460203, + 0.0062110103, + -0.0120274685, + 0.015616618, + -0.015616618, + -0.0037991528, + -0.005269177, + 0.006246011, + 0.0016672999, + 0.00007949703, + -0.011015634, + 0.009348334, + 0.0011088817, + -0.015540253, + -0.0069364766, + 0.00876287, + 0.0017118461, + 0.008571958, + 0.0056891837, + -0.0070828428, + -0.00974925, + 0.0015734347, + 0.0065991986, + -0.0037514248, + -0.0010563808, + 0.014089321, + -0.0011192227, + -0.007941947, + -0.007757399, + -0.003550967, + -0.0059437333, + -0.005841913, + 0.0027761816, + 0.0039932467, + 0.0045214375, + 0.010748357, + 0.015972987, + -0.005876914, + 0.016303902, + -0.0009569474, + 0.007566487, + 0.013656586, + -0.010156529, + 0.008769234, + 0.010614718, + 0.0067646555, + -0.00954561, + 0.0039964286, + 0.0018216206, + 0.013147487, + -0.010041982, + -0.013096577, + 0.018174842, + -0.006242829, + -0.0089601455, + 0.0053487234, + 0.011378367, + 0.004938262, + -0.0021477623, + 0.004995536, + -0.013147487, + -0.012746572, + -0.010468353, + -0.00573373, + -0.006443287, + -0.00524054, + -0.001221838, + 0.0036623324, + 0.00068648846, + -0.0065228334, + 0.006631017, + 0.012192926, + 0.0029925487, + -0.01702937, + -0.007477395, + 0.00018693486, + -0.0012242245, + 0.008807416, + 0.011499278, + -0.0069619315, + -0.011652008, + -0.0011613825, + -0.0056096367, + 0.007617397, + -0.009787432, + 0.011289275, + -0.0064973785, + 0.0051228106, + 0.0013228625, + -0.00016197708, + 0.007025569, + -0.0076746703, + -0.011053816, + -0.0006216579, + -0.0014191141, + -0.015094792, + 0.008094678, + 0.00055205444, + -0.0005440998, + -0.0051514474, + -0.0036146042, + -0.011671099, + -0.0116329165, + -0.011524733, + 0.0049096253, + -0.004530983, + 0.0034109647, + 0.010862905, + 0.012078378, + 0.009329243, + 0.00866105, + -0.0031755064, + 0.004336889, + 0.00513872, + -0.0033727821, + 0.00005712451, + -0.010640173, + -0.014012955, + 0.012021105, + 0.004581893, + 0.011671099, + 0.0055396357, + -0.0043750713, + -0.00054250885, + 0.008597413, + 0.0029989125, + 0.0073819384, + -0.009526519, + 0.008972874, + -0.009628339, + -0.017971203, + -0.0034650564, + 0.0041459766, + 0.011594734, + 0.005657365, + -0.018900309, + -0.01772938, + -0.01121291, + -0.01974032, + -0.013325672, + 0.0012202471, + 0.00085115025, + -0.021929448, + 0.012052923, + -0.0043655257, + -0.0011955877, + -0.0061155544, + -0.021356711, + 0.00881378, + 0.0025820874, + 0.01169019, + -0.009061966, + 0.004600984, + -0.0033345998, + -0.0034841476, + 0.0014230914, + 0.0027586813, + -0.009411971, + -0.0042573423, + 0.0006502947, + 0.00022531617, + 0.0057910034, + -0.015527526, + -0.0067201094, + -0.00406643, + 0.0035382395, + 0.012428384, + -0.0033791459, + 0.010086528, + 0.0053932695, + 0.010156529, + 0.016647544, + -0.020593062, + -0.008247407, + -0.0044928007, + -0.003840517, + 0.008196497, + 0.0007779672, + 0.005686002, + 0.010461989, + 0.020618517, + 0.006128282, + -0.017207554, + -0.0022607187, + 0.003646423, + 0.001442978, + -0.0076237605, + -0.016838456, + -0.0015678664, + 0.02504768, + -0.006417832, + 0.013503856, + 0.008775597, + -0.00006140015, + -0.008832871, + 0.0010388806, + -0.01439478, + 0.000052451138, + -0.010366533, + 0.013618404, + 0.020414878, + 0.0068728393, + 0.0077510355, + -0.007541032, + 0.005953279, + -0.016927548, + 0.004556438, + -0.0073119374, + 0.003108687, + -0.00045262103, + 0.003595513, + -0.007630124, + -0.006510106, + -0.004311434, + 0.0050750826, + -0.00037725046, + -0.0031691426, + 0.007846491, + 0.014738422, + -0.011804738, + -0.009711067, + 0.00044387087, + -0.002079352, + 0.024487672, + -0.00059779384, + 0.0030020943, + 0.012803845, + 0.009774704, + -0.0051196287, + -0.0015328659, + 0.00043273432, + 0.00066063576, + 0.006732837, + 0.0038850633, + 0.010640173, + -0.0013029758, + -0.009844705, + -0.01257475, + 0.0115629155, + 0.0025248139, + -0.007362847, + -0.003795971, + 0.0039964286, + 0.002004578, + 0.0017595742, + 0.012390202, + -0.011715645, + -0.0088901445, + -0.0023529928, + -0.0037768797, + 0.0034332378, + -0.009711067, + -0.012409293, + -0.015947532, + 0.0019138948, + 0.008120133, + 0.0027379992, + 0.012154743, + -0.0011749055, + 0.0007918879, + 0.013249307, + -0.0006785338, + 0.013402036, + 0.0052787224, + 0.0075346683, + -0.009539247, + -0.0063573765, + -0.007566487, + 0.008126496, + -0.007560123, + 0.023253106, + -0.00023028784, + 0.013452946, + -0.0076237605, + 0.00028497624, + -0.0016108217, + 0.008190134, + -0.0001962816, + -0.0074010296, + -0.004489619, + 0.006147373, + -0.009831978, + -0.011505642, + 0.006191919, + -0.00097285677, + -0.009081057, + 0.0022209452, + -0.005800549, + -0.00074773945, + 0.013338399, + -0.0012377475, + -0.0036018768, + 0.004527801, + -0.005581, + -0.005752821, + 0.0015734347, + -0.007515577, + -0.007477395, + 0.007000114, + -0.00028199324, + 0.009481973, + -0.01053199, + -0.007681034, + -0.0032614167, + -0.004400526, + 0.018251207, + -0.008629232, + 0.008769234, + -0.009666521, + 0.0069364766, + -0.003916882, + 0.0023720842, + 0.012542931, + -0.004260524, + -0.006751928, + -0.007324665, + 0.0028032274, + -0.0077510355, + -0.008629232, + -0.0066755633, + 0.0030673228, + -0.012358383, + -0.014012955, + -0.000186736, + -0.0008662641, + 0.0040314295, + -0.0039264276, + -0.014852969, + -0.019103948, + -0.010932906, + -0.010290167, + -0.0028461828, + 0.011302003, + 0.0072864825, + -0.009742886, + 0.0084955925, + -0.008323772, + -0.012129288, + 0.0024102665, + 0.002599588, + -0.0105829, + 0.004009156, + -0.00079467206, + -0.011830193, + -0.0050019, + -0.009074694, + 0.0034650564, + 0.010105619, + 0.01762756, + -0.0016863911, + 0.0009251287, + -0.00537736, + 0.010710174, + -0.0137711335, + 0.004581893, + -0.013083849, + 0.011480187, + -0.006436923, + 0.004750532, + -0.009965617, + -0.0048841704, + -0.0016609362, + -0.0014334325, + 0.011085635, + -0.008470138, + -0.0039805193, + 0.009138331, + -0.0050114454, + 0.011270184, + -0.008412864, + -0.008463774, + -0.0008368318, + -0.0022464003, + -0.0020284422, + -0.011346549, + -0.0033696003, + -0.0020968523, + -0.007871946, + 0.008972874, + 0.0019457135, + 0.009265605, + -0.0035923312, + 0.0046868944, + 0.008616504, + -0.00004389986, + -0.0011470641, + -0.0024723131, + 0.004620075, + 0.0070128418, + 0.01053199, + 0.003939155, + 0.0024373124, + -0.003331418, + 0.0067201094, + 0.00073580747, + 0.0032439164, + 0.012402929, + 0.021076707, + -0.029578663, + 0.001051608, + -0.0022416275, + -0.002252764, + -0.001980714, + 0.010487444, + 0.0031245963, + 0.0145602375, + -0.009163786, + 0.0036877873, + 0.00034304537, + -0.0010953587, + 0.014127503, + 0.004992354, + -0.0057623666, + -0.014000228, + -0.004429163, + -0.011728373, + -0.005845095, + 0.0008821735, + 0.0023545837, + 0.011079271, + -0.007897401, + 0.012078378, + 0.0017245736, + -0.00073819386, + 0.0006196692, + 0.012415657, + 0.013262034, + -0.007515577, + 0.0055873636, + -0.01813666, + 0.0021604898, + 0.0135165835, + 0.000014007685, + -0.022043996, + -0.022311272, + -0.0075983056, + -0.0010587672, + -0.0032709623, + -0.0035223302, + 0.0011088817, + 0.000388387, + 0.01570571, + 0.0033791459, + -0.0025932242, + 0.00911924, + 0.01853121, + 0.0034714201, + 0.0022352636, + 0.0021620807, + 0.0026950438, + 0.010652901, + 0.005701911, + -0.0016171854, + 0.010092892, + -0.0021716263, + 0.0033186905, + -0.0072292085, + 0.0068855667, + -0.0084255915, + 0.014152958, + 0.014356597, + 0.0052341763, + 0.010054709, + 0.0023132195, + -0.012205654, + 0.0111683635, + 0.004651894, + -0.022196725, + 0.0005174516, + 0.004165068, + -0.005969188, + 0.0069110217, + -0.001407182, + -0.009023784, + 0.009831978, + 0.0041237036, + 0.008056495, + 0.0056669107, + -0.0016784364, + 0.0008917191, + -0.012695662, + 0.00256936, + 0.00030207878, + 0.00028915243, + 0.013656586, + -0.014814787, + -0.0018502574, + -0.007566487, + 0.012746572, + -0.00071114796, + 0.008915599, + -0.01318567, + -0.0043877987, + 0.0017929837, + 0.005727366, + -0.0064687417, + -0.012110197, + -0.008909236, + -0.010850177, + 0.0015949124, + -0.006513288, + -0.011162, + -0.013198397, + 0.011855648, + 0.0019011673, + -0.0037991528, + -0.0047059855, + 0.0032407346, + -0.009100148, + 0.011817466, + -0.0053009954, + 0.017869381, + -0.014140231, + 0.011321094, + -0.0067201094, + -0.0047441684, + -0.018200297, + -0.007789218, + -0.015934804, + 0.0024595854, + -0.015985714, + 0.005625546, + 0.008921963, + 0.015527526, + -0.0048809885, + -0.011556552, + 0.006121918, + -0.005552363, + 0.007986493, + -0.0016132081, + -0.012313837, + -0.002787318, + -0.0008117746, + 0.0079610385, + 0.010334713, + -0.0011709281, + 0.00592146, + 0.0026568614, + -0.006809202, + -0.005132356, + 0.0007656375, + 0.008686505, + -0.0047378046, + -0.013122032, + 0.010652901, + -0.010939269, + -0.011874739, + -0.00042120003, + 0.009507428, + -0.00093944714, + 0.004133249, + -0.012962938, + 0.012135652, + 0.0037800616, + -0.011448368, + 0.006904658, + 0.0027125443, + -0.00034364196, + -0.0015185474, + 0.0035223302, + 0.006045553, + -0.011919285, + -0.009933799, + 0.0022845827, + -0.009081057, + 0.010869268, + -0.00974925, + -0.008934691, + -0.009112876, + -0.0013355899, + 0.009602884, + -0.02091125, + -0.00021815696, + 0.0019377589, + -0.005635092, + -0.003229598, + -0.012670207, + 0.0033950554, + -0.008896508, + 0.016023897, + 0.002346629, + -0.0007055797, + -0.008807416, + -0.008801052, + 0.0023068557, + 0.009233787, + 0.0055714543, + -0.09499791, + -0.0038818815, + -0.0025295867, + -0.017831199, + 0.009787432, + 0.01393659, + 0.003107096, + -0.011085635, + 0.011302003, + -0.0016784364, + -0.0041046124, + 0.005660547, + -0.015820257, + -0.009278333, + 0.026753163, + -0.0037100604, + 0.015005699, + 0.009004693, + 0.0037577886, + -0.012511113, + -0.006316012, + 0.0072483, + -0.0016832092, + -0.00055802043, + 0.015183884, + 0.0012051333, + -0.0007906947, + -0.0014970698, + -0.0016561634, + 0.0031786882, + -0.019994872, + 0.009259242, + -0.011327458, + -0.009851069, + -0.0022607187, + -0.005094174, + -0.0017229826, + -0.003353691, + -0.013249307, + -0.00010221757, + 0.005485544, + 0.00012329746, + 0.006834657, + -0.0006634199, + -0.0014541146, + -0.016138446, + -0.011664735, + -0.0009720613, + 0.0144456895, + 0.0010468352, + 0.008400137, + 0.0052023577, + -0.0082155885, + 0.005463271, + -0.0013260443, + -0.0024579945, + 0.014929334, + 0.00097603863, + 0.0022639006, + -0.0016370721, + 0.00028080004, + -0.011378367, + 0.0021604898, + -0.0111683635, + 0.002815955, + 0.016087534, + 0.006039189, + 0.0015599118, + 0.00094581087, + 0.02242582, + 0.00469644, + -0.014127503, + -0.004285979, + 0.010073801, + 0.0029161838, + 0.0057846396, + 0.0020698064, + -0.010181984, + 0.006879203, + 0.0042159776, + 0.0020968523, + 0.010875632, + -0.013592949, + 0.0052787224, + 0.011912921, + 0.0074519394, + -0.0114929145, + -0.013198397, + 0.0016092308, + 0.0012568387, + -0.003331418, + 0.003251871, + 0.00656738, + -0.0027459539, + 0.003035504, + -0.0023911754, + 0.0017548014, + -0.007369211, + 0.007719217, + 0.014572965, + -0.0024643582, + 0.0069873864, + 0.002125489, + -0.0001891224, + -0.013211125, + -0.0033186905, + 0.016583906, + -0.0044132536, + 0.008419228, + 0.010092892, + 0.006701018, + -0.007471031, + -0.0056478195, + -0.006930113, + -0.0027364083, + -0.012708389, + 0.008482865, + -0.0077064894, + -0.0051832665, + 0.0025375413, + -0.00022670825, + 0.0012329746, + -0.0058864597, + 0.014012955, + 0.0010691084, + 0.00524054, + -0.013974773, + 0.0039932467, + -0.00033409634, + 0.006751928, + -0.017385738, + 0.012479294, + 0.017843926, + -0.006347831, + 0.0068219295, + -0.013732951, + 0.010080164, + 0.0038532447, + -0.019320315, + 0.0010635401, + 0.0051800846, + -0.007859219, + 0.014662057, + 0.0052978136, + -0.0032184615, + -0.007986493, + 0.0074073933, + -0.0064751054, + -0.0021000342, + -0.004734623, + -0.0014382052, + 0.011607462, + 0.0063541946, + 0.004359162, + -0.005625546, + -0.013274762, + -0.014038411, + 0.011372004, + -0.00034423856, + -0.004604166, + 0.019943962, + -0.013452946, + 0.013198397, + 0.015514798, + -0.00055205444, + -0.002225718, + -0.0018470755, + 0.012447475, + -0.0067201094, + 0.00089410547, + -0.014012955, + 0.003251871, + 0.0061346455, + 0.0022384454, + 0.007744672, + 0.0006144986, + 0.0032677804, + 0.013083849, + -0.0075028497, + 0.009112876, + 0.016698454, + 0.0028827742, + -0.004429163, + 0.00015034336, + 0.0039518825, + 0.01828939, + 0.0066501084, + 0.003694151, + -0.0012894528, + -0.0035414214, + -0.0014795696, + -0.00006662041, + 0.0144456895, + 0.0051705386, + -0.0000645323, + -0.00636374, + 0.0063191936, + -0.013172942, + 0.003990065, + 0.009303788, + -0.008769234, + 0.0017691198, + -0.014089321, + -0.0049796267, + -0.008190134, + -0.004775987, + -0.004359162, + -0.007585578, + -0.0024102665, + -0.003983701, + -0.0027761816, + -0.007521941, + -0.0077255806, + 0.0014254778, + 0.0020888976, + -0.017016642, + 0.017207554, + 0.0039964286, + -0.0038246077, + -0.023800388, + -0.0033600547, + -0.013656586, + -0.012186563, + 0.008336499, + -0.000027567921, + 0.007057388, + 0.01596026, + 0.008444683, + -0.005507817, + 0.00906833, + -0.006783747, + -0.0010309259, + -0.004330525, + -0.010684719, + -0.0004987581, + -0.008024676, + -0.009049239, + 0.0057910034, + -0.0101692565, + -0.016431177, + -0.0037896072, + 0.010137438, + -0.011499278, + -0.0018279843, + -0.009316515, + 0.0194985, + 0.0061091906, + -0.005482362, + -0.0029973215, + -0.014611147, + 0.00714648, + -0.0011963831, + 0.0105638085, + -0.00023844138, + 0.009602884, + 0.015845712, + -0.006732837, + -0.008527412, + 0.0049032615, + 0.006443287, + -0.022604005, + 0.001138314, + 0.004896898, + 0.0032486892, + -0.0063573765, + -0.01429296, + -0.010786539, + -0.003872336, + 0.007884674, + 0.00876287, + -0.00318187, + -0.012937483, + -0.003773698, + 0.017080279, + -0.009431063, + -0.009812887, + -0.0007270573, + 0.0024579945, + 0.013465674, + -0.0013371808, + -0.005899187, + 0.008826507, + 0.0017659379, + 0.016838456, + 0.004970081, + 0.004725077, + 0.011225637, + 0.0013268398, + 0.006487833, + -0.0040823394, + 0.014063866, + -0.0017182098, + 0.0023673114, + 0.0074837585, + -0.0003175904, + -0.008209225, + -0.004403708, + 0.0055873636, + 0.0061537367, + -0.008247407, + -0.013974773, + -0.005437816, + -0.011575643, + -0.008826507, + -0.0072419364, + -0.0074519394, + 0.0034618746, + 0.0011295639, + 0.022464002, + 0.00597237, + 0.017767562, + 0.014852969, + -0.0005067128, + 0.009049239, + 0.0029225475, + -0.002006169, + -0.008094678, + 0.006417832, + -0.0036527868, + 0.0017086642, + -0.012791118, + -0.0054505435, + 0.0065737437, + 0.020313058, + 0.0043018884, + -0.015349341, + 0.004114158, + 0.0044387085, + -0.011855648, + -0.004874625, + 0.006366922, + 0.0023673114, + 0.004947808, + -0.0014397962, + 0.0021716263, + 0.007515577, + -0.006535561, + -0.0061091906, + 0.0068919305, + 0.007871946, + -0.0007258641, + -0.005822822, + 0.0013435446, + -0.019702138, + 0.00709557, + -0.005654183, + -0.0009991071, + 0.009176513, + 0.017067552, + 0.009221059, + -0.005040082, + -0.0032741441, + 0.01793302, + 0.018658485, + -0.01793302, + -0.0009768341, + 0.017780289, + 0.004772805, + 0.0015996852, + 0.0065228334, + 0.009590156, + 0.0035859675, + 0.0003925632, + 0.006417832, + -0.0058387313, + -0.007808309, + -0.021993086, + 0.006923749, + -0.001088995, + 0.006373286, + 0.001322067, + -0.0030482316, + 0.00508781, + 0.0060296436, + -0.013007484, + 0.00074296666, + -0.010519262, + 0.011982922, + 0.006510106, + -0.002345038, + -0.006090099, + -0.0057369117, + -0.00027602722, + -0.004954172, + 0.00396461, + -0.0018232116, + 0.004263706, + 0.003331418, + 0.0068855667, + -0.0051673567, + 0.002787318, + -0.0029480027, + 0.0014485463, + 0.007954675, + -0.00479826, + -0.00573373, + -0.0023641295, + -0.010608355, + -0.00004909526, + 0.0057114568, + -0.001983896, + -0.0019950324, + 0.002131853, + -0.011340185, + -0.0056510014, + -0.013542038, + 0.021445803, + -0.0060805534, + -0.0034714201, + 0.011779283, + 0.012339292, + 0.018340299, + 0.005994643, + -0.014967517, + 0.002181172, + 0.008622868, + 0.007101934, + 0.005116447, + -0.0025566325, + 0.010799266, + -0.0041937046, + -0.005876914, + -0.0036591506, + -0.0074264845, + -0.002179581, + 0.0015583208, + 0.0063605583, + 0.008368318, + -0.006732837, + 0.0035573307, + 0.0063541946, + -0.0040346114, + 0.000061151564, + 0.006417832, + -0.01646936, + -0.00013214703, + -0.005415543, + 0.00406643, + -0.0056955474, + -0.001381727, + -0.017767562, + 0.004731441, + -0.008718324, + -0.010512899, + 0.009914707, + 0.0073501198, + 0.017067552, + 0.00318187, + 0.0015288886, + -0.008444683, + -0.0107038105, + 0.008635595, + -0.0036368775, + 0.0032216434, + 0.005622364, + -0.0024802678, + -0.0021143525, + -0.013083849, + 0.011295639, + -0.0033791459, + 0.009666521, + -0.003030731, + 0.0064687417, + -0.0037355155, + 0.0012266109, + -0.009812887, + 0.0034332378, + -0.007954675, + -0.0007533077, + -0.018493028, + -0.0013172942, + -0.004871443, + -0.014102048, + 0.0015265022, + 0.0095647015, + -0.008018312, + -0.00035219325, + -0.0009816069, + -0.008190134, + -0.007757399, + -0.0105829, + -0.010156529, + -0.005361451, + 0.0017277554, + 0.019307587, + -0.0015336614, + -0.0038277896, + -0.008209225, + -0.0015503662, + 0.00906833, + -0.003770516, + -0.0070446604, + -0.015540253, + 0.008387409, + 0.0018677578, + 0.002839819, + -0.011372004, + 0.0014899106, + -0.0041523403, + -0.0037355155, + 0.000031147523, + 0.010640173, + 0.017882109, + 0.009711067, + -0.013032939, + 0.0022352636, + -0.0012496795, + -0.00071353436, + 0.0108183585, + 0.004165068, + 0.012803845, + -0.001885258, + -0.017016642, + 0.009144695, + 0.003452329, + -0.0044800728, + 0.00597237, + -0.01184292, + -0.014814787, + -0.009189241, + -0.0042159776, + 0.009672885, + 0.018976673, + -0.009819251, + -0.0007541032, + -0.011480187, + 0.0023195832, + -0.001051608, + 0.0011343367, + -0.0070892065, + 0.0083555905, + -0.0042191595, + -0.008400137, + 0.0017675288, + 0.0033027811, + 0.010850177, + -0.0015678664, + 0.0026536796, + 0.006879203, + 0.0036050586, + -0.006191919, + 0.013083849, + -0.010856541, + -0.00017768756, + -0.011671099, + 0.0028334553, + 0.0038246077, + -0.009679249, + -0.0007449553, + 0.010150165, + 0.0029734576, + -0.009208332, + -0.009182877, + 0.0064719236, + 0.0004677349, + -0.0015257067, + 0.013262034, + -0.006106009, + -0.003474602, + 0.013974773, + 0.00007467451, + -0.0022352636, + 0.0013626359, + -0.016380267, + 0.003158006, + 0.0021000342, + -0.0036209682, + -0.0051259925, + -0.0056446376, + 0.018162115, + -0.0074519394, + 0.00020165101, + -0.0043909806, + -0.0017516194, + 0.0005759185, + -0.0085401395, + -0.010201075, + -0.0048141694, + 0.0010993361, + 0.005899187, + -0.00631283, + 0.005157811, + 0.010748357, + 0.007477395, + -0.0051546292, + -0.022489456, + 0.0012783163, + 0.011480187, + -0.0018375299, + 0.003154824, + -0.0035700582, + -0.0052755405, + -0.002448449, + 0.007521941, + 0.0023879935, + 0.00495099, + 0.0075537595, + 0.0055237263, + -0.0082155885, + 0.0024723131, + 0.0101692565, + -0.0021907175, + -0.0037100604, + -0.022871282, + -0.008514685, + -0.016036624, + 0.003697333, + 0.0019170766, + -0.0010030845, + -0.0068664756, + 0.013732951, + 0.0028557284, + 0.0046868944, + 0.013758406, + 0.00813286, + -0.0058737323, + 0.0047409865, + -0.003134142, + 0.003035504, + 0.010506535, + 0.000128468, + -0.007833764, + 0.0114929145, + 0.005195994, + 0.009946526, + -0.013026576, + 0.012180198, + 0.0052532675, + 0.0005055196, + -0.011766556, + 0.019613046, + -0.0015050245, + 0.012924756, + 0.015362068, + 0.005199176, + -0.00061887375, + -0.0017929837, + -0.0032900537, + -0.0047664414, + 0.017080279, + 0.011696554, + 0.0009084239, + -0.0054919077, + -0.005848277, + -0.013949318, + -0.0058641867, + 0.000128468, + -0.015769348, + -0.009303788, + 0.0088901445, + 0.010290167, + 0.013389309, + -0.0018741215, + 0.0011589961, + 0.004187341, + -0.0055682724, + 0.001442978, + 0.009297424, + 0.0009139922, + 0.0063032843, + -0.008565594, + -0.0009609247, + 0.007636488, + 0.001762756, + 0.0061346455, + 0.005841913, + -0.004820533, + 0.0025279957, + -0.001859803, + 0.0058673685, + 0.0065005603, + 0.008737415, + -0.005358269, + 0.005778276, + 0.0018566211, + -0.0014755923, + -0.012638387, + 0.0018438937, + -0.01199565, + 0.02145853, + 0.004575529, + 0.0054505435, + -0.014216595, + -0.004088703, + -0.009125603, + 0.00015869577, + -0.00537736, + -0.0069619315, + -0.0043941624, + -0.013300217, + 0.003528694, + 0.014827514, + -0.00440689, + -0.011200182, + -0.006001007, + 0.0023339016, + 0.020542152, + -0.0072673913, + 0.017716652, + -0.005361451, + 0.0044991644, + 0.01017562, + 0.002543905, + -0.008794689, + 0.0060519166, + 0.0048841704, + 0.014203868, + 0.023151286, + -0.013567494, + -0.008858326, + 0.0129820295, + 0.0068219295, + -0.0030020943, + -0.00798013, + -0.0019854868, + -0.0058864597, + -0.009036511, + -0.0141656855, + 0.0048396243, + -0.002445267, + -0.013529311, + 0.0024579945, + 0.0036527868, + 0.004403708, + -0.0060328254, + -0.0045405286, + 0.00508781, + -0.006341467, + 0.0103092585, + -0.0019313951, + 0.0061569186, + 0.0058641867, + 0.0289932, + -0.007712853, + 0.014382052, + 0.0049223527, + 0.00906833, + 0.007681034, + -0.0018327571, + -0.00031182327, + 0.0072101173, + -0.0020491243, + -0.013032939, + 0.005931006, + 0.0036114224, + 0.0067646555, + -0.001886849, + -0.012180198, + -0.0030211855, + -0.01043017, + 0.006306466, + 0.0042573423, + 0.00954561, + -0.001088995, + 0.020949433, + -0.0027093624, + -0.008400137, + -0.0015137746, + 0.008979238, + -0.0019123039, + -0.0021588989, + 0.008686505, + -0.0049255346, + 0.006923749, + -0.0074201208, + -0.0009999026, + 0.012549295, + -0.006561016, + -0.012536568, + 0.0061601005, + 0.02843319, + 0.0015455934, + 0.0021461714, + -0.0018693487, + 0.0058323676, + -0.0038468807, + 0.0114229135, + -0.0060773715, + -0.0058960053, + -0.0010468352, + -0.004826897, + -0.009354698, + 0.0031230054, + 0.0041205217, + 0.0032391436, + -0.0066882907, + -0.0071782987, + 0.016647544, + -0.0011112681, + 0.006417832, + -0.0077701267, + 0.0049796267, + 0.020160329, + -0.01747483, + -0.01727119, + 0.00641465, + 0.0008392182, + -0.0009593338, + -0.009971981, + 0.015489344, + -0.0040187016, + -0.01083745, + 0.0034555108, + 0.0040537026, + -0.015336613, + -0.0047409865, + 0.0029798213, + 0.005708275, + 0.002104807, + -0.0046423483, + 0.0020857158, + -0.0059150965, + 0.0043018884, + 0.004047339, + 0.0036305138, + -0.0012568387, + 0.005876914, + 0.008521048, + -0.010945633, + 0.003256644, + 0.00484917, + -0.007916492, + 0.0023943572, + 0.010811995, + -0.0049287165, + 0.0036082405, + 0.019702138, + -0.022705825, + 0.0057878215, + -0.010519262, + 0.011162, + 0.0133765815, + -0.010207439, + 0.0054696347, + 0.0005882482, + 0.0070701153, + 0.010659264, + 0.00020821362, + -0.00009590355, + -0.018022113, + -0.003331418, + -0.00440689, + -0.00296073, + -0.0029909578, + -0.0071401163, + -0.0228331, + -0.0009474018, + -0.0034109647, + -0.009042875, + 0.011091999, + -0.005310541, + -0.0034173285, + 0.001238543, + 0.0040346114, + -0.006923749, + 0.00025017452, + 0.004069612, + 0.009711067, + 0.011359276, + -0.00581964, + -0.00020184988, + 0.008266498, + -0.0072101173, + 0.006656472, + 0.009411971, + -0.017436648, + 0.009940162, + 0.013325672, + 0.008050132, + 0.014929334, + 0.0052500856, + -0.015362068, + -0.0018884399, + 0.008953782, + -0.009201968, + 0.00714648, + 0.008546503, + -0.0060264617, + -0.0015559344, + 0.0024293577, + -0.006096463, + 0.0010842222, + -0.0074264845, + -0.0045437105, + -0.015298431, + -0.0060296436, + 0.0039327913, + 0.0021604898, + -0.009621975, + -0.007057388, + 0.007681034, + 0.009284697, + 0.00886469, + -0.0031452784, + 0.0071337526, + -0.0022464003, + -0.010111983, + 0.01048108, + 0.0019393498, + 0.006974659, + -0.0016171854, + -0.002227309, + -0.014789332, + 0.013001121, + -0.002744363, + -0.00066302216, + -0.0022464003, + -0.012364747, + 0.0067455643, + -0.0029273203, + -0.007948311, + 0.0068028383, + 0.0044450723, + -0.002125489, + 0.01590935, + 0.027389538, + 0.013669314, + 0.010538354, + -0.012084742, + -0.0021827628, + 0.01131473, + -0.0012687707, + 0.008489229, + 0.0051196287, + -0.015094792, + 0.017805744, + -0.003795971, + -0.0068919305, + -0.0060041887, + -0.0063001025, + -0.0116329165, + -0.01252384, + -0.0153747955, + 0.00087819615, + -0.009176513, + -0.014229323, + 0.008559231, + 0.010831086, + 0.004114158, + -0.009189241, + -0.010022891, + -0.002278219, + 0.0011717236, + -0.0013705905, + 0.010474716, + 0.006284193, + 0.0034396015, + -0.011512006, + -0.0009474018, + 0.008431955, + -0.0056987293, + 0.009361061, + -0.004779169, + 0.0040505207, + -0.0064528324, + -0.0061091906, + 0.0049891723, + -0.009590156, + -0.0036432412, + 0.003129369, + 0.0023959482, + 0.010792903, + 0.0068410207, + 0.0026823163, + 0.012810209, + -0.001812075, + 0.0011637689, + -0.008934691, + -0.008431955, + -0.00455962, + -0.008801052, + -0.0029686848, + -0.00062961254, + 0.0044673453, + -0.0012910437, + -0.01641845, + -0.005399633, + 0.004667803, + 0.0005063151, + 0.007025569, + -0.017665742, + 0.0056478195, + 0.0015217293, + -0.00798013, + -0.014254778, + -0.006853748, + 0.0038246077, + -0.0064496505, + 0.011410186, + 0.0021350349, + -0.0069110217, + 0.014254778, + 0.005861005, + -0.0016450268, + -0.010220166, + -0.003154824, + 0.0071846624, + -0.007954675, + -0.0043018884, + 0.011333821, + -0.022693098, + 0.017054824, + 0.009558338, + -0.015209339, + -0.012632024, + 0.025684055, + 0.0064528324, + 0.010551081, + 0.008272862, + -0.01611299, + 0.01813666, + -0.009577429, + 0.00085353665, + -0.0014413871, + 0.011346549, + 0.0008956964, + -0.00709557, + 0.0027698178, + 0.008654687, + -0.0012162698, + -0.025964059, + 0.011244728, + 0.010487444, + -0.016660271, + 0.0070128418, + 0.0027905, + 0.012682934, + -0.000056130175, + 0.0046137115, + -0.011779283, + -0.00061131676, + 0.0037864253, + -0.00049796264, + -0.0114229135, + 0.0068664756, + 0.009768341, + -0.0068155658, + 0.015145701, + -0.012682934, + 0.00046296208, + 0.0013777497, + -0.003935973, + 0.009303788, + 0.0015463888, + 0.003795971, + -0.0015622982, + 0.004629621, + -0.004893716, + -0.008654687, + 0.00096012925, + -0.008559231, + 0.007432848, + 0.0007823423, + 0.014534783, + -0.007458303, + 0.01272748, + -0.005043264, + -0.011512006, + 0.0073755747, + -0.0062110103, + -0.0055905455, + 0.005625546, + -0.014382052, + -0.0075092134, + 0.017385738, + 0.009660157, + 0.0047059855, + 0.0034936932, + 0.0018804852, + 0.013491129, + -0.004285979, + -0.015883895, + -0.0040282477, + 0.0041905227, + -0.006481469, + 0.008921963, + -0.0054314523, + 0.008260135, + -0.0051228106, + -0.012651116, + 0.004919171, + 0.011149272, + -0.0028302735, + 0.0007318301, + -0.005160993, + -0.0016084353, + 0.012243836, + 0.007521941, + 0.012943847, + -0.0013085441, + 0.006106009, + -0.009386516, + -0.007636488, + -0.0019250314, + -0.00881378, + -0.00020443514, + -0.0019902596, + 0.00818377, + 0.0014930925, + 0.0039137, + 0.007611033, + 0.0072801188, + 0.0028080002, + 0.0074201208, + -0.0017516194, + -0.0040537026, + -0.007916492, + 0.014203868, + -0.0068219295, + 0.006751928, + -0.010856541, + -0.007871946, + 0.016062079, + -0.001687982, + 0.006707382, + -0.007515577, + -0.006513288, + 0.005259631, + 0.012186563, + -0.014012955, + -0.005997825, + -0.0010364942, + 0.0034682383, + 0.0076683066, + -0.009437427, + -0.004381435, + -0.002181172, + -0.0073119374, + -0.0064305593, + 0.012402929, + -0.004887352, + 0.0007421712, + -0.0019313951, + -0.0031436875, + 0.00038321648, + 0.014865696, + -0.007541032, + 0.00085592305, + 0.008902872, + 0.0009251287, + -0.0027523176, + 0.00079944485, + -0.0105829, + 0.0039264276, + 0.0029082291, + -0.000666204, + 0.0055491813, + 0.0080755865, + -0.016660271, + 0.007941947, + -0.017563922, + -0.0019663956, + -0.002547087, + -0.011715645, + 0.0044450723, + -0.0048109875, + -0.0038341533, + 0.009411971, + 0.005574636, + 0.0100292545, + 0.0031484603, + -0.005437816, + 0.004995536, + 0.003251871, + -0.0031055051, + 0.0009299015, + 0.0015463888, + 0.000020421143, + 0.006968295, + 0.0005616001, + -0.01419114, + 0.011091999, + -0.0005210312, + 0.008005585, + 0.009303788, + 0.0041268854, + 0.00568282, + -0.023851298, + -0.0014851379, + 0.007292846, + -0.00054847484, + 0.0030705046, + 0.004890534, + -0.0153747955, + 0.002031624, + 0.0011677463, + 0.0037546067, + 0.011429277, + -0.009844705, + 0.0027348173, + -0.0030689137, + 0.0066437447, + -0.011435641, + 0.0038246077, + -0.008622868, + -0.002567769, + 0.011932013, + -0.0048618973, + -0.011346549, + -0.0014477508, + 0.006898294, + 0.006592835, + -0.0037323334, + -0.015234794, + -0.0029145929, + 0.0012393384, + 0.009462882, + -0.0012822936, + 0.0012242245, + 0.0070446604, + -0.0016100262, + -0.005924642, + -0.008941054, + 0.00709557, + -0.0075346683, + -0.006898294, + 0.0073819384, + 0.0044450723, + 0.007973766, + 0.019600319, + 0.009927435, + -0.0064782873, + 0.005412361, + -0.014725694, + -0.00924015, + -0.00924015, + -0.014763877, + 0.0027268627, + -0.00070717063, + 0.013402036, + 0.001762756, + -0.0073119374, + -0.008374682, + -0.0011820648, + -0.010321986, + -0.011486551, + 0.0026473159, + 0.0026552705, + -0.010805631, + -0.0042573423, + 0.0120274685, + -0.008591049, + -0.0032900537, + -0.007967402, + -0.0022639006, + 0.0022432185, + -0.01393659, + -0.011970195, + -0.0070701153, + 0.00901742, + -0.0034905113, + -0.019014856, + 0.00362415, + -0.0019266224, + 0.018887581, + 0.006506924, + 0.004044157, + 0.018327571, + -0.00012210426, + -0.0025423141, + -0.009284697, + -0.0156548, + 0.012313837, + -0.002057079, + 0.011709281, + -0.0077319443, + -0.0035923312, + 0.0009720613, + -0.0037641523, + -0.004804624, + -0.015769348, + -0.0010627445, + 0.014776604, + 0.00455962, + -0.004352798, + 0.012791118, + 0.012110197, + -0.004403708, + -0.01853121, + -0.0005110879, + -0.0010706993, + 0.011372004, + -0.0077701267, + 0.00011235978, + 0.0059660063, + -0.0026727708, + -0.0051864483, + -0.009074694, + 0.0022193543, + -0.012587477, + 0.0103092585, + -0.00046216662, + -0.002811182, + -0.0028048183, + 0.022324, + -0.001150246, + 0.02460222, + 0.019218495, + 0.00239913, + -0.0048523517, + -0.00081614964, + -0.0011828602, + 0.00048603065, + 0.011683826, + -0.006828293, + 0.007121025, + 0.005094174, + -0.0063764676, + 0.0050337184, + -0.0026393612, + 0.01235202, + -0.0007481372, + 0.0048141694, + 0.010360169, + 0.002570951, + -0.0054950896, + 0.004820533, + 0.01111109, + 0.000041314594, + 0.00006045553, + -0.0033696003, + 0.0071846624, + -0.01459842, + -0.0034236922, + 0.0035923312, + -0.007273755, + -0.0006451241, + -0.005946915, + 0.00602328, + -0.012288382, + -0.015412979, + -0.014763877, + 0.0047855326, + 0.00924015, + 0.002570951, + 0.0003999213, + 0.005686002, + -0.0035414214, + -0.008291953, + 0.0074010296, + -0.0014660467, + 0.00929106, + -0.0041968864, + -0.004330525, + 0.005708275, + 0.0060360073, + 0.0026123154, + -0.0135165835, + -0.0011828602, + -0.02101307, + -0.0043496164, + -0.011327458, + -0.0007942743, + -0.011556552, + 0.01626572, + 0.0012950212, + -0.0005747253, + 0.0021907175, + -0.0069364766, + -0.0039964286, + -0.00063716946, + -0.0039709737, + -0.0054441798, + 0.008991965, + -0.006783747, + -0.014789332, + 0.007541032, + 0.001641845, + 0.015222066, + -0.014980244, + -0.0057910034, + 0.010067437, + 0.0026616342, + -0.0043718894, + 0.005771912, + -0.00006676956, + -0.008533776, + 0.015438434, + 0.012256564, + 0.0039264276, + 0.012918392, + 0.0018820761, + 0.00239913, + -0.02172581, + -0.0039518825, + 0.0045850747, + 0.016202083, + -0.0012170653, + 0.0065737437, + -0.023049466, + 0.007611033, + 0.0029336843, + -0.0042955247, + 0.012638387, + -0.0076937615, + -0.007789218, + -0.00901742, + 0.017691197, + 0.00934197, + -0.00484917, + 0.0053932695, + 0.016125718, + -0.0017404829, + -0.0072419364, + 0.010449261, + 0.00015442012, + -0.0071082977, + 0.0002744363, + -0.0076492154, + 0.0059437333, + -0.018073022, + 0.00719739, + -0.0063764676, + -0.00055364537, + 0.007324665, + 0.013198397, + 0.00061887375, + 0.009023784, + 0.005625546, + 0.0077064894, + -0.0069110217, + 0.004728259, + 0.0102392575, + 0.0052723587, + 0.010557445, + 0.0033886915, + 0.013287489, + -0.01914213, + -0.008832871, + -0.002669589, + 0.008209225, + -0.0076046693, + -0.0049637174, + -0.0003937564, + -0.00029014677, + 0.0015034336, + 0.004973263, + 0.0032932356, + -0.008902872, + -0.008476501, + -0.0029798213, + -0.016494814, + -0.004136431, + 0.0034109647, + 0.011792011, + -0.0122502, + -0.011906558, + -0.006611926, + -0.008629232, + 0.0011391095, + -0.00020284421, + -0.018340299, + 0.0069873864, + -0.023673113, + -0.0016434359, + -0.0072801188, + -0.00092671963, + 0.0072610276, + -0.0070637516, + 0.0005293836, + -0.010296531, + -0.0039041545, + 0.0034586927, + 0.045029823, + -0.012294746, + 0.014280233, + 0.008151951, + -0.00306255, + 0.0049605356, + 0.007464667, + -0.028815014, + 0.005880096, + -0.012504749, + -0.015463889, + -0.0029830032, + -0.002788909, + -0.010856541, + -0.0017341191, + -0.0011351322, + 0.005415543, + -0.016482087, + 0.007216481, + -0.004874625, + 0.0008766052, + -0.0011438823, + 0.007547396, + 0.003649605, + -0.004088703, + 0.009348334, + -0.0025598144, + 0.0035414214, + -0.008247407, + -0.010608355, + 0.011671099, + -0.006217374, + 0.025569508, + -0.008985601, + 0.007273755, + -0.004690076, + 0.005596909, + 0.0015105928, + 0.017691197, + -0.010398352, + 0.0032025522, + -0.007464667, + -0.011798374, + -0.007439212, + 0.0037036967, + -0.018111205, + -0.002378448, + -0.00011037112, + -0.008088314, + 0.0010333123, + -0.008209225, + 0.0011462687, + 0.004648712, + 0.0027507266, + 0.00808195, + -0.017742107, + 0.013172942, + 0.0047823507, + 0.014229323, + -0.0007481372, + -0.010932906, + -0.00057671394, + -0.0013204761, + 0.0018470755, + 0.006481469, + 0.005558727, + -0.0028795924, + -0.0104938075, + 0.008877417, + 0.006214192, + 0.0072673913, + -0.025174955, + -0.010232894, + 0.0005576227, + -0.0049064434, + 0.008101041, + 0.002599588, + -0.001529684, + 0.013160215, + -0.019549409, + 0.0009656976, + -0.00053017907, + 0.0020618518, + 0.0030768684, + -0.015794802, + 0.0064273775, + -0.0041746134, + 0.01611299, + -0.029171385, + 0.013822043, + 0.00017848302, + 0.01158837, + 0.0052087214, + 0.0010897905, + 0.005199176, + 0.0042987065, + 0.003869154, + 0.015311158, + -0.0051069013, + 0.014509328, + -0.0098892525, + -0.0025868604, + 0.015005699, + -0.013122032, + 0.009233787, + -0.0072101173, + 0.006853748, + -0.0010476307, + -0.008578322, + -0.003748243, + -0.0068919305, + 0.0059564607, + 0.004919171, + -0.0000472806, + -0.0037768797, + 0.006067826, + 0.0042414325, + 0.0050528096, + -0.023418562, + -0.0034236922, + -0.011034725, + -0.009157422, + 0.011193818, + 0.0024850406, + 0.0032741441, + -0.00823468, + 0.00031719267, + 0.009787432, + 0.0027332264, + 0.0082855895, + 0.011302003, + 0.016049352, + -0.0020427606, + -0.019765776, + -0.0055396357, + 0.009176513, + 0.0008233089, + -0.009348334, + -0.017169371, + -0.0013021803, + 0.010474716, + 0.0019775322, + -0.0031723245, + 0.0045468924, + -0.0038977908, + -0.013503856, + 0.020593062, + -0.031004142, + 0.0026298156, + 0.0027618632, + 0.0018963945, + -0.014483873, + -0.011556552, + 0.01184292, + -0.0039550643, + -0.0020427606, + 0.0037036967, + 0.0055937273, + -0.013109305, + 0.005950097, + 0.0017945747, + 0.0011184273, + -0.009310151, + -0.0066437447, + -0.0026839073, + -0.0032343708, + -0.0053741783, + -0.003916882, + -0.008839235, + -0.0100292545, + 0.010856541, + 0.007318301, + 0.003084823, + -0.004470527, + -0.017283918, + 0.007789218, + 0.0067455643, + 0.004352798, + 0.00808195, + 0.003525512, + 0.008361954, + 0.008266498, + -0.0021445805, + 0.011760192, + 0.017831199, + 0.008247407, + 0.014585692, + -0.014687512, + -0.012549295, + 0.008559231, + -0.0036368775, + 0.0035191483, + 0.010442898, + -0.016202083, + -0.0024182212, + -0.00081933156, + -0.00061370316, + 0.008616504, + 0.0111683635, + -0.009978345, + 0.0105638085, + -0.00323278, + 0.000507906, + -0.0039009727, + 0.01318567, + 0.0038341533, + 0.013847498, + 0.0053741783, + -0.0035891493, + -0.013962045, + -0.005218267, + 0.0049796267, + -0.0044800728, + -0.0013196806, + 0.00046813264, + -0.008120133, + 0.0016561634, + -0.0057400935, + 0.000093119415, + -0.002469131, + -0.007897401, + -0.012746572, + -0.0036209682, + 0.0044609816, + 0.006631017, + 0.019549409, + -0.01017562, + -0.003208916, + -0.004842806, + 0.0056669107, + -0.00089410547, + 0.001322067, + 0.0048141694, + -0.0041714315, + -0.010118347, + -0.0017579832, + -0.008578322, + 0.007859219, + 0.008571958, + -0.014789332, + 0.0023832207, + 0.0019059401, + -0.011130181, + -0.0052246307, + 0.0009983117, + -0.015947532, + 0.0038436989, + -0.0008463774, + -0.013389309, + 0.015782075, + 0.005339178, + 0.0010977451, + -0.004823715, + 0.0005456907, + -0.0023132195, + -0.00051904254, + -0.015769348, + -0.0012321791, + -0.007814673, + 0.004667803, + 0.008705596, + 0.0044418904, + 0.011435641, + -0.0058641867, + 0.007388302, + -0.010366533, + -0.0141656855, + 0.0048173512, + 0.008291953, + 0.0022113996, + -0.018213024, + 0.0014103639, + -0.014865696, + -0.0027014078, + 0.01575662, + 0.008578322, + -0.0072037536, + 0.007121025, + 0.009965617, + -0.006656472, + 0.025531325, + -0.009825614, + -0.012861119, + -0.011900194, + 0.0027268627, + 0.0035668763, + -0.0013650223, + 0.004699622, + 0.006974659, + -0.006701018, + -0.0024118575, + -0.007611033, + 0.00057711167, + -0.0063001025, + -0.016189355, + 0.002131853, + -0.0057687303, + 0.021573078, + -0.0018566211, + 0.018251207, + -0.00067893154, + 0.00071711396, + -0.0045659835, + 0.0066755633, + -0.00524054, + 0.0017659379, + 0.004473709, + 0.0031945975, + -0.002962321, + -0.0071082977, + -0.006707382, + -0.003525512, + 0.0018073021, + 0.005880096, + -0.0022320817, + 0.00080302445, + 0.0031643698, + -0.0074837585, + 0.013834771, + 0.0038055165, + -0.015298431, + -0.010321986, + 0.0067137456, + -0.0051005376, + 0.004333707, + 0.0077319443, + -0.0013912726, + 0.0053646327, + -0.009189241, + -0.0022400364, + -0.009481973, + 0.010614718, + 0.00969834, + -0.010220166, + 0.01053199, + -0.00027045896, + -0.0008328545, + -0.0029893669, + -0.0017198008, + -0.0045723473, + -0.00094660633, + -0.015425706, + -0.004378253, + -0.0036305138, + 0.005606455, + -0.010716538, + 0.008998329, + 0.005024173, + -0.0037068785, + -0.008985601, + -0.002547087, + -0.00051546295, + 0.012797481, + -0.0013880908, + -0.0041237036, + -0.011747465, + -0.002345038, + -0.0015336614, + 0.0039996104, + 0.010468353, + -0.008094678, + -0.005628728, + -0.014483873, + 0.008202861, + 0.0009314924, + 0.011811102, + -0.0012019514, + 0.0127020255, + -0.00039097227, + -0.0008885372, + 0.0009808114, + -0.0004100635, + -0.0054728165, + -0.008113769, + -0.003716424, + -0.0013332035, + -0.007617397, + -0.0011343367, + 0.012014741, + -0.011257456, + 0.004311434, + -0.00007303386, + 0.011881103, + -0.0029511845, + -0.0065546525, + -0.0017977565, + 0.03802971, + -0.009730158, + 0.00054608844, + -0.007471031, + 0.0010881996, + -0.00954561, + -0.015629346, + 0.0079610385, + -0.009583793, + -0.007591942, + 0.0028764105, + -0.0006781361, + 0.0019170766, + 0.004161886, + -0.0156548, + -0.006144191, + -0.0019982143, + -0.0072483, + -0.0031739154, + 0.00995289, + 0.004158704, + -0.0016752545, + 0.00006716729, + -0.0011407004, + -0.0024929952, + -0.0033950554, + 0.00513872, + -0.012033832, + -0.0005834754, + 0.0012528613, + 0.0044673453, + -0.010544717, + 0.010901087, + -0.005488726, + 0.0015845713, + 0.005380542, + 0.020796703, + -0.0060105524, + -0.008934691, + 0.00066302216, + -0.0031405056, + 0.010671992, + 0.00729921, + 0.008412864, + 0.0071337526, + -0.0004251774, + 0.000059660062, + -0.009672885, + 0.0059660063, + 0.0039073364, + -0.007464667, + 0.0033473272, + -0.005024173, + 0.0029527755, + 0.007973766, + 0.002986185, + -0.0019329861, + -0.0073119374, + -0.013032939, + 0.0033823277, + 0.00906833, + -0.014280233, + 0.013491129, + 0.009844705, + -0.013402036, + -0.010220166, + 0.0027300445, + 0.0020523062, + -0.014254778, + -0.0047059855, + 0.0057623666, + 0.0022511731, + 0.000464553, + 0.01439478, + 0.0052755405, + 0.000697625, + -0.015285703, + 0.0043018884, + 0.008603777, + -0.010913814, + -0.0088901445, + -0.010105619, + 0.0019934415, + -0.007000114, + -0.026091333, + 0.0026314065, + -0.0005798958, + 0.002865274, + -0.002664816, + 0.0015782075, + 0.0005528499, + -0.0045468924, + 0.009475609, + -0.0071401163, + 0.0006526811, + 0.010519262, + -0.011607462, + 0.0058864597, + 0.009138331, + -0.005581, + 0.0023179923, + -0.008737415, + 0.0033664184, + -0.015667528, + -0.008476501, + -0.008107405, + -0.005603273, + -0.0008893327, + 0.012460203, + 0.006771019, + 0.0143056875, + 0.006771019, + 0.0056923656, + -0.0066755633, + 0.017856654, + 0.0033791459, + 0.0020682155, + -0.00017003118, + 0.00030744818, + 0.01828939, + 0.0021907175, + -0.013020212, + 0.00051784934, + 0.001211497, + -0.007000114, + 0.00026548727, + 0.0047600777, + -0.014789332, + -0.009227423, + -0.005164175, + 0.016202083, + -0.01752574, + 0.010576536, + 0.010881996, + -0.0012647933, + 0.0042414325, + 0.015998442, + 0.0077955816, + -0.011302003, + -0.018989401, + -0.0018629848, + 0.007757399, + 0.009882888, + 0.0025486778, + -0.009411971, + -0.0052055395, + -0.0009975162, + 0.0047664414, + -0.0030673228, + 0.0010874041, + -0.0072228448, + -0.005017809, + -0.013542038, + -0.015247521, + 0.006726473, + 0.0008567185, + -0.00010599605, + 0.00440689, + -0.00009988089, + 0.005848277, + -0.009691976, + -0.0080310395, + -0.0006785338, + 0.0042159776, + -0.0039487006, + 0.0034777839, + 0.008514685, + 0.011066544, + -0.015387523, + 0.0035223302, + 0.0043877987, + 0.0038564266, + -0.009615611, + -0.009170149, + 0.0013029758, + -0.006443287, + 0.00886469, + 0.006513288, + 0.012873846, + -0.0135165835, + 0.002400721, + 0.014432962, + -0.0065005603, + -0.0018995764, + -0.005628728, + -0.0047409865, + -0.012065651, + -0.014089321, + 0.010118347, + 0.02288401, + -0.011989286, + -0.0019488954, + -0.018696668, + -0.019333042, + -0.0012194517, + 0.0005973961, + 0.003942337, + -0.006656472, + 0.0033250542, + -0.00028477737, + -0.015947532, + 0.022667643, + 0.0052819042, + 0.02327856, + -0.0062110103, + -0.02060579, + -0.014636602, + -0.010512899, + 0.009768341, + 0.00357324, + -0.012517476, + -0.0020618518, + -0.0043718894, + -0.0018423027, + 0.007948311, + -0.012269291, + -0.011340185, + 0.0037864253, + 0.014051138, + 0.006513288, + 0.0032391436, + 0.00027602722, + -0.006860112, + 0.0011566097, + 0.0029973215, + 0.008139224, + 0.007490122, + 0.0030991414, + -0.009641066, + 0.0070128418, + -0.0025645872, + -0.0045405286, + 0.008673778, + -0.0012918392, + 0.0014175231, + -0.0038564266, + -0.0068410207, + 0.007031933, + 0.005924642, + -0.0007163185, + 0.0044132536, + 0.006144191, + -0.0030800502, + -0.0071082977, + 0.0018518483, + -0.0049891723, + 0.0019520773, + -0.006306466, + -0.0026632252, + 0.009049239, + -0.0136311315, + -0.0010881996, + 0.00493508, + 0.0010921769, + 0.00078433094, + -0.006370104, + 0.0011613825, + 0.007566487, + -0.0017818472, + -0.0058641867, + 0.00896651, + -0.016978458, + -0.013783861, + 0.014216595, + 0.005065537, + -0.006366922, + -0.00085592305, + 0.008565594, + 0.011524733, + 0.0018486665, + 0.001298203, + -0.0115629155, + 0.015476616, + -0.0024070847, + -0.0031198235, + -0.0011836557, + -0.0050750826, + -0.0033696003, + -0.018073022, + 0.00455962, + -0.005380542, + 0.0077764904, + 0.007057388, + -0.005931006, + -0.010220166, + -0.0061537367, + 0.004731441, + 0.017869381, + -0.0002227309, + 0.0012528613, + 0.0016179809, + -0.005533272, + 0.008991965, + 0.014114776, + 0.000023105846, + -0.0012655888, + -0.013351127, + -0.0011955877, + -0.012606569, + -0.00048682612, + -0.0066437447, + -0.006392377, + 0.014572965, + -0.0072610276, + 0.008368318, + 0.0035541488, + -0.002278219, + -0.010627446, + 0.01601117, + -0.020427605, + -0.007515577, + -0.0032168706, + 0.012447475, + 0.0037641523, + 0.008304681, + 0.0018152569, + -0.001715028, + 0.002913002, + 0.012606569, + -0.006732837, + 0.0012743389, + 0.007458303, + -0.0014342279, + -0.0055237263, + 0.007833764, + 0.0056955474, + -0.000052749438, + 0.0054091793, + 0.0076492154, + -0.002200263, + 0.001555139, + 0.003253462, + -0.00813286, + 0.010671992, + 0.003547785, + -0.0025836783, + -0.006923749, + -0.000636374, + -0.011594734, + -0.030673226, + -0.01146746, + -0.009278333, + 0.0035223302, + 0.0056987293, + 0.0065482883, + -0.011594734, + 0.012542931, + 0.009112876, + 0.00056955474, + -0.0027125443, + 0.0011534279, + 0.009921071, + -0.007661943, + 0.0007906947, + -0.006860112, + -0.0005043264, + -0.0026361793, + -0.008011948, + -0.010321986, + 0.008018312, + -0.0022495822, + 0.01596026, + 0.015680255, + -0.010220166, + 0.0066946545, + 0.010824722, + 0.004005974, + 0.017602105, + 0.018594848, + -0.0008352409, + -0.0062746475, + 0.018518483, + -0.00034781816, + 0.004725077, + -0.012415657, + 0.010398352, + 0.0012162698, + 0.00068131794, + 0.0072801188, + 0.0032502802, + -0.010442898, + 0.0144966, + -0.003840517, + 0.00813286, + -0.0061632823, + 0.0011900194, + -0.0049637174, + 0.008101041, + -0.020185784, + 0.007464667, + 0.0016848001, + 0.008463774, + -0.004505528, + -0.007840128, + 0.021076707, + 0.0067392006, + 0.0077064894, + 0.0011574052, + -0.005135538, + 0.0079610385, + 0.016736636, + -0.00787831, + 0.023558566, + -0.004823715, + -0.0076492154, + -0.0037418792, + -0.010913814, + -0.011079271, + -0.008877417, + -0.009138331, + -0.006417832, + 0.0055396357, + -0.0021127616, + 0.0026504977, + -0.006287375, + 0.012759299, + 0.015883895, + 0.010856541, + 0.002101625, + -0.005310541, + -0.010118347, + 0.0017436647, + -0.002496177, + 0.003671878, + 0.010538354, + -0.0007473417, + 0.0012361566, + -0.0084065, + -0.0035064209, + -0.0039805193, + -0.0003440397, + -0.007273755, + -0.0014557055, + 0.003084823, + 0.0008503548, + 0.0100992555, + -0.003500057, + -0.0013228625, + 0.017042097, + 0.0011160409, + -0.012695662, + 0.0037100604, + -0.006166464, + -0.004670985, + 0.0002444074, + 0.012040196, + -0.0010197894, + -0.011518369, + -0.0144966, + -0.0074455757, + 0.006949204, + 0.011626553, + 0.0127020255, + 0.0015957078, + -0.0056732744, + -0.0017357101, + -0.014254778, + 0.005065537, + -0.0076937615, + -0.026982257, + 0.0013753633, + 0.0024293577, + -0.01158837, + -0.0053741783, + -0.0044609816, + -0.0044387085, + 0.0035668763, + -0.00256936, + 0.0075283046, + -0.015692983, + -0.006090099, + 0.0050782645, + -0.012511113, + 0.0062046465, + -0.011206546, + 0.0019886687, + 0.0073819384, + 0.000394353, + 0.0001834547, + 0.0022479913, + 0.0050019, + -0.00007134349, + 0.0051514474, + 0.0008376273, + 0.009781068, + 0.022133088, + 0.008979238, + 0.008972874, + -0.0013451355, + 0.00062483974, + 0.0077764904, + -0.00729921, + -0.00881378, + 0.0027698178, + 0.0010635401, + -0.00906833, + 0.013026576, + 0.0016672999, + 0.0029193657, + -0.0031945975, + -0.006370104, + -0.017882109, + 0.006790111, + 0.00787831, + 0.0048078056, + 0.0009617202, + 0.006191919, + 0.005024173, + 0.016787546, + 0.009761977, + 0.019663956, + 0.0004196091, + 0.013592949, + -0.0025645872, + 0.00019906575, + 0.0094246995, + -0.009233787, + -0.0031245963, + 0.015514798, + -0.019536681, + 0.004314616, + -0.0007576828, + -0.017602105, + 0.00074415986, + 0.014407507, + 0.0110283615, + 0.0067137456, + -0.008164679, + 0.0034014191, + -0.011830193, + 0.0013809316, + -0.004451436, + -0.003350509, + 0.007051024, + 0.001283089, + -0.0065546525, + 0.010767448, + -0.005160993, + -0.002012533, + 0.00813286, + 0.017207554, + -0.0052023577, + -0.0136311315, + -0.0061314637, + 0.0048141694, + -0.01818757, + 0.009322879, + -0.002963912, + 0.006898294, + -0.0021191253, + -0.0033791459, + -0.0051514474, + -0.012517476, + 0.011384731, + -0.004114158, + 0.004890534, + -0.014076593, + -0.0035668763, + -0.012606569, + -0.0041014305, + -0.005339178, + -0.0025136773, + -0.00028179438, + -0.013338399, + -0.0030752774, + -0.009481973, + 0.010614718, + 0.022324, + -0.0021525351, + -0.0060932813, + -0.00656738, + 0.017843926, + 0.002690271, + 0.003547785, + 0.009322879, + 0.013478401, + -0.0061601005, + -0.0055237263, + 0.0085401395, + 0.0075092134, + 0.000020371426, + 0.0038373352, + 0.00041046125, + 0.011505642, + -0.0053869057, + -0.0029161838, + 0.0027364083, + -0.0040727938, + -0.00049318984, + -0.020987615, + -0.004308252, + -0.015336613, + -0.008902872, + -0.0018916217, + 0.0016943457, + 0.0010492216, + 0.014483873, + 0.00818377, + -0.002547087, + -0.0018311662, + 0.015718438, + -0.015591163, + -0.0022209452, + -0.014878424, + -0.024678584, + -0.0030243674, + -0.006828293, + 0.004674167, + 0.0013721815, + 0.005332814, + 0.011321094, + 0.011976559, + 0.007973766, + -0.012364747, + -0.0055682724, + -0.0059373695, + 0.000089042645, + -0.007630124, + -0.023367653, + -0.006366922, + -0.022973102, + -0.0080755865, + -0.007986493, + 0.007273755, + -0.0016816183, + -0.008368318, + 0.01075472, + 0.004674167, + -0.0037641523, + 0.0017023005, + -0.008317408, + 0.010544717, + 0.0073373923, + -0.0061091906, + 0.015171156, + -0.002033215, + 0.00033906804, + -0.011753828, + -0.0051069013, + -0.009405607, + 0.00032832922, + -0.006169646, + 0.004333707, + -0.0014517282, + -0.0019648047, + 0.0022113996, + 0.0009108103, + -0.003598695, + 0.0048396243, + 0.002298901, + -0.0006705791, + -0.00011504449, + -0.002131853, + 0.0005234176, + -0.009297424, + -0.0016625271, + -0.0044355267, + -0.00866105, + 0.013529311, + -0.0035350577, + -0.0036146042, + 0.004285979, + 0.0018963945, + -0.012632024, + 0.011900194, + -0.000297306, + 0.002349811, + -0.0003877904, + 0.01204656, + -0.004047339, + -0.007121025, + -0.0026393612, + 0.0035605126, + -0.0064973785, + -0.016049352, + -0.004801442, + 0.0019520773, + 0.027236808, + -0.0041714315, + 0.009163786, + -0.0112383645, + 0.0056732744, + 0.004282797, + -0.012282019, + 0.0045628017, + -0.0010945633, + 0.0041300673, + -0.00043909808, + -0.0033441454, + -0.0032502802, + 0.007127389, + -0.00959652, + 0.017080279, + 0.002963912, + -0.0054759984, + 0.0033377816, + 0.0019552591, + 0.0037418792, + -0.0019059401, + -0.0094246995, + 0.006258738, + -0.0026839073, + -0.0009450154, + 0.00048443972, + -0.011149272, + 0.006904658, + 0.0035191483, + -0.005876914, + -0.019282132, + -0.007388302, + 0.010131074, + -0.0019329861, + -0.010576536, + 0.0073755747, + 0.013160215, + 0.0033441454, + -0.001665709, + -0.0047473502, + 0.011244728, + 0.013363854, + -0.00092115137, + 0.00714648, + -0.004005974, + -0.014318415, + 0.0328369, + -0.017793017, + 0.001580594, + -0.009793796, + 0.0016171854, + -0.013223852, + 0.00086944597, + -0.009513792, + 0.0053264503, + 0.0038659722, + -0.013147487, + -0.0080310395, + 0.004919171, + 0.0048078056, + 0.0028350463, + 0.000098240234, + -0.010691083, + 0.0006904658, + -0.013058394, + 0.016342085, + 0.024933133, + -0.007999221, + 0.008597413, + 0.004069612, + -0.0073564835, + -0.005192812, + 0.010691083, + -0.0062523745, + 0.013898408, + 0.0036305138, + 0.0051005376, + -0.00092831056, + -0.007935584, + -0.004088703, + -0.008476501, + -0.0073564835, + 0.009354698, + 0.0025502688, + 0.0051705386, + -0.0007191026, + 0.0027157262, + -0.004597802, + -0.0022718553, + 0.0063605583, + -0.0013284307, + -0.017640287, + 0.002421403, + 0.005997825, + -0.024411308, + -0.0039232457, + 0.0026934529, + -0.012129288, + 0.0029464117, + -0.0139875, + -0.0070382967, + -0.0071528438, + 0.010181984, + 0.011512006, + 0.0067964746, + -0.0026170881, + -0.0005162584, + -0.0047155316, + 0.01762756, + -0.01813666, + 0.0067137456, + -0.0036336957, + 0.0056764563, + 0.007999221, + -0.00016993175, + -0.00987016, + -0.0007373984, + -0.0025343595, + -0.011136545, + 0.0010531989, + -0.012383838, + 0.021203982, + -0.008514685, + 0.0030227765, + -0.0062301015, + -0.011537461, + -0.019434862, + 0.010315622, + -0.00043551845, + 0.010990179, + 0.0013204761, + -0.0043496164, + -0.010608355, + -0.00896651, + -0.015412979, + -0.01017562, + -0.0099592535, + 0.011518369, + -0.00071472756, + 0.016507542, + 0.0036877873, + -0.017805744, + 0.009672885, + 0.004180977, + 0.00027045896, + 0.01100927, + 0.00009058386, + -0.009297424, + 0.0075792144, + 0.0073119374, + -0.0056446376, + 0.021980358, + 0.0050559915, + 0.0032232343, + -0.006968295, + 0.0029305024, + 0.0022193543, + 0.0018900308, + -0.004534165, + -0.006707382, + 0.0039709737, + -0.010640173, + -0.0023386744, + 0.0038564266, + 0.008928327, + -0.0005039287, + 0.0036623324, + 0.012428384, + -0.002787318, + 0.0078019453, + -0.0014501372, + -0.0041937046, + -0.0053932695, + -0.0072610276, + 0.004623257, + 0.012173834, + -0.0153747955, + -0.016685726, + -0.0132365795, + 0.0042477963, + 0.0024929952, + -0.01424205, + 0.01189383, + -0.009201968, + 0.0065737437, + 0.013682041, + -0.016227538, + -0.0031898248, + 0.0032900537, + -0.0068155658, + 0.0041205217, + 0.009971981, + -0.01184292, + -0.013045667, + 0.001737301, + 0.0102392575, + -0.00093706074, + -0.008361954, + -0.00073540973, + 0.017258463, + -0.0021175344, + 0.0026489068, + 0.005243722, + 0.008304681, + -0.009672885, + -0.000072486975, + 0.0009410381, + 0.0022686734, + 0.0055205445, + -0.00047171224, + 0.0069810227, + 0.0017038914, + 0.004973263, + -0.007076479, + 0.013338399, + -0.0073564835, + -0.0047187135, + 0.0005067128, + 0.0009410381, + 0.017742107, + 0.0075792144, + -0.01858212, + 0.010162893, + -0.0008304681, + -0.020338513, + 0.019842142, + -0.0061346455, + -0.012390202, + -0.005657365, + 0.0020459425, + -0.0065737437, + 0.0047187135, + 0.018569393, + 0.004266888, + 0.010156529, + 0.0072864825, + 0.0026854982, + 0.01393659, + -0.0025900423, + -0.0062778294, + 0.0095647015, + -0.0060105524, + 0.0083555905, + -0.005800549, + 0.0046837125, + -0.0018041203, + 0.0025264048, + 0.0012759299, + -0.003375964, + -0.0008296726, + -0.006150555, + 0.006198283, + 0.0016832092, + -0.017233009, + -0.0019170766, + -0.005218267, + -0.0047632596, + 0.008731051, + -0.0053487234, + -0.004209614, + 0.012593841, + 0.00055802043, + -0.005701911, + 0.003872336, + -0.0132365795, + 0.0030975505, + -0.0028970926, + -0.003792789, + 0.0064082863, + 0.008266498, + 0.008998329, + -0.013974773, + 0.0062714657, + 0.007833764, + -0.009151058, + -0.006064644, + 0.016736636, + 0.006879203, + 0.0020284422, + 0.009895616, + -0.0067455643, + -0.0074455757, + 0.0012289973, + 0.010213803, + -0.011461096, + 0.008323772, + -0.008489229, + -0.0008344454, + 0.010296531, + 0.0011144499, + 0.0058673685, + -0.0080310395, + 0.008921963, + 0.0049859905, + -0.0007437621, + 0.015667528, + -0.013898408, + -0.011989286, + -0.011002907, + -0.009583793, + -0.0003104312, + -0.0045437105, + -0.006071008, + 0.008934691, + -0.0001230986, + 0.0066691996, + 0.018594848, + 0.007585578, + 0.0025852693, + 0.008094678, + -0.013223852, + 0.00328369, + 0.010245621, + 0.015222066, + 0.002814364, + 0.006246011, + 0.0057178205, + -0.003430056, + 0.008202861, + -0.0034109647, + -0.015947532, + 0.0040505207, + -0.0049287165, + -0.002176399, + 0.004044157, + -0.00871196, + 0.0019934415, + -0.00021716263, + -0.011142909, + -0.00003621863, + -0.012390202, + 0.00076086464, + 0.01318567, + -0.007903765, + 0.00641465, + 0.010945633, + 0.0030466407, + -0.0051069013, + -0.0035668763, + 0.0056478195, + -0.002520041, + 0.0015479798, + -0.0011144499, + 0.00047767823, + 0.009660157, + 0.0057623666, + 0.001432637, + 0.005132356, + 0.0045405286, + -0.016202083, + -0.000040717994, + -0.007362847, + 0.011473823, + -0.015896622, + -0.0014740013, + -0.004728259, + -0.0038118802, + 0.010843813, + -0.011123817, + -0.01691482, + 0.029858667, + 0.0073055737, + -0.0048141694, + -0.015527526, + -0.012135652, + -0.0042796154, + -0.0024102665, + 0.00013731758, + -0.0027729997, + -0.0015718437, + -0.0023704933, + -0.0019234404, + -0.005460089, + 0.017360283, + -0.00508781, + -0.00010221757, + 0.016749363, + -0.0025836783, + -0.00065546524, + -0.002664816, + 0.0030991414, + 0.0027507266, + -0.013707496, + 0.0029066382, + 0.00592146, + 0.01262566, + 0.0053678146, + 0.0011311548, + -0.0012027469, + 0.0035891493, + -0.020491242, + 0.0010237667, + -0.0013626359, + -0.0009609247, + -0.0037546067, + -0.0040346114, + -0.0029734576, + 0.00035438078, + -0.0007668307, + 0.0033664184, + 0.001029335, + -0.01858212, + 0.003719606, + 0.0017038914, + -0.0026727708, + 0.010220166, + -0.007833764, + -0.012657479, + -0.02439858, + 0.00030009012, + 0.0030975505, + 0.003967792, + -0.0051005376, + -0.007076479, + -0.0038532447, + -0.0016354811, + 0.015362068, + 0.003060959, + -0.0044577997, + 0.003328236, + -0.005794185, + -0.009532883, + 0.011219273, + -0.013656586, + -0.00592146, + -0.004779169, + 0.0011224047, + -0.006732837, + 0.015985714, + 0.013262034, + 0.011225637, + 0.005533272, + 0.0007127389, + 0.013758406, + -0.00070876157, + -0.0069873864, + -0.007324665, + 0.00043392752, + 0.0047123497, + 0.0010945633, + -0.0024786768, + -0.002963912, + -0.0043464345, + -0.015463889, + 0.0029320933, + 0.007591942, + 0.010315622, + -0.0067455643, + -0.012606569, + -0.003646423, + -0.007318301, + 0.0127020255, + -0.004553256, + -0.009851069, + 0.0015559344, + 0.0012051333, + -0.005040082, + -0.0066437447, + -0.0051037194, + 0.018798487, + 0.003983701, + -0.007846491, + -0.004292343, + 0.013312944, + -0.0010341078, + -0.005285086, + -0.002717317, + 0.0022591278, + 0.0039932467, + 0.0063764676, + 0.0019107129, + 0.010831086, + 0.0036018768, + 0.0047409865, + 0.010646537, + -0.0036909692, + 0.00055563403, + -0.020173056, + -0.014216595, + 0.017283918, + -0.0070892065, + 0.00876287, + 0.0017595742, + -0.009074694, + -0.0048523517, + 0.008361954, + 0.0063319216, + 0.0028748196, + -0.009189241, + -0.009310151, + 0.0007282505, + -0.002543905, + 0.0049287165, + 0.0012457022, + -0.0007246709, + -0.0054982714, + -0.0035223302, + -0.019218495, + -0.0022066268, + 0.01032835, + -0.0037864253, + 0.0039964286, + 0.026294975, + 0.003430056, + -0.0037546067, + 0.0023832207, + -0.001979123, + 0.016329357, + 0.012816573, + -0.0064751054, + 0.0028827742, + -0.014203868, + 0.008883781, + -0.0011120635, + -0.0007517168, + -0.015145701, + -0.0017882109, + -0.010048346, + -0.0052723587, + 0.0064496505, + -0.00008143599, + -0.010640173, + 0.011021998, + 0.011225637, + 0.006923749, + -0.0072483, + 0.0026870891, + -0.011079271, + 0.010862905, + -0.014623875, + 0.0010643356, + -0.013109305, + -0.012581114, + 0.00051307655, + -0.0028334553, + -0.0011001315, + -0.014229323, + -0.013732951, + 0.0023386744, + 0.011232001, + -0.0010539944, + 0.009717431, + 0.005730548, + 0.0020491243, + 0.015540253, + -0.013026576, + 0.009443791, + -0.0033441454, + -0.00067535194, + 0.0017118461, + 0.004091885, + -0.008915599, + -0.0027777725, + 0.008317408, + 0.007000114, + -0.006484651, + -0.0008909236, + -0.007273755, + -0.0017293463, + -0.0041014305, + -0.01272748, + -0.019816687, + 0.017016642, + -0.010824722, + -0.003134142, + -0.017296646, + -0.009297424, + -0.0020936704, + 0.014471144, + 0.009246514, + -0.0039296094, + -0.00934197, + -0.0040600663, + 0.008998329, + 0.0059341877, + -0.0065228334, + 0.011486551, + 0.004381435, + 0.0017182098, + 0.0009585383, + -0.010366533, + -0.0020443515, + -0.0006093281, + -0.0038341533, + -0.0020268513, + 0.000906833, + -0.0022511731, + -0.023304015, + -0.01429296, + -0.0062523745, + 0.0029782304, + 0.008113769, + -0.0023561749, + -0.007127389, + 0.0058896416, + 0.014254778, + 0.0082155885, + 0.01083745, + -0.0020713974, + 0.0025820874, + 0.0006208624, + -0.019918507, + -0.016278448, + -0.0033027811, + 0.009189241, + 0.022998556, + -0.002742772, + 0.014076593, + 0.011728373, + -0.009189241, + -0.021585805, + -0.006771019, + 0.007585578, + 0.008769234, + 0.009691976, + 0.0021938994, + 0.014038411, + -0.015018427, + -0.010990179, + 0.007458303, + -0.0012719525, + -0.012466567, + 0.0038373352, + 0.003186643, + 0.0016895729, + -0.0010476307, + 0.003627332, + 0.012663843, + 0.004311434, + -0.00871196, + 0.0027045896, + 0.0053646327, + -0.009074694, + -0.0046582576, + 0.005329632, + 0.0051069013, + 0.0002839819, + 0.007617397, + -0.0060041887, + 0.0016848001, + -0.018747577, + -0.005307359, + -0.004820533, + 0.0012305882, + -0.00823468, + 0.0004558029, + 0.0075728507, + 0.0060932813, + -0.00016287198, + -0.007585578, + -0.009641066, + 0.008985601, + 0.008692869, + -0.0042732516, + 0.0066501084, + -0.009055602, + 0.004756896, + -0.0049000797, + -0.0004251774, + -0.008412864, + -0.011359276, + -0.008673778, + -0.013147487, + -0.009042875, + -0.009469246, + 0.0061855554, + 0.015603891, + -0.00024261759, + -0.0050146272, + 0.0037355155, + 0.0010030845, + 0.0029893669, + -0.0041205217, + -0.0024723131, + -0.004330525, + 0.003891427, + 0.0077319443, + 0.014483873, + 0.014891151, + -0.010799266, + 0.005526908, + -0.0047887145, + -0.0070446604, + 0.012091106, + -0.014916606, + -0.013542038, + 0.0064910147, + -0.007859219, + 0.0037227878, + 0.0065419246, + 0.0037005148, + 0.001764347, + -0.004040975, + -0.011270184, + 0.0003788414, + 0.008323772, + -0.00823468, + 0.0036146042, + -0.005285086, + 0.0034459652, + -0.006681927, + -0.007871946, + 0.009571065, + 0.005752821, + -0.0022957192, + 0.008291953, + 0.00006413457, + 0.0064941966, + -0.0055014533, + -0.003990065, + -0.0057114568, + -0.0017388919, + 0.007413757, + -0.0054059974, + -0.00573373, + -0.004489619, + 0.0028350463, + -0.019078493, + 0.0025773146, + -0.005466453, + -0.010487444, + 0.006879203, + -0.00007527111, + 0.013542038, + 0.02858592, + -0.0016720727, + -0.0034936932, + -0.005504635, + 0.023418562, + -0.0018041203, + -0.00028378304, + 0.009583793, + -0.0129820295, + -0.0053200866, + 0.015972987, + 0.023456747, + -0.0039264276, + 0.0061569186, + -0.0034873295, + -0.0024659492, + -0.0038755178, + -0.0012854754, + 0.0007545009, + -0.0018486665, + 0.025022225, + 0.004403708, + -0.001504229, + -0.00078194455, + 0.023036739, + 0.0055173626, + -0.0038786996, + 0.0064782873, + -0.022336727, + -0.0010993361, + 0.004187341, + -0.007566487, + -0.0018979855, + 0.011473823, + 0.0007704103, + -0.0019648047, + -0.008381045, + -0.0132365795, + 0.010570172, + -0.0084955925, + -0.003186643, + 0.0050337184, + 0.0066882907, + -0.0072483, + -0.011454732, + -0.0015622982, + 0.0023561749, + -0.0039550643, + -0.0012194517, + 0.0026775436, + -0.0013976364, + -0.0014755923, + -0.010220166, + -0.0016991186, + 0.008209225, + 0.005215085, + -0.014063866, + -0.003353691, + 0.0137711335, + 0.010506535, + -0.006771019, + -0.003891427, + -0.0066501084, + -0.002154126, + 0.010162893, + 0.00013751644, + 0.018429391, + -0.005686002, + 0.0041523403, + -0.009831978, + -0.006347831, + 0.010118347, + 0.011079271, + 0.0058387313, + 0.018314844, + -0.003010049, + -0.014331142, + -0.009666521, + -0.008801052, + -0.0050814464, + 0.018467573, + 0.0028732286, + -0.00484917, + 0.013847498, + -0.012364747, + -0.009411971, + -0.0017754835, + 0.011620189, + 0.007343756, + -0.0062237377, + 0.0043464345, + 0.006106009, + 0.0037864253, + 0.0075792144, + 0.0019775322, + -0.0054282704, + -0.0007198981, + -0.0053487234, + 0.001664118, + 0.008393773, + -0.0017420738, + -0.0020173057, + -0.007566487, + -0.0008837644, + -0.0011987695, + -0.013045667, + -0.0029909578, + 0.012422021, + 0.00032634055, + -0.0017595742, + 0.00027920908, + -0.00094581087, + -0.010780175, + -0.008641959, + 0.00060018024, + 0.000088893496, + 0.0000648306, + -0.0057464573, + -0.007216481, + 0.0058132764, + 0.005460089, + -0.012364747, + -0.00995289, + -0.00012110993, + -0.010360169, + -0.00631283, + 0.009335606, + 0.013402036, + 0.00042716606, + -0.0045468924, + 0.0066437447, + 0.00440689, + -0.004040975, + 0.0017404829, + 0.012746572, + -0.015514798, + 0.000024845931, + -0.0010237667, + 0.011181091, + -0.001310135, + -0.008113769, + 0.008667414, + -0.0020284422, + -0.0038086984, + 0.013720224, + 0.0038850633, + 0.009558338, + 0.0010006981, + -0.0072037536, + -0.00529145, + 0.0044959825, + 0.027516812, + -0.008298317, + 0.008311044, + -0.0049796267, + 0.007076479, + 0.0015090018, + -0.016558452, + 0.009131967, + 0.003134142, + -0.0022336727, + 0.00052620174, + -0.012224745, + -0.0011001315, + 0.01126382, + -0.0019663956, + -0.004040975, + 0.0021493533, + -0.0057210024, + 0.012822936, + -0.0060519166, + 0.006086917, + 0.003935973, + -0.0036209682, + -0.0062237377, + -0.0051514474, + 0.006118736, + -0.0039741555, + -0.012803845, + 0.010455625, + 0.006366922, + 0.00028716377, + 0.015578436, + 0.0065005603, + 0.0008117746, + -0.010468353, + 0.008845598, + -0.015018427, + -0.0038786996, + 0.004314616, + -0.009367425, + 0.0054982714, + 0.009348334, + 0.014420235, + -0.004607348, + 0.018047567, + -0.005876914, + 0.0017357101, + 0.0063001025, + 0.006001007, + -0.011531097, + -0.0028589102, + 0.009322879, + -0.0016338902, + 0.019103948, + -0.0071337526, + -0.0055141808, + -0.018340299, + -0.0078910375, + 0.0063860132, + 0.0068473844, + -0.0038850633, + -0.004823715, + 0.008801052, + -0.014407507 + ] + } + ], + "model": "davinci", + "usage": { + "prompt_tokens": 5, + "total_tokens": 5 + } + } + } + ], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "RandomSeed": "224051127", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTest.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTest.json new file mode 100644 index 000000000000..5be06ce4a2ad --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTest.json @@ -0,0 +1,10 @@ +{ + "Entries": [], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTestAsync.json b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTestAsync.json new file mode 100644 index 000000000000..5be06ce4a2ad --- /dev/null +++ b/sdk/openai/Azure.AI.OpenAI/tests/SessionRecords/OpenAIInferenceTests/InstanceTestAsync.json @@ -0,0 +1,10 @@ +{ + "Entries": [], + "Variables": { + "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", + "OPENAI_DEPLOYMENT_ID": "text-davinci-002", + "OPENAI_EMBEDDINGS_DEPLOYMENT_ID": "text-similarity-davinci-001", + "OPENAI_ENDPOINT": "https://sdk.openai.azure.com/", + "SUBSCRIPTION_ID": "faa080af-c1d8-40ad-9cce-e1a450ca5b57" + } +} diff --git a/sdk/openai/ci.yml b/sdk/openai/ci.yml new file mode 100644 index 000000000000..f9da5c08c37f --- /dev/null +++ b/sdk/openai/ci.yml @@ -0,0 +1,35 @@ +# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file. + +trigger: + branches: + include: + - main + - hotfix/* + - release/* + paths: + include: + - sdk/openai + - sdk/openai/ci.yml + - sdk/openai/Azure.AI.OpenAI + +pr: + branches: + include: + - main + - feature/* + - hotfix/* + - release/* + paths: + include: + - sdk/openai + - sdk/openai/ci.yml + - sdk/openai/Azure.AI.OpenAI + +extends: + template: /eng/pipelines/templates/stages/archetype-sdk-client.yml + parameters: + ServiceDirectory: openai + ArtifactName: packages + Artifacts: + - name: Azure.AI.OpenAI + safeName: AzureAIOpenAI diff --git a/sdk/openai/tests.yml b/sdk/openai/tests.yml new file mode 100644 index 000000000000..870ac62c0298 --- /dev/null +++ b/sdk/openai/tests.yml @@ -0,0 +1,7 @@ +trigger: none + +extends: + template: /eng/pipelines/templates/stages/archetype-sdk-tests.yml + parameters: + ServiceDirectory: openai + SupportedClouds: 'Public'