summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2023-08-18 09:01:50 -0700
committerGitHub <noreply@github.com>2023-08-18 16:01:50 +0000
commit673afcf4059cd1daf09ac795d85793c3cdc3ddfc (patch)
tree685376f42d7ff5e0dfc2d6a7c20898224b3a08e4
parent50c9d2c4ff3560588cb53a3f046fbaacf7ea42a9 (diff)
Adds example notebook for installing in Google Colab (#5333)
* Adds example notebook for installing in Google Colab * Update README.md
-rw-r--r--examples/README.md4
-rw-r--r--examples/googleColabInstallation.ipynb2491
2 files changed, 2495 insertions, 0 deletions
diff --git a/examples/README.md b/examples/README.md
index d12e8626fb8..1d5f487e5c7 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -59,3 +59,7 @@ This notebook demonstrates how to fetch and work with options chains data.
- Calculate and visualize the Net Delta Exposure, in dollars, by strike and expiration.
- Visualize the term structure of the implied volatility skew.
- Get tables with multiple single-leg options strategies.
+
+### googleColabInstallation
+
+This notebook demonstrates how to install the OpenBB SDK within Google Colab.
diff --git a/examples/googleColabInstallation.ipynb b/examples/googleColabInstallation.ipynb
new file mode 100644
index 00000000000..78d3f1532f5
--- /dev/null
+++ b/examples/googleColabInstallation.ipynb
@@ -0,0 +1,2491 @@
+{
+ "nbformat": 4,
+ "nbformat_minor": 0,
+ "metadata": {
+ "colab": {
+ "provenance": []
+ },
+ "kernelspec": {
+ "name": "python3",
+ "display_name": "Python 3"
+ },
+ "language_info": {
+ "name": "python"
+ },
+ "widgets": {
+ "application/vnd.jupyter.widget-state+json": {
+ "1c14db4b3fa04b67a7265adda2672f58": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_name": "DropdownModel",
+ "model_module_version": "2.0.0",
+ "state": {
+ "_dom_classes": [],
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "2.0.0",
+ "_model_name": "DropdownModel",
+ "_options_labels": [
+ "Cash and cash equivalents",
+ "Other short-term investments",
+ "Total cash",
+ "Net receivables",
+ "Inventory",
+ "Other current assets",
+ "Total current assets",
+ "Gross property plant and equipment",
+ "Accumulated depreciation",
+ "Net property plant and equipment",
+ "Equity and other investments",
+ "Other long-term assets",
+ "Total non-current assets",
+ "Total assets",
+ "Current debt",
+ "Accounts payable",
+ "Deferred revenues",
+ "Other current liabilities",
+ "Total current liabilities",
+ "Long-term debt",
+ "Other long-term liabilities",
+ "Total non-current liabilities",
+ "Total liabilities",
+ "Common stock",
+ "Retained earnings",
+ "Accumulated other comprehensive income",
+ "Total stockholders' equity",
+ "Total liabilities and stockholders' equity"
+ ],
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/controls",
+ "_view_module_version": "2.0.0",
+ "_view_name": "DropdownView",
+ "description": "",
+ "description_allow_html": false,
+ "disabled": false,
+ "index": 2,
+ "layout": "IPY_MODEL_5038c42252f245e4906d27a68f23d7cd",
+ "style": "IPY_MODEL_ce2de0778cf24736b3ed515792072c94",
+ "tabbable": null,
+ "tooltip": null
+ }
+ },
+ "5038c42252f245e4906d27a68f23d7cd": {
+ "model_module": "@jupyter-widgets/base",
+ "model_name": "LayoutModel",
+ "model_module_version": "2.0.0",
+ "state": {
+ "_model_module": "@jupyter-widgets/base",
+ "_model_module_version": "2.0.0",
+ "_model_name": "LayoutModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "2.0.0",
+ "_view_name": "LayoutView",
+ "align_content": null,
+ "align_items": null,
+ "align_self": null,
+ "border_bottom": null,
+ "border_left": null,
+ "border_right": null,
+ "border_top": null,
+ "bottom": null,
+ "display": null,
+ "flex": null,
+ "flex_flow": null,
+ "grid_area": null,
+ "grid_auto_columns": null,
+ "grid_auto_flow": null,
+ "grid_auto_rows": null,
+ "grid_column": null,
+ "grid_gap": null,
+ "grid_row": null,
+ "grid_template_areas": null,
+ "grid_template_columns": null,
+ "grid_template_rows": null,
+ "height": null,
+ "justify_content": null,
+ "justify_items": null,
+ "left": null,
+ "margin": null,
+ "max_height": null,
+ "max_width": null,
+ "min_height": null,
+ "min_width": null,
+ "object_fit": null,
+ "object_position": null,
+ "order": null,
+ "overflow": null,
+ "padding": null,
+ "right": null,
+ "top": null,
+ "visibility": null,
+ "width": null
+ }
+ },
+ "ce2de0778cf24736b3ed515792072c94": {
+ "model_module": "@jupyter-widgets/controls",
+ "model_name": "DescriptionStyleModel",
+ "model_module_version": "2.0.0",
+ "state": {
+ "_model_module": "@jupyter-widgets/controls",
+ "_model_module_version": "2.0.0",
+ "_model_name": "DescriptionStyleModel",
+ "_view_count": null,
+ "_view_module": "@jupyter-widgets/base",
+ "_view_module_version": "2.0.0",
+ "_view_name": "StyleView",
+ "description_width": ""
+ }
+ }
+ }
+ }
+ },
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {
+ "id": "LNE5BHdkQ6cY"
+ },
+ "outputs": [],
+ "source": [
+ "# You can ignore the red warning messages.\n",
+ "# The nightly distribution is built from the develop branch on GitHub every night, and will contain bug fixes not available on PyPI.\n",
+ "# To not use the nightly distribution, run `!pip install openbb`\n",
+ "# To install locally, follow the instructions here: https://docs.openbb.co/terminal/installation/source\n",
+ "\n",
+ "!pip install openbb-nightly"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# First, restart the runtime by clicking the button.\n",
+ "\n",
+ "# Import statements - for many scenarios, the only import needed will be `from openbb_terminal.sdk import openbb`\n",
+ "\n",
+ "from IPython.display import display\n",
+ "from IPython.display import clear_output\n",
+ "import ipywidgets as widgets\n",
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import pandas_ta as ta\n",
+ "from datetime import datetime\n",
+ "\n",
+ "from openbb_terminal.sdk import openbb\n",
+ "from openbb_terminal import OpenBBFigure\n",
+ "\n",
+ "pd.options.plotting.backend = \"plotly\"\n",
+ "\n",
+ "# The output of this block can be ignored. The forecast components are not currently compatible with CoLabs.\n",
+ "# Documentation is found here: https://docs.openbb.co/sdk/usage/basics\n",
+ "# For additional example notebooks, see: https://my.openbb.co/app/sdk/examples\n",
+ "# Enter API credentials and generate a personal access token to login remotely: https://my.openbb.co/app/sdk/api-keys"
+ ],
+ "metadata": {
+ "id": "YqSodJvmQ87R"
+ },
+ "execution_count": 3,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Login with:\n",
+ "\n",
+ "#openbb.login(token=\"REPLACE_WITH_PAT\")"
+ ],
+ "metadata": {
+ "id": "KkwFZdBqpmvr"
+ },
+ "execution_count": null,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "symbol= \"AAPL\""
+ ],
+ "metadata": {
+ "id": "oWTfr457h470"
+ },
+ "execution_count": 2,
+ "outputs": []
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "data = openbb.stocks.load(symbol)[\"Close\"].pct_change(21)\n",
+ "data.tail(2)"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 107
+ },
+ "id": "Kwc9TSwXd8jm",
+ "outputId": "9453751b-5dd1-4961-ab48-8850e89660ef"
+ },
+ "execution_count": 4,
+ "outputs": [
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ "Loading Daily data for AAPL with starting period 2020-08-04.\n"
+ ],
+ "text/html": [
+ "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">Loading Daily data for AAPL with starting period 2020-08-04.\n",
+ "</pre>\n"
+ ]
+ },
+ "metadata": {}
+ },
+ {
+ "output_type": "execute_result",
+ "data": {
+ "text/plain": [
+ "date\n",
+ "2023-08-08 -0.046710\n",
+ "2023-08-09 -0.045613\n",
+ "Name: Close, dtype: float64"
+ ]
+ },
+ "metadata": {},
+ "execution_count": 4
+ }
+ ]
+ },
+ {
+ "cell_type": "code",
+ "source": [
+ "# Generate output without loading to a variable.\n",
+ "\n",
+ "openbb.stocks.load(symbol)[\"Close\"].pct_change(21).plot()"
+ ],
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/",
+ "height": 559
+ },
+ "id": "BgmixSVBYd_N",
+ "outputId": "bdcb310f-027f-43f9-9fa2-d63114326ebd"
+ },
+ "execution_count": 5,
+ "outputs": [
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/plain": [
+ "Loading Daily data for AAPL with starting period 2020-08-04.\n"
+ ],
+ "text/html": [
+ "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">Loading Daily data for AAPL with starting period 2020-08-04.\n",
+ "</pre>\n"
+ ]
+ },
+ "metadata": {}
+ },
+ {
+ "output_type": "display_data",
+ "data": {
+ "text/html": [
+ "<html>\n",
+ "<head><meta charset=\"utf-8\" /></head>\n",
+ "<body>\n",
+ " <div> <script src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-AMS-MML_SVG\"></script><script type=\"text/javascript\">if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}</script> <script type=\"text/javascript\">window.PlotlyConfig = {MathJaxConfig: 'local'};</script>\n",
+ " <script charset=\"utf-8\" src=\"https://cdn.plot.ly/plotly-2.24.1.min.js\"></script> <div id=\"a085f1e9-8822-4c42-9fb1-bee9c04de07a\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"a085f1e9-8822-4c42-9fb1-bee9c04de07a\")) { Plotly.newPlot( \"a085f1e9-8822-4c42-9fb1-bee9c04de07a\", [{\"hovertemplate\":\"variable=Close\\u003cbr\\u003edate=%{x}\\u003cbr\\u003evalue=%{y}\\u003cextra\\u003e\\u003c\\u002fextra\\u003e\",\"legendgroup\":\"Close\",\"line\":{\"color\":\"#ffed00\",\"dash\":\"solid\"},\"marker\":{\"symbol\":\"circle\"},\"mode\":\"lines\",\"name\":\"Close\",\"orientation\":\"v\",\"showlegend\":true,\"x\":[\"2020-08-04T00:00:00\",\"2020-08-05T00:00:00\",\"2020-08-06T00:00:00\",\"2020-08-07T00:00:00\",\"2020-08-10T00:00:00\",\"2020-08-11T00:00:00\",\"2020-08-12T00:00:00\",\"2020-08-13T00:00:00\",\"2020-08-14T00:00:00\",\"2020-08-17T00:00:00\",\"2020-08-18T00:00:00\",\"2020-08-19T00:00:00\",\"2020-08-20T00:00:00\",\"2020-08-21T00:00:00\",\"2020-08-24T00:00:00\",\"2020-08-25T00:00:00\",\"2020-08-26T00:00:00\",\"2020-08-27T00:00:00\",\"2020-08-28T00:00:00\",\"2020-08-31T00:00:00\",\"2020-09-01T00:00:00\",\"2020-09-02T00:00:00\",\"2020-09-03T00:00:00\",\"2020-09-04T00:00:00\",\"2020-09-08T00:00:00\",\"2020-09-09T00:00:00\",\"2020-09-10T00:00:00\",\"2020-09-11T00:00:00\",\"2020-09-14T00:00:00\",\"2020-09-15T00:00:00\",\"2020-09-16T00:00:00\",\"2020-09-17T00:00:00\",\"2020-09-18T00:00:00\",\"2020-09-21T00:00:00\",\"2020-09-22T00:00:00\",\"2020-09-23T00:00:00\",\"2020-09-24T00:00:00\",\"2020-09-25T00:00:00\",\"2020-09-28T00:00:00\",\"2020-09-29T00:00:00\",\"2020-09-30T00:00:00\",\"2020-10-01T00:00:00\",\"2020-10-02T00:00:00\",\"2020-10-05T00:00:00\",\"2020-10-06T00:00:00\",\"2020-10-07T00:00:00\",\"2020-10-08T00:00:00\",\"2020-10-09T00:00:00\",\"2020-10-12T00:00:00\",\"2020-10-13T00:00:00\",\"2020-10-14T00:00:00\",\"2020-10-15T00:00:00\",\"2020-10-16T00:00:00\",\"2020-10-19T00:00:00\",\"2020-10-20T00:00:00\",\"2020-10-21T00:00:00\",\"2020-10-22T00:00:00\",\"2020-10-23T00:00:00\",\"2020-10-26T00:00:00\",\"2020-10-27T00:00:00\",\"2020-10-28T00:00:00\",\"2020-10-29T00:00:00\",\"2020-10-30T00:00:00\",\"2020-11-02T00:00:00\",\"2020-11-03T00:00:00\",\"2020-11-04T00:00:00\",\"2020-11-05T00:00:00\",\"2020-11-06T00:00:00\",\"2020-11-09T00:00:00\",\"2020-11-10T00:00:00\",\"2020-11-11T00:00:00\",\"2020-11-12T00:00:00\",\"2020-11-13T00:00:00\",\"2020-11-16T00:00:00\",\"2020-11-17T00:00:00\",\"2020-11-18T00:00:00\",\"2020-11-19T00:00:00\",\"2020-11-20T00:00:00\",\"2020-11-23T00:00:00\",\"2020-11-24T00:00:00\",\"2020-11-25T00:00:00\",\"2020-11-27T00:00:00\",\"2020-11-30T00:00:00\",\"2020-12-01T00:00:00\",\"2020-12-02T00:00:00\",\"2020-12-03T00:00:00\",\"2020-12-04T00:00:00\",\"2020-12-07T00:00:00\",\"2020-12-08T00:00:00\",\"2020-12-09T00:00:00\",\"2020-12-10T00:00:00\",\"2020-12-11T00:00:00\",\"2020-12-14T00:00:00\",\"2020-12-15T00:00:00\",\"2020-12-16T00:00:00\",\"2020-12-17T00:00:00\",\"2020-12-18T00:00:00\",\"2020-12-21T00:00:00\",\"2020-12-22T00:00:00\",\"2020-12-23T00:00:00\",\"2020-12-24T00:00:00\",\"2020-12-28T00:00:00\",\"2020-12-29T00:00:00\",\"2020-12-30T00:00:00\",\"2020-12-31T00:00:00\",\"2021-01-04T00:00:00\",\"2021-01-05T00:00:00\",\"2021-01-06T00:00:00\",\"2021-01-07T00:00:00\",\"2021-01-08T00:00:00\",\"2021-01-11T00:00:00\",\"2021-01-12T00:00:00\",\"2021-01-13T00:00:00\",\"2021-01-14T00:00:00\",\"2021-01-15T00:00:00\",\"2021-01-19T00:00:00\",\"2021-01-20T00:00:00\",\"2021-01-21T00:00:00\",\"2021-01-22T00:00:00\",\"2021-01-25T00:00:00\",\"2021-01-26T00:00:00\",\"2021-01-27T00:00:00\",\"2021-01-28T00:00:00\",\"2021-01-29T00:00:00\",\"2021-02-01T00:00:00\",\"2021-02-02T00:00:00\",\"2021-02-03T00:00:00\",\"2021-02-04T00:00:00\",\"2021-02-05T00:00:00\",\"2021-02-08T00:00:00\",\"2021-02-09T00:00:00\",\"2021-02-10T00:00:00\",\"2021-02-11T00:00:00\",\"2021-02-12T00:00:00\",\"2021-02-16T00:00:00\",\"2021-02-17T00:00:00\",\"2021-02-18T00:00:00\",\"2021-02-19T00:00:00\",\"2021-02-22T00:00:00\",\"2021-02-23T00:00:00\",\"2021-02-24T00:00:00\",\"2021-02-25T00:00:00\",\"2021-02-26T00:00:00\",\"2021-03-01T00:00:00\",\"2021-03-02T00:00:00\",\"2021-03-03T00:00:00\",\"2021-03-04T00:00:00\",\"2021-03-05T00:00:00\",\"2021-03-08T00:00:00\",\"2021-03-09T00:00:00\",\"2021-03-10T00:00:00\",\"2021-03-11T00:00:00\",\"2021-03-12T00:00:00\",\"2021-03-15T00:00:00\",\"2021-03-16T00:00:00\",\"2021-03-17T00:00:00\",\"2021-03-18T00:00:00\",\"2021-03-19T00:00:00\",\"2021-03-22T00:00:00\",\"2021-03-23T00:00:00\",\"2021-03-24T00:00:00\",\"2021-03-25T00:00:00\",\"2021-03-26T00:00:00\",\"2021-03-29T00:00:00\",\"2021-03-30T00:00:00\",\"2021-03-31T00:00:00\",\"2021-04-01T00:00:00\",\"2021-04-05T00:00:00\",\"2021-04-06T00:00:00\",\"2021-04-07T00:00:00\",\"2021-04-08T00:00:00\",\"2021-04-09T00:00:00\",\"2021-04-12T00:00:00\",\"2021-04-13T00:00:00\",\"2021-04-14T00:00:00\",\"2021-04-15T00:00:00\",\"2021-04-16T00:00:00\",\"2021-04-19T00:00:00\",\"2021-04-20T00:00:00\",\"2021-04-21T00:00:00\",\"2021-04-22T00:00:00\",\"2021-04-23T00:00:00\",\"2021-04-26T00:00:00\",\"2021-04-27T00:00:00\",\"2021-04-28T00:00:00\",\"2021-04-29T00:00:00\",\"2021-04-30T00:00:00\",\"2021-05-03T00:00:00\",\"2021-05-04T00:00:00\",\"2021-05-05T00:00:00\",\"2021-05-06T00:00:00\",\"2021-05-07T00:00:00\",\"2021-05-10T00:00:00\",\"2021-05-11T00:00:00\",\"2021-05-12T00:00:00\",\"2021-05-13T00:00:00\",\"2021-05-14T00:00:00\",\"2021-05-17T00:00:00\",\"2021-05-18T00:00:00\",\"2021-05-19T00:00:00\",\"2021-05-20T00:00:00\",\"2021-05-21T00:00:00\",\"2021-05-24T00:00:00\",\"2021-05-25T00:00:00\",\"2021-05-26T00:00:00\",\"2021-05-27T00:00:00\",\"2021-05-28T00:00:00\",\"2021-06-01T00:00:00\",\"2021-06-02T00:00:00\",\"2021-06-03T00:00:00\",\"2021-06-04T00:00:00\",\"2021-06-07T00:00:00\",\"2021-06-08T00:00:00\",\"2021-06-09T00:00:00\",\"2021-06-10T00:00:00\",\"2021-06-11T00:00:00\",\"2021-06-14T00:00:00\",\"2021-06-15T00:00:00\",\"2021-06-16T00:00:00\",\"2021-06-17T00:00:00\",\"2021-06-18T00:00:00\",\"2021-06-21T00:00:00\",\"2021-06-22T00:00:00\",\"2021-06-23T00:00:00\",\"2021-06-24T00:00:00\",\"2021-06-25T00:00:00\",\"2021-06-28T00:00:00\",\"2021-06-29T00:00:00\",\"2021-06-30T00:00:00\",\"2021-07-01T00:00:00\",\"2021-07-02T00:00:00\",\"2021-07-06T00:00:00\",\"2021-07-07T00:00:00\",\"2021-07-08T00:00:00\",\"2021-07-09T00:00:00\",\"2021-07-12T00:00:00\",\"2021-07-13T00:00:00\",\"2021-07-14T00:00:00\",\"2021-07-15T00:00:00\",\"2021-07-16T00:00:00\",\"2021-07-19T00:00:00\",\"2021-07-20T00:00:00\",\"2021-07-21T00:00:00\",\"2021-07-22T00:00:00\",\"2021-07-23T00:00:00\",\"2021-07-26T00:00:00\",\"2021-07-27T00:00:00\",\"2021-07-28T00:00:00\",\"2021-07-29T00:00:00\",\"2021-07-30T00:00:00\",\"2021-08-02T00:00:00\",\"2021-08-03T00:00:00\",\"2021-08-04T00:00:00\",\"2021-08-05T00:00:00\",\"2021-08-06T00:00:00\",\"2021-08-09T00:00:00\",\"2021-08-10T00:00:00\",\"2021-08-11T00:00:00\",\"2021-08-12T00:00:00\",\"2021-08-13T00:00:00\",\"2021-08-16T00:00:00\",\"2021-08-17T00:00:00\",\"2021-08-18T00:00:00\",\"2021-08-19T00:00:00\",\"2021-08-20T00:00:00\",\"2021-08-23T00:00:00\",\"2021-08-24T00:00:00\",\"2021-08-25T00:00:00\",\"2021-08-26T00:00:00\",\"2021-08-27T00:00:00\",\"2021-08-30T00:00:00\",\"2021-08-31T00:00:00\",\"2021-09-01T00:00:00\",\"2021-09-02T00:00:00\",\"2021-09-03T00:00:00\",\"2021-09-07T00:00:00\",\"2021-09-08T00:00:00\",\"2021-09-09T00:00:00\",\"2021-09-10T00:00:00\",\"2021-09-13T00:00:00\",\"2021-09-14T00:00:00\",\"2021-09-15T00:00:00\",\"2021-09-16T00:00:00\",\"2021-09-17T00:00:00\",\"2021-09-20T00:00:00\",\"2021-09-21T00:00:00\",\"2021-09-22T00:00:00\",\"2021-09-23T00:00:00\",\"2021-09-24T00:00:00\",\"2021-09-27T00:00:00\",\"2021-09-28T00:00:00\",\"2021-09-29T00:00:00\",\"2021-09-30T00:00:00\",\"2021-10-01T00:00:00\",\"2021-10-04T00:00:00\",\"2021-10-05T00:00:00\",\"2021-10-06T00:00:00\",\"2021-10-07T00:00:00\",\"2021-10-08T00:00:00\",\"2021-10-11T00:00:00\",\"2021-10-12T00:00:00\",\"2021-10-13T00:00:00\",\"2021-10-14T00:00:00\",\"2021-10-15T00:00:00\",\"2021-10-18T00:00:00\",\"2021-10-19T00:00:00\",\"2021-10-20T00:00:00\",\"2021-10-21T00:00:00\",\"2021-10-22T00:00:00\",\"2021-10-25T00:00:00\",\"2021-10-26T00:00:00\",\"2021-10-27T00:00:00\",\"2021-10-28T00:00:00\",\"2021-10-29T00:00:00\",\"2021-11-01T00:00:00\",\"2021-11-02T00:00:00\",\"2021-11-03T00:00:00\",\"2021-11-04T00:00:00\",\"2021-11-05T00:00:00\",\"2021-11-08T00:00:00\",\"2021-11-09T00:00:00\",\"2021-11-10T00:00:00\",\"2021-11-11T00:00:00\",\"2021-11-12T00:00:00\",\"2021-11-15T00:00:00\",\"2021-11-16T00:00:00\",\"2021-11-17T00:00:00\",\"2021-11-18T00:00:00\",\"2021-11-19T00:00:00\",\"2021-11-22T00:00:00\",\"2021-11-23T00:00:00\",\"2021-11-24T00:00:00\",\"2021-11-26T00:00:00\",\"2021-11-29T00:00:00\",\"2021-11-30T00:00:00\",\"2021-12-01T00:00:00\",\"2021-12-02T00:00:00\",\"2021-12-03T00:00:00\",\"2021-12-06T00:00:00\",\"2021-12-07T00:00:00\",\"2021-12-08T00:00:00\",\"2021-12-09T00:00:00\",\"2021-12-10T00:00:00\",\"2021-12-13T00:00:00\",\"2021-12-14T00:00:00\",\"2021-12-15T00:00:00\",\"2021-12-16T00:00:00\",\"2021-12-17T00:00:00\",\"2021-12-20T00:00:00\",\"2021-12-21T00:00:00\",\"2021-12-22T00:00:00\",\"2021-12-23T00:00:00\",\"2021-12-27T00:00:00\",\"2021-12-28T00:00:00\",\"2021-12-29T00:00:00\",\"2021-12-30T00:00:00\",\"2021-12-31T00:00:00\",\"2022-01-03T00:00:00\",\"2022-01-04T00:00:00\",\"2022-01-05T00:00:00\",\"2022-01-06T00:00:00\",\"2022-01-07T00:00:00\",\"2022-01-10T00:00:00\",\"2022-01-11T00:00:00\",\"2022-01-12T00:00:00\",\"2022-01-13T00:00:00\",\"2022-01-14T00:00:00\",\"2022-01-18T00:00:00\",\"2022-01-19T00:00:00\",\"2022-01-20T00:00:00\",\"2022-01-21T00:00:00\",\"2022-01-24T00:00:00\",\"2022-01-25T00:00:00\",\"2022-01-26T00:00:00\",\"2022-01-27T00:00:00\",\"2022-01-28T00:00:00\",\"2022-01-31T00:00:00\",\"2022-02-01T00:00:00\",\"2022-02-02T00:00:00\",\"2022-02-03T00:00:00\",\"2022-02-04T00:00:00\",\"2022-02-07T00:00:00\",\"2022-02-08T00:00:00\",\"2022-02-09T00:00:00\",\"2022-02-10T00:00:00\",\"2022-02-11T00:00:00\",\"2022-02-14T00:00:00\",\"2022-02-15T00:00:00\",\"2022-02-16T00:00:00\",\"2022-02-17T00:00:00\",\"2022-02-18T00:00:00\",\"2022-02-22T00:00:00\",\"2022-02-23T00:00:00\",\"2022-02-24T00:00:00\",\"2022-02-25T00:00:00\",\"2022-02-28T00:00:00\",\"2022-03-01T00:00:00\",\"2022-03-02T00:00:00\",\"2022-03-03T00:00:00\",\"2022-03-04T00:00:00\",\"2022-03-07T00:00:00\",\"2022-03-08T00:00:00\",\"2022-03-09T00:00:00\",\"2022-03-10T00:00:00\",\"2022-03-11T00:00:00\",\"2022-03-14T00:00:00\",\"2022-03-15T00:00:00\",\"2022-03-16T00:00:00\",\"2022-03-17T00:00:00\",\"2022-03-18T00:00:00\",\"2022-03-21T00:00:00\",\"2022-03-22T00:00:00\",\"2022-03-23T00:00:00\",\"2022-03-24T00:00:00\",\"2022-03-25T00:00:00\",\"2022-03-28T00:00:00\",\"2022-03-29T00:00:00\",\"2022-03-30T00:00:00\",\"2022-03-31T00:00:00\",\"2022-04-01T00:00:00\",\"2022-04-04T00:00:00\",\"2022-04-05T00:00:00\",\"2022-04-06T00:00:00\",\"2022-04-07T00:00:00\",\"2022-04-08T00:00:00\",\"2022-04-11T00:00:00\",\"2022-04-12T00:00:00\",\"2022-04-13T00:00:00\",\"2022-04-14T00:00:00\",\"2022-04-18T00:00:00\",\"2022-04-19T00:00:00\",\"2022-04-20T00:00:00\",\"2022-04-21T00:00:00\",\"2022-04-22T00:00:00\",\"2022-04-25T00:00:00\",\"2022-04-26T00:00:00\",\"2022-04-27T00:00:00\",\"2022-04-28T00:00:00\",\"2022-04-29T00:00:00\",\"2022-05-02T00:00:00\",\"2022-05-03T00:00:00\",\"2022-05-04T00:00:00\",\"2022-05-05T00:00:00\",\"2022-05-06T00:00:00\",\"2022-05-09T00:00:00\",\"2022-05-10T00:00:00\",\"2022-05-11T00:00:00\",\"2022-05-12T00:00:00\",\"2022-05-13T00:00:00\",\"2022-05-16T00:00:00\",\"2022-05-17T00:00:00\",\"2022-05-18T00:00:00\",\"2022-05-19T00:00:00\",\"2022-05-20T00:00:00\",\"2022-05-23T00:00:00\",\"2022-05-24T00:00:00\",\"2022-05-25T00:00:00\",\"2022-05-26T00:00:00\",\"2022-05-27T00:00:00\",\"2022-05-31T00:00:00\",\"2022-06-01T00:00:00\",\"2022-06-02T00:00:00\",\"2022-06-03T00:00:00\",\"2022-06-06T00:00:00\",\"2022-06-07T00:00:00\",\"2022-06-08T00:00:00\",\"2022-06-09T00:00:00\",\"2022-06-10T00:00:00\",\"2022-06-13T00:00:00\",\"2022-06-14T00:00:00\",\"2022-06-15T00:00:00\",\"2022-06-16T00:00:00\",\"2022-06-17T00:00:00\",\"2022-06-21T00:00:00\",\"2022-06-22T00:00:00\",\"2022-06-23T00:00:00\",\"2022-06-24T00:00:00\",\"2022-06-27T00:00:00\",\"2022-06-28T00:00:00\",\"2022-06-29T00:00:00\",\"2022-06-30T00:00:00\",\"2022-07-01T00:00:00\",\"2022-07-05T00:00:00\",\"2022-07-06T00:00:00\",\"2022-07-07T00:00:00\",\"2022-07-08T00:00:00\",\"2022-07-11T00:00:00\",\"2022-07-12T00:00:00\",\"2022-07-13T00:00:00\",\"2022-07-14T00:00:00\",\"2022-07-15T00:00:00\",\"2022-07-18T00:00:00\",\"2022-07-19T00:00:00\",\"2022-07-20T00:00:00\",\"2022-07-21T00:00:00\",\"2022-07-22T00:00:00\",\"2022-07-25T00:00:00\",\"2022-07-26T00:00:00\",\"2022-07-27T00:00:00\",\"2022-07-28T00:00:00\",\"2022-07-29T00:00:00\",\"2022-08-01T00:00:00\",\"2022-08-02T00:00:00\",\"2022-08-03T00:00:00\",\"2022-08-04T00:00:00\",\"2022-08-05T00:00:00\",\"2022-08-08T00:00:00\",\"2022-08-09T00:00:00\",\"2022-08-10T00:00:00\",\"2022-08-11T00:00:00\",\"2022-08-12T00:00:00\",\"2022-08-15T00:00:00\",\"2022-08-16T00:00:00\",\"2022-08-17T00:00:00\",\"2022-08-18T00:00:00\",\"2022-08-19T00:00:00\",\"2022-08-22T00:00:00\",\"2022-08-23T00:00:00\",\"2022-08-24T00:00:00\",\"2022-08-25T00:00:00\",\"2022-08-26T00:00:00\",\"2022-08-29T00:00:00\",\"2022-08-30T00:00:00\",\"2022-08-31T00:00:00\",\"2022-09-01T00:00:00\",\"2022-09-02T00:00:00\",\"2022-09-06T00:00:00\",\"2022-09-07T00:00:00\",\"2022-09-08T00:00:00\",\"2022-09-09T00:00:00\",\"2022-09-12T00:00:00\",\"2022-09-13T00:00:00\",\"2022-09-14T00:00:00\",\"2022-09-15T00:00:00\",\"2022-09-16T00:00:00\",\"2022-09-19T00:00:00\",\"2022-09-20T00:00:00\",\"2022-09-21T00:00:00\",\"2022-09-22T00:00:00\",\"2022-09-23T00:00:00\",\"2022-09-26T00:00:00\",\"2022-09-27T00:00:00\",\"2022-09-28T00:00:00\",\"2022-09-29T00:00:00\",\"2022-09-30T00:00:00\",\"2022-10-03T00:00:00\",\"2022-10-04T00:00:00\",\"2022-10-05T00:00:00\",\"2022-10-06T00:00:00\",\"2022-10-07T00:00:00\",\"2022-10-10T00:00:00\",\"2022-10-11T00:00:00\",\"2022-10-12T00:00:00\",\"2022-10-13T00:00:00\",\"2022-10-14T00:00:00\",\"2022-10-17T00:00:00\",\"2022-10-18T00:00:00\",\"2022-10-19T00:00:00\",\"2022-10-20T00:00:00\",\"2022-10-21T00:00:00\",\"2022-10-24T00:00:00\",\"2022-10-25T00:00:00\",\"2022-10-26T00:00:00\",\"2022-10-27T00:00:00\",\"2022-10-28T00:00:00\",\"2022-10-31T00:00:00\",\"2022-11-01T00:00:00\",\"2022-11-02T00:00:00\",\"2022-11-03T00:00:00\",\"2022-11-04T00:00:00\",\"2022-11-07T00:00:00\",\"2022-11-08T00:00:00\",\"2022-11-09T00:00:00\",\"2022-11-10T00:00:00\",\"2022-11-11T00:00:00\",\"2022-11-14T00:00:00\",\"2022-11-15T00:00:00\",\"2022-11-16T00:00:00\",\"2022-11-17T00:00:00\",\"2022-11-18T00:00:00\",\"2022-11-21T00:00:00\",\"2022-11-22T00:00:00\",\"2022-11-23T00:00:00\",\"2022-11-25T00:00:00\",\"2022-11-28T00:00:00\",\"2022-11-29T00:00:00\",\"2022-11-30T00:00:00\",\"2022-12-01T00:00:00\",\"2022-12-02T00:00:00\",\"2022-12-05T00:00:00\",\"2022-12-06T00:00:00\",\"2022-12-07T00:00:00\",\"2022-12-08T00:00:00\",\"2022-12-09T00:00:00\",\"2022-12-12T00:00:00\",\"2022-12-13T00:00:00\",\"2022-12-14T00:00:00\",\"2022-12-15T00:00:00\",\"2022-12-16T00:00:00\",\"2022-12-19T00:00:00\",\"2022-12-20T00:00:00\",\"2022-12-21T00:00:00\",\"2022-12-22T00:00:00\",\"2022-12-23T00:00:00\",\"2022-12-27T00:00:00\",\"2022-12-28T00:00:00\",\"2022-12-29T00:00:00\",\"2022-12-30T00:00:00\",\"2023-01-03T00:00:00\",\"2023-01-04T00:00:00\",\"2023-01-05T00:00:00\",\"2023-01-06T00:00:00\",\"2023-01-09T00:00:00\",\"2023-01-10T00:00:00\",\"2023-01-11T00:00:00\",\"2023-01-12T00:00:00\",\"2023-01-13T00:00:00\",\"2023-01-17T00:00:00\",\"2023-01-18T00:00:00\",\"2023-01-19T00:00:00\",\"2023-01-20T00:00:00\",\"2023-01-23T00:00:00\",\"2023-01-24T00:00:00\",\"2023-01-25T00:00:00\",\"2023-01-26T00:00:00\",\"2023-01-27T00:00:00\",\"2023-01-30T00:00:00\",\"2023-01-31T00:00:00\",\"2023-02-01T00:00:00\",\"2023-02-02T00:00:00\",\"2023-02-03T00:00:00\",\"2023-02-06T00:00:00\",\"2023-02-07T00:00:00\",\"2023-02-08T00:00:00\",\"2023-02-09T00:00:00\",\"2023-02-10T00:00:00\",\"2023-02-13T00:00:00\",\"2023-02-14T00:00:00\",\"2023-02-15T00:00:00\",\"2023-02-16T00:00:00\",\"2023-02-17T00:00:00\",\"2023-02-21T00:00:00\",\"2023-02-22T00:00:00\",\"2023-02-23T00:00:00\",\"2023-02-24T00:00:00\",\"2023-02-27T00:00:00\",\"2023-02-28T00:00:00\",\"2023-03-01T00:00:00\",\"2023-03-02T00:00:00\",\"2023-03-03T00:00:00\",\"2023-03-06T00:00:00\",\"2023-03-07T00:00:00\",\"2023-03-08T00:00:00\",\"2023-03-09T00:00:00\",\"2023-03-10T00:00:00\",\"2023-03-13T00:00:00\",\"2023-03-14T00:00:00\",\"2023-03-15T00:00:00\",\"2023-03-16T00:00:00\",\"2023-03-17T00:00:00\",\"2023-03-20T00:00:00\",\"2023-03-21T00:00:00\",\"2023-03-22T00:00:00\",\"2023-03-23T00:00:00\",\"2023-03-24T00:00:00\",\"2023-03-27T00:00:00\",\"2023-03-28T00:00:00\",\"2023-03-29T00:00:00\",\"2023-03-30T00:00:00\",\"2023-03-31T00:00:00\",\"2023-04-03T00:00:00\",\"2023-04-04T00:00:00\",\"2023-04-05T00:00:00\",\"2023-04-06T00:00:00\",\"2023-04-10T00:00:00\",\"2023-04-11T00:00:00\",\"2023-04-12T00:00:00\",\"2023-04-13T00:00:00\",\"2023-04-14T00:00:00\",\"2023-04-17T00:00:00\",\"2023-04-18T00:00:00\",\"2023-04-19T00:00:00\",\"2023-04-20T00:00:00\",\"2023-04-21T00:00:00\",\"2023-04-24T00:00:00\",\"2023-04-25T00:00:00\",\"2023-04-26T00:00:00\",\"2023-04-27T00:00:00\",\"2023-04-28T00:00:00\",\"2023-05-01T00:00:00\",\"2023-05-02T00:00:00\",\"2023-05-03T00:00:00\",\"2023-05-04T00:00:00\",\"2023-05-05T00:00:00\",\"2023-05-08T00:00:00\",\"2023-05-09T00:00:00\",\"2023-05-10T00:00:00\",\"2023-05-11T00:00:00\",\"2023-05-12T00:00:00\",\"2023-05-15T00:00:00\",\"2023-05-16T00:00:00\",\"2023-05-17T00:00:00\",\"2023-05-18T00:00:00\",\"2023-05-19T00:00:00\",\"2023-05-22T00:00:00\",\"2023-05-23T00:00:00\",\"2023-05-24T00:00:00\",\"2023-05-25T00:00:00\",\"2023-05-26T00:00:00\",\"2023-05-30T00:00:00\",\"2023-05-31T00:00:00\",\"2023-06-01T00:00:00\",\"2023-06-02T00:00:00\",\"2023-06-05T00:00:00\",\"2023-06-06T00:00:00\",\"2023-06-07T00:00:00\",\"2023-06-08T00:00:00\",\"2023-06-09T00:00:00\",\"2023-06-12T00:00:00\",\"2023-06-13T00:00:00\",\"2023-06-14T00:00:00\",\"2023-06-15T00:00:00\",\"2023-06-16T00:00:00\",\"2023-06-20T00:00:00\",\"2023-06-21T00:00:00\",\"2023-06-22T00:00:00\",\"2023-06-23T00:00:00\",\"2023-06-26T00:00:00\",\"2023-06-27T00:00:00\",\"2023-06-28T00:00:00\",\"2023-06-29T00:00:00\",\"2023-06-30T00:00:00\",\"2023-07-03T00:00:00\",\"2023-07-05T00:00:00\",\"2023-07-06T00:00:00\",\"2023-07-07T00:00:00\",\"2023-07-10T00:00:00\",\"2023-07-11T00:00:00\",\"2023-07-12T00:00:00\",\"2023-07-13T00:00:00\",\"2023-07-14T00:00:00\",\"2023-07-17T00:00:00\",\"2023-07-18T00:00:00\",\"2023-07-19T00:00:00\",\"2023-07-20T00:00:00\",\"2023-07-21T00:00:00\",\"2023-07-24T00:00:00\",\"2023-07-25T00:00:00\",\"2023-07-26T00:00:00\",\"2023-07-27T00:00:00\",\"2023-07-28T00:00:00\",\"2023-07-31T00:00:00\",\"2023-08-01T00:00:00\",\"2023-08-02T00:00:00\",\"2023-08-03T00:00:00\",\"2023-08-04T00:00:00\",\"2023-08-07T00:00:00\",\"2023-08-08T00:00:00\",\"2023-08-09T00:00:00\"],\"xaxis\":\"x\",\"y\":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.20035466608901986,0.1002653213195166,0.06387568122721254,0.01536725511369208,0.04073988519810556,0.0376229585278125,-0.008937335692571935,0.0030432436409852937,0.0055044205611956,-0.021617247557944586,-0.04519192322332721,-0.07663729297507127,-0.069287672030653,-0.10098897179938504,-0.1488787018370591,-0.133026146698914,-0.1125690188571945,-0.0803936701436796,-0.08587214749510952,-0.10252636006971283,-0.1296020225781489,-0.13987811040429943,-0.03623414905975131,-0.06448417921469984,0.02003202285492378,-0.020030748282929944,0.030663479458803433,0.1107144741932522,0.04975738069999025,0.04890088941651349,0.07651827402114808,0.07866575315077928,0.08554870069171816,0.06749634901480661,0.04525556833675326,0.08056394836266345,0.06301964522169734,0.024670543927649113,0.014265918342684536,-0.025331002682831616,-0.004231123239945567,-0.06789973526909221,-0.03760405688356039,-0.052017389932176084,0.015818205149226383,0.034323876362650996,0.03413744914833816,-0.0038413422084435656,-0.0661570358908341,-0.011592576508161034,-0.014641124811767936,-0.010307753997293334,0.012498447266295898,0.031177511763480492,0.006157998278593535,0.016896361421369743,0.015485300735239571,-0.008636682689617037,0.002770140251876718,-0.0031717827224391204,0.05027998858519078,0.03412612993408781,0.12926434723894542,0.1335144471488301,0.11510421846545782,0.0653408107464859,0.04144755903442898,0.04793986598828992,0.04693949732317226,0.06268841184522422,0.02443718117907001,0.021558741961225536,0.07227907537853939,0.06242738892488853,0.0779797279325336,0.07311712688116745,0.08083265475767476,0.12391352923451882,0.15028571922163247,0.1458710802283949,0.17805732914039663,0.15678868320895245,0.12322527195948396,0.08124177114855047,0.05142998969152912,0.06564164535597117,0.03558282099781951,0.05793944754777458,0.061666073984645964,0.05912286089804608,0.04511543036462973,0.0692754530442743,0.05854817346938135,-0.005786647790405719,0.00015637180574534781,0.025874306164117566,0.08060942641141233,0.08453559439533276,0.08371232547259333,0.09315806869899057,0.07645688291259933,0.002926417189100805,-0.02157617866962347,0.003140933040102434,0.017333831784776432,0.03500487279949893,0.048698546821933864,0.08186677447983914,0.04731568787239393,0.03152753764537253,0.05126633104043177,0.05071362220344744,0.03577257108469922,0.034745457990125406,0.03063949181820136,0.016223415951694964,-0.014890230836524077,-0.07804288975449136,-0.09363579265977195,-0.12162518288600899,-0.1535988771003659,-0.1451414580520699,-0.06644569915431353,-0.050416906620592394,-0.08869546453690391,-0.10875239190384356,-0.09212011956178257,-0.1518022059776697,-0.11458015080735051,-0.1236578857247157,-0.1033011470698153,-0.10606401353058736,-0.08243901099278361,-0.07239415671500282,-0.06329316811190333,-0.07879848784510834,-0.07493652215566915,-0.0498959850379439,-0.027460191546455404,-0.045844656647782034,-0.03797376689439458,0.0018182995202560281,0.0010720486445978672,-0.06174190481768449,-0.02373724902189356,0.007701125827390909,0.04803110476722172,0.03944987913395703,0.09917498592461227,0.07655460811774728,0.108518255088494,0.07609040959664792,0.11071646257031031,0.06484378410265812,0.0711156057768223,0.07534480167454505,0.11872567219133012,0.10934233196608867,0.08193532515321889,0.0767095274315941,0.11849456087774879,0.11717381996180909,0.10873691281075804,0.10042044934130034,0.11326108542620505,0.0762176493282607,0.07756094270735203,0.015488572676837009,0.014975194905919587,0.014386372491322685,0.0005461448508055078,-0.044620735866213956,-0.03898282118157326,-0.0851853185376974,-0.05186488813763235,-0.05080665402043916,-0.057211701050308816,-0.07251510859252497,-0.061664656094589154,-0.044747321718052735,-0.04772577252310428,-0.05214492613468902,-0.056446171727878025,-0.054502119357140444,-0.06054232875743393,-0.06486626134183526,-0.0530115871627449,-0.05483292910069004,-0.03207010378782593,-0.01558296792361813,-0.027949478814184525,-0.026649390214262603,0.0022073882518824917,0.0015883278957620206,0.0373053096752578,0.04409061205632492,0.017183035912738953,0.030727816122504636,0.05558667736891598,0.04627466546193393,0.03919581866643895,0.06816538035382913,0.0519276655518639,0.051300274081256036,0.04934963402785497,0.07583012995101024,0.09405353171825537,0.1020278496662339,0.0976331874069134,0.13291244191374751,0.12812766523621466,0.14829249899989727,0.1301879150895422,0.14142987048651623,0.14582502959964816,0.14362013048804645,0.14308684087760049,0.14532542749619926,0.12477909643488116,0.08088628395065767,0.120266673135486,0.0990173261680154,0.09568605554057008,0.11114424941341161,0.11678281412580205,0.10262194498225208,0.07567883695920719,0.06829017569399554,0.06498230469735389,0.0601004709102988,0.05287212602093749,0.034713296728906995,0.01722332748412425,0.021774300019022252,0.008261899006954954,0.009122179579783118,0.0030109891670744293,-0.0002472707580644107,0.005680451791122865,0.033857579683068906,0.055914568131893105,0.002937527938732032,0.010452444863663812,0.010980992191813144,0.009250818096201652,0.005732810892672191,0.0123476605941093,0.019182428946621588,0.021852832101049602,0.051346588333487375,0.044924878553024294,0.03649920109152727,0.04716048435938158,0.05080351942853367,0.07219091118032561,0.06174285956665915,0.05817302760244436,0.0213218156061048,0.004432614476423069,-0.006572823246602688,-0.013830111794942201,-0.009321572917928234,-0.002050036261365795,-0.02563032145918953,-0.032120924462674005,-0.025783235244453362,-0.01864700137228481,-0.009706172659927015,-0.014707824392070412,-0.04502020741948021,-0.06720219459405041,-0.06803652008418837,-0.06465157215617501,-0.09443538869433066,-0.08548268135696813,-0.09375205359514416,-0.07620406256832235,-0.07249970010398066,-0.04135044612253813,-0.05376122202867484,-0.048676722171859255,-0.03536192903597224,-0.026547469716954875,0.003354971970312093,0.040716223349618774,0.04064709763305685,0.024888642472848277,0.012667650977739253,0.011707345528895852,0.027172027440511393,0.0489043112385219,0.06819302981120012,0.05865714504209629,0.04423417514293404,0.07819454647355806,0.07355966252164947,0.06309874370678314,0.05730196758984096,0.05430081504887507,0.057559534622513064,0.04682269037856446,0.05092485934852364,0.044858824219428994,0.03713699711291962,0.03186895009602653,0.0333021091843555,0.05922811599234823,0.07562430142062393,0.08450464327118845,0.08749711055850917,0.0860992796516562,0.055013881855622504,0.05180484187427137,0.10508175501864092,0.10775024900076313,0.09318090487733177,0.0698804416918326,0.09672285534309788,0.1315440594127908,0.1637864054425866,0.15748281267860942,0.21315584619237904,0.18847613291843768,0.16227729952660153,0.19533331773606477,0.14079455134040209,0.11499114975205171,0.07525195001305507,0.07748366243349558,0.09079612856972163,0.0921253715459458,0.11356054573405516,0.1433582217669469,0.1194458519342112,0.0780399794549298,0.07768408118052283,0.11144351714554701,0.11035581730986421,0.058069201989904506,0.004790343889593762,-0.016621169540043668,-0.013576759706704689,-0.02435210401777299,-0.0011949984532635405,-0.01227540358089918,-0.03474618197101742,-0.01428075133462925,-0.02868995954844855,-0.03086895347813423,-0.06115958599243254,-0.07982225363026196,-0.09360104730154217,-0.11445685077282419,-0.11194142352663827,-0.05045162314469398,-0.019191940305830046,-0.01666946648033607,-0.033899112054766256,-0.03784086906708295,-0.013208099212315028,-0.0007051702762496115,0.01674359558899119,0.025057050844327522,-0.015654199917694567,-0.03802833475857126,-0.017973440663144102,-0.0003459585065015425,0.01749018168138572,0.017236160473167006,0.01825506776717911,0.013049448531624375,-0.008328577882850574,0.019823154320488756,0.033627885610209685,0.038376954589611545,-0.040639129854868616,-0.04581646553888574,-0.0467797790496004,-0.07087192795992603,-0.077484290368525,-0.08672199406931236,-0.050739849800201076,-0.09329040569815816,-0.12224861329159364,-0.12491290921060394,-0.08034869876961104,-0.0550095973168474,-0.07043216986694134,-0.04966671035039849,-0.02072487027214831,0.009085645718072355,0.035844707144533805,0.08746165769371861,0.07361436067386795,0.06521091642960664,0.08381777235322763,0.08927704339450204,0.048331037217201445,0.048607217443163764,0.09358337261159067,0.09893270955707445,0.09139990987819879,0.05639762085891786,0.07298753911965461,0.07122067405924803,0.11313259188595115,0.09871685738595493,0.035716521823226044,0.027705064401703616,0.02085612335688003,0.011186441749281073,-0.01421637862968439,-0.0494685796270764,-0.0642844583639739,-0.10256407323630934,-0.10837133405059773,-0.08560575130516845,-0.11318007459406365,-0.0953553545375374,-0.08507827465486495,-0.06960309530492237,-0.10447818337693371,-0.08333198393062669,-0.11535129197754945,-0.09026402771506525,-0.1148399998478985,-0.14845852311658314,-0.13540986585096426,-0.11819317215115921,-0.09457026456511552,-0.15754527757937242,-0.1774693644776858,-0.17202176234177113,-0.11415858707535231,-0.13699522083466176,-0.10250976905826648,-0.08033960586154232,-0.08421004276838362,-0.054496016958944904,-0.057175878753410236,-0.050462875006060615,-0.12303583841126486,-0.06643680712665245,-0.054488646555767684,-0.026963073420704364,-0.07682343318668916,-0.06395911163360146,-0.07491583987044748,-0.09754621743519643,-0.06946553670397693,-0.1285179857358233,-0.06575779376498803,-0.010775330497894586,-0.016280113267319485,-0.03382009474230108,0.009261998346243638,0.008112661200184945,-0.04409504855108992,-0.06956694071638625,-0.08142976435054416,-0.0657657248495821,-0.06381858183794198,-0.01692121375937461,0.0014369919822128097,-0.011230066855835164,-0.020884105017984433,0.022574171378048735,0.06096406524262821,0.12579611328992257,0.1311390077413188,0.08594858626277024,0.16100262751744743,0.1632714709048393,0.1433722923583085,0.1384557737972243,0.10616922483596025,0.07016810451456834,0.10680502600413955,0.14486324972751796,0.1672052307192966,0.18131948758361083,0.15173103229512397,0.17356602670423404,0.1601595693950515,0.13139515870288032,0.12281708319879714,0.1399812287636879,0.16190266417563093,0.15969511626424993,0.160766959669566,0.15489489860294126,0.1781488436482901,0.15756605414449942