From 7c970b330cf9aeec0d7c6e46cf56f7bb7a27d5ec Mon Sep 17 00:00:00 2001 From: Yangge Li <li213@illinois.edu> Date: Thu, 27 Oct 2022 17:31:49 -0500 Subject: [PATCH] change controller to decision_logic; add tutorial for agent and map --- demo/tacas2023/exp7/uncertain_agents.py | 12 +- tutorial/Verse_Tutorial_Drone.ipynb | 75966 ++++++++++++++++++++- tutorial/dl_sec4.py | 28 + tutorial/dl_sec5.py | 61 + tutorial/map_2lanes_lab.png | Bin 0 -> 144826 bytes tutorial/test.py | 112 +- tutorial/tutorial_agent.py | 33 +- tutorial/tutorial_map.py | 29 +- tutorial/tutorial_sensor.py | 32 +- tutorial/tutorial_utils.py | 8 +- verse/agents/base_agent.py | 2 +- verse/agents/example_agent/car_agent.py | 2 +- verse/agents/example_agent/sign_agent.py | 2 +- verse/analysis/analysis_tree.py | 8 +- verse/analysis/incremental.py | 6 +- verse/automaton/guard.py | 28 +- verse/automaton/reset.py | 10 +- verse/parser/parser.py | 2 +- verse/scenario/scenario.py | 62 +- verse/sensor/base_sensor.py | 32 +- 20 files changed, 76092 insertions(+), 343 deletions(-) create mode 100644 tutorial/dl_sec4.py create mode 100644 tutorial/dl_sec5.py create mode 100644 tutorial/map_2lanes_lab.png diff --git a/demo/tacas2023/exp7/uncertain_agents.py b/demo/tacas2023/exp7/uncertain_agents.py index cc15440b..4286b3cb 100644 --- a/demo/tacas2023/exp7/uncertain_agents.py +++ b/demo/tacas2023/exp7/uncertain_agents.py @@ -62,7 +62,7 @@ def computeD(exprs, symbol_x, symbol_w, x, w, x_hat, w_hat): class Agent1(BaseAgent): def __init__(self, id): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() def dynamics(self, x, args): w1, w2, dt = args @@ -90,7 +90,7 @@ class Agent1(BaseAgent): class Agent2(BaseAgent): def __init__(self, id): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() def dynamics(self, x, args): w1, w2, dt = args @@ -118,7 +118,7 @@ class Agent2(BaseAgent): class Agent3(BaseAgent): def __init__(self, id): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() def dynamics(self, x, args): w1, w2, dt = args @@ -132,7 +132,7 @@ class Agent3(BaseAgent): class Agent4(BaseAgent): def __init__(self, id): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() def dynamics(self, x, args): w1, dt = args @@ -164,7 +164,7 @@ class Agent5(BaseAgent): def __init__(self, id): # super().__init__(id, code, file_name) self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() self.init_cont = None self.init_disc = None self.static_parameters = None @@ -213,7 +213,7 @@ class Agent6(BaseAgent): def __init__(self, id): # super().__init__(id, code, file_name) self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() self.init_cont = None self.init_disc = None self.static_parameters = None diff --git a/tutorial/Verse_Tutorial_Drone.ipynb b/tutorial/Verse_Tutorial_Drone.ipynb index 3960145b..92c223fb 100644 --- a/tutorial/Verse_Tutorial_Drone.ipynb +++ b/tutorial/Verse_Tutorial_Drone.ipynb @@ -35,19 +35,10 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "id": "d789ceb2", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "`polytope` failed to import `cvxopt.glpk`.\n", - "will use `scipy.optimize.linprog`\n" - ] - } - ], + "outputs": [], "source": [ "from tutorial_map import M3\n", "\n", @@ -73,7 +64,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "id": "0fbb7f1f", "metadata": {}, "outputs": [], @@ -99,7 +90,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": null, "id": "7edf89dc", "metadata": {}, "outputs": [], @@ -128,7 +119,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "id": "ba6e3ba2", "metadata": {}, "outputs": [], @@ -153,7 +144,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "61837729", "metadata": {}, "outputs": [], @@ -173,7 +164,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, "id": "b046fe36", "metadata": {}, "outputs": [], @@ -192,7 +183,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": null, "id": "6f54eada", "metadata": {}, "outputs": [], @@ -211,7 +202,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": null, "id": "a1e2a90c", "metadata": {}, "outputs": [], @@ -237,20 +228,10 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": null, "id": "cc1cdb50", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[0.04333064463648151, 0.2696066563083741, 0.35135316205944433, 0.0, 0.0, 0.0]]\n", - "{'drone1': ['Normal', 'T0']}\n", - "{'drone1': ('AvoidUp', 'TAvoidUp')}\n" - ] - } - ], + "outputs": [], "source": [ "traces_simu = scenario.simulate(60, 0.2)\n", "traces_veri = scenario.verify(60, 0.2)" @@ -266,30 +247,10 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": null, "id": "c1d70fcf", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABAAAAAMACAIAAAA12IJaAABeb0lEQVR4nO39e4zl6X3fd76f3+/c6n7v6urume7puXFmOD0iRYkdqx1FEjdBYjq73iUWTRhmsM5mA0GOM8GugQWy2f/2Hy+wKMsO1o5jCgqQFXfjwIEtX6TQi7U1koZXizPkkHPve1XX/V7n1Dnn9+wfPz2lIofDufW1fu8XhMHMsLvrdJeNeT7P872EK1euIEmSJKkasvv9ASRJkiTdOwYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIMAJIkSVKFGAAkSZKkCjEASJIkSRViAJAkSZIqxAAgSZIkVYgBQJIkSaoQA4AkSZJUIQYASZIkqUIM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JEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlCDACSJElShRgAJEmSpAoxAEiSJEkVYgCQJEmSKsQAIEmSJFWIAUCSJEmqEAOAJEmSVCEGAEmSJKlC/v+Q1Q6mDx1jOQAAAABJRU5ErkJggg==", - "text/plain": [ - "<PIL.Image.Image image mode=RGB size=1024x768>" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "from verse.plotter.plotter3D import *\n", "import pyvista as pv\n", @@ -339,7 +300,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": null, "id": "a7ce4fd2", "metadata": {}, "outputs": [], @@ -352,7 +313,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -396,7 +357,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": null, "id": "57d0747c", "metadata": {}, "outputs": [], @@ -451,7 +412,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": null, "id": "2187c4b7", "metadata": {}, "outputs": [], @@ -482,7 +443,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": null, "id": "a16287c3", "metadata": {}, "outputs": [], @@ -501,7 +462,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": null, "id": "d39dbe69", "metadata": {}, "outputs": [], @@ -520,23 +481,10 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": null, "id": "c48ad5ad", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1.5274444414877735, -0.014701645224999393, -0.075719016794775, 0.0, 0.0, 0.0], [19.879804928864168, 0.43227456766397154, -0.39851528894906707, 0.0, 0.0, 0.0]]\n", - "{'drone1': ['Normal', 'T1'], 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('MoveDown', 'M12'), 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('MoveUp', 'M10'), 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('Normal', 'T2'), 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('Normal', 'T0'), 'drone2': ['Normal', 'T1']}\n" - ] - } - ], + "outputs": [], "source": [ "traces_simu = scenario.simulate(60, 0.2)\n", "traces_veri = scenario.verify(60, 0.2)" @@ -552,32 +500,10 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": null, "id": "5d180128", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABAAAAAMACAIAAAA12IJaAACq5UlEQVR4nOz9eZCl2Xnf+X3P+959yZv7UpVVlbV19VoNNAigQBZJDImhJBKyQxalKclBzgwkBUl7FGrbE2GN5w+H/3DEhCPGztASIZrjJUTLgixrPJKgZUiIEokWWUA3tm703rUvuWfevPv2vsd/HD6p7G4AxNK13t8nEIhasvLevPdG9POc8yzu+vXriIiIiIjIeIge9BMQEREREZH7RwmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAiIiIiImNECYCIiIiIyBhRAiAiIiIiMkaUAIiIiIiIjBElACIiIiIiY0QJgIiIiIjIGFECICIiIiIyRpQAiIiIiIiMESUAIiIiIiJjRAmAiIiIiMgYUQIgIiIiIjJGlACIiIiIiIwRJQAi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SYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJiogBQJIkSYqIAUCSJEmKiAFAkiRJisj/Dz0HIgYEJV5QAAAAAElFTkSuQmCC", - "text/plain": [ - "<PIL.Image.Image image mode=RGB size=1024x768>" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "from verse.plotter.plotter3D import *\n", "import pyvista as pv\n", @@ -603,7 +529,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": null, "id": "9f137299", "metadata": {}, "outputs": [], @@ -643,12 +569,12 @@ "id": "ea4a9f2c", "metadata": {}, "source": [ - "Verse allow checking safety conditions while performing simulation and verification. The safety conditions in verse can be specified using Python assert statements in the decision logic. With the <code>any</code> and <code>all</code> functions, the user can also define safety conditions between different agents. In this example, we are going to add two safety conditions: 1) the distance between two agents in all x,y,z direction should always be greater than or equal to 1.0m and 2) both drones should never enter region x\\in[40,50], y\\in[-5,5], z\\in[-10,-6]. The two safety asserts in the <code>decisionLogic</code> is shown below. " + "Verse allow checking safety conditions while performing simulation and verification. The safety conditions in verse can be specified using Python assert statements in the decision logic. With the <code>any</code> and <code>all</code> functions, the user can also define safety conditions between different agents. In this example, we are going to add two safety conditions: 1) the distance between two agents in all x,y,z direction should always be greater than or equal to 1.0m and 2) both drones should never enter region $40\\leq x\\leq 50$, $-5\\leq y\\leq 5$, $-10\\leq z\\leq -6$. The two safety asserts in the <code>decisionLogic</code> is shown below. " ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": null, "id": "7a5d64cb", "metadata": {}, "outputs": [], @@ -685,7 +611,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": null, "id": "4251f544", "metadata": {}, "outputs": [], @@ -726,26 +652,10 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": null, "id": "736897de", "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[[1.9312563653434478, -0.37381092906341173, 0.4178279694822413, 0.0, 0.0, 0.0], [19.65881626964345, -0.28050992995496926, 0.061664536002121184, 0.0, 0.0, 0.0]]\n", - "assert hit for drone1: \"Unsafe Region\" @ {'ego': State(x=40.10175821673612, y=-0.039154812580084464, z=-7.942172404694119, vx=0.9842831331582693, vy=-0.19685662663165338, vz=0.39999999999998614, craft_mode='Normal', track_mode='T2'), 'others': [State(x=40.30907452806768, y=-0.024596203912877312, z=0.10166446286779385, vx=0.5905698798949595, vy=-0.19685662663165493, vz=-0.40000000000001545, craft_mode='Normal', track_mode='T1')], 'track_map': <tutorial_map.M4 object at 0x000001B2D16192E0>}\n", - "{'drone1': ['Normal', 'T1'], 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('MoveDown', 'M12'), 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('MoveUp', 'M10'), 'drone2': ['Normal', 'T1']}\n", - "{'drone1': ('Normal', 'T2'), 'drone2': ['Normal', 'T1']}\n", - "assert hit for drone1: \"Unsafe Region\"\n", - "69\n", - "{'drone1': ('Normal', 'T0'), 'drone2': ['Normal', 'T1']}\n" - ] - } - ], + "outputs": [], "source": [ "traces_simu = scenario.simulate(60, 0.2)\n", "traces_veri = scenario.verify(60, 0.2)" @@ -753,33 +663,10 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": null, "id": "e31dc9ff", "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n", - "ERROR:root:<<Cannot triangulate; no input points\n" - ] - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABAAAAAMACAIAAAA12IJaAACioElEQVR4nOz9eZCl2Xnf+X3P+959yby5Z9aatfTeXUA3tgLZIikKokgJEWMNOaOSPKRHGClMWmaobU/EzHj8hyMcnnA4wuEMSbREIzx2UKNgjzWaGY0giqZaogiAUHUDDaAb6L1rz6rcM+++v+/xH4dPKbuxsAF0LV339wlER3V15s2b994IPM85z+KuXr2KiIiIiIhMhuhePwEREREREbl7lACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARRAiAiIiIiMkGUAIiIiIiITBAlACIiIiIiE0QJgIiIiIjIBFECICIiIiIyQZQAiIiIiIhMECUAIiIiIiITRAmAiIiIiMgEUQIgIiIiIjJBlACIiIiIiEwQJQAiIiIiIhNECYCIiIiIyARR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", - "text/plain": [ - "<PIL.Image.Image image mode=RGB size=1024x768>" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], + "outputs": [], "source": [ "from verse.plotter.plotter3D import *\n", "import pyvista as pv\n", @@ -829,6 +716,7 @@ "metadata": {}, "outputs": [], "source": [ + "import numpy as np\n", "def car_dynamics(t, state, u):\n", " x, y, theta, v = state\n", " delta, a = u \n", @@ -849,7 +737,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 2, "id": "c1dda851", "metadata": {}, "outputs": [], @@ -859,7 +747,7 @@ "import numpy as np \n", "from scipy.integrate import ode\n", "\n", - "def TC_simulate(self, mode: List[str], initialCondition, time_bound, time_step, track_map=None)->np.ndarray:\n", + "def TC_simulate(mode: List[str], initialCondition, time_bound, time_step, track_map=None)->np.ndarray:\n", " time_bound = float(time_bound)\n", " number_points = int(np.ceil(time_bound/time_step))\n", " t = [round(i*time_step,10) for i in range(0,number_points)]\n", @@ -872,8 +760,6 @@ " r.set_initial_value(init).set_f_params([steering, a]) \n", " res:np.ndarray = r.integrate(r.t + time_step)\n", " init = res.flatten().tolist()\n", - " if init[3] < 0:\n", - " init[3] = 0\n", " trace.append([t[i] + time_step] + init) \n", "\n", " return np.array(trace)\n" @@ -884,41 +770,75799 @@ "id": "3c2e6579", "metadata": {}, "source": [ - "With the <code>TC_simulate</code> function specified, we can now combine all parts together to construct a new car agent. An agent class for Verse should have three attributes: 1) <code>id</code>: an unique identifier for each agent in a scenario, 2) <code>controller</code>: a <code>ControllerIR</code> object, which is an intermediate representation of decisionLogic in Verse. It can be constructed automatically by passing in the decision logic code strings described in previous sections, and 3) <code>TC_simulate</code> function. In this example we will create the agent class manually. However, the agent class can also be inherited from the <code>BaseAgent</code> class with proper arguments to automatically having all required fields." + "With the <code>TC_simulate</code> function specified, we can now combine all parts together to construct a new car agent. An agent class for Verse should have four attributes: 1) <code>id</code>: an unique identifier for each agent in a scenario, 2) <code>controller</code>: a <code>ControllerIR</code> object, which is an intermediate representation of decisionLogic in Verse. It can be constructed automatically by passing in the decision logic code strings described in previous sections, 3) <code>TC_simulate</code> function, and 4) functions for setting initial condition of the agent, which can be inherited from <code>BaseAgent</code> class. " ] }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "id": "86626628", "metadata": {}, + "outputs": [], + "source": [ + "from verse.parser.parser import ControllerIR\n", + "from verse.agents import BaseAgent\n", + "\n", + "class CarAgent(BaseAgent):\n", + " def __init__(self, id, code = None, file_name = None):\n", + " self.id = id \n", + " self.decision_logic = ControllerIR.parse(code, file_name)\n", + " self.TC_simulate = TC_simulate" + ] + }, + { + "cell_type": "markdown", + "id": "2a233433", + "metadata": {}, + "source": [ + "We are going to test this CarAgent in a two car scenario with simple braking decision logic in an one track map. We can setup the scenario in Verse as we discussed in the previous section and simulate/verify the scenario. The results are visualized below. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, "outputs": [ { - "name": "stderr", + "name": "stdout", "output_type": "stream", "text": [ - "`polytope` failed to import `cvxopt.glpk`.\n", - "will use `scipy.optimize.linprog`\n" + "[[0.10779628592289714, -0.47633896494783723, 0.0, 2.0], [15.142047995420299, 0.45265980932133176, 0.0, 1.0]]\n", + "{'car1': ['Normal', 'T0'], 'car2': ['Normal', 'T0']}\n", + "{'car1': ('Brake', 'T0'), 'car2': ['Normal', 'T0']}\n" ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "legendgroup": "car1", + "legendgrouptitle": { + "text": "car1" + }, + "line": { + "color": "#CC0000", + "width": 3 + }, + "mode": "lines", + "name": "0.0-7.03-1", + "showlegend": false, + "text": [ + "['0.00', '0.11']", + "['0.01', '0.13']", + "['0.02', '0.15']", + "['0.03', '0.17']", + "['0.04', '0.19']", + "['0.05', '0.21']", + "['0.06', '0.23']", + "['0.07', '0.25']", + "['0.08', '0.27']", + "['0.09', '0.29']", + "['0.10', '0.31']", + "['0.11', '0.33']", + "['0.12', '0.35']", + "['0.13', '0.37']", + "['0.14', '0.39']", + "['0.15', '0.41']", + "['0.16', '0.43']", + "['0.17', '0.45']", + "['0.18', '0.47']", + "['0.19', '0.49']", + "['0.20', '0.51']", + "['0.21', '0.53']", + "['0.22', '0.55']", + "['0.23', '0.57']", + "['0.24', '0.59']", + "['0.25', '0.61']", + "['0.26', '0.63']", + "['0.27', '0.65']", + "['0.28', '0.66']", + "['0.29', '0.68']", + "['0.30', '0.70']", + "['0.31', '0.72']", + "['0.32', '0.74']", + "['0.33', '0.76']", + "['0.34', '0.78']", + "['0.35', '0.80']", + "['0.36', '0.82']", + "['0.37', '0.84']", + "['0.38', '0.86']", + "['0.39', '0.88']", + "['0.40', '0.90']", + "['0.41', '0.92']", + "['0.42', '0.94']", + "['0.43', '0.96']", + "['0.44', '0.98']", + "['0.45', '1.00']", + "['0.46', '1.02']", + "['0.47', '1.04']", + "['0.48', '1.06']", + "['0.49', '1.08']", + "['0.50', '1.10']", + "['0.51', '1.12']", + "['0.52', '1.14']", + "['0.53', '1.16']", + "['0.54', '1.18']", + "['0.55', '1.20']", + "['0.56', '1.22']", + "['0.57', '1.24']", + "['0.58', '1.26']", + "['0.59', '1.28']", + "['0.60', '1.30']", + "['0.61', '1.32']", + "['0.62', '1.34']", + "['0.63', '1.36']", + "['0.64', '1.38']", + "['0.65', '1.40']", + "['0.66', '1.42']", + "['0.67', '1.44']", + "['0.68', '1.46']", + "['0.69', '1.48']", + "['0.70', '1.50']", + "['0.71', '1.52']", + "['0.72', '1.54']", + "['0.73', '1.56']", + "['0.74', '1.58']", + "['0.75', '1.60']", + "['0.76', '1.62']", + "['0.77', '1.64']", + "['0.78', '1.66']", + "['0.79', '1.68']", + "['0.80', '1.70']", + "['0.81', '1.72']", + "['0.82', '1.74']", + "['0.83', '1.76']", + "['0.84', '1.78']", + "['0.85', '1.80']", + "['0.86', '1.82']", + "['0.87', '1.84']", + "['0.88', '1.86']", + "['0.89', '1.88']", + "['0.90', '1.90']", + "['0.91', '1.92']", + "['0.92', '1.94']", + "['0.93', '1.96']", + "['0.94', '1.98']", + "['0.95', '2.00']", + "['0.96', '2.02']", + "['0.97', '2.04']", + "['0.98', '2.06']", + "['0.99', '2.08']", + "['1.00', '2.10']", + "['1.01', '2.12']", + "['1.02', '2.14']", + "['1.03', '2.16']", + "['1.04', '2.18']", + "['1.05', '2.20']", + "['1.06', '2.22']", + "['1.07', '2.24']", + "['1.08', '2.26']", + "['1.09', '2.28']", + "['1.10', '2.30']", + "['1.11', '2.32']", + "['1.12', '2.34']", + "['1.13', '2.36']", + "['1.14', '2.38']", + "['1.15', '2.40']", + "['1.16', '2.42']", + "['1.17', '2.44']", + "['1.18', '2.46']", + "['1.19', '2.48']", + "['1.20', '2.50']", + "['1.21', '2.52']", + "['1.22', '2.54']", + "['1.23', '2.56']", + "['1.24', '2.58']", + "['1.25', '2.60']", + "['1.26', '2.62']", + "['1.27', '2.64']", + "['1.28', '2.66']", + "['1.29', '2.68']", + "['1.30', '2.70']", + "['1.31', '2.72']", + "['1.32', '2.74']", + "['1.33', '2.76']", + "['1.34', '2.78']", + "['1.35', '2.80']", + "['1.36', '2.82']", + "['1.37', '2.84']", + "['1.38', '2.86']", + "['1.39', '2.88']", + "['1.40', '2.90']", + "['1.41', '2.92']", + "['1.42', '2.94']", + "['1.43', '2.96']", + "['1.44', '2.98']", + "['1.45', '3.00']", + "['1.46', '3.02']", + "['1.47', '3.04']", + "['1.48', '3.06']", + "['1.49', '3.08']", + "['1.50', '3.10']", + "['1.51', '3.12']", + "['1.52', '3.14']", + "['1.53', '3.16']", + "['1.54', '3.18']", + "['1.55', '3.20']", + "['1.56', '3.22']", + "['1.57', '3.24']", + "['1.58', '3.26']", + "['1.59', '3.28']", + "['1.60', '3.30']", + "['1.61', '3.32']", + "['1.62', '3.34']", + "['1.63', '3.36']", + "['1.64', '3.38']", + "['1.65', '3.40']", + "['1.66', '3.42']", + "['1.67', '3.44']", + "['1.68', '3.46']", + "['1.69', '3.48']", + "['1.70', '3.50']", + "['1.71', '3.52']", + "['1.72', '3.54']", + "['1.73', '3.56']", + "['1.74', '3.58']", + "['1.75', '3.60']", + "['1.76', '3.62']", + "['1.77', '3.64']", + "['1.78', '3.66']", + "['1.79', '3.68']", + "['1.80', '3.70']", + "['1.81', '3.72']", + "['1.82', '3.74']", + "['1.83', '3.76']", + "['1.84', '3.78']", + "['1.85', '3.80']", + "['1.86', '3.82']", + "['1.87', '3.84']", + "['1.88', '3.86']", + "['1.89', '3.88']", + "['1.90', '3.90']", + "['1.91', '3.92']", + "['1.92', '3.94']", + "['1.93', '3.96']", + "['1.94', '3.98']", + "['1.95', '4.00']", + "['1.96', '4.02']", + "['1.97', '4.04']", + "['1.98', '4.06']", + "['1.99', '4.08']", + "['2.00', '4.10']", + "['2.01', '4.12']", + "['2.02', '4.14']", + "['2.03', '4.16']", + "['2.04', '4.18']", + "['2.05', '4.20']", + "['2.06', '4.22']", + "['2.07', '4.24']", + "['2.08', '4.26']", + "['2.09', '4.28']", + "['2.10', '4.30']", + "['2.11', '4.32']", + "['2.12', '4.34']", + "['2.13', '4.36']", + "['2.14', '4.38']", + "['2.15', '4.40']", + "['2.16', '4.42']", + "['2.17', '4.44']", + "['2.18', '4.46']", + "['2.19', '4.48']", + "['2.20', '4.50']", + "['2.21', '4.52']", + "['2.22', '4.54']", + "['2.23', '4.56']", + "['2.24', '4.58']", + "['2.25', '4.60']", + "['2.26', '4.62']", + "['2.27', '4.64']", + "['2.28', '4.66']", + "['2.29', '4.68']", + "['2.30', '4.70']", + "['2.31', '4.72']", + "['2.32', '4.74']", + "['2.33', '4.76']", + "['2.34', '4.78']", + "['2.35', '4.80']", + "['2.36', '4.82']", + "['2.37', '4.84']", + "['2.38', '4.86']", + "['2.39', '4.88']", + "['2.40', '4.90']", + "['2.41', '4.92']", + "['2.42', '4.94']", + "['2.43', '4.96']", + "['2.44', '4.98']", + "['2.45', '5.00']", + "['2.46', '5.02']", + "['2.47', '5.04']", + "['2.48', '5.06']", + "['2.49', '5.08']", + "['2.50', '5.10']", + "['2.51', '5.12']", + "['2.52', '5.14']", + "['2.53', '5.16']", + "['2.54', '5.18']", + "['2.55', '5.20']", + "['2.56', '5.22']", + "['2.57', '5.24']", + "['2.58', '5.26']", + "['2.59', '5.28']", + "['2.60', '5.30']", + "['2.61', '5.32']", + "['2.62', '5.34']", + "['2.63', '5.36']", + "['2.64', '5.38']", + "['2.65', '5.40']", + "['2.66', '5.42']", + "['2.67', '5.44']", + "['2.68', '5.46']", + "['2.69', '5.48']", + "['2.70', '5.50']", + "['2.71', '5.52']", + "['2.72', '5.54']", + "['2.73', '5.56']", + "['2.74', '5.58']", + "['2.75', '5.60']", + "['2.76', '5.62']", + "['2.77', '5.64']", + "['2.78', '5.66']", + "['2.79', '5.68']", + "['2.80', '5.70']", + "['2.81', '5.72']", + "['2.82', '5.74']", + "['2.83', '5.76']", + "['2.84', '5.78']", + "['2.85', '5.80']", + "['2.86', '5.82']", + "['2.87', '5.84']", + "['2.88', '5.86']", + "['2.89', '5.88']", + "['2.90', '5.90']", + "['2.91', '5.92']", + "['2.92', '5.94']", + "['2.93', '5.96']", + "['2.94', '5.98']", + "['2.95', '6.00']", + "['2.96', '6.02']", + "['2.97', '6.04']", + "['2.98', '6.06']", + "['2.99', '6.08']", + "['3.00', '6.10']", + "['3.01', '6.12']", + "['3.02', '6.14']", + "['3.03', '6.16']", + "['3.04', '6.18']", + "['3.05', '6.20']", + "['3.06', '6.22']", + "['3.07', '6.24']", + "['3.08', '6.26']", + "['3.09', '6.28']", + "['3.10', '6.30']", + "['3.11', '6.32']", + "['3.12', '6.34']", + "['3.13', '6.36']", + "['3.14', '6.38']", + "['3.15', '6.40']", + "['3.16', '6.42']", + "['3.17', '6.44']", + "['3.18', '6.46']", + "['3.19', '6.48']", + "['3.20', '6.50']", + "['3.21', '6.52']", + "['3.22', '6.54']", + "['3.23', '6.56']", + "['3.24', '6.58']", + "['3.25', '6.60']", + "['3.26', '6.62']", + "['3.27', '6.64']", + "['3.28', '6.66']", + "['3.29', '6.68']", + "['3.30', '6.70']", + "['3.31', '6.72']", + "['3.32', '6.74']", + "['3.33', '6.76']", + "['3.34', '6.78']", + "['3.35', '6.80']", + "['3.36', '6.82']", + "['3.37', '6.84']", + "['3.38', '6.86']", + "['3.39', '6.88']", + "['3.40', '6.90']", + "['3.41', '6.92']", + "['3.42', '6.94']", + "['3.43', '6.96']", + "['3.44', '6.98']", + "['3.45', '7.00']", + "['3.46', '7.02']", + "['3.47', '7.04']", + "['3.48', '7.06']", + "['3.49', '7.08']", + "['3.50', '7.10']", + "['3.51', '7.12']", + "['3.52', '7.14']", + "['3.53', '7.16']", + "['3.54', '7.18']", + "['3.55', '7.20']", + "['3.56', '7.22']", + "['3.57', '7.24']", + "['3.58', '7.26']", + "['3.59', '7.28']", + "['3.60', '7.30']", + "['3.61', '7.32']", + "['3.62', '7.34']", + "['3.63', '7.36']", + "['3.64', '7.38']", + "['3.65', '7.40']", + "['3.66', '7.42']", + "['3.67', '7.44']", + "['3.68', '7.46']", + "['3.69', '7.48']", + "['3.70', '7.50']", + "['3.71', '7.52']", + "['3.72', '7.54']", + "['3.73', '7.56']", + "['3.74', '7.58']", + "['3.75', '7.60']", + "['3.76', '7.62']", + "['3.77', '7.64']", + "['3.78', '7.66']", + "['3.79', '7.68']", + "['3.80', '7.70']", + "['3.81', '7.72']", + "['3.82', '7.74']", + "['3.83', '7.76']", + "['3.84', '7.78']", + "['3.85', '7.80']", + "['3.86', '7.82']", + "['3.87', '7.84']", + "['3.88', '7.86']", + "['3.89', '7.88']", + "['3.90', '7.90']", + "['3.91', '7.92']", + "['3.92', '7.94']", + "['3.93', '7.96']", + "['3.94', '7.98']", + "['3.95', '8.00']", + "['3.96', '8.02']", + "['3.97', '8.04']", + "['3.98', '8.06']", + "['3.99', '8.08']", + "['4.00', '8.10']", + "['4.01', '8.12']", + "['4.02', '8.14']", + "['4.03', '8.16']", + "['4.04', '8.18']", + "['4.05', '8.20']", + "['4.06', '8.22']", + "['4.07', '8.24']", + "['4.08', '8.26']", + "['4.09', '8.28']", + "['4.10', '8.30']", + "['4.11', '8.32']", + "['4.12', '8.34']", + "['4.13', '8.36']", + "['4.14', '8.38']", + "['4.15', '8.40']", + "['4.16', '8.42']", + "['4.17', '8.44']", + "['4.18', '8.46']", + "['4.19', '8.48']", + "['4.20', '8.50']", + "['4.21', '8.52']", + "['4.22', '8.54']", + "['4.23', '8.56']", + "['4.24', '8.58']", + "['4.25', '8.60']", + "['4.26', '8.62']", + "['4.27', '8.64']", + "['4.28', '8.66']", + "['4.29', '8.68']", + "['4.30', '8.70']", + "['4.31', '8.72']", + "['4.32', '8.74']", + "['4.33', '8.76']", + "['4.34', '8.78']", + "['4.35', '8.80']", + "['4.36', '8.82']", + "['4.37', '8.84']", + "['4.38', '8.86']", + "['4.39', '8.88']", + "['4.40', '8.90']", + "['4.41', '8.92']", + "['4.42', '8.94']", + "['4.43', '8.96']", + "['4.44', '8.98']", + "['4.45', '9.00']", + "['4.46', '9.02']", + "['4.47', '9.04']", + "['4.48', '9.06']", + "['4.49', '9.08']", + "['4.50', '9.10']", + "['4.51', '9.12']", + "['4.52', '9.14']", + "['4.53', '9.16']", + "['4.54', '9.18']", + "['4.55', '9.20']", + "['4.56', '9.22']", + "['4.57', '9.24']", + "['4.58', '9.26']", + "['4.59', '9.28']", + "['4.60', '9.30']", + "['4.61', '9.32']", + "['4.62', '9.34']", + "['4.63', '9.36']", + "['4.64', '9.38']", + "['4.65', '9.40']", + "['4.66', '9.42']", + "['4.67', '9.44']", + "['4.68', '9.46']", + "['4.69', '9.48']", + "['4.70', '9.50']", + "['4.71', '9.52']", + "['4.72', '9.54']", + "['4.73', '9.56']", + "['4.74', '9.58']", + "['4.75', '9.60']", + "['4.76', '9.62']", + "['4.77', '9.64']", + "['4.78', '9.66']", + "['4.79', '9.68']", + "['4.80', '9.70']", + "['4.81', '9.72']", + "['4.82', '9.74']", + "['4.83', '9.76']", + "['4.84', '9.78']", + "['4.85', '9.80']", + "['4.86', '9.82']", + "['4.87', '9.84']", + "['4.88', '9.86']", + "['4.89', '9.88']", + "['4.90', '9.90']", + "['4.91', '9.92']", + "['4.92', '9.94']", + "['4.93', '9.96']", + "['4.94', '9.98']", + "['4.95', '10.00']", + "['4.96', '10.02']", + "['4.97', '10.04']", + "['4.98', '10.06']", + "['4.99', '10.08']", + "['5.00', '10.10']", + "['5.01', '10.12']", + "['5.02', '10.14']", + "['5.03', '10.16']", + "['5.04', '10.18']", + "['5.05', '10.20']", + "['5.06', '10.22']", + "['5.07', '10.24']", + "['5.08', '10.26']", + "['5.09', '10.28']", + "['5.10', '10.30']", + "['5.11', '10.32']", + "['5.12', '10.34']", + "['5.13', '10.36']", + "['5.14', '10.38']", + "['5.15', '10.40']", + "['5.16', '10.42']", + "['5.17', '10.44']", + "['5.18', '10.46']", + "['5.19', '10.48']", + "['5.20', '10.50']", + "['5.21', '10.52']", + "['5.22', '10.54']", + "['5.23', '10.56']", + "['5.24', '10.58']", + "['5.25', '10.60']", + "['5.26', '10.62']", + "['5.27', '10.64']", + "['5.28', '10.66']", + "['5.29', '10.68']", + "['5.30', '10.70']", + "['5.31', '10.72']", + "['5.32', '10.74']", + "['5.33', '10.76']", + "['5.34', '10.78']", + "['5.35', '10.80']", + "['5.36', '10.82']", + "['5.37', '10.84']", + "['5.38', '10.86']", + "['5.39', '10.88']", + "['5.40', '10.90']", + "['5.41', '10.92']", + "['5.42', '10.94']", + "['5.43', '10.96']", + "['5.44', '10.98']", + "['5.45', '11.00']", + "['5.46', '11.02']", + "['5.47', '11.04']", + "['5.48', '11.06']", + "['5.49', '11.08']", + "['5.50', '11.10']", + "['5.51', '11.12']", + "['5.52', '11.14']", + "['5.53', '11.16']", + "['5.54', '11.18']", + "['5.55', '11.20']", + "['5.56', '11.22']", + "['5.57', '11.24']", + "['5.58', '11.26']", + "['5.59', '11.28']", + "['5.60', '11.30']", + "['5.61', '11.32']", + "['5.62', '11.34']", + "['5.63', '11.36']", + "['5.64', '11.38']", + "['5.65', '11.40']", + "['5.66', '11.42']", + "['5.67', '11.44']", + "['5.68', '11.46']", + "['5.69', '11.48']", + "['5.70', '11.50']", + "['5.71', '11.52']", + "['5.72', '11.54']", + "['5.73', '11.56']", + "['5.74', '11.58']", + "['5.75', '11.60']", + "['5.76', '11.62']", + "['5.77', '11.64']", + "['5.78', '11.66']", + "['5.79', '11.68']", + "['5.80', '11.70']", + "['5.81', '11.72']", + "['5.82', '11.74']", + "['5.83', '11.76']", + "['5.84', '11.78']", + "['5.85', '11.80']", + "['5.86', '11.82']", + "['5.87', '11.84']", + "['5.88', '11.86']", + "['5.89', '11.88']", + "['5.90', '11.90']", + "['5.91', '11.92']", + "['5.92', '11.94']", + "['5.93', '11.96']", + "['5.94', '11.98']", + "['5.95', '12.00']", + "['5.96', '12.02']", + "['5.97', '12.04']", + "['5.98', '12.06']", + "['5.99', '12.08']", + "['6.00', '12.10']", + "['6.01', '12.12']", + "['6.02', '12.14']", + "['6.03', '12.16']", + "['6.04', '12.18']", + "['6.05', '12.20']", + "['6.06', '12.22']", + "['6.07', '12.24']", + "['6.08', '12.26']", + "['6.09', '12.28']", + "['6.10', '12.30']", + "['6.11', '12.32']", + "['6.12', '12.34']", + "['6.13', '12.36']", + "['6.14', '12.38']", + "['6.15', '12.40']", + "['6.16', '12.42']", + "['6.17', '12.44']", + "['6.18', '12.46']", + "['6.19', '12.48']", + "['6.20', '12.50']", + "['6.21', '12.52']", + "['6.22', '12.54']", + "['6.23', '12.56']", + "['6.24', '12.58']", + "['6.25', '12.60']", + "['6.26', '12.62']", + "['6.27', '12.64']", + "['6.28', '12.66']", + "['6.29', '12.68']", + "['6.30', '12.70']", + "['6.31', '12.72']", + "['6.32', '12.74']", + "['6.33', '12.76']", + "['6.34', '12.78']", + "['6.35', '12.80']", + "['6.36', '12.82']", + "['6.37', '12.84']", + "['6.38', '12.86']", + "['6.39', '12.88']", + "['6.40', '12.90']", + "['6.41', '12.92']", + "['6.42', '12.94']", + "['6.43', '12.96']", + "['6.44', '12.98']", + "['6.45', '13.00']", + "['6.46', '13.02']", + "['6.47', '13.04']", + "['6.48', '13.06']", + "['6.49', '13.08']", + "['6.50', '13.10']", + "['6.51', '13.12']", + "['6.52', '13.14']", + "['6.53', '13.16']", + "['6.54', '13.18']", + "['6.55', '13.20']", + "['6.56', '13.22']", + "['6.57', '13.24']", + "['6.58', '13.26']", + "['6.59', '13.28']", + "['6.60', '13.30']", + "['6.61', '13.32']", + "['6.62', '13.34']", + "['6.63', '13.36']", + "['6.64', '13.38']", + "['6.65', '13.40']", + "['6.66', '13.42']", + "['6.67', '13.44']", + "['6.68', '13.46']", + "['6.69', '13.48']", + "['6.70', '13.50']", + "['6.71', '13.52']", + "['6.72', '13.54']", + "['6.73', '13.56']", + "['6.74', '13.58']", + "['6.75', '13.60']", + "['6.76', '13.62']", + "['6.77', '13.64']", + "['6.78', '13.66']", + "['6.79', '13.68']", + "['6.80', '13.70']", + "['6.81', '13.72']", + "['6.82', '13.74']", + "['6.83', '13.76']", + "['6.84', '13.78']", + "['6.85', '13.80']", + "['6.86', '13.82']", + "['6.87', '13.84']", + "['6.88', '13.86']", + "['6.89', '13.88']", + "['6.90', '13.90']", + "['6.91', '13.92']", + "['6.92', '13.94']", + "['6.93', '13.96']", + "['6.94', '13.98']", + "['6.95', '14.00']", + "['6.96', '14.02']", + "['6.97', '14.04']", + "['6.98', '14.06']", + "['6.99', '14.08']", + "['7.00', '14.10']", + "['7.01', '14.12']", + "['7.02', '14.14']", + "['7.03', '14.16']" + ], + "type": "scatter", + "x": [ + 0, + 0.01, + 0.02, + 0.03, + 0.04, + 0.05, + 0.060000000000000005, + 0.06999999999999999, + 0.08, + 0.09, + 0.09999999999999999, + 0.11, + 0.12, + 0.13, + 0.14, + 0.15000000000000002, + 0.16, + 0.17, + 0.18000000000000002, + 0.19, + 0.2, + 0.21000000000000002, + 0.22, + 0.23, + 0.24000000000000002, + 0.25, + 0.26, + 0.27, + 0.28, + 0.29000000000000004, + 0.3, + 0.31, + 0.32, + 0.33, + 0.34, + 0.35000000000000003, + 0.36, + 0.37, + 0.38, + 0.39, + 0.4, + 0.41000000000000003, + 0.42, + 0.43, + 0.44, + 0.45, + 0.46, + 0.47000000000000003, + 0.48, + 0.49, + 0.5, + 0.51, + 0.52, + 0.53, + 0.54, + 0.55, + 0.56, + 0.5700000000000001, + 0.58, + 0.59, + 0.6, + 0.61, + 0.62, + 0.63, + 0.64, + 0.65, + 0.66, + 0.67, + 0.68, + 0.6900000000000001, + 0.7, + 0.71, + 0.72, + 0.73, + 0.74, + 0.75, + 0.76, + 0.77, + 0.78, + 0.79, + 0.8, + 0.81, + 0.8200000000000001, + 0.83, + 0.84, + 0.85, + 0.86, + 0.87, + 0.88, + 0.89, + 0.9, + 0.91, + 0.92, + 0.93, + 0.9400000000000001, + 0.95, + 0.96, + 0.97, + 0.98, + 0.99, + 1, + 1.01, + 1.02, + 1.03, + 1.04, + 1.05, + 1.06, + 1.07, + 1.08, + 1.09, + 1.1, + 1.11, + 1.12, + 1.1300000000000001, + 1.14, + 1.15, + 1.16, + 1.17, + 1.18, + 1.19, + 1.2, + 1.21, + 1.22, + 1.23, + 1.24, + 1.25, + 1.26, + 1.27, + 1.28, + 1.29, + 1.3, + 1.31, + 1.32, + 1.33, + 1.34, + 1.35, + 1.36, + 1.37, + 1.3800000000000001, + 1.39, + 1.4, + 1.41, + 1.42, + 1.43, + 1.44, + 1.45, + 1.46, + 1.47, + 1.48, + 1.49, + 1.5, + 1.51, + 1.52, + 1.53, + 1.54, + 1.55, + 1.56, + 1.57, + 1.58, + 1.59, + 1.6, + 1.61, + 1.62, + 1.6300000000000001, + 1.64, + 1.65, + 1.66, + 1.67, + 1.68, + 1.69, + 1.7, + 1.71, + 1.72, + 1.73, + 1.74, + 1.75, + 1.76, + 1.77, + 1.78, + 1.79, + 1.8, + 1.81, + 1.82, + 1.83, + 1.84, + 1.85, + 1.86, + 1.87, + 1.8800000000000001, + 1.89, + 1.9, + 1.91, + 1.92, + 1.93, + 1.94, + 1.95, + 1.96, + 1.97, + 1.98, + 1.99, + 2, + 2.01, + 2.0199999999999996, + 2.03, + 2.0399999999999996, + 2.05, + 2.0599999999999996, + 2.07, + 2.0799999999999996, + 2.09, + 2.0999999999999996, + 2.11, + 2.1199999999999997, + 2.13, + 2.1399999999999997, + 2.15, + 2.1599999999999997, + 2.17, + 2.1799999999999997, + 2.19, + 2.1999999999999997, + 2.21, + 2.2199999999999998, + 2.23, + 2.2399999999999998, + 2.25, + 2.26, + 2.2699999999999996, + 2.28, + 2.2899999999999996, + 2.3, + 2.3099999999999996, + 2.32, + 2.3299999999999996, + 2.34, + 2.3499999999999996, + 2.36, + 2.3699999999999997, + 2.38, + 2.3899999999999997, + 2.4, + 2.4099999999999997, + 2.42, + 2.4299999999999997, + 2.44, + 2.4499999999999997, + 2.46, + 2.4699999999999998, + 2.48, + 2.4899999999999998, + 2.5, + 2.51, + 2.5199999999999996, + 2.53, + 2.5399999999999996, + 2.55, + 2.5599999999999996, + 2.57, + 2.5799999999999996, + 2.59, + 2.5999999999999996, + 2.61, + 2.6199999999999997, + 2.63, + 2.6399999999999997, + 2.65, + 2.6599999999999997, + 2.67, + 2.6799999999999997, + 2.69, + 2.6999999999999997, + 2.71, + 2.7199999999999998, + 2.73, + 2.7399999999999998, + 2.75, + 2.76, + 2.7699999999999996, + 2.78, + 2.7899999999999996, + 2.8, + 2.8099999999999996, + 2.82, + 2.8299999999999996, + 2.84, + 2.8499999999999996, + 2.86, + 2.8699999999999997, + 2.88, + 2.8899999999999997, + 2.9, + 2.9099999999999997, + 2.92, + 2.9299999999999997, + 2.94, + 2.9499999999999997, + 2.96, + 2.9699999999999998, + 2.98, + 2.9899999999999998, + 3, + 3.01, + 3.0199999999999996, + 3.03, + 3.0399999999999996, + 3.05, + 3.0599999999999996, + 3.07, + 3.0799999999999996, + 3.09, + 3.0999999999999996, + 3.11, + 3.1199999999999997, + 3.13, + 3.1399999999999997, + 3.15, + 3.1599999999999997, + 3.17, + 3.1799999999999997, + 3.19, + 3.1999999999999997, + 3.21, + 3.2199999999999998, + 3.23, + 3.2399999999999998, + 3.25, + 3.26, + 3.2699999999999996, + 3.28, + 3.2899999999999996, + 3.3, + 3.3099999999999996, + 3.32, + 3.3299999999999996, + 3.34, + 3.3499999999999996, + 3.36, + 3.3699999999999997, + 3.38, + 3.3899999999999997, + 3.4, + 3.4099999999999997, + 3.42, + 3.4299999999999997, + 3.44, + 3.4499999999999997, + 3.46, + 3.4699999999999998, + 3.48, + 3.4899999999999998, + 3.5, + 3.51, + 3.5199999999999996, + 3.53, + 3.5399999999999996, + 3.55, + 3.5599999999999996, + 3.57, + 3.5799999999999996, + 3.59, + 3.5999999999999996, + 3.61, + 3.6199999999999997, + 3.63, + 3.6399999999999997, + 3.65, + 3.6599999999999997, + 3.67, + 3.6799999999999997, + 3.69, + 3.6999999999999997, + 3.71, + 3.7199999999999998, + 3.73, + 3.7399999999999998, + 3.75, + 3.76, + 3.7699999999999996, + 3.78, + 3.7899999999999996, + 3.8, + 3.8099999999999996, + 3.82, + 3.8299999999999996, + 3.84, + 3.8499999999999996, + 3.86, + 3.8699999999999997, + 3.88, + 3.8899999999999997, + 3.9, + 3.9099999999999997, + 3.92, + 3.9299999999999997, + 3.94, + 3.9499999999999997, + 3.96, + 3.9699999999999998, + 3.98, + 3.9899999999999998, + 4, + 4.01, + 4.02, + 4.029999999999999, + 4.04, + 4.05, + 4.06, + 4.069999999999999, + 4.08, + 4.09, + 4.1, + 4.109999999999999, + 4.12, + 4.13, + 4.14, + 4.1499999999999995, + 4.16, + 4.17, + 4.18, + 4.1899999999999995, + 4.2, + 4.21, + 4.22, + 4.2299999999999995, + 4.24, + 4.25, + 4.26, + 4.27, + 4.279999999999999, + 4.29, + 4.3, + 4.31, + 4.319999999999999, + 4.33, + 4.34, + 4.35, + 4.359999999999999, + 4.37, + 4.38, + 4.39, + 4.3999999999999995, + 4.41, + 4.42, + 4.43, + 4.4399999999999995, + 4.45, + 4.46, + 4.47, + 4.4799999999999995, + 4.49, + 4.5, + 4.51, + 4.52, + 4.529999999999999, + 4.54, + 4.55, + 4.56, + 4.569999999999999, + 4.58, + 4.59, + 4.6, + 4.609999999999999, + 4.62, + 4.63, + 4.64, + 4.6499999999999995, + 4.66, + 4.67, + 4.68, + 4.6899999999999995, + 4.7, + 4.71, + 4.72, + 4.7299999999999995, + 4.74, + 4.75, + 4.76, + 4.77, + 4.779999999999999, + 4.79, + 4.8, + 4.81, + 4.819999999999999, + 4.83, + 4.84, + 4.85, + 4.859999999999999, + 4.87, + 4.88, + 4.89, + 4.8999999999999995, + 4.91, + 4.92, + 4.93, + 4.9399999999999995, + 4.95, + 4.96, + 4.97, + 4.9799999999999995, + 4.99, + 5, + 5.01, + 5.02, + 5.029999999999999, + 5.04, + 5.05, + 5.06, + 5.069999999999999, + 5.08, + 5.09, + 5.1, + 5.109999999999999, + 5.12, + 5.13, + 5.14, + 5.1499999999999995, + 5.16, + 5.17, + 5.18, + 5.1899999999999995, + 5.2, + 5.21, + 5.22, + 5.2299999999999995, + 5.24, + 5.25, + 5.26, + 5.27, + 5.279999999999999, + 5.29, + 5.3, + 5.31, + 5.319999999999999, + 5.33, + 5.34, + 5.35, + 5.359999999999999, + 5.37, + 5.38, + 5.39, + 5.3999999999999995, + 5.41, + 5.42, + 5.43, + 5.4399999999999995, + 5.45, + 5.46, + 5.47, + 5.4799999999999995, + 5.49, + 5.5, + 5.51, + 5.52, + 5.529999999999999, + 5.54, + 5.55, + 5.56, + 5.569999999999999, + 5.58, + 5.59, + 5.6, + 5.609999999999999, + 5.62, + 5.63, + 5.64, + 5.6499999999999995, + 5.66, + 5.67, + 5.68, + 5.6899999999999995, + 5.7, + 5.71, + 5.72, + 5.7299999999999995, + 5.74, + 5.75, + 5.76, + 5.77, + 5.779999999999999, + 5.79, + 5.8, + 5.81, + 5.819999999999999, + 5.83, + 5.84, + 5.85, + 5.859999999999999, + 5.87, + 5.88, + 5.89, + 5.8999999999999995, + 5.91, + 5.92, + 5.93, + 5.9399999999999995, + 5.95, + 5.96, + 5.97, + 5.9799999999999995, + 5.99, + 6, + 6.01, + 6.02, + 6.029999999999999, + 6.04, + 6.05, + 6.06, + 6.069999999999999, + 6.08, + 6.09, + 6.1, + 6.109999999999999, + 6.12, + 6.13, + 6.14, + 6.1499999999999995, + 6.16, + 6.17, + 6.18, + 6.1899999999999995, + 6.2, + 6.21, + 6.22, + 6.2299999999999995, + 6.24, + 6.25, + 6.26, + 6.27, + 6.279999999999999, + 6.29, + 6.3, + 6.31, + 6.319999999999999, + 6.33, + 6.34, + 6.35, + 6.359999999999999, + 6.37, + 6.38, + 6.39, + 6.3999999999999995, + 6.41, + 6.42, + 6.43, + 6.4399999999999995, + 6.45, + 6.46, + 6.47, + 6.4799999999999995, + 6.49, + 6.5, + 6.51, + 6.52, + 6.529999999999999, + 6.54, + 6.55, + 6.56, + 6.569999999999999, + 6.58, + 6.59, + 6.6, + 6.609999999999999, + 6.62, + 6.63, + 6.64, + 6.6499999999999995, + 6.66, + 6.67, + 6.68, + 6.6899999999999995, + 6.7, + 6.71, + 6.72, + 6.7299999999999995, + 6.74, + 6.75, + 6.76, + 6.77, + 6.779999999999999, + 6.79, + 6.8, + 6.81, + 6.819999999999999, + 6.83, + 6.84, + 6.85, + 6.859999999999999, + 6.87, + 6.88, + 6.89, + 6.8999999999999995, + 6.91, + 6.92, + 6.93, + 6.9399999999999995, + 6.95, + 6.96, + 6.97, + 6.9799999999999995, + 6.99, + 7, + 7.01, + 7.02, + 7.029999999999999 + ], + "y": [ + 0.10779628592289714, + 0.127681088344621, + 0.14756691522318752, + 0.16745377348835236, + 0.18734165385208212, + 0.20723054708192895, + 0.2271204440124927, + 0.2470113355514833, + 0.26690321268292716, + 0.2867960664688043, + 0.30668988804978997, + 0.3265846686473274, + 0.3464803995629605, + 0.3663770721720441, + 0.3862746779282483, + 0.40617320836300685, + 0.4260726550849192, + 0.4459730097791236, + 0.46587426420665035, + 0.4857764102037655, + 0.5056794396813065, + 0.5255833446240166, + 0.5454881170898775, + 0.5653937492094449, + 0.5853002331851853, + 0.6052075612908184, + 0.625115725870661, + 0.6450247193389769, + 0.6649345341793333, + 0.6848451629442643, + 0.7047565982551991, + 0.7246688328009642, + 0.744581859337102, + 0.7644956706852556, + 0.7844102597325596, + 0.8043256194310355, + 0.8242417427969931, + 0.8441586229104374, + 0.8640762529144815, + 0.8839946260147635, + 0.9039137354788709, + 0.9238335746357689, + 0.9437541368752348, + 0.9636754156472966, + 0.983597404461679, + 1.0035200968872535, + 1.023443486551492, + 1.0433675671399285, + 1.063292332395625, + 1.0832177761186408, + 1.1031438921655086, + 1.1230706744487156, + 1.1429981169361876, + 1.1629262136507794, + 1.1828549586697712, + 1.2027843461243677, + 1.2227143701992012, + 1.2426450251318426, + 1.2625763052123147, + 1.28250820478261, + 1.302440718236214, + 1.3223738400176328, + 1.3423075646219234, + 1.3622418865942316, + 1.3821768005293322, + 1.402112301071172, + 1.4220483829124215, + 1.4419850407940256, + 1.4619222695047633, + 1.4818600638808084, + 1.5017984188052935, + 1.5217373292078824, + 1.541676790064342, + 1.5616167963961205, + 1.5815573432699281, + 1.6014984257973253, + 1.621440039134308, + 1.6413821784809053, + 1.661324839080772, + 1.6812680162207918, + 1.7012117052306819, + 1.7211559014826001, + 1.7411006003907572, + 1.7610457974110305, + 1.7809914880405853, + 1.800937667817496, + 1.8208843323203716, + 1.8408314771679857, + 1.8607790980189087, + 1.880727190571145, + 1.9006757505617724, + 1.9206247737665838, + 1.940574255999759, + 1.9605241931135517, + 1.9804745809978797, + 2.0004254155799766, + 2.020376692824051, + 2.04032840873095, + 2.0602805593378246, + 2.0802331407177976, + 2.1001861489796347, + 2.120139580267421, + 2.140093430760239, + 2.160047696671847, + 2.180002374250366, + 2.1999574597779636, + 2.2199129495705487, + 2.239868839977458, + 2.259825127381155, + 2.279781808196931, + 2.2997388788726005, + 2.319696335888213, + 2.3396541757557547, + 2.3596123951733117, + 2.3795709908475917, + 2.3995299593759953, + 2.419489297386887, + 2.4394490015393084, + 2.4594090685226964, + 2.479369495056603, + 2.499330277890423, + 2.5192914138031153, + 2.539252899602935, + 2.5592147321271637, + 2.579176908241843, + 2.5991394248415096, + 2.619102278848936, + 2.639065467214871, + 2.6590289869177806, + 2.678992834963596, + 2.698957008384772, + 2.7189215042424233, + 2.7388863196232682, + 2.758851451640503, + 2.77881689743356, + 2.798782654167866, + 2.8187487190346068, + 2.838715089250488, + 2.8586817620575027, + 2.8786487347227, + 2.8986160045387943, + 2.918583568821813, + 2.938551424912677, + 2.958519570176454, + 2.978488002002138, + 2.9984567178024313, + 3.018425715013525, + 3.038394991094885, + 3.05836454352904, + 3.0783343698213694, + 3.0983044674998936, + 3.1182748341150677, + 3.1382454672395754, + 3.1582163644681276, + 3.178187523417259, + 3.198158941725129, + 3.218130617051324, + 3.2381025470766622, + 3.2580747295029973, + 3.278047162053029, + 3.298019842470112, + 3.3179927684909742, + 3.337965937793049, + 3.3579393481843978, + 3.37791299749291, + 3.397886883566132, + 3.417861004271083, + 3.4378353574940745, + 3.4578099411405407, + 3.477784753134858, + 3.497759791420176, + 3.5177350539582446, + 3.5377105387292467, + 3.5576862437316272, + 3.577662166981931, + 3.597638306514634, + 3.6176146603819803, + 3.6375912266538255, + 3.657568003417471, + 3.677544988777507, + 3.6975221808556564, + 3.717499577790618, + 3.7374771777379125, + 3.7574549788697293, + 3.7774329793747747, + 3.797411177458123, + 3.8173895713410673, + 3.8373681592609694, + 3.8573469394711197, + 3.8773259102405873, + 3.8973050698540797, + 3.9172844166117975, + 3.9372639488292975, + 3.9572436648373497, + 3.9772235629818042, + 3.997203641623447, + 4.017183899137872, + 4.03716433391534, + 4.057144944360645, + 4.077125728892985, + 4.097106685945827, + 4.117087813966791, + 4.137069111417504, + 4.157050576773489, + 4.177032208524031, + 4.19701400517205, + 4.216995965233985, + 4.2369780872396685, + 4.256960369732198, + 4.276942811267823, + 4.296925410415827, + 4.316908165758403, + 4.336891075890541, + 4.35687413941991, + 4.376857354966743, + 4.396840721163727, + 4.416824236655882, + 4.436807900100456, + 4.456791710166815, + 4.476775665536326, + 4.4967597649022535, + 4.516744006969653, + 4.53672839045526, + 4.5567129140873845, + 4.576697576605809, + 4.5966823767616845, + 4.616667313317423, + 4.636652385046601, + 4.656637590733854, + 4.676622929174781, + 4.696608399175839, + 4.7165939995542505, + 4.7365797291379, + 4.756565586765246, + 4.776551571285218, + 4.79653768155712, + 4.816523916450545, + 4.836510274845275, + 4.856496755631192, + 4.876483357708185, + 4.89647007998606, + 4.916456921384451, + 4.936443880832726, + 4.956430957269909, + 4.976418149644583, + 4.996405456914805, + 5.016392878048027, + 5.036380412021004, + 5.0563680578197125, + 5.0763558144392675, + 5.096343680883837, + 5.1163316561665635, + 5.136319739309479, + 5.156307929343429, + 5.176296225307991, + 5.196284626251392, + 5.216273131230438, + 5.236261739310431, + 5.25625044956509, + 5.27623926107648, + 5.296228172934932, + 5.316217184238975, + 5.336206294095253, + 5.35619550161846, + 5.37618480593126, + 5.396174206164218, + 5.416163701455732, + 5.4361532909519585, + 5.45614297380674, + 5.4761327491815415, + 5.496122616245376, + 5.51611257417474, + 5.536102622153545, + 5.5560927593730485, + 5.57608298503179, + 5.596073298335524, + 5.6160636984971575, + 5.6360541847366825, + 5.656044756281109, + 5.676035412364408, + 5.6960261522274465, + 5.716016975117923, + 5.736007880290305, + 5.755998867005776, + 5.775989934532164, + 5.795981082143886, + 5.815972309121893, + 5.835963614753605, + 5.855954998332853, + 5.875946459159825, + 5.895937996541001, + 5.915929609789108, + 5.935921298223056, + 5.955913061167875, + 5.9759048979546785, + 5.995896807920594, + 6.0158887904087095, + 6.035880844768028, + 6.055872970353404, + 6.075865166525498, + 6.095857432650724, + 6.11584976810119, + 6.135842172254654, + 6.1558346444944725, + 6.17582718420955, + 6.195819790794283, + 6.215812463648515, + 6.235805202177489, + 6.2557980057918, + 6.275790873907337, + 6.295783805945246, + 6.315776801331876, + 6.335769859498736, + 6.3557629798824475, + 6.375756161924696, + 6.3957494050721895, + 6.415742708776607, + 6.435736072494562, + 6.4557294956875495, + 6.475722977821908, + 6.495716518368774, + 6.5157101168040406, + 6.535703772608307, + 6.555697485266845, + 6.575691254269553, + 6.595685079110913, + 6.615678959289956, + 6.63567289431021, + 6.655666883679671, + 6.6756609269107505, + 6.695655023520249, + 6.715649173029304, + 6.735643374963362, + 6.755637628852134, + 6.775631934229552, + 6.795626290633741, + 6.815620697606975, + 6.835615154695644, + 6.85560966145021, + 6.875604217425177, + 6.89559882217905, + 6.915593475274305, + 6.935588176277343, + 6.955582924758466, + 6.975577720291835, + 6.995572562455438, + 7.0155674508310515, + 7.035562385004212, + 7.055557364564179, + 7.075552389103901, + 7.0955474582199844, + 7.115542571512657, + 7.13553772858574, + 7.155532929046613, + 7.175528172506181, + 7.195523458578845, + 7.215518786882469, + 7.2355141570383505, + 7.255509568671188, + 7.27550502140905, + 7.2955005148833445, + 7.315496048728791, + 7.3354916225833895, + 7.3554872360883925, + 7.375482888888272, + 7.395478580630692, + 7.415474310966482, + 7.435470079549607, + 7.455465886037141, + 7.475461730089232, + 7.495457611369086, + 7.515453529542929, + 7.535449484279984, + 7.555445475252445, + 7.575441502135449, + 7.595437564607051, + 7.615433662348195, + 7.63542979504269, + 7.655425962377182, + 7.675422164041132, + 7.695418399726788, + 7.715414669129161, + 7.735410971945999, + 7.755407307877766, + 7.7754036766276124, + 7.795400077901354, + 7.815396511407445, + 7.83539297685696, + 7.855389473963565, + 7.875386002443496, + 7.895382562015538, + 7.915379152400999, + 7.935375773323688, + 7.955372424509889, + 7.97536910568835, + 7.99536581659025, + 8.015362556949176, + 8.035359326501114, + 8.055356124984415, + 8.075352952139776, + 8.095349807710226, + 8.115346691441093, + 8.13534360308, + 8.155340542376827, + 8.175337509083695, + 8.195334502954962, + 8.215331523747182, + 8.235328571219092, + 8.255325645131597, + 8.275322745247747, + 8.295319871332717, + 8.315317023153789, + 8.335314200480333, + 8.355311403083787, + 8.375308630737639, + 8.395305883217414, + 8.41530316030065, + 8.435300461766875, + 8.455297787397598, + 8.47529513697629, + 8.495292510288364, + 8.515289907121153, + 8.535287327263903, + 8.555284770507749, + 8.5752822366457, + 8.595279725472619, + 8.615277236785214, + 8.635274770382011, + 8.655272326063349, + 8.675269903631355, + 8.695267502889928, + 8.71526512364473, + 8.735262765703164, + 8.755260428874355, + 8.775258112969153, + 8.795255817800095, + 8.815253543181399, + 8.835251288928951, + 8.855249054860293, + 8.875246840794597, + 8.895244646552658, + 8.915242471956878, + 8.935240316831251, + 8.955238181001352, + 8.97523606429432, + 8.995233966538839, + 9.015231887565134, + 9.035229827204956, + 9.055227785291557, + 9.07522576165968, + 9.095223756145565, + 9.115221768586911, + 9.135219798822874, + 9.155217846694049, + 9.175215912042464, + 9.195213994711562, + 9.215212094546192, + 9.235210211392591, + 9.255208345098374, + 9.275206495512524, + 9.295204662485379, + 9.315202845868615, + 9.335201045515245, + 9.355199261279589, + 9.37519749301728, + 9.39519574058525, + 9.415194003841702, + 9.435192282646117, + 9.455190576859234, + 9.475188886343043, + 9.495187210960767, + 9.515185550576854, + 9.535183905056977, + 9.555182274268002, + 9.575180658077997, + 9.595179056356205, + 9.615177468973043, + 9.63517589580009, + 9.65517433671008, + 9.675172791576884, + 9.695171260275504, + 9.715169742682065, + 9.735168238673795, + 9.755166748129032, + 9.775165270927193, + 9.795163806948787, + 9.81516235607539, + 9.835160918189636, + 9.855159493175218, + 9.875158080916863, + 9.895156681300334, + 9.915155294212422, + 9.935153919540923, + 9.955152557174651, + 9.975151207003409, + 9.995149868917988, + 10.01514854281016, + 10.035147228572663, + 10.055145926099199, + 10.075144635284422, + 10.095143356023934, + 10.115142088214263, + 10.135140831752873, + 10.15513958653814, + 10.175138352469363, + 10.195137129446726, + 10.21513591737132, + 10.235134716145119, + 10.255133525670974, + 10.275132345852604, + 10.295131176594596, + 10.31513001780239, + 10.335128869382274, + 10.355127731241375, + 10.375126603287647, + 10.39512548542988, + 10.415124377577671, + 10.435123279641429, + 10.455122191532373, + 10.475121113162508, + 10.49512004444463, + 10.51511898529232, + 10.53511793561993, + 10.55511689534258, + 10.575115864376153, + 10.59511484263728, + 10.615113830043343, + 10.635112826512463, + 10.655111831963497, + 10.675110846316024, + 10.695109869490345, + 10.715108901407477, + 10.735107941989149, + 10.75510699115778, + 10.775106048836491, + 10.79510511494909, + 10.815104189420063, + 10.835103272174589, + 10.855102363138496, + 10.87510146223829, + 10.895100569401132, + 10.915099684554836, + 10.93509880762786, + 10.9550979385493, + 10.975097077248899, + 10.995096223657017, + 11.015095377704645, + 11.035094539323387, + 11.055093708445467, + 11.075092885003707, + 11.095092068931539, + 11.115091260162982, + 11.135090458632657, + 11.155089664275765, + 11.175088877028085, + 11.195088096825971, + 11.215087323606356, + 11.235086557306726, + 11.255085797865135, + 11.275085045220186, + 11.295084299311041, + 11.315083560077397, + 11.3350828274595, + 11.355082101398121, + 11.375081381834567, + 11.395080668710671, + 11.415079961968788, + 11.435079261551785, + 11.455078567403048, + 11.475077879466461, + 11.495077197686417, + 11.515076522007805, + 11.535075852376004, + 11.555075188736891, + 11.575074531036817, + 11.595073879222623, + 11.615073233241619, + 11.635072593041592, + 11.65507195857079, + 11.675071329777934, + 11.695070706612196, + 11.71507008902321, + 11.73506947696105, + 11.755068870376252, + 11.77506826921978, + 11.79506767344305, + 11.815067082997905, + 11.83506649783662, + 11.8550659179119, + 11.875065343176873, + 11.895064773585087, + 11.915064209090502, + 11.935063649647493, + 11.95506309521085, + 11.975062545735755, + 11.995062001177804, + 12.01506146149298, + 12.035060926637668, + 12.055060396568637, + 12.075059871243049, + 12.095059350618445, + 12.11505883465275, + 12.135058323304264, + 12.15505781653166, + 12.17505731429398, + 12.195056816550634, + 12.215056323261397, + 12.235055834386403, + 12.25505534988614, + 12.275054869721455, + 12.295054393853542, + 12.315053922243946, + 12.335053454854547, + 12.355052991647579, + 12.375052532585606, + 12.395052077631531, + 12.415051626748586, + 12.435051179900329, + 12.455050737050653, + 12.475050298163772, + 12.495049863204217, + 12.515049432136838, + 12.5350490049268, + 12.55504858153958, + 12.575048161940963, + 12.595047746097043, + 12.615047333974212, + 12.635046925539172, + 12.655046520758916, + 12.67504611960073, + 12.695045722032198, + 12.715045328021194, + 12.735044937535882, + 12.755044550544705, + 12.77504416701639, + 12.795043786919948, + 12.815043410224662, + 12.835043036900096, + 12.855042666916082, + 12.875042300242725, + 12.895041936850392, + 12.915041576709719, + 12.935041219791609, + 12.95504086606722, + 12.975040515507974, + 12.995040168085538, + 13.015039823771842, + 13.035039482539062, + 13.055039144359629, + 13.075038809206214, + 13.09503847705174, + 13.115038147869363, + 13.13503782163249, + 13.155037498314758, + 13.175037177890044, + 13.195036860332454, + 13.215036545616334, + 13.235036233716253, + 13.25503592460701, + 13.275035618263631, + 13.295035314661362, + 13.315035013775674, + 13.335034715582253, + 13.355034420057008, + 13.375034127176061, + 13.395033836915745, + 13.41503354925261, + 13.435033264163415, + 13.455032981625129, + 13.475032701614918, + 13.49503242411016, + 13.515032149088432, + 13.535031876527515, + 13.555031606405388, + 13.575031338700226, + 13.5950310733904, + 13.615030810454476, + 13.635030549871209, + 13.655030291619545, + 13.675030035678619, + 13.695029782027751, + 13.71502953064645, + 13.735029281514409, + 13.755029034611495, + 13.775028789917764, + 13.795028547413448, + 13.81502830707895, + 13.835028068894854, + 13.855027832841916, + 13.875027598901067, + 13.895027367053409, + 13.915027137280207, + 13.9350269095629, + 13.955026683883085, + 13.975026460222537, + 13.995026238563186, + 14.01502601888712, + 14.035025801176593, + 14.055025585414016, + 14.07502537158196, + 14.095025159663148, + 14.11502494964046, + 14.135024741496933, + 14.155024535215741 + ] + }, + { + "legendgroup": "car1", + "legendgrouptitle": { + "text": "car1" + }, + "line": { + "color": "#FF9999", + "width": 3 + }, + "mode": "lines", + "name": "7.03-10.0-1", + "showlegend": false, + "text": [ + "['7.03', '14.16']", + "['7.04', '14.17']", + "['7.05', '14.19']", + "['7.06', '14.21']", + "['7.07', '14.23']", + "['7.08', '14.25']", + "['7.09', '14.27']", + "['7.10', '14.29']", + "['7.11', '14.31']", + "['7.12', '14.33']", + "['7.13', '14.35']", + "['7.14', '14.37']", + "['7.15', '14.39']", + "['7.16', '14.41']", + "['7.17', '14.43']", + "['7.18', '14.44']", + "['7.19', '14.46']", + "['7.20', '14.48']", + "['7.21', '14.50']", + "['7.22', '14.52']", + "['7.23', '14.54']", + "['7.24', '14.55']", + "['7.25', '14.57']", + "['7.26', '14.59']", + "['7.27', '14.61']", + "['7.28', '14.62']", + "['7.29', '14.64']", + "['7.30', '14.66']", + "['7.31', '14.68']", + "['7.32', '14.69']", + "['7.33', '14.71']", + "['7.34', '14.73']", + "['7.35', '14.74']", + "['7.36', '14.76']", + "['7.37', '14.78']", + "['7.38', '14.79']", + "['7.39', '14.81']", + "['7.40', '14.83']", + "['7.41', '14.84']", + "['7.42', '14.86']", + "['7.43', '14.87']", + "['7.44', '14.89']", + "['7.45', '14.91']", + "['7.46', '14.92']", + "['7.47', '14.94']", + "['7.48', '14.95']", + "['7.49', '14.97']", + "['7.50', '14.98']", + "['7.51', '15.00']", + "['7.52', '15.01']", + "['7.53', '15.03']", + "['7.54', '15.04']", + "['7.55', '15.06']", + "['7.56', '15.07']", + "['7.57', '15.09']", + "['7.58', '15.10']", + "['7.59', '15.12']", + "['7.60', '15.13']", + "['7.61', '15.15']", + "['7.62', '15.16']", + "['7.63', '15.17']", + "['7.64', '15.19']", + "['7.65', '15.20']", + "['7.66', '15.22']", + "['7.67', '15.23']", + "['7.68', '15.24']", + "['7.69', '15.26']", + "['7.70', '15.27']", + "['7.71', '15.28']", + "['7.72', '15.30']", + "['7.73', '15.31']", + "['7.74', '15.32']", + "['7.75', '15.34']", + "['7.76', '15.35']", + "['7.77', '15.36']", + "['7.78', '15.37']", + "['7.79', '15.39']", + "['7.80', '15.40']", + "['7.81', '15.41']", + "['7.82', '15.42']", + "['7.83', '15.43']", + "['7.84', '15.45']", + "['7.85', '15.46']", + "['7.86', '15.47']", + "['7.87', '15.48']", + "['7.88', '15.49']", + "['7.89', '15.51']", + "['7.90', '15.52']", + "['7.91', '15.53']", + "['7.92', '15.54']", + "['7.93', '15.55']", + "['7.94', '15.56']", + "['7.95', '15.57']", + "['7.96', '15.58']", + "['7.97', '15.59']", + "['7.98', '15.60']", + "['7.99', '15.61']", + "['8.00', '15.62']", + "['8.01', '15.63']", + "['8.02', '15.64']", + "['8.03', '15.65']", + "['8.04', '15.66']", + "['8.05', '15.67']", + "['8.06', '15.68']", + "['8.07', '15.69']", + "['8.08', '15.70']", + "['8.09', '15.71']", + "['8.10', '15.72']", + "['8.11', '15.73']", + "['8.12', '15.74']", + "['8.13', '15.75']", + "['8.14', '15.76']", + "['8.15', '15.77']", + "['8.16', '15.78']", + "['8.17', '15.79']", + "['8.18', '15.79']", + "['8.19', '15.80']", + "['8.20', '15.81']", + "['8.21', '15.82']", + "['8.22', '15.83']", + "['8.23', '15.83']", + "['8.24', '15.84']", + "['8.25', '15.85']", + "['8.26', '15.86']", + "['8.27', '15.87']", + "['8.28', '15.87']", + "['8.29', '15.88']", + "['8.30', '15.89']", + "['8.31', '15.90']", + "['8.32', '15.90']", + "['8.33', '15.91']", + "['8.34', '15.92']", + "['8.35', '15.92']", + "['8.36', '15.93']", + "['8.37', '15.94']", + "['8.38', '15.94']", + "['8.39', '15.95']", + "['8.40', '15.96']", + "['8.41', '15.96']", + "['8.42', '15.97']", + "['8.43', '15.97']", + "['8.44', '15.98']", + "['8.45', '15.99']", + "['8.46', '15.99']", + "['8.47', '16.00']", + "['8.48', '16.00']", + "['8.49', '16.01']", + "['8.50', '16.01']", + "['8.51', '16.02']", + "['8.52', '16.02']", + "['8.53', '16.03']", + "['8.54', '16.03']", + "['8.55', '16.04']", + "['8.56', '16.04']", + "['8.57', '16.05']", + "['8.58', '16.05']", + "['8.59', '16.06']", + "['8.60', '16.06']", + "['8.61', '16.07']", + "['8.62', '16.07']", + "['8.63', '16.07']", + "['8.64', '16.08']", + "['8.65', '16.08']", + "['8.66', '16.09']", + "['8.67', '16.09']", + "['8.68', '16.09']", + "['8.69', '16.10']", + "['8.70', '16.10']", + "['8.71', '16.10']", + "['8.72', '16.11']", + "['8.73', '16.11']", + "['8.74', '16.11']", + "['8.75', '16.12']", + "['8.76', '16.12']", + "['8.77', '16.12']", + "['8.78', '16.12']", + "['8.79', '16.13']", + "['8.80', '16.13']", + "['8.81', '16.13']", + "['8.82', '16.13']", + "['8.83', '16.13']", + "['8.84', '16.14']", + "['8.85', '16.14']", + "['8.86', '16.14']", + "['8.87', '16.14']", + "['8.88', '16.14']", + "['8.89', '16.15']", + "['8.90', '16.15']", + "['8.91', '16.15']", + "['8.92', '16.15']", + "['8.93', '16.15']", + "['8.94', '16.15']", + "['8.95', '16.15']", + "['8.96', '16.15']", + "['8.97', '16.15']", + "['8.98', '16.15']", + "['8.99', '16.15']", + "['9.00', '16.15']", + "['9.01', '16.15']", + "['9.02', '16.15']", + "['9.03', '16.15']", + "['9.04', '16.15']", + "['9.05', '16.15']", + "['9.06', '16.15']", + "['9.07', '16.15']", + "['9.08', '16.15']", + "['9.09', '16.15']", + "['9.10', '16.15']", + "['9.11', '16.15']", + "['9.12', '16.15']", + "['9.13', '16.15']", + "['9.14', '16.15']", + "['9.15', '16.15']", + "['9.16', '16.15']", + "['9.17', '16.15']", + "['9.18', '16.15']", + "['9.19', '16.14']", + "['9.20', '16.14']", + "['9.21', '16.14']", + "['9.22', '16.14']", + "['9.23', '16.14']", + "['9.24', '16.14']", + "['9.25', '16.14']", + "['9.26', '16.13']", + "['9.27', '16.13']", + "['9.28', '16.13']", + "['9.29', '16.13']", + "['9.30', '16.12']", + "['9.31', '16.12']", + "['9.32', '16.12']", + "['9.33', '16.12']", + "['9.34', '16.12']", + "['9.35', '16.11']", + "['9.36', '16.11']", + "['9.37', '16.11']", + "['9.38', '16.10']", + "['9.39', '16.10']", + "['9.40', '16.10']", + "['9.41', '16.10']", + "['9.42', '16.09']", + "['9.43', '16.09']", + "['9.44', '16.09']", + "['9.45', '16.08']", + "['9.46', '16.08']", + "['9.47', '16.07']", + "['9.48', '16.07']", + "['9.49', '16.07']", + "['9.50', '16.06']", + "['9.51', '16.06']", + "['9.52', '16.06']", + "['9.53', '16.05']", + "['9.54', '16.05']", + "['9.55', '16.04']", + "['9.56', '16.04']", + "['9.57', '16.03']", + "['9.58', '16.03']", + "['9.59', '16.02']", + "['9.60', '16.02']", + "['9.61', '16.01']", + "['9.62', '16.01']", + "['9.63', '16.00']", + "['9.64', '16.00']", + "['9.65', '15.99']", + "['9.66', '15.99']", + "['9.67', '15.98']", + "['9.68', '15.98']", + "['9.69', '15.97']", + "['9.70', '15.97']", + "['9.71', '15.96']", + "['9.72', '15.95']", + "['9.73', '15.95']", + "['9.74', '15.94']", + "['9.75', '15.94']", + "['9.76', '15.93']", + "['9.77', '15.92']", + "['9.78', '15.92']", + "['9.79', '15.91']", + "['9.80', '15.90']", + "['9.81', '15.90']", + "['9.82', '15.89']", + "['9.83', '15.88']", + "['9.84', '15.88']", + "['9.85', '15.87']", + "['9.86', '15.86']", + "['9.87', '15.85']", + "['9.88', '15.85']", + "['9.89', '15.84']", + "['9.90', '15.83']", + "['9.91', '15.82']", + "['9.92', '15.82']", + "['9.93', '15.81']", + "['9.94', '15.80']", + "['9.95', '15.79']", + "['9.96', '15.78']", + "['9.97', '15.77']", + "['9.98', '15.77']", + "['9.99', '15.76']", + "['10.00', '15.75']" + ], + "type": "scatter", + "x": [ + 7.03, + 7.04, + 7.05, + 7.0600000000000005, + 7.07, + 7.08, + 7.09, + 7.1000000000000005, + 7.11, + 7.12, + 7.13, + 7.140000000000001, + 7.15, + 7.16, + 7.17, + 7.180000000000001, + 7.19, + 7.2, + 7.21, + 7.220000000000001, + 7.23, + 7.24, + 7.25, + 7.260000000000001, + 7.2700000000000005, + 7.28, + 7.29, + 7.300000000000001, + 7.3100000000000005, + 7.32, + 7.33, + 7.34, + 7.3500000000000005, + 7.36, + 7.37, + 7.38, + 7.390000000000001, + 7.4, + 7.41, + 7.42, + 7.430000000000001, + 7.44, + 7.45, + 7.46, + 7.470000000000001, + 7.48, + 7.49, + 7.5, + 7.51, + 7.5200000000000005, + 7.53, + 7.54, + 7.550000000000001, + 7.5600000000000005, + 7.57, + 7.58, + 7.59, + 7.6000000000000005, + 7.61, + 7.62, + 7.63, + 7.640000000000001, + 7.65, + 7.66, + 7.67, + 7.680000000000001, + 7.69, + 7.7, + 7.71, + 7.720000000000001, + 7.73, + 7.74, + 7.75, + 7.76, + 7.7700000000000005, + 7.78, + 7.79, + 7.800000000000001, + 7.8100000000000005, + 7.82, + 7.83, + 7.84, + 7.8500000000000005, + 7.86, + 7.87, + 7.88, + 7.890000000000001, + 7.9, + 7.91, + 7.92, + 7.930000000000001, + 7.94, + 7.95, + 7.96, + 7.970000000000001, + 7.98, + 7.99, + 8, + 8.01, + 8.02, + 8.030000000000001, + 8.040000000000001, + 8.05, + 8.06, + 8.07, + 8.08, + 8.09, + 8.1, + 8.11, + 8.120000000000001, + 8.13, + 8.14, + 8.15, + 8.16, + 8.17, + 8.18, + 8.19, + 8.2, + 8.21, + 8.22, + 8.23, + 8.24, + 8.25, + 8.26, + 8.27, + 8.280000000000001, + 8.290000000000001, + 8.3, + 8.31, + 8.32, + 8.33, + 8.34, + 8.35, + 8.36, + 8.370000000000001, + 8.38, + 8.39, + 8.4, + 8.41, + 8.42, + 8.43, + 8.44, + 8.45, + 8.46, + 8.47, + 8.48, + 8.49, + 8.5, + 8.51, + 8.52, + 8.530000000000001, + 8.540000000000001, + 8.55, + 8.56, + 8.57, + 8.58, + 8.59, + 8.6, + 8.61, + 8.620000000000001, + 8.63, + 8.64, + 8.65, + 8.66, + 8.67, + 8.68, + 8.69, + 8.7, + 8.71, + 8.72, + 8.73, + 8.74, + 8.75, + 8.76, + 8.77, + 8.780000000000001, + 8.790000000000001, + 8.8, + 8.81, + 8.82, + 8.83, + 8.84, + 8.85, + 8.86, + 8.870000000000001, + 8.88, + 8.89, + 8.9, + 8.91, + 8.92, + 8.93, + 8.94, + 8.95, + 8.96, + 8.97, + 8.98, + 8.99, + 9, + 9.01, + 9.02, + 9.030000000000001, + 9.04, + 9.05, + 9.06, + 9.07, + 9.08, + 9.09, + 9.1, + 9.11, + 9.120000000000001, + 9.129999999999999, + 9.14, + 9.15, + 9.16, + 9.17, + 9.18, + 9.19, + 9.2, + 9.21, + 9.22, + 9.23, + 9.24, + 9.25, + 9.26, + 9.27, + 9.280000000000001, + 9.29, + 9.3, + 9.31, + 9.32, + 9.33, + 9.34, + 9.35, + 9.36, + 9.370000000000001, + 9.379999999999999, + 9.39, + 9.4, + 9.41, + 9.42, + 9.43, + 9.44, + 9.45, + 9.46, + 9.47, + 9.48, + 9.49, + 9.5, + 9.51, + 9.52, + 9.530000000000001, + 9.54, + 9.55, + 9.56, + 9.57, + 9.58, + 9.59, + 9.6, + 9.61, + 9.620000000000001, + 9.629999999999999, + 9.64, + 9.65, + 9.66, + 9.67, + 9.68, + 9.69, + 9.7, + 9.71, + 9.72, + 9.73, + 9.74, + 9.75, + 9.76, + 9.77, + 9.780000000000001, + 9.79, + 9.8, + 9.81, + 9.82, + 9.83, + 9.84, + 9.85, + 9.86, + 9.870000000000001, + 9.879999999999999, + 9.89, + 9.9, + 9.91, + 9.92, + 9.93, + 9.94, + 9.95, + 9.96, + 9.97, + 9.98, + 9.99, + 10 + ], + "y": [ + 14.155024535215741, + 14.174973777179611, + 14.194823015334821, + 14.21457224968613, + 14.234221480239333, + 14.253770707001271, + 14.27321992997985, + 14.292569149184061, + 14.311818364623972, + 14.330967576310778, + 14.350016784256796, + 14.368965988475479, + 14.387815188981447, + 14.406564385790503, + 14.425213578919635, + 14.443762768387051, + 14.462211954212187, + 14.48056113641573, + 14.498810315019636, + 14.516959490047151, + 14.535008661522818, + 14.55295782947252, + 14.570806993923481, + 14.588556154904294, + 14.606205312444946, + 14.623754466576827, + 14.641203617332755, + 14.658552764747004, + 14.675801908855327, + 14.692951049694969, + 14.710000187304695, + 14.726949321724806, + 14.743798452997172, + 14.760547581165248, + 14.777196706274099, + 14.793745828370415, + 14.81019494750255, + 14.826544063720535, + 14.842793177076093, + 14.85894228762268, + 14.874991395415492, + 14.890940500511505, + 14.906789602969466, + 14.92253870284995, + 14.938187800215365, + 14.953736895129968, + 14.969185987659898, + 14.984535077873193, + 14.999784165839795, + 15.014933251631588, + 15.029982335322403, + 15.044931416988046, + 15.059780496706294, + 15.074529574556932, + 15.08917865062176, + 15.103727724984584, + 15.118176797731257, + 15.132525868949669, + 15.14677493872976, + 15.160924007163517, + 15.174973074344988, + 15.188922140370275, + 15.202771205337536, + 15.216520269346978, + 15.230169332500852, + 15.243718394903443, + 15.257167456661055, + 15.270516517881994, + 15.283765578676556, + 15.296914639157006, + 15.30996369943754, + 15.322912759634265, + 15.335761819865162, + 15.348510880250048, + 15.361159940910536, + 15.373709001969996, + 15.386158063553486, + 15.398507125787715, + 15.410756188800983, + 15.4229052527231, + 15.434954317685335, + 15.446903383820334, + 15.458752451262049, + 15.470501520145634, + 15.482150590607388, + 15.493699662784634, + 15.50514873681563, + 15.51649781283947, + 15.527746890995962, + 15.538895971425529, + 15.549945054269084, + 15.560894139667909, + 15.571743227763516, + 15.582492318697529, + 15.59314141261155, + 15.60369050964699, + 15.614139609944962, + 15.624488713646105, + 15.634737820890443, + 15.64488693181722, + 15.654936046564762, + 15.664885165270302, + 15.674734288069821, + 15.684483415097871, + 15.694132546487428, + 15.703681682369712, + 15.713130822874025, + 15.722479968127567, + 15.731729118255297, + 15.740878273379733, + 15.749927433620798, + 15.758876599095649, + 15.767725769918513, + 15.776474946200521, + 15.785124128049544, + 15.793673315570045, + 15.802122508862901, + 15.810471708025252, + 15.818720913150376, + 15.826870124327504, + 15.834919341641694, + 15.84286856517369, + 15.850717794999778, + 15.858467031191656, + 15.866116273816303, + 15.873665522935847, + 15.881114778607456, + 15.888464040883196, + 15.895713309809935, + 15.902862585429219, + 15.909911867777167, + 15.916861156884355, + 15.923710452775708, + 15.930459755470403, + 15.937109064981762, + 15.943658381317132, + 15.950107704477789, + 15.95645703445883, + 15.962706371249057, + 15.968855714830852, + 15.974905065180069, + 15.980854422265898, + 15.98670378605072, + 15.992453156489967, + 15.998102533531965, + 16.003651917117743, + 16.009101307180845, + 16.01445070364715, + 16.019700106434584, + 16.024849515452892, + 16.029898930603352, + 16.034848351778425, + 16.039697778861424, + 16.04444721172608, + 16.0490966502361, + 16.05364609424464, + 16.05809554359374, + 16.062444998113644, + 16.06669445762209, + 16.070843921923437, + 16.074893390807738, + 16.078842864049626, + 16.08269234140712, + 16.086441822620174, + 16.090091307409107, + 16.09364079547273, + 16.097090286486242, + 16.100439780098778, + 16.103689275930595, + 16.10683877356974, + 16.109888272568337, + 16.112837772438102, + 16.115687272645115, + 16.118436772603673, + 16.121086271669004, + 16.123635769128576, + 16.126085264191698, + 16.12843475597701, + 16.130684243497246, + 16.13283372564064, + 16.13488320114801, + 16.13683266858421, + 16.13868212630234, + 16.140431572398253, + 16.142081004652177, + 16.14363042045271, + 16.14507981669654, + 16.146429189653865, + 16.147678534784575, + 16.148827692745062, + 16.14987682362166, + 16.150825918297986, + 16.151674964878044, + 16.15242394741336, + 16.153072843819007, + 16.153621622284508, + 16.15407023471428, + 16.154418603927233, + 16.15466659745439, + 16.154813983583434, + 16.154860792094627, + 16.154820006196225, + 16.154697637678183, + 16.154493684758606, + 16.154208130246495, + 16.15384094976497, + 16.15339211216168, + 16.1528615793944, + 16.152249306544846, + 16.151555241834043, + 16.150779326638677, + 16.149921495507794, + 16.148981676179236, + 16.14795978959571, + 16.146855749920643, + 16.14566946455931, + 16.14440083417078, + 16.143049752692786, + 16.14161610725722, + 16.140099778687755, + 16.138500639312173, + 16.13681855449996, + 16.1350533851654, + 16.13320498535646, + 16.13127320278295, + 16.129257878746248, + 16.127158848185637, + 16.12497593972067, + 16.122708975704747, + 16.12035777227707, + 16.11792213941694, + 16.115401881000402, + 16.112796794859058, + 16.110106672841177, + 16.107331300874925, + 16.10447045903386, + 16.101523921604514, + 16.09849145715626, + 16.095372828613304, + 16.092167793328873, + 16.08887610316161, + 16.085497504554194, + 16.082031738614155, + 16.07847854119693, + 16.074837642991238, + 16.071108769606592, + 16.067291641663186, + 16.063385974884056, + 16.059391480190282, + 16.055307863842906, + 16.05113482752607, + 16.046872068509664, + 16.0425192802322, + 16.038076151193707, + 16.033542365711096, + 16.028917604029175, + 16.02420154243412, + 16.019393853369387, + 16.014494205554062, + 16.009502264103716, + 16.004417690653728, + 15.999240143485135, + 15.993969277653, + 15.988604745117343, + 15.983146194876602, + 15.977593273103688, + 15.971945623284652, + 15.966202886359925, + 15.960364700868233, + 15.954430703093136, + 15.948400527212232, + 15.942273805449062, + 15.936050168227709, + 15.929729244330114, + 15.92331066105615, + 15.91679404438644, + 15.910179019147979, + 15.903465209182496, + 15.896652403412684, + 15.889740064612978, + 15.882727814881768, + 15.875615276035855, + 15.86840206979274, + 15.861087817955811, + 15.853672142602377, + 15.846154666274623, + 15.838535012173455, + 15.830812804355265, + 15.822987667931642, + 15.815059229272016, + 15.807027116209294, + 15.798890958248423, + 15.790650386777957, + 15.782305035284635, + 15.773854539570918, + 15.765298537975571, + 15.756636671597226, + 15.747868584520987 + ] + }, + { + "legendgroup": "car2", + "legendgrouptitle": { + "text": "car2" + }, + "line": { + "color": "#0000CC", + "width": 3 + }, + "mode": "lines", + "name": "0.0-7.03-1", + "showlegend": false, + "text": [ + "['0.00', '15.14']", + "['0.01', '15.15']", + "['0.02', '15.16']", + "['0.03', '15.17']", + "['0.04', '15.18']", + "['0.05', '15.19']", + "['0.06', '15.20']", + "['0.07', '15.21']", + "['0.08', '15.22']", + "['0.09', '15.23']", + "['0.10', '15.24']", + "['0.11', '15.25']", + "['0.12', '15.26']", + "['0.13', '15.27']", + "['0.14', '15.28']", + "['0.15', '15.29']", + "['0.16', '15.30']", + "['0.17', '15.31']", + "['0.18', '15.32']", + "['0.19', '15.33']", + "['0.20', '15.34']", + "['0.21', '15.35']", + "['0.22', '15.36']", + "['0.23', '15.37']", + "['0.24', '15.38']", + "['0.25', '15.39']", + "['0.26', '15.40']", + "['0.27', '15.41']", + "['0.28', '15.42']", + "['0.29', '15.43']", + "['0.30', '15.44']", + "['0.31', '15.45']", + "['0.32', '15.46']", + "['0.33', '15.47']", + "['0.34', '15.48']", + "['0.35', '15.49']", + "['0.36', '15.50']", + "['0.37', '15.51']", + "['0.38', '15.52']", + "['0.39', '15.53']", + "['0.40', '15.54']", + "['0.41', '15.55']", + "['0.42', '15.55']", + "['0.43', '15.56']", + "['0.44', '15.57']", + "['0.45', '15.58']", + "['0.46', '15.59']", + "['0.47', '15.60']", + "['0.48', '15.61']", + "['0.49', '15.62']", + "['0.50', '15.63']", + "['0.51', '15.64']", + "['0.52', '15.65']", + "['0.53', '15.66']", + "['0.54', '15.67']", + "['0.55', '15.68']", + "['0.56', '15.69']", + "['0.57', '15.70']", + "['0.58', '15.71']", + "['0.59', '15.72']", + "['0.60', '15.73']", + "['0.61', '15.74']", + "['0.62', '15.75']", + "['0.63', '15.76']", + "['0.64', '15.77']", + "['0.65', '15.78']", + "['0.66', '15.79']", + "['0.67', '15.80']", + "['0.68', '15.81']", + "['0.69', '15.82']", + "['0.70', '15.83']", + "['0.71', '15.84']", + "['0.72', '15.85']", + "['0.73', '15.86']", + "['0.74', '15.87']", + "['0.75', '15.88']", + "['0.76', '15.89']", + "['0.77', '15.90']", + "['0.78', '15.91']", + "['0.79', '15.92']", + "['0.80', '15.93']", + "['0.81', '15.94']", + "['0.82', '15.95']", + "['0.83', '15.96']", + "['0.84', '15.97']", + "['0.85', '15.98']", + "['0.86', '15.99']", + "['0.87', '16.00']", + "['0.88', '16.01']", + "['0.89', '16.02']", + "['0.90', '16.03']", + "['0.91', '16.04']", + "['0.92', '16.05']", + "['0.93', '16.06']", + "['0.94', '16.07']", + "['0.95', '16.08']", + "['0.96', '16.09']", + "['0.97', '16.10']", + "['0.98', '16.11']", + "['0.99', '16.12']", + "['1.00', '16.13']", + "['1.01', '16.14']", + "['1.02', '16.15']", + "['1.03', '16.16']", + "['1.04', '16.17']", + "['1.05', '16.18']", + "['1.06', '16.19']", + "['1.07', '16.20']", + "['1.08', '16.21']", + "['1.09', '16.22']", + "['1.10', '16.23']", + "['1.11', '16.24']", + "['1.12', '16.25']", + "['1.13', '16.26']", + "['1.14', '16.27']", + "['1.15', '16.28']", + "['1.16', '16.29']", + "['1.17', '16.30']", + "['1.18', '16.31']", + "['1.19', '16.32']", + "['1.20', '16.33']", + "['1.21', '16.34']", + "['1.22', '16.35']", + "['1.23', '16.36']", + "['1.24', '16.37']", + "['1.25', '16.38']", + "['1.26', '16.39']", + "['1.27', '16.40']", + "['1.28', '16.41']", + "['1.29', '16.42']", + "['1.30', '16.43']", + "['1.31', '16.44']", + "['1.32', '16.45']", + "['1.33', '16.46']", + "['1.34', '16.47']", + "['1.35', '16.48']", + "['1.36', '16.49']", + "['1.37', '16.50']", + "['1.38', '16.51']", + "['1.39', '16.52']", + "['1.40', '16.53']", + "['1.41', '16.54']", + "['1.42', '16.55']", + "['1.43', '16.56']", + "['1.44', '16.57']", + "['1.45', '16.58']", + "['1.46', '16.59']", + "['1.47', '16.60']", + "['1.48', '16.61']", + "['1.49', '16.62']", + "['1.50', '16.63']", + "['1.51', '16.64']", + "['1.52', '16.64']", + "['1.53', '16.65']", + "['1.54', '16.66']", + "['1.55', '16.67']", + "['1.56', '16.68']", + "['1.57', '16.69']", + "['1.58', '16.70']", + "['1.59', '16.71']", + "['1.60', '16.72']", + "['1.61', '16.73']", + "['1.62', '16.74']", + "['1.63', '16.75']", + "['1.64', '16.76']", + "['1.65', '16.77']", + "['1.66', '16.78']", + "['1.67', '16.79']", + "['1.68', '16.80']", + "['1.69', '16.81']", + "['1.70', '16.82']", + "['1.71', '16.83']", + "['1.72', '16.84']", + "['1.73', '16.85']", + "['1.74', '16.86']", + "['1.75', '16.87']", + "['1.76', '16.88']", + "['1.77', '16.89']", + "['1.78', '16.90']", + "['1.79', '16.91']", + "['1.80', '16.92']", + "['1.81', '16.93']", + "['1.82', '16.94']", + "['1.83', '16.95']", + "['1.84', '16.96']", + "['1.85', '16.97']", + "['1.86', '16.98']", + "['1.87', '16.99']", + "['1.88', '17.00']", + "['1.89', '17.01']", + "['1.90', '17.02']", + "['1.91', '17.03']", + "['1.92', '17.04']", + "['1.93', '17.05']", + "['1.94', '17.06']", + "['1.95', '17.07']", + "['1.96', '17.08']", + "['1.97', '17.09']", + "['1.98', '17.10']", + "['1.99', '17.11']", + "['2.00', '17.12']", + "['2.01', '17.13']", + "['2.02', '17.14']", + "['2.03', '17.15']", + "['2.04', '17.16']", + "['2.05', '17.17']", + "['2.06', '17.18']", + "['2.07', '17.19']", + "['2.08', '17.20']", + "['2.09', '17.21']", + "['2.10', '17.22']", + "['2.11', '17.23']", + "['2.12', '17.24']", + "['2.13', '17.25']", + "['2.14', '17.26']", + "['2.15', '17.27']", + "['2.16', '17.28']", + "['2.17', '17.29']", + "['2.18', '17.30']", + "['2.19', '17.31']", + "['2.20', '17.32']", + "['2.21', '17.33']", + "['2.22', '17.34']", + "['2.23', '17.35']", + "['2.24', '17.36']", + "['2.25', '17.37']", + "['2.26', '17.38']", + "['2.27', '17.39']", + "['2.28', '17.40']", + "['2.29', '17.41']", + "['2.30', '17.42']", + "['2.31', '17.43']", + "['2.32', '17.44']", + "['2.33', '17.45']", + "['2.34', '17.46']", + "['2.35', '17.47']", + "['2.36', '17.48']", + "['2.37', '17.49']", + "['2.38', '17.50']", + "['2.39', '17.51']", + "['2.40', '17.52']", + "['2.41', '17.53']", + "['2.42', '17.54']", + "['2.43', '17.55']", + "['2.44', '17.56']", + "['2.45', '17.57']", + "['2.46', '17.58']", + "['2.47', '17.59']", + "['2.48', '17.60']", + "['2.49', '17.61']", + "['2.50', '17.62']", + "['2.51', '17.63']", + "['2.52', '17.64']", + "['2.53', '17.65']", + "['2.54', '17.66']", + "['2.55', '17.67']", + "['2.56', '17.68']", + "['2.57', '17.69']", + "['2.58', '17.70']", + "['2.59', '17.71']", + "['2.60', '17.72']", + "['2.61', '17.73']", + "['2.62', '17.74']", + "['2.63', '17.75']", + "['2.64', '17.76']", + "['2.65', '17.77']", + "['2.66', '17.78']", + "['2.67', '17.79']", + "['2.68', '17.80']", + "['2.69', '17.81']", + "['2.70', '17.82']", + "['2.71', '17.83']", + "['2.72', '17.84']", + "['2.73', '17.85']", + "['2.74', '17.86']", + "['2.75', '17.87']", + "['2.76', '17.88']", + "['2.77', '17.89']", + "['2.78', '17.90']", + "['2.79', '17.91']", + "['2.80', '17.92']", + "['2.81', '17.93']", + "['2.82', '17.94']", + "['2.83', '17.95']", + "['2.84', '17.96']", + "['2.85', '17.97']", + "['2.86', '17.98']", + "['2.87', '17.99']", + "['2.88', '18.00']", + "['2.89', '18.01']", + "['2.90', '18.02']", + "['2.91', '18.03']", + "['2.92', '18.04']", + "['2.93', '18.05']", + "['2.94', '18.06']", + "['2.95', '18.07']", + "['2.96', '18.08']", + "['2.97', '18.09']", + "['2.98', '18.10']", + "['2.99', '18.11']", + "['3.00', '18.12']", + "['3.01', '18.13']", + "['3.02', '18.14']", + "['3.03', '18.15']", + "['3.04', '18.16']", + "['3.05', '18.17']", + "['3.06', '18.18']", + "['3.07', '18.19']", + "['3.08', '18.20']", + "['3.09', '18.21']", + "['3.10', '18.22']", + "['3.11', '18.23']", + "['3.12', '18.24']", + "['3.13', '18.25']", + "['3.14', '18.26']", + "['3.15', '18.27']", + "['3.16', '18.28']", + "['3.17', '18.29']", + "['3.18', '18.30']", + "['3.19', '18.31']", + "['3.20', '18.32']", + "['3.21', '18.33']", + "['3.22', '18.34']", + "['3.23', '18.35']", + "['3.24', '18.36']", + "['3.25', '18.37']", + "['3.26', '18.38']", + "['3.27', '18.39']", + "['3.28', '18.40']", + "['3.29', '18.41']", + "['3.30', '18.42']", + "['3.31', '18.43']", + "['3.32', '18.44']", + "['3.33', '18.45']", + "['3.34', '18.46']", + "['3.35', '18.47']", + "['3.36', '18.48']", + "['3.37', '18.49']", + "['3.38', '18.50']", + "['3.39', '18.51']", + "['3.40', '18.52']", + "['3.41', '18.53']", + "['3.42', '18.54']", + "['3.43', '18.55']", + "['3.44', '18.56']", + "['3.45', '18.57']", + "['3.46', '18.58']", + "['3.47', '18.59']", + "['3.48', '18.60']", + "['3.49', '18.61']", + "['3.50', '18.62']", + "['3.51', '18.63']", + "['3.52', '18.64']", + "['3.53', '18.65']", + "['3.54', '18.66']", + "['3.55', '18.67']", + "['3.56', '18.68']", + "['3.57', '18.69']", + "['3.58', '18.70']", + "['3.59', '18.71']", + "['3.60', '18.72']", + "['3.61', '18.73']", + "['3.62', '18.74']", + "['3.63', '18.75']", + "['3.64', '18.76']", + "['3.65', '18.77']", + "['3.66', '18.78']", + "['3.67', '18.79']", + "['3.68', '18.80']", + "['3.69', '18.81']", + "['3.70', '18.82']", + "['3.71', '18.83']", + "['3.72', '18.84']", + "['3.73', '18.85']", + "['3.74', '18.86']", + "['3.75', '18.87']", + "['3.76', '18.88']", + "['3.77', '18.89']", + "['3.78', '18.90']", + "['3.79', '18.91']", + "['3.80', '18.92']", + "['3.81', '18.93']", + "['3.82', '18.94']", + "['3.83', '18.95']", + "['3.84', '18.96']", + "['3.85', '18.97']", + "['3.86', '18.98']", + "['3.87', '18.99']", + "['3.88', '19.00']", + "['3.89', '19.01']", + "['3.90', '19.02']", + "['3.91', '19.03']", + "['3.92', '19.04']", + "['3.93', '19.05']", + "['3.94', '19.06']", + "['3.95', '19.07']", + "['3.96', '19.08']", + "['3.97', '19.09']", + "['3.98', '19.10']", + "['3.99', '19.11']", + "['4.00', '19.12']", + "['4.01', '19.13']", + "['4.02', '19.14']", + "['4.03', '19.15']", + "['4.04', '19.16']", + "['4.05', '19.17']", + "['4.06', '19.18']", + "['4.07', '19.19']", + "['4.08', '19.20']", + "['4.09', '19.21']", + "['4.10', '19.22']", + "['4.11', '19.23']", + "['4.12', '19.24']", + "['4.13', '19.25']", + "['4.14', '19.26']", + "['4.15', '19.27']", + "['4.16', '19.28']", + "['4.17', '19.29']", + "['4.18', '19.30']", + "['4.19', '19.31']", + "['4.20', '19.32']", + "['4.21', '19.33']", + "['4.22', '19.34']", + "['4.23', '19.35']", + "['4.24', '19.36']", + "['4.25', '19.37']", + "['4.26', '19.38']", + "['4.27', '19.39']", + "['4.28', '19.40']", + "['4.29', '19.41']", + "['4.30', '19.42']", + "['4.31', '19.43']", + "['4.32', '19.44']", + "['4.33', '19.45']", + "['4.34', '19.46']", + "['4.35', '19.47']", + "['4.36', '19.48']", + "['4.37', '19.49']", + "['4.38', '19.50']", + "['4.39', '19.51']", + "['4.40', '19.52']", + "['4.41', '19.53']", + "['4.42', '19.54']", + "['4.43', '19.55']", + "['4.44', '19.56']", + "['4.45', '19.57']", + "['4.46', '19.58']", + "['4.47', '19.59']", + "['4.48', '19.60']", + "['4.49', '19.61']", + "['4.50', '19.62']", + "['4.51', '19.63']", + "['4.52', '19.64']", + "['4.53', '19.65']", + "['4.54', '19.66']", + "['4.55', '19.67']", + "['4.56', '19.68']", + "['4.57', '19.69']", + "['4.58', '19.70']", + "['4.59', '19.71']", + "['4.60', '19.72']", + "['4.61', '19.73']", + "['4.62', '19.74']", + "['4.63', '19.75']", + "['4.64', '19.76']", + "['4.65', '19.77']", + "['4.66', '19.78']", + "['4.67', '19.79']", + "['4.68', '19.80']", + "['4.69', '19.81']", + "['4.70', '19.82']", + "['4.71', '19.83']", + "['4.72', '19.84']", + "['4.73', '19.85']", + "['4.74', '19.86']", + "['4.75', '19.87']", + "['4.76', '19.88']", + "['4.77', '19.89']", + "['4.78', '19.90']", + "['4.79', '19.91']", + "['4.80', '19.92']", + "['4.81', '19.93']", + "['4.82', '19.94']", + "['4.83', '19.95']", + "['4.84', '19.96']", + "['4.85', '19.97']", + "['4.86', '19.98']", + "['4.87', '19.99']", + "['4.88', '20.00']", + "['4.89', '20.01']", + "['4.90', '20.02']", + "['4.91', '20.03']", + "['4.92', '20.04']", + "['4.93', '20.05']", + "['4.94', '20.06']", + "['4.95', '20.07']", + "['4.96', '20.08']", + "['4.97', '20.09']", + "['4.98', '20.10']", + "['4.99', '20.11']", + "['5.00', '20.12']", + "['5.01', '20.13']", + "['5.02', '20.14']", + "['5.03', '20.15']", + "['5.04', '20.16']", + "['5.05', '20.17']", + "['5.06', '20.18']", + "['5.07', '20.19']", + "['5.08', '20.20']", + "['5.09', '20.21']", + "['5.10', '20.22']", + "['5.11', '20.23']", + "['5.12', '20.24']", + "['5.13', '20.25']", + "['5.14', '20.26']", + "['5.15', '20.27']", + "['5.16', '20.28']", + "['5.17', '20.29']", + "['5.18', '20.30']", + "['5.19', '20.31']", + "['5.20', '20.32']", + "['5.21', '20.33']", + "['5.22', '20.34']", + "['5.23', '20.35']", + "['5.24', '20.36']", + "['5.25', '20.37']", + "['5.26', '20.38']", + "['5.27', '20.39']", + "['5.28', '20.40']", + "['5.29', '20.41']", + "['5.30', '20.42']", + "['5.31', '20.43']", + "['5.32', '20.44']", + "['5.33', '20.45']", + "['5.34', '20.46']", + "['5.35', '20.47']", + "['5.36', '20.48']", + "['5.37', '20.49']", + "['5.38', '20.50']", + "['5.39', '20.51']", + "['5.40', '20.52']", + "['5.41', '20.53']", + "['5.42', '20.54']", + "['5.43', '20.55']", + "['5.44', '20.56']", + "['5.45', '20.57']", + "['5.46', '20.58']", + "['5.47', '20.59']", + "['5.48', '20.60']", + "['5.49', '20.61']", + "['5.50', '20.62']", + "['5.51', '20.63']", + "['5.52', '20.64']", + "['5.53', '20.65']", + "['5.54', '20.66']", + "['5.55', '20.67']", + "['5.56', '20.68']", + "['5.57', '20.69']", + "['5.58', '20.70']", + "['5.59', '20.71']", + "['5.60', '20.72']", + "['5.61', '20.73']", + "['5.62', '20.74']", + "['5.63', '20.75']", + "['5.64', '20.76']", + "['5.65', '20.77']", + "['5.66', '20.78']", + "['5.67', '20.79']", + "['5.68', '20.80']", + "['5.69', '20.81']", + "['5.70', '20.82']", + "['5.71', '20.83']", + "['5.72', '20.84']", + "['5.73', '20.85']", + "['5.74', '20.86']", + "['5.75', '20.87']", + "['5.76', '20.88']", + "['5.77', '20.89']", + "['5.78', '20.90']", + "['5.79', '20.91']", + "['5.80', '20.92']", + "['5.81', '20.93']", + "['5.82', '20.94']", + "['5.83', '20.95']", + "['5.84', '20.96']", + "['5.85', '20.97']", + "['5.86', '20.98']", + "['5.87', '20.99']", + "['5.88', '21.00']", + "['5.89', '21.01']", + "['5.90', '21.02']", + "['5.91', '21.03']", + "['5.92', '21.04']", + "['5.93', '21.05']", + "['5.94', '21.06']", + "['5.95', '21.07']", + "['5.96', '21.08']", + "['5.97', '21.09']", + "['5.98', '21.10']", + "['5.99', '21.11']", + "['6.00', '21.12']", + "['6.01', '21.13']", + "['6.02', '21.14']", + "['6.03', '21.15']", + "['6.04', '21.16']", + "['6.05', '21.17']", + "['6.06', '21.18']", + "['6.07', '21.19']", + "['6.08', '21.20']", + "['6.09', '21.21']", + "['6.10', '21.22']", + "['6.11', '21.23']", + "['6.12', '21.24']", + "['6.13', '21.25']", + "['6.14', '21.26']", + "['6.15', '21.27']", + "['6.16', '21.28']", + "['6.17', '21.29']", + "['6.18', '21.30']", + "['6.19', '21.31']", + "['6.20', '21.32']", + "['6.21', '21.33']", + "['6.22', '21.34']", + "['6.23', '21.35']", + "['6.24', '21.36']", + "['6.25', '21.37']", + "['6.26', '21.38']", + "['6.27', '21.39']", + "['6.28', '21.40']", + "['6.29', '21.41']", + "['6.30', '21.42']", + "['6.31', '21.43']", + "['6.32', '21.44']", + "['6.33', '21.45']", + "['6.34', '21.46']", + "['6.35', '21.47']", + "['6.36', '21.48']", + "['6.37', '21.49']", + "['6.38', '21.50']", + "['6.39', '21.51']", + "['6.40', '21.52']", + "['6.41', '21.53']", + "['6.42', '21.54']", + "['6.43', '21.55']", + "['6.44', '21.56']", + "['6.45', '21.57']", + "['6.46', '21.58']", + "['6.47', '21.59']", + "['6.48', '21.60']", + "['6.49', '21.61']", + "['6.50', '21.62']", + "['6.51', '21.63']", + "['6.52', '21.64']", + "['6.53', '21.65']", + "['6.54', '21.66']", + "['6.55', '21.67']", + "['6.56', '21.68']", + "['6.57', '21.69']", + "['6.58', '21.70']", + "['6.59', '21.71']", + "['6.60', '21.72']", + "['6.61', '21.73']", + "['6.62', '21.74']", + "['6.63', '21.75']", + "['6.64', '21.76']", + "['6.65', '21.77']", + "['6.66', '21.78']", + "['6.67', '21.79']", + "['6.68', '21.80']", + "['6.69', '21.81']", + "['6.70', '21.82']", + "['6.71', '21.83']", + "['6.72', '21.84']", + "['6.73', '21.85']", + "['6.74', '21.86']", + "['6.75', '21.87']", + "['6.76', '21.88']", + "['6.77', '21.89']", + "['6.78', '21.90']", + "['6.79', '21.91']", + "['6.80', '21.92']", + "['6.81', '21.93']", + "['6.82', '21.94']", + "['6.83', '21.95']", + "['6.84', '21.96']", + "['6.85', '21.97']", + "['6.86', '21.98']", + "['6.87', '21.99']", + "['6.88', '22.00']", + "['6.89', '22.01']", + "['6.90', '22.02']", + "['6.91', '22.03']", + "['6.92', '22.04']", + "['6.93', '22.05']", + "['6.94', '22.06']", + "['6.95', '22.07']", + "['6.96', '22.08']", + "['6.97', '22.09']", + "['6.98', '22.10']", + "['6.99', '22.11']", + "['7.00', '22.12']", + "['7.01', '22.13']", + "['7.02', '22.14']", + "['7.03', '22.15']" + ], + "type": "scatter", + "x": [ + 0, + 0.01, + 0.02, + 0.03, + 0.04, + 0.05, + 0.060000000000000005, + 0.06999999999999999, + 0.08, + 0.09, + 0.09999999999999999, + 0.11, + 0.12, + 0.13, + 0.14, + 0.15000000000000002, + 0.16, + 0.17, + 0.18000000000000002, + 0.19, + 0.2, + 0.21000000000000002, + 0.22, + 0.23, + 0.24000000000000002, + 0.25, + 0.26, + 0.27, + 0.28, + 0.29000000000000004, + 0.3, + 0.31, + 0.32, + 0.33, + 0.34, + 0.35000000000000003, + 0.36, + 0.37, + 0.38, + 0.39, + 0.4, + 0.41000000000000003, + 0.42, + 0.43, + 0.44, + 0.45, + 0.46, + 0.47000000000000003, + 0.48, + 0.49, + 0.5, + 0.51, + 0.52, + 0.53, + 0.54, + 0.55, + 0.56, + 0.5700000000000001, + 0.58, + 0.59, + 0.6, + 0.61, + 0.62, + 0.63, + 0.64, + 0.65, + 0.66, + 0.67, + 0.68, + 0.6900000000000001, + 0.7, + 0.71, + 0.72, + 0.73, + 0.74, + 0.75, + 0.76, + 0.77, + 0.78, + 0.79, + 0.8, + 0.81, + 0.8200000000000001, + 0.83, + 0.84, + 0.85, + 0.86, + 0.87, + 0.88, + 0.89, + 0.9, + 0.91, + 0.92, + 0.93, + 0.9400000000000001, + 0.95, + 0.96, + 0.97, + 0.98, + 0.99, + 1, + 1.01, + 1.02, + 1.03, + 1.04, + 1.05, + 1.06, + 1.07, + 1.08, + 1.09, + 1.1, + 1.11, + 1.12, + 1.1300000000000001, + 1.14, + 1.15, + 1.16, + 1.17, + 1.18, + 1.19, + 1.2, + 1.21, + 1.22, + 1.23, + 1.24, + 1.25, + 1.26, + 1.27, + 1.28, + 1.29, + 1.3, + 1.31, + 1.32, + 1.33, + 1.34, + 1.35, + 1.36, + 1.37, + 1.3800000000000001, + 1.39, + 1.4, + 1.41, + 1.42, + 1.43, + 1.44, + 1.45, + 1.46, + 1.47, + 1.48, + 1.49, + 1.5, + 1.51, + 1.52, + 1.53, + 1.54, + 1.55, + 1.56, + 1.57, + 1.58, + 1.59, + 1.6, + 1.61, + 1.62, + 1.6300000000000001, + 1.64, + 1.65, + 1.66, + 1.67, + 1.68, + 1.69, + 1.7, + 1.71, + 1.72, + 1.73, + 1.74, + 1.75, + 1.76, + 1.77, + 1.78, + 1.79, + 1.8, + 1.81, + 1.82, + 1.83, + 1.84, + 1.85, + 1.86, + 1.87, + 1.8800000000000001, + 1.89, + 1.9, + 1.91, + 1.92, + 1.93, + 1.94, + 1.95, + 1.96, + 1.97, + 1.98, + 1.99, + 2, + 2.01, + 2.0199999999999996, + 2.03, + 2.0399999999999996, + 2.05, + 2.0599999999999996, + 2.07, + 2.0799999999999996, + 2.09, + 2.0999999999999996, + 2.11, + 2.1199999999999997, + 2.13, + 2.1399999999999997, + 2.15, + 2.1599999999999997, + 2.17, + 2.1799999999999997, + 2.19, + 2.1999999999999997, + 2.21, + 2.2199999999999998, + 2.23, + 2.2399999999999998, + 2.25, + 2.26, + 2.2699999999999996, + 2.28, + 2.2899999999999996, + 2.3, + 2.3099999999999996, + 2.32, + 2.3299999999999996, + 2.34, + 2.3499999999999996, + 2.36, + 2.3699999999999997, + 2.38, + 2.3899999999999997, + 2.4, + 2.4099999999999997, + 2.42, + 2.4299999999999997, + 2.44, + 2.4499999999999997, + 2.46, + 2.4699999999999998, + 2.48, + 2.4899999999999998, + 2.5, + 2.51, + 2.5199999999999996, + 2.53, + 2.5399999999999996, + 2.55, + 2.5599999999999996, + 2.57, + 2.5799999999999996, + 2.59, + 2.5999999999999996, + 2.61, + 2.6199999999999997, + 2.63, + 2.6399999999999997, + 2.65, + 2.6599999999999997, + 2.67, + 2.6799999999999997, + 2.69, + 2.6999999999999997, + 2.71, + 2.7199999999999998, + 2.73, + 2.7399999999999998, + 2.75, + 2.76, + 2.7699999999999996, + 2.78, + 2.7899999999999996, + 2.8, + 2.8099999999999996, + 2.82, + 2.8299999999999996, + 2.84, + 2.8499999999999996, + 2.86, + 2.8699999999999997, + 2.88, + 2.8899999999999997, + 2.9, + 2.9099999999999997, + 2.92, + 2.9299999999999997, + 2.94, + 2.9499999999999997, + 2.96, + 2.9699999999999998, + 2.98, + 2.9899999999999998, + 3, + 3.01, + 3.0199999999999996, + 3.03, + 3.0399999999999996, + 3.05, + 3.0599999999999996, + 3.07, + 3.0799999999999996, + 3.09, + 3.0999999999999996, + 3.11, + 3.1199999999999997, + 3.13, + 3.1399999999999997, + 3.15, + 3.1599999999999997, + 3.17, + 3.1799999999999997, + 3.19, + 3.1999999999999997, + 3.21, + 3.2199999999999998, + 3.23, + 3.2399999999999998, + 3.25, + 3.26, + 3.2699999999999996, + 3.28, + 3.2899999999999996, + 3.3, + 3.3099999999999996, + 3.32, + 3.3299999999999996, + 3.34, + 3.3499999999999996, + 3.36, + 3.3699999999999997, + 3.38, + 3.3899999999999997, + 3.4, + 3.4099999999999997, + 3.42, + 3.4299999999999997, + 3.44, + 3.4499999999999997, + 3.46, + 3.4699999999999998, + 3.48, + 3.4899999999999998, + 3.5, + 3.51, + 3.5199999999999996, + 3.53, + 3.5399999999999996, + 3.55, + 3.5599999999999996, + 3.57, + 3.5799999999999996, + 3.59, + 3.5999999999999996, + 3.61, + 3.6199999999999997, + 3.63, + 3.6399999999999997, + 3.65, + 3.6599999999999997, + 3.67, + 3.6799999999999997, + 3.69, + 3.6999999999999997, + 3.71, + 3.7199999999999998, + 3.73, + 3.7399999999999998, + 3.75, + 3.76, + 3.7699999999999996, + 3.78, + 3.7899999999999996, + 3.8, + 3.8099999999999996, + 3.82, + 3.8299999999999996, + 3.84, + 3.8499999999999996, + 3.86, + 3.8699999999999997, + 3.88, + 3.8899999999999997, + 3.9, + 3.9099999999999997, + 3.92, + 3.9299999999999997, + 3.94, + 3.9499999999999997, + 3.96, + 3.9699999999999998, + 3.98, + 3.9899999999999998, + 4, + 4.01, + 4.02, + 4.029999999999999, + 4.04, + 4.05, + 4.06, + 4.069999999999999, + 4.08, + 4.09, + 4.1, + 4.109999999999999, + 4.12, + 4.13, + 4.14, + 4.1499999999999995, + 4.16, + 4.17, + 4.18, + 4.1899999999999995, + 4.2, + 4.21, + 4.22, + 4.2299999999999995, + 4.24, + 4.25, + 4.26, + 4.27, + 4.279999999999999, + 4.29, + 4.3, + 4.31, + 4.319999999999999, + 4.33, + 4.34, + 4.35, + 4.359999999999999, + 4.37, + 4.38, + 4.39, + 4.3999999999999995, + 4.41, + 4.42, + 4.43, + 4.4399999999999995, + 4.45, + 4.46, + 4.47, + 4.4799999999999995, + 4.49, + 4.5, + 4.51, + 4.52, + 4.529999999999999, + 4.54, + 4.55, + 4.56, + 4.569999999999999, + 4.58, + 4.59, + 4.6, + 4.609999999999999, + 4.62, + 4.63, + 4.64, + 4.6499999999999995, + 4.66, + 4.67, + 4.68, + 4.6899999999999995, + 4.7, + 4.71, + 4.72, + 4.7299999999999995, + 4.74, + 4.75, + 4.76, + 4.77, + 4.779999999999999, + 4.79, + 4.8, + 4.81, + 4.819999999999999, + 4.83, + 4.84, + 4.85, + 4.859999999999999, + 4.87, + 4.88, + 4.89, + 4.8999999999999995, + 4.91, + 4.92, + 4.93, + 4.9399999999999995, + 4.95, + 4.96, + 4.97, + 4.9799999999999995, + 4.99, + 5, + 5.01, + 5.02, + 5.029999999999999, + 5.04, + 5.05, + 5.06, + 5.069999999999999, + 5.08, + 5.09, + 5.1, + 5.109999999999999, + 5.12, + 5.13, + 5.14, + 5.1499999999999995, + 5.16, + 5.17, + 5.18, + 5.1899999999999995, + 5.2, + 5.21, + 5.22, + 5.2299999999999995, + 5.24, + 5.25, + 5.26, + 5.27, + 5.279999999999999, + 5.29, + 5.3, + 5.31, + 5.319999999999999, + 5.33, + 5.34, + 5.35, + 5.359999999999999, + 5.37, + 5.38, + 5.39, + 5.3999999999999995, + 5.41, + 5.42, + 5.43, + 5.4399999999999995, + 5.45, + 5.46, + 5.47, + 5.4799999999999995, + 5.49, + 5.5, + 5.51, + 5.52, + 5.529999999999999, + 5.54, + 5.55, + 5.56, + 5.569999999999999, + 5.58, + 5.59, + 5.6, + 5.609999999999999, + 5.62, + 5.63, + 5.64, + 5.6499999999999995, + 5.66, + 5.67, + 5.68, + 5.6899999999999995, + 5.7, + 5.71, + 5.72, + 5.7299999999999995, + 5.74, + 5.75, + 5.76, + 5.77, + 5.779999999999999, + 5.79, + 5.8, + 5.81, + 5.819999999999999, + 5.83, + 5.84, + 5.85, + 5.859999999999999, + 5.87, + 5.88, + 5.89, + 5.8999999999999995, + 5.91, + 5.92, + 5.93, + 5.9399999999999995, + 5.95, + 5.96, + 5.97, + 5.9799999999999995, + 5.99, + 6, + 6.01, + 6.02, + 6.029999999999999, + 6.04, + 6.05, + 6.06, + 6.069999999999999, + 6.08, + 6.09, + 6.1, + 6.109999999999999, + 6.12, + 6.13, + 6.14, + 6.1499999999999995, + 6.16, + 6.17, + 6.18, + 6.1899999999999995, + 6.2, + 6.21, + 6.22, + 6.2299999999999995, + 6.24, + 6.25, + 6.26, + 6.27, + 6.279999999999999, + 6.29, + 6.3, + 6.31, + 6.319999999999999, + 6.33, + 6.34, + 6.35, + 6.359999999999999, + 6.37, + 6.38, + 6.39, + 6.3999999999999995, + 6.41, + 6.42, + 6.43, + 6.4399999999999995, + 6.45, + 6.46, + 6.47, + 6.4799999999999995, + 6.49, + 6.5, + 6.51, + 6.52, + 6.529999999999999, + 6.54, + 6.55, + 6.56, + 6.569999999999999, + 6.58, + 6.59, + 6.6, + 6.609999999999999, + 6.62, + 6.63, + 6.64, + 6.6499999999999995, + 6.66, + 6.67, + 6.68, + 6.6899999999999995, + 6.7, + 6.71, + 6.72, + 6.7299999999999995, + 6.74, + 6.75, + 6.76, + 6.77, + 6.779999999999999, + 6.79, + 6.8, + 6.81, + 6.819999999999999, + 6.83, + 6.84, + 6.85, + 6.859999999999999, + 6.87, + 6.88, + 6.89, + 6.8999999999999995, + 6.91, + 6.92, + 6.93, + 6.9399999999999995, + 6.95, + 6.96, + 6.97, + 6.9799999999999995, + 6.99, + 7, + 7.01, + 7.02, + 7.029999999999999 + ], + "y": [ + 15.142047995420299, + 15.151845610063763, + 15.161644934136278, + 15.17144598422965, + 15.181248746186629, + 15.191053205954459, + 15.2008593495843, + 15.21066716323064, + 15.220476633150723, + 15.23028774570395, + 15.240100487351333, + 15.249914844654878, + 15.25973080427703, + 15.26954835298009, + 15.279367477625629, + 15.28918816517392, + 15.299010402683354, + 15.308834177309873, + 15.318659476306378, + 15.328486287022171, + 15.338314596902379, + 15.348144393487368, + 15.357975664412187, + 15.367808397405982, + 15.37764258029144, + 15.387478200984209, + 15.397315247492337, + 15.407153707915699, + 15.416993570445433, + 15.426834823363382, + 15.436677455041522, + 15.446521453941399, + 15.456366808613577, + 15.466213507697079, + 15.476061539918815, + 15.485910894093033, + 15.495761559120773, + 15.505613523989298, + 15.51546677777156, + 15.525321309625623, + 15.535177108794144, + 15.545034164603804, + 15.554892466464766, + 15.564752003870145, + 15.574612766395449, + 15.584474743698038, + 15.594337925516598, + 15.604202301670599, + 15.614067862059754, + 15.623934596663492, + 15.633802495540428, + 15.643671548827816, + 15.653541746741043, + 15.663413079573095, + 15.673285537694033, + 15.683159111550472, + 15.693033791665055, + 15.70290956863594, + 15.712786433136289, + 15.722664375913746, + 15.73254338778993, + 15.742423459659918, + 15.752304582491753, + 15.762186747325922, + 15.772069945274861, + 15.78195416752245, + 15.791839405323522, + 15.801725650003357, + 15.81161289295719, + 15.821501125649723, + 15.831390339614632, + 15.841280526454076, + 15.851171677838213, + 15.861063785504724, + 15.870956841258321, + 15.880850836970273, + 15.890745764577929, + 15.900641616084247, + 15.910538383557315, + 15.920436059129889, + 15.930334634998925, + 15.940234103425107, + 15.950134456732389, + 15.96003568730754, + 15.969937787599672, + 15.979840750119806, + 15.989744567440395, + 15.999649232194884, + 16.00955473707727, + 16.01946107484165, + 16.029368238301767, + 16.039276220330585, + 16.04918501385983, + 16.05909461187958, + 16.069005007437816, + 16.078916193639987, + 16.088828163648582, + 16.098740910682714, + 16.108654428017672, + 16.118568708984544, + 16.128483746969742, + 16.138399535414624, + 16.148316067815085, + 16.158233337721125, + 16.168151338736447, + 16.17807006451804, + 16.187989508775768, + 16.197909665271986, + 16.207830527821116, + 16.217752090289277, + 16.22767434659386, + 16.237597290703153, + 16.247520916635946, + 16.257445218461143, + 16.267370190297374, + 16.277295826312614, + 16.287222120723804, + 16.297149067796457, + 16.307076661844306, + 16.31700489722891, + 16.326933768359286, + 16.336863269691555, + 16.346793395728543, + 16.356724141019452, + 16.366655500159474, + 16.376587467789438, + 16.386520038595457, + 16.396453207308557, + 16.406386968704343, + 16.416321317602645, + 16.42625624886715, + 16.436191757405073, + 16.44612783816682, + 16.456064486145625, + 16.466001696377226, + 16.47593946393953, + 16.485877783952258, + 16.49581665157664, + 16.505756062015053, + 16.515696010510723, + 16.525636492347388, + 16.535577502848966, + 16.545519037379247, + 16.55546109134156, + 16.56540366017846, + 16.575346739371426, + 16.585290324440532, + 16.595234410944133, + 16.60517899447859, + 16.61512407067792, + 16.62506963521352, + 16.635015683874958, + 16.64496221249333, + 16.654909216846363, + 16.66485669274803, + 16.67480463604826, + 16.684753042632625, + 16.694701908422058, + 16.70465122937258, + 16.714601001474982, + 16.72455122075458, + 16.7345018832709, + 16.744452985117412, + 16.754404522421257, + 16.764356491342966, + 16.77430888807616, + 16.784261708847335, + 16.794214949915535, + 16.804168607572127, + 16.814122678140503, + 16.824077157975832, + 16.83403204346479, + 16.84398733102533, + 16.853943017106364, + 16.863899098187563, + 16.873855570779074, + 16.88381243142127, + 16.893769676684503, + 16.90372730316887, + 16.91368530750394, + 16.923643686348516, + 16.933602436390398, + 16.943561554346143, + 16.953521036960833, + 16.963480881007804, + 16.973441083288446, + 16.983401640631953, + 16.993362549895092, + 17.00332380796117, + 17.01328541174241, + 17.023247358176885, + 17.033209644229345, + 17.043172266890974, + 17.05313522317917, + 17.063098510137337, + 17.073062124834646, + 17.08302606436583, + 17.092990325850987, + 17.102954906435325, + 17.112919803288985, + 17.122885013606815, + 17.13285053460817, + 17.142816363536696, + 17.15278249766013, + 17.162748934270095, + 17.17271567068191, + 17.182682704234356, + 17.192650032289517, + 17.202617652233318, + 17.21258556147323, + 17.22255375744002, + 17.23252223758698, + 17.242490999389698, + 17.25246004034588, + 17.262429357975183, + 17.272398949818996, + 17.28236881344029, + 17.292338946423396, + 17.30230934637386, + 17.312280010918244, + 17.32225093770393, + 17.332222124398974, + 17.34219356869191, + 17.352165268291586, + 17.36213722092697, + 17.372109424347013, + 17.382081876320434, + 17.392054574635583, + 17.402027517100283, + 17.412000701541604, + 17.42197412580577, + 17.431947787757945, + 17.441921685282097, + 17.45189581628082, + 17.461870178675195, + 17.471844770404598, + 17.48181958942656, + 17.491794633716637, + 17.501769901268204, + 17.511745390092344, + 17.521721098217668, + 17.53169702369019, + 17.541673164573137, + 17.55164951894685, + 17.561626084908607, + 17.571602860572472, + 17.581579844069157, + 17.591557033545897, + 17.60153442712789, + 17.611512022970658, + 17.62148981927155, + 17.63146781424384, + 17.6414460061166, + 17.651424393134516, + 17.66140297355781, + 17.671381745662064, + 17.681360707738108, + 17.69133985809187, + 17.701319195044277, + 17.71129871693109, + 17.72127842210279, + 17.731258308924456, + 17.74123837577562, + 17.751218621050167, + 17.761199043156186, + 17.771179640515864, + 17.781160411565352, + 17.791141354754647, + 17.801122468547483, + 17.811103751421186, + 17.82108520186658, + 17.83106681838786, + 17.84104859950247, + 17.851030543740997, + 17.861012649647048, + 17.870994915777143, + 17.88097734070061, + 17.890959922999443, + 17.900942661268225, + 17.910925554114012, + 17.920908600156203, + 17.930891798026444, + 17.94087514636854, + 17.950858643838316, + 17.96084228910354, + 17.97082608084379, + 17.98081001775038, + 17.99079409852624, + 18.000778321885825, + 18.010762686554994, + 18.020747191270935, + 18.03073183478205, + 18.040716615847856, + 18.050701533238897, + 18.06068658573665, + 18.070671772133416, + 18.080657091232226, + 18.090642541846766, + 18.100628122801247, + 18.11061383293036, + 18.120599671079137, + 18.130585636102897, + 18.14057172686714, + 18.15055794224745, + 18.16054428112942, + 18.170530742408562, + 18.180517324990205, + 18.190504027789434, + 18.200490849730976, + 18.210477789749135, + 18.220464846787703, + 18.230452019799873, + 18.240439307748158, + 18.25042670960432, + 18.26041422434927, + 18.270401850972995, + 18.280389588474467, + 18.290377435861597, + 18.300365392151136, + 18.310353456368567, + 18.320341627548093, + 18.330329904732494, + 18.340318286973094, + 18.35030677332968, + 18.360295362870406, + 18.37028405467174, + 18.38027284781838, + 18.39026174140319, + 18.400250734527123, + 18.410239826299144, + 18.42022901583616, + 18.430218302262972, + 18.44020768471218, + 18.450197162324116, + 18.460186734246783, + 18.470176399635783, + 18.48016615765426, + 18.490156007472827, + 18.50014594826948, + 18.510135979229577, + 18.520126099545724, + 18.530116308417753, + 18.540106605052618, + 18.55009698866438, + 18.560087458474086, + 18.570078013709765, + 18.580068653606315, + 18.590059377405474, + 18.60005018435577, + 18.61004107371242, + 18.620032044737297, + 18.630023096698874, + 18.64001422887215, + 18.65000544053861, + 18.659996730986155, + 18.66998809950903, + 18.67997954540782, + 18.689971067989333, + 18.699962666566577, + 18.709954340458705, + 18.71994608899095, + 18.72993791149458, + 18.73992980730683, + 18.74992177577087, + 18.759913816235738, + 18.769905928056293, + 18.77989811059315, + 18.789890363212656, + 18.799882685286818, + 18.809875076193247, + 18.819867535315137, + 18.82986006204119, + 18.83985265576557, + 18.849845315887862, + 18.85983804181302, + 18.869830832951337, + 18.879823688718353, + 18.88981660853485, + 18.899809591826802, + 18.90980263802529, + 18.919795746566507, + 18.929788916891685, + 18.93978214844705, + 18.949775440683784, + 18.959768793057993, + 18.969762205030637, + 18.979755676067498, + 18.989749205639143, + 18.999742793220882, + 19.009736438292705, + 19.019730140339277, + 19.029723898849863, + 19.039717713318304, + 19.049711583242964, + 19.0597055081267, + 19.069699487476832, + 19.079693520805073, + 19.089687607627514, + 19.099681747464583, + 19.109675939841, + 19.11967018428574, + 19.12966448033199, + 19.139658827517113, + 19.14965322538263, + 19.159647673474165, + 19.1696421713414, + 19.17963671853806, + 19.189631314621852, + 19.199625959154464, + 19.209620651701496, + 19.219615391832445, + 19.229610179120662, + 19.23960501314332, + 19.24959989348137, + 19.259594819719535, + 19.269589791446247, + 19.279584808253624, + 19.289579869737445, + 19.299574975497094, + 19.30957012513556, + 19.319565318259393, + 19.329560554478654, + 19.3395558334069, + 19.349551154661157, + 19.359546517861876, + 19.369541922632916, + 19.379537368601504, + 19.389532855398205, + 19.399528382656893, + 19.409523950014727, + 19.41951955711211, + 19.429515203592683, + 19.439510889103268, + 19.449506613293853, + 19.459502375817568, + 19.469498176330653, + 19.479494014492413, + 19.48948988996523, + 19.499485802414505, + 19.509481751508623, + 19.519477736918958, + 19.529473758319824, + 19.539469815388447, + 19.549465907804958, + 19.559462035252363, + 19.569458197416488, + 19.57945439398599, + 19.589450624652304, + 19.599446889109643, + 19.609443187054968, + 19.61943951818794, + 19.62943588221092, + 19.639432278828938, + 19.649428707749664, + 19.659425168683402, + 19.669421661343037, + 19.67941818544404, + 19.689414740704425, + 19.699411326844746, + 19.709407943588047, + 19.719404590659863, + 19.729401267788194, + 19.73939797470348, + 19.749394711138567, + 19.7593914768287, + 19.76938827151151, + 19.77938509492697, + 19.789381946817386, + 19.79937882692737, + 19.80937573500384, + 19.81937267079597, + 19.829369634055194, + 19.839366624535153, + 19.849363641991726, + 19.85936068618297, + 19.869357756869103, + 19.879354853812508, + 19.88935197677769, + 19.899349125531266, + 19.909346299841946, + 19.91934349948052, + 19.92934072421983, + 19.939337973834757, + 19.949335248102198, + 19.959332546801065, + 19.969329869712222, + 19.97932721661853, + 19.989324587304786, + 19.999321981557713, + 20.009319399165953, + 20.01931683992004, + 20.02931430361239, + 20.039311790037278, + 20.04930929899083, + 20.059306830270994, + 20.06930438367754, + 20.079301959012014, + 20.089299556077766, + 20.0992971746799, + 20.109294814625265, + 20.11929247572245, + 20.129290157781753, + 20.139287860615177, + 20.149285584036416, + 20.15928332786083, + 20.16928109190544, + 20.179278875988896, + 20.18927667993149, + 20.199274503555117, + 20.209272346683278, + 20.219270209141055, + 20.229268090755088, + 20.239265991353584, + 20.249263910766302, + 20.259261848824494, + 20.26925980536096, + 20.27925778020998, + 20.28925577320733, + 20.29925378419026, + 20.309251812997474, + 20.319249859469124, + 20.3292479234468, + 20.339246004773504, + 20.34924410329366, + 20.35924221885308, + 20.369240351298966, + 20.379238500479875, + 20.389236666245743, + 20.39923484844784, + 20.409233046938766, + 20.419231261572456, + 20.42922949220415, + 20.43922773869038, + 20.449226000888984, + 20.45922427865906, + 20.46922257186097, + 20.47922088035633, + 20.489219204008002, + 20.49921754268007, + 20.50921589623786, + 20.519214264547873, + 20.52921264747783, + 20.539211044896643, + 20.549209456674387, + 20.559207882682294, + 20.56920632279277, + 20.57920477687936, + 20.589203244816744, + 20.59920172648072, + 20.609200221748214, + 20.61919873049725, + 20.629197252606932, + 20.639195787957465, + 20.649194336430128, + 20.65919289790726, + 20.66919147227225, + 20.67919005940955, + 20.689188659204632, + 20.699187271544012, + 20.709185896315212, + 20.719184533406764, + 20.7291831827082, + 20.73918184411005, + 20.74918051750382, + 20.759179202781997, + 20.769177899838017, + 20.77917660856629, + 20.78917532886215, + 20.7991740606219, + 20.809172803742747, + 20.81917155812284, + 20.829170323661227, + 20.839169100257873, + 20.849167887813636, + 20.85916668623026, + 20.86916549541037, + 20.87916431525748, + 20.889163145675944, + 20.89916198657099, + 20.9091608378487, + 20.91915969941599, + 20.92915857118061, + 20.939157453051155, + 20.94915634493701, + 20.95915524674839, + 20.969154158396325, + 20.97915307979263, + 20.989152010849914, + 20.999150951481564, + 21.009149901601756, + 21.01914886112543, + 21.029147829968288, + 21.039146808046798, + 21.04914579527815, + 21.059144791580312, + 21.069143796871963, + 21.079142811072522, + 21.089141834102133, + 21.099140865881647, + 21.109139906332633, + 21.119138955377363, + 21.129138012938803, + 21.139137078940614, + 21.149136153307126, + 21.15913523596337, + 21.169134326835046, + 21.17913342584851, + 21.189132532930785, + 21.199131648009537, + 21.209130771013108, + 21.219129901870456, + 21.229129040511182, + 21.239128186865532, + 21.249127340864373, + 21.259126502439166, + 21.269125671522026, + 21.27912484804565, + 21.28912403194336, + 21.299123223149056, + 21.309122421597237, + 21.319121627222994, + 21.329120839961995, + 21.3391200597505, + 21.34911928652532, + 21.359118520223834, + 21.369117760784, + 21.379117008144327, + 21.389116262243856, + 21.3991155230222, + 21.409114790419498, + 21.419114064376444, + 21.429113344834242, + 21.439112631734634, + 21.449111925019885, + 21.45911122463277, + 21.46911053051659, + 21.479109842615145, + 21.489109160872747, + 21.499108485234196, + 21.5091078156448, + 21.519107152050353, + 21.52910649439712, + 21.53910584263188, + 21.549105196701856, + 21.55910455655476, + 21.56910392213878, + 21.579103293402557, + 21.589102670295205, + 21.599102052766273, + 21.609101440765784, + 21.61910083424419, + 21.629100233152403, + 21.639099637441767, + 21.649099047064077, + 21.659098461971535, + 21.66909788211679, + 21.679097307452917, + 21.689096737933397, + 21.69909617351214, + 21.709095614143468, + 21.719095059782113, + 21.729094510383202, + 21.73909396590229, + 21.749093426295293, + 21.759092891518556, + 21.769092361528802, + 21.779091836283143, + 21.78909131573908, + 21.799090799854476, + 21.809090288587594, + 21.819089781897066, + 21.829089279741886, + 21.839088782081433, + 21.84908828887543, + 21.85908780008397, + 21.869087315667514, + 21.879086835586865, + 21.889086359803173, + 21.899085888277952, + 21.90908542097305, + 21.919084957850654, + 21.929084498873305, + 21.93908404400387, + 21.949083593205547, + 21.959083146441866, + 21.96908270367669, + 21.979082264874204, + 21.989081829998895, + 21.999081399015598, + 22.009080971889446, + 22.019080548585887, + 22.02908012907068, + 22.039079713309896, + 22.049079301269902, + 22.059078892917366, + 22.069078488219265, + 22.079078087142864, + 22.089077689655724, + 22.099077295725696, + 22.10907690532091, + 22.119076518409802, + 22.129076134961082, + 22.13907575494373, + 22.149075378327012 + ] + }, + { + "legendgroup": "car2", + "legendgrouptitle": { + "text": "car2" + }, + "line": { + "color": "#9999FF", + "width": 3 + }, + "mode": "lines", + "name": "7.03-10.0-1", + "showlegend": false, + "text": [ + "['7.03', '22.15']", + "['7.04', '22.16']", + "['7.05', '22.17']", + "['7.06', '22.18']", + "['7.07', '22.19']", + "['7.08', '22.20']", + "['7.09', '22.21']", + "['7.10', '22.22']", + "['7.11', '22.23']", + "['7.12', '22.24']", + "['7.13', '22.25']", + "['7.14', '22.26']", + "['7.15', '22.27']", + "['7.16', '22.28']", + "['7.17', '22.29']", + "['7.18', '22.30']", + "['7.19', '22.31']", + "['7.20', '22.32']", + "['7.21', '22.33']", + "['7.22', '22.34']", + "['7.23', '22.35']", + "['7.24', '22.36']", + "['7.25', '22.37']", + "['7.26', '22.38']", + "['7.27', '22.39']", + "['7.28', '22.40']", + "['7.29', '22.41']", + "['7.30', '22.42']", + "['7.31', '22.43']", + "['7.32', '22.44']", + "['7.33', '22.45']", + "['7.34', '22.46']", + "['7.35', '22.47']", + "['7.36', '22.48']", + "['7.37', '22.49']", + "['7.38', '22.50']", + "['7.39', '22.51']", + "['7.40', '22.52']", + "['7.41', '22.53']", + "['7.42', '22.54']", + "['7.43', '22.55']", + "['7.44', '22.56']", + "['7.45', '22.57']", + "['7.46', '22.58']", + "['7.47', '22.59']", + "['7.48', '22.60']", + "['7.49', '22.61']", + "['7.50', '22.62']", + "['7.51', '22.63']", + "['7.52', '22.64']", + "['7.53', '22.65']", + "['7.54', '22.66']", + "['7.55', '22.67']", + "['7.56', '22.68']", + "['7.57', '22.69']", + "['7.58', '22.70']", + "['7.59', '22.71']", + "['7.60', '22.72']", + "['7.61', '22.73']", + "['7.62', '22.74']", + "['7.63', '22.75']", + "['7.64', '22.76']", + "['7.65', '22.77']", + "['7.66', '22.78']", + "['7.67', '22.79']", + "['7.68', '22.80']", + "['7.69', '22.81']", + "['7.70', '22.82']", + "['7.71', '22.83']", + "['7.72', '22.84']", + "['7.73', '22.85']", + "['7.74', '22.86']", + "['7.75', '22.87']", + "['7.76', '22.88']", + "['7.77', '22.89']", + "['7.78', '22.90']", + "['7.79', '22.91']", + "['7.80', '22.92']", + "['7.81', '22.93']", + "['7.82', '22.94']", + "['7.83', '22.95']", + "['7.84', '22.96']", + "['7.85', '22.97']", + "['7.86', '22.98']", + "['7.87', '22.99']", + "['7.88', '23.00']", + "['7.89', '23.01']", + "['7.90', '23.02']", + "['7.91', '23.03']", + "['7.92', '23.04']", + "['7.93', '23.05']", + "['7.94', '23.06']", + "['7.95', '23.07']", + "['7.96', '23.08']", + "['7.97', '23.09']", + "['7.98', '23.10']", + "['7.99', '23.11']", + "['8.00', '23.12']", + "['8.01', '23.13']", + "['8.02', '23.14']", + "['8.03', '23.15']", + "['8.04', '23.16']", + "['8.05', '23.17']", + "['8.06', '23.18']", + "['8.07', '23.19']", + "['8.08', '23.20']", + "['8.09', '23.21']", + "['8.10', '23.22']", + "['8.11', '23.23']", + "['8.12', '23.24']", + "['8.13', '23.25']", + "['8.14', '23.26']", + "['8.15', '23.27']", + "['8.16', '23.28']", + "['8.17', '23.29']", + "['8.18', '23.30']", + "['8.19', '23.31']", + "['8.20', '23.32']", + "['8.21', '23.33']", + "['8.22', '23.34']", + "['8.23', '23.35']", + "['8.24', '23.36']", + "['8.25', '23.37']", + "['8.26', '23.38']", + "['8.27', '23.39']", + "['8.28', '23.40']", + "['8.29', '23.41']", + "['8.30', '23.42']", + "['8.31', '23.43']", + "['8.32', '23.44']", + "['8.33', '23.45']", + "['8.34', '23.46']", + "['8.35', '23.47']", + "['8.36', '23.48']", + "['8.37', '23.49']", + "['8.38', '23.50']", + "['8.39', '23.51']", + "['8.40', '23.52']", + "['8.41', '23.53']", + "['8.42', '23.54']", + "['8.43', '23.55']", + "['8.44', '23.56']", + "['8.45', '23.57']", + "['8.46', '23.58']", + "['8.47', '23.59']", + "['8.48', '23.60']", + "['8.49', '23.61']", + "['8.50', '23.62']", + "['8.51', '23.63']", + "['8.52', '23.64']", + "['8.53', '23.65']", + "['8.54', '23.66']", + "['8.55', '23.67']", + "['8.56', '23.68']", + "['8.57', '23.69']", + "['8.58', '23.70']", + "['8.59', '23.71']", + "['8.60', '23.72']", + "['8.61', '23.73']", + "['8.62', '23.74']", + "['8.63', '23.75']", + "['8.64', '23.76']", + "['8.65', '23.77']", + "['8.66', '23.78']", + "['8.67', '23.79']", + "['8.68', '23.80']", + "['8.69', '23.81']", + "['8.70', '23.82']", + "['8.71', '23.83']", + "['8.72', '23.84']", + "['8.73', '23.85']", + "['8.74', '23.86']", + "['8.75', '23.87']", + "['8.76', '23.88']", + "['8.77', '23.89']", + "['8.78', '23.90']", + "['8.79', '23.91']", + "['8.80', '23.92']", + "['8.81', '23.93']", + "['8.82', '23.94']", + "['8.83', '23.95']", + "['8.84', '23.96']", + "['8.85', '23.97']", + "['8.86', '23.98']", + "['8.87', '23.99']", + "['8.88', '24.00']", + "['8.89', '24.01']", + "['8.90', '24.02']", + "['8.91', '24.03']", + "['8.92', '24.04']", + "['8.93', '24.05']", + "['8.94', '24.06']", + "['8.95', '24.07']", + "['8.96', '24.08']", + "['8.97', '24.09']", + "['8.98', '24.10']", + "['8.99', '24.11']", + "['9.00', '24.12']", + "['9.01', '24.13']", + "['9.02', '24.14']", + "['9.03', '24.15']", + "['9.04', '24.16']", + "['9.05', '24.17']", + "['9.06', '24.18']", + "['9.07', '24.19']", + "['9.08', '24.20']", + "['9.09', '24.21']", + "['9.10', '24.22']", + "['9.11', '24.23']", + "['9.12', '24.24']", + "['9.13', '24.25']", + "['9.14', '24.26']", + "['9.15', '24.27']", + "['9.16', '24.28']", + "['9.17', '24.29']", + "['9.18', '24.30']", + "['9.19', '24.31']", + "['9.20', '24.32']", + "['9.21', '24.33']", + "['9.22', '24.34']", + "['9.23', '24.35']", + "['9.24', '24.36']", + "['9.25', '24.37']", + "['9.26', '24.38']", + "['9.27', '24.39']", + "['9.28', '24.40']", + "['9.29', '24.41']", + "['9.30', '24.42']", + "['9.31', '24.43']", + "['9.32', '24.44']", + "['9.33', '24.45']", + "['9.34', '24.46']", + "['9.35', '24.47']", + "['9.36', '24.48']", + "['9.37', '24.49']", + "['9.38', '24.50']", + "['9.39', '24.51']", + "['9.40', '24.52']", + "['9.41', '24.53']", + "['9.42', '24.54']", + "['9.43', '24.55']", + "['9.44', '24.56']", + "['9.45', '24.57']", + "['9.46', '24.58']", + "['9.47', '24.59']", + "['9.48', '24.60']", + "['9.49', '24.61']", + "['9.50', '24.62']", + "['9.51', '24.63']", + "['9.52', '24.64']", + "['9.53', '24.65']", + "['9.54', '24.66']", + "['9.55', '24.67']", + "['9.56', '24.68']", + "['9.57', '24.69']", + "['9.58', '24.70']", + "['9.59', '24.71']", + "['9.60', '24.72']", + "['9.61', '24.73']", + "['9.62', '24.74']", + "['9.63', '24.75']", + "['9.64', '24.76']", + "['9.65', '24.77']", + "['9.66', '24.78']", + "['9.67', '24.79']", + "['9.68', '24.80']", + "['9.69', '24.81']", + "['9.70', '24.82']", + "['9.71', '24.83']", + "['9.72', '24.84']", + "['9.73', '24.85']", + "['9.74', '24.86']", + "['9.75', '24.87']", + "['9.76', '24.88']", + "['9.77', '24.89']", + "['9.78', '24.90']", + "['9.79', '24.91']", + "['9.80', '24.92']", + "['9.81', '24.93']", + "['9.82', '24.94']", + "['9.83', '24.95']", + "['9.84', '24.96']", + "['9.85', '24.97']", + "['9.86', '24.98']", + "['9.87', '24.99']", + "['9.88', '25.00']", + "['9.89', '25.01']", + "['9.90', '25.02']", + "['9.91', '25.03']", + "['9.92', '25.04']", + "['9.93', '25.05']", + "['9.94', '25.06']", + "['9.95', '25.07']", + "['9.96', '25.08']", + "['9.97', '25.09']", + "['9.98', '25.10']", + "['9.99', '25.11']", + "['10.00', '25.12']" + ], + "type": "scatter", + "x": [ + 7.029999999999999, + 7.04, + 7.05, + 7.06, + 7.069999999999999, + 7.08, + 7.09, + 7.1, + 7.109999999999999, + 7.12, + 7.13, + 7.14, + 7.1499999999999995, + 7.16, + 7.17, + 7.18, + 7.1899999999999995, + 7.2, + 7.21, + 7.22, + 7.2299999999999995, + 7.24, + 7.25, + 7.26, + 7.27, + 7.279999999999999, + 7.29, + 7.3, + 7.31, + 7.319999999999999, + 7.33, + 7.34, + 7.35, + 7.359999999999999, + 7.37, + 7.38, + 7.39, + 7.3999999999999995, + 7.41, + 7.42, + 7.43, + 7.4399999999999995, + 7.45, + 7.46, + 7.47, + 7.4799999999999995, + 7.49, + 7.5, + 7.51, + 7.52, + 7.529999999999999, + 7.54, + 7.55, + 7.56, + 7.569999999999999, + 7.58, + 7.59, + 7.6, + 7.609999999999999, + 7.62, + 7.63, + 7.64, + 7.6499999999999995, + 7.66, + 7.67, + 7.68, + 7.6899999999999995, + 7.7, + 7.71, + 7.72, + 7.7299999999999995, + 7.74, + 7.75, + 7.76, + 7.77, + 7.779999999999999, + 7.79, + 7.8, + 7.81, + 7.819999999999999, + 7.83, + 7.84, + 7.85, + 7.859999999999999, + 7.87, + 7.88, + 7.89, + 7.8999999999999995, + 7.91, + 7.92, + 7.93, + 7.9399999999999995, + 7.95, + 7.96, + 7.97, + 7.9799999999999995, + 7.99, + 8, + 8.01, + 8.02, + 8.03, + 8.04, + 8.049999999999999, + 8.06, + 8.07, + 8.08, + 8.09, + 8.1, + 8.11, + 8.12, + 8.129999999999999, + 8.14, + 8.15, + 8.16, + 8.17, + 8.18, + 8.19, + 8.2, + 8.209999999999999, + 8.22, + 8.23, + 8.24, + 8.25, + 8.26, + 8.27, + 8.28, + 8.29, + 8.299999999999999, + 8.31, + 8.32, + 8.33, + 8.34, + 8.35, + 8.36, + 8.37, + 8.379999999999999, + 8.39, + 8.4, + 8.41, + 8.42, + 8.43, + 8.44, + 8.45, + 8.459999999999999, + 8.47, + 8.48, + 8.49, + 8.5, + 8.51, + 8.52, + 8.53, + 8.54, + 8.549999999999999, + 8.56, + 8.57, + 8.58, + 8.59, + 8.6, + 8.61, + 8.62, + 8.629999999999999, + 8.64, + 8.65, + 8.66, + 8.67, + 8.68, + 8.69, + 8.7, + 8.709999999999999, + 8.72, + 8.73, + 8.74, + 8.75, + 8.76, + 8.77, + 8.78, + 8.79, + 8.799999999999999, + 8.81, + 8.82, + 8.83, + 8.84, + 8.85, + 8.86, + 8.87, + 8.879999999999999, + 8.89, + 8.9, + 8.91, + 8.92, + 8.93, + 8.94, + 8.95, + 8.959999999999999, + 8.97, + 8.98, + 8.99, + 9, + 9.01, + 9.02, + 9.03, + 9.04, + 9.049999999999999, + 9.06, + 9.07, + 9.08, + 9.09, + 9.1, + 9.11, + 9.12, + 9.129999999999999, + 9.14, + 9.15, + 9.16, + 9.17, + 9.18, + 9.19, + 9.2, + 9.209999999999999, + 9.22, + 9.23, + 9.24, + 9.25, + 9.26, + 9.27, + 9.28, + 9.29, + 9.299999999999999, + 9.31, + 9.32, + 9.33, + 9.34, + 9.35, + 9.36, + 9.37, + 9.379999999999999, + 9.39, + 9.4, + 9.41, + 9.42, + 9.43, + 9.44, + 9.45, + 9.459999999999999, + 9.47, + 9.48, + 9.49, + 9.5, + 9.51, + 9.52, + 9.53, + 9.54, + 9.549999999999999, + 9.56, + 9.57, + 9.58, + 9.59, + 9.6, + 9.61, + 9.62, + 9.629999999999999, + 9.64, + 9.65, + 9.66, + 9.67, + 9.68, + 9.69, + 9.7, + 9.709999999999999, + 9.72, + 9.73, + 9.74, + 9.75, + 9.76, + 9.77, + 9.78, + 9.79, + 9.799999999999999, + 9.81, + 9.82, + 9.83, + 9.84, + 9.85, + 9.86, + 9.87, + 9.879999999999999, + 9.89, + 9.9, + 9.91, + 9.92, + 9.93, + 9.94, + 9.95, + 9.959999999999999, + 9.97, + 9.98, + 9.99, + 10 + ], + "y": [ + 22.149075378327012, + 22.159075005080485, + 22.169074635173946, + 22.179074268577487, + 22.189073905261463, + 22.199073545196494, + 22.209073188353464, + 22.219072834703507, + 22.229072484218037, + 22.239072136868717, + 22.249071792627454, + 22.259071451466415, + 22.269071113358006, + 22.279070778274892, + 22.289070446189985, + 22.299070117076436, + 22.30906979090763, + 22.319069467657194, + 22.329069147299, + 22.339068829807143, + 22.349068515155952, + 22.359068203319993, + 22.369067894274057, + 22.37906758799316, + 22.389067284452537, + 22.399066983627645, + 22.409066685494178, + 22.41906639002803, + 22.429066097205318, + 22.439065807002372, + 22.44906551939573, + 22.459065234362143, + 22.469064951878572, + 22.47906467192219, + 22.489064394470365, + 22.499064119500673, + 22.50906384699088, + 22.51906357691897, + 22.529063309263105, + 22.539063044001665, + 22.5490627811132, + 22.559062520576475, + 22.569062262370423, + 22.579062006474185, + 22.58906175286707, + 22.599061501528595, + 22.60906125243844, + 22.61906100557648, + 22.629060760922766, + 22.639060518457526, + 22.649060278161166, + 22.659060040014268, + 22.669059803997595, + 22.679059570092065, + 22.689059338278792, + 22.699059108539032, + 22.70905888085423, + 22.719058655205988, + 22.729058431576068, + 22.739058209946407, + 22.749057990299104, + 22.7590577726164, + 22.76905755688072, + 22.77905734307463, + 22.78905713118085, + 22.799056921182267, + 22.809056713061917, + 22.81905650680299, + 22.829056302388814, + 22.83905609980288, + 22.849055899028826, + 22.85905570005043, + 22.86905550285162, + 22.879055307416465, + 22.889055113729178, + 22.89905492177412, + 22.90905473153578, + 22.919054542998797, + 22.929054356147933, + 22.939054170968113, + 22.949053987444362, + 22.95905380556186, + 22.96905362530593, + 22.979053446662, + 22.98905326961565, + 22.999053094152572, + 23.009052920258608, + 23.019052747919705, + 23.029052577121945, + 23.039052407851543, + 23.049052240094824, + 23.059052073838238, + 23.069051909068367, + 23.079051745771903, + 23.089051583935653, + 23.09905142354655, + 23.109051264591642, + 23.1190511070581, + 23.12905095093321, + 23.13905079620435, + 23.149050642859038, + 23.159050490884884, + 23.169050340269628, + 23.1790501910011, + 23.18905004306725, + 23.19904989645614, + 23.209049751155927, + 23.219049607154883, + 23.229049464441378, + 23.239049323003893, + 23.24904918283101, + 23.259049043911414, + 23.269048906233884, + 23.279048769787313, + 23.289048634560686, + 23.299048500543083, + 23.30904836772369, + 23.319048236091785, + 23.329048105636744, + 23.339047976348034, + 23.349047848215214, + 23.35904772122795, + 23.369047595375985, + 23.37904747064917, + 23.389047347037422, + 23.399047224530783, + 23.409047103119356, + 23.41904698279334, + 23.429046863543025, + 23.43904674535879, + 23.44904662823109, + 23.459046512150483, + 23.46904639710759, + 23.47904628309313, + 23.489046170097907, + 23.499046058112803, + 23.509045947128765, + 23.519045837136854, + 23.529045728128192, + 23.539045620093976, + 23.549045513025494, + 23.559045406914098, + 23.569045301751242, + 23.57904519752842, + 23.58904509423723, + 23.59904499186934, + 23.609044890416488, + 23.6190447898705, + 23.629044690223246, + 23.639044591466703, + 23.64904449359289, + 23.659044396593913, + 23.66904430046195, + 23.679044205189243, + 23.689044110768105, + 23.69904401719092, + 23.70904392445014, + 23.719043832538276, + 23.72904374144792, + 23.739043651171727, + 23.749043561702404, + 23.759043473032737, + 23.769043385155584, + 23.77904329806385, + 23.789043211750503, + 23.799043126208588, + 23.8090430414312, + 23.819042957411504, + 23.829042874142722, + 23.839042791618137, + 23.8490427098311, + 23.859042628775004, + 23.86904254844331, + 23.879042468829553, + 23.8890423899273, + 23.899042311730184, + 23.90904223423191, + 23.919042157426222, + 23.929042081306932, + 23.93904200586789, + 23.949041931103018, + 23.95904185700629, + 23.969041783571726, + 23.979041710793407, + 23.989041638665462, + 23.999041567182076, + 24.00904149633748, + 24.019041426125966, + 24.029041356541875, + 24.039041287579593, + 24.04904121923356, + 24.05904115149826, + 24.069041084368237, + 24.079041017838072, + 24.08904095190241, + 24.099040886555926, + 24.109040821793357, + 24.11904075760948, + 24.12904069399912, + 24.139040630957147, + 24.14904056847848, + 24.159040506558075, + 24.169040445190955, + 24.17904038437216, + 24.1890403240968, + 24.199040264360008, + 24.20904020515696, + 24.219040146482893, + 24.229040088333075, + 24.239040030702817, + 24.249039973587468, + 24.259039916982434, + 24.269039860883154, + 24.279039805285098, + 24.28903975018379, + 24.299039695574777, + 24.309039641453673, + 24.319039587816103, + 24.329039534657753, + 24.339039481974332, + 24.349039429761607, + 24.359039378015353, + 24.369039326731404, + 24.379039275905637, + 24.38903922553394, + 24.399039175612256, + 24.409039126136573, + 24.419039077102894, + 24.429039028507272, + 24.439038980345785, + 24.449038932614556, + 24.459038885309738, + 24.469038838427515, + 24.479038791964115, + 24.48903874591579, + 24.49903870027883, + 24.50903865504957, + 24.519038610224342, + 24.529038565799546, + 24.5390385217716, + 24.54903847813697, + 24.559038434892123, + 24.56903839203358, + 24.57903834955788, + 24.589038307461614, + 24.599038265741388, + 24.60903822439384, + 24.61903818341563, + 24.629038142803463, + 24.63903810255407, + 24.649038062664207, + 24.659038023130652, + 24.669037983950233, + 24.679037945119784, + 24.689037906636177, + 24.699037868496315, + 24.70903783069712, + 24.719037793235554, + 24.72903775610859, + 24.73903771931325, + 24.749037682846563, + 24.75903764670559, + 24.769037610887423, + 24.77903757538918, + 24.789037540207996, + 24.799037505341037, + 24.8090374707855, + 24.819037436538597, + 24.829037402597564, + 24.839037368959676, + 24.849037335622224, + 24.859037302582514, + 24.86903726983789, + 24.879037237385713, + 24.889037205223374, + 24.899037173348283, + 24.909037141757867, + 24.919037110449594, + 24.929037079420922, + 24.939037048669366, + 24.949037018192445, + 24.9590369879877, + 24.96903695805271, + 24.97903692838506, + 24.98903689898236, + 24.999036869842246, + 25.00903684096237, + 25.019036812340396, + 25.029036783974032, + 25.039036755860995, + 25.049036727999002, + 25.059036700385835, + 25.06903667301925, + 25.079036645897062, + 25.08903661901707, + 25.09903659237712, + 25.109036565975064, + 25.11903653980877 + ] + } + ], + "layout": { + "font": { + "size": 32 + }, + "legend": { + "groupclick": "toggleitem", + "itemclick": "toggle", + "itemdoubleclick": "toggleothers", + "title": { + "text": "Agent list" + } + }, + "plot_bgcolor": "rgba(0,0,0,0)", + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "gridcolor": "LightGrey", + "gridwidth": 2, + "linecolor": "Gray", + "linewidth": 4, + "range": [ + -2.5, + 12.5 + ], + "showgrid": true, + "showline": true + }, + "yaxis": { + "gridcolor": "LightGrey", + "gridwidth": 2, + "linecolor": "Gray", + "linewidth": 4, + "range": [ + -6.145013777548571, + 31.37184660328024 + ], + "showgrid": true, + "showline": true + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 0.01, + 0.01, + 0, + 0 + ], + "y": [ + 0, + 0, + 1.0201026575218382, + 1.0201026575218382, + 0 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.01, + 0.02, + 0.02, + 0.01, + 0.01 + ], + "y": [ + 0.019897342478161884, + 0.019897342478161884, + 1.0402044061143851, + 1.0402044061143851, + 0.019897342478161884 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.02, + 0.03, + 0.03, + 0.02, + 0.02 + ], + "y": [ + 0.03979559388561493, + 0.03979559388561493, + 1.0603052383386096, + 1.0603052383386096, + 0.03979559388561493 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.03, + 0.04, + 0.04, + 0.03, + 0.03 + ], + "y": [ + 0.05969476166139054, + 0.05969476166139054, + 1.0804051624571165, + 1.0804051624571165, + 0.05969476166139054 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.04, + 0.05, + 0.05, + 0.04, + 0.04 + ], + "y": [ + 0.07959483754288355, + 0.07959483754288355, + 1.1005041866607184, + 1.1005041866607184, + 0.07959483754288355 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.05, + 0.060000000000000005, + 0.060000000000000005, + 0.05, + 0.05 + ], + "y": [ + 0.09949581333928192, + 0.09949581333928192, + 1.1206023190681331, + 1.1206023190681331, + 0.09949581333928192 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.060000000000000005, + 0.06999999999999999, + 0.06999999999999999, + 0.060000000000000005, + 0.060000000000000005 + ], + "y": [ + 0.11939768093186698, + 0.11939768093186698, + 1.1406995677260103, + 1.1406995677260103, + 0.11939768093186698 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.06999999999999999, + 0.08, + 0.08, + 0.06999999999999999, + 0.06999999999999999 + ], + "y": [ + 0.1393004322739898, + 0.1393004322739898, + 1.1607959406091528, + 1.1607959406091528, + 0.1393004322739898 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.08, + 0.09, + 0.09, + 0.08, + 0.08 + ], + "y": [ + 0.15920405939084747, + 0.15920405939084747, + 1.180891445620874, + 1.180891445620874, + 0.15920405939084747 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.09, + 0.09999999999999999, + 0.09999999999999999, + 0.09, + 0.09 + ], + "y": [ + 0.17910855437912632, + 0.17910855437912632, + 1.200986090593441, + 1.200986090593441, + 0.17910855437912632 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.09999999999999999, + 0.11, + 0.11, + 0.09999999999999999, + 0.09999999999999999 + ], + "y": [ + 0.19901390940655928, + 0.19901390940655928, + 1.2210798832885692, + 1.2210798832885692, + 0.19901390940655928 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.11, + 0.12, + 0.12, + 0.11, + 0.11 + ], + "y": [ + 0.2189201167114312, + 0.2189201167114312, + 1.2411728313979604, + 1.2411728313979604, + 0.2189201167114312 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.12, + 0.13, + 0.13, + 0.12, + 0.12 + ], + "y": [ + 0.23882716860204, + 0.23882716860204, + 1.2612649425438653, + 1.2612649425438653, + 0.23882716860204 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.13, + 0.14, + 0.14, + 0.13, + 0.13 + ], + "y": [ + 0.2587350574561351, + 0.2587350574561351, + 1.2813562242796555, + 1.2813562242796555, + 0.2587350574561351 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.14, + 0.15000000000000002, + 0.15000000000000002, + 0.14, + 0.14 + ], + "y": [ + 0.27864377572034493, + 0.27864377572034493, + 1.3014466840904118, + 1.3014466840904118, + 0.27864377572034493 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.15000000000000002, + 0.16, + 0.16, + 0.15000000000000002, + 0.15000000000000002 + ], + "y": [ + 0.29855331590958867, + 0.29855331590958867, + 1.3215363293935214, + 1.3215363293935214, + 0.29855331590958867 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.16, + 0.17, + 0.17, + 0.16, + 0.16 + ], + "y": [ + 0.31846367060647907, + 0.31846367060647907, + 1.3416251675392616, + 1.3416251675392616, + 0.31846367060647907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.17, + 0.18000000000000002, + 0.18000000000000002, + 0.17, + 0.17 + ], + "y": [ + 0.3383748324607391, + 0.3383748324607391, + 1.3617132058114052, + 1.3617132058114052, + 0.3383748324607391 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.18000000000000002, + 0.19, + 0.19, + 0.18000000000000002, + 0.18000000000000002 + ], + "y": [ + 0.35828679418859555, + 0.35828679418859555, + 1.3818004514278082, + 1.3818004514278082, + 0.35828679418859555 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.19, + 0.2, + 0.2, + 0.19, + 0.19 + ], + "y": [ + 0.3781995485721924, + 0.3781995485721924, + 1.4018869115410029, + 1.4018869115410029, + 0.3781995485721924 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.2, + 0.21000000000000002, + 0.21000000000000002, + 0.2, + 0.2 + ], + "y": [ + 0.39811308845899784, + 0.39811308845899784, + 1.421972593238793, + 1.421972593238793, + 0.39811308845899784 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.21000000000000002, + 0.22, + 0.22, + 0.21000000000000002, + 0.21000000000000002 + ], + "y": [ + 0.41802740676120775, + 0.41802740676120775, + 1.4420575035448295, + 1.4420575035448295, + 0.41802740676120775 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.22, + 0.23, + 0.23, + 0.22, + 0.22 + ], + "y": [ + 0.43794249645517136, + 0.43794249645517136, + 1.4621416494191979, + 1.4621416494191979, + 0.43794249645517136 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.23, + 0.24000000000000002, + 0.24000000000000002, + 0.23, + 0.23 + ], + "y": [ + 0.4578583505808027, + 0.4578583505808027, + 1.482225037758996, + 1.482225037758996, + 0.4578583505808027 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.24000000000000002, + 0.25, + 0.25, + 0.24000000000000002, + 0.24000000000000002 + ], + "y": [ + 0.4777749622410046, + 0.4777749622410046, + 1.5023076753989038, + 1.5023076753989038, + 0.4777749622410046 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.25, + 0.26, + 0.26, + 0.25, + 0.25 + ], + "y": [ + 0.4976923246010967, + 0.4976923246010967, + 1.5223895691117482, + 1.5223895691117482, + 0.4976923246010967 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.26, + 0.27, + 0.27, + 0.26, + 0.26 + ], + "y": [ + 0.5176104308882523, + 0.5176104308882523, + 1.5424707256090788, + 1.5424707256090788, + 0.5176104308882523 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.27, + 0.28, + 0.28, + 0.27, + 0.27 + ], + "y": [ + 0.5375292743909216, + 0.5375292743909216, + 1.5625511515417139, + 1.5625511515417139, + 0.5375292743909216 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.28, + 0.29000000000000004, + 0.29000000000000004, + 0.28, + 0.28 + ], + "y": [ + 0.5574488484582868, + 0.5574488484582868, + 1.5826308534999436, + 1.5826308534999436, + 0.5574488484582868 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.29000000000000004, + 0.3, + 0.3, + 0.29000000000000004, + 0.29000000000000004 + ], + "y": [ + 0.5773691465000571, + 0.5773691465000571, + 1.6027098380136908, + 1.6027098380136908, + 0.5773691465000571 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.3, + 0.31, + 0.31, + 0.3, + 0.3 + ], + "y": [ + 0.5972901619863098, + 0.5972901619863098, + 1.6227881115538536, + 1.6227881115538536, + 0.5972901619863098 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.31, + 0.32, + 0.32, + 0.31, + 0.31 + ], + "y": [ + 0.6172118884461469, + 0.6172118884461469, + 1.6428656805328445, + 1.6428656805328445, + 0.6172118884461469 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.32, + 0.33, + 0.33, + 0.32, + 0.32 + ], + "y": [ + 0.6371343194671562, + 0.6371343194671562, + 1.6629425513051084, + 1.6629425513051084, + 0.6371343194671562 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.33, + 0.34, + 0.34, + 0.33, + 0.33 + ], + "y": [ + 0.6570574486948922, + 0.6570574486948922, + 1.6830187301676602, + 1.6830187301676602, + 0.6570574486948922 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.34, + 0.35000000000000003, + 0.35000000000000003, + 0.34, + 0.34 + ], + "y": [ + 0.6769812698323406, + 0.6769812698323406, + 1.703094223360605, + 1.703094223360605, + 0.6769812698323406 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.35000000000000003, + 0.36, + 0.36, + 0.35000000000000003, + 0.35000000000000003 + ], + "y": [ + 0.6969057766393958, + 0.6969057766393958, + 1.7231690370676536, + 1.7231690370676536, + 0.6969057766393958 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.36, + 0.37, + 0.37, + 0.36, + 0.36 + ], + "y": [ + 0.7168309629323473, + 0.7168309629323473, + 1.743243177416627, + 1.743243177416627, + 0.7168309629323473 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.37, + 0.38, + 0.38, + 0.37, + 0.37 + ], + "y": [ + 0.7367568225833738, + 0.7367568225833738, + 1.763316650479981, + 1.763316650479981, + 0.7367568225833738 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.38, + 0.39, + 0.39, + 0.38, + 0.38 + ], + "y": [ + 0.7566833495200197, + 0.7566833495200197, + 1.7833894622752917, + 1.7833894622752917, + 0.7566833495200197 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.39, + 0.4, + 0.4, + 0.39, + 0.39 + ], + "y": [ + 0.7766105377247092, + 0.7766105377247092, + 1.8034616187657684, + 1.8034616187657684, + 0.7766105377247092 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.4, + 0.41000000000000003, + 0.41000000000000003, + 0.4, + 0.4 + ], + "y": [ + 0.7965383812342327, + 0.7965383812342327, + 1.8235331258607346, + 1.8235331258607346, + 0.7965383812342327 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.41000000000000003, + 0.42, + 0.42, + 0.41000000000000003, + 0.41000000000000003 + ], + "y": [ + 0.8164668741392664, + 0.8164668741392664, + 1.8436039894161205, + 1.8436039894161205, + 0.8164668741392664 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.42, + 0.43, + 0.43, + 0.42, + 0.42 + ], + "y": [ + 0.8363960105838807, + 0.8363960105838807, + 1.8636742152349512, + 1.8636742152349512, + 0.8363960105838807 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.43, + 0.44, + 0.44, + 0.43, + 0.43 + ], + "y": [ + 0.8563257847650497, + 0.8563257847650497, + 1.8837438090678287, + 1.8837438090678287, + 0.8563257847650497 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.44, + 0.45, + 0.45, + 0.44, + 0.44 + ], + "y": [ + 0.8762561909321724, + 0.8762561909321724, + 1.9038127766133963, + 1.9038127766133963, + 0.8762561909321724 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.45, + 0.46, + 0.46, + 0.45, + 0.45 + ], + "y": [ + 0.8961872233866048, + 0.8961872233866048, + 1.9238811235188207, + 1.9238811235188207, + 0.8961872233866048 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.46, + 0.47000000000000003, + 0.47000000000000003, + 0.46, + 0.46 + ], + "y": [ + 0.9161188764811805, + 0.9161188764811805, + 1.9439488553802473, + 1.9439488553802473, + 0.9161188764811805 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.47000000000000003, + 0.48, + 0.48, + 0.47000000000000003, + 0.47000000000000003 + ], + "y": [ + 0.936051144619754, + 0.936051144619754, + 1.9640159777432848, + 1.9640159777432848, + 0.936051144619754 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.48, + 0.49, + 0.49, + 0.48, + 0.48 + ], + "y": [ + 0.9559840222567163, + 0.9559840222567163, + 1.9840824961034322, + 1.9840824961034322, + 0.9559840222567163 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.49, + 0.5, + 0.5, + 0.49, + 0.49 + ], + "y": [ + 0.9759175038965691, + 0.9759175038965691, + 2.004148415906563, + 2.004148415906563, + 0.9759175038965691 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.5, + 0.51, + 0.51, + 0.5, + 0.5 + ], + "y": [ + 0.9958515840934385, + 0.9958515840934385, + 2.0242137425493443, + 2.0242137425493443, + 0.9958515840934385 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.51, + 0.52, + 0.52, + 0.51, + 0.51 + ], + "y": [ + 1.015786257450657, + 1.015786257450657, + 2.044278481379711, + 2.044278481379711, + 1.015786257450657 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.52, + 0.53, + 0.53, + 0.52, + 0.52 + ], + "y": [ + 1.0357215186202904, + 1.0357215186202904, + 2.0643426376972895, + 2.0643426376972895, + 1.0357215186202904 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.53, + 0.54, + 0.54, + 0.53, + 0.53 + ], + "y": [ + 1.055657362302712, + 1.055657362302712, + 2.0844062167538477, + 2.0844062167538477, + 1.055657362302712 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.54, + 0.55, + 0.55, + 0.54, + 0.54 + ], + "y": [ + 1.0755937832461537, + 1.0755937832461537, + 2.104469223753711, + 2.104469223753711, + 1.0755937832461537 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.55, + 0.56, + 0.56, + 0.55, + 0.55 + ], + "y": [ + 1.0955307762462905, + 1.0955307762462905, + 2.1245316638542064, + 2.1245316638542064, + 1.0955307762462905 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.56, + 0.5700000000000001, + 0.5700000000000001, + 0.56, + 0.56 + ], + "y": [ + 1.1154683361457949, + 1.1154683361457949, + 2.1445935421660787, + 2.1445935421660787, + 1.1154683361457949 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.5700000000000001, + 0.58, + 0.58, + 0.5700000000000001, + 0.5700000000000001 + ], + "y": [ + 1.135406457833923, + 1.135406457833923, + 2.164654863753928, + 2.164654863753928, + 1.135406457833923 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.58, + 0.59, + 0.59, + 0.58, + 0.58 + ], + "y": [ + 1.1553451362460736, + 1.1553451362460736, + 2.184715633636606, + 2.184715633636606, + 1.1553451362460736 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.59, + 0.6, + 0.6, + 0.59, + 0.59 + ], + "y": [ + 1.1752843663633954, + 1.1752843663633954, + 2.2047758567876463, + 2.2047758567876463, + 1.1752843663633954 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.6, + 0.61, + 0.61, + 0.6, + 0.6 + ], + "y": [ + 1.1952241432123554, + 1.1952241432123554, + 2.22483553813566, + 2.22483553813566, + 1.1952241432123554 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.61, + 0.62, + 0.62, + 0.61, + 0.61 + ], + "y": [ + 1.2151644618643418, + 1.2151644618643418, + 2.2448946825647536, + 2.2448946825647536, + 1.2151644618643418 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.62, + 0.63, + 0.63, + 0.62, + 0.62 + ], + "y": [ + 1.2351053174352482, + 1.2351053174352482, + 2.264953294914931, + 2.264953294914931, + 1.2351053174352482 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.63, + 0.64, + 0.64, + 0.63, + 0.63 + ], + "y": [ + 1.2550467050850709, + 1.2550467050850709, + 2.285011379982489, + 2.285011379982489, + 1.2550467050850709 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.64, + 0.65, + 0.65, + 0.64, + 0.64 + ], + "y": [ + 1.2749886200175127, + 1.2749886200175127, + 2.3050689425204096, + 2.3050689425204096, + 1.2749886200175127 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.65, + 0.66, + 0.66, + 0.65, + 0.65 + ], + "y": [ + 1.2949310574795923, + 1.2949310574795923, + 2.325125987238756, + 2.325125987238756, + 1.2949310574795923 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.66, + 0.67, + 0.67, + 0.66, + 0.66 + ], + "y": [ + 1.314874012761246, + 1.314874012761246, + 2.345182518805057, + 2.345182518805057, + 1.314874012761246 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.67, + 0.68, + 0.68, + 0.67, + 0.67 + ], + "y": [ + 1.334817481194945, + 1.334817481194945, + 2.365238541844703, + 2.365238541844703, + 1.334817481194945 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.68, + 0.6900000000000001, + 0.6900000000000001, + 0.68, + 0.68 + ], + "y": [ + 1.354761458155299, + 1.354761458155299, + 2.3852940609413085, + 2.3852940609413085, + 1.354761458155299 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.6900000000000001, + 0.7, + 0.7, + 0.6900000000000001, + 0.6900000000000001 + ], + "y": [ + 1.3747059390586935, + 1.3747059390586935, + 2.405349080637107, + 2.405349080637107, + 1.3747059390586935 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.7, + 0.71, + 0.71, + 0.7, + 0.7 + ], + "y": [ + 1.3946509193628953, + 1.3946509193628953, + 2.4254036054333104, + 2.4254036054333104, + 1.3946509193628953 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.71, + 0.72, + 0.72, + 0.71, + 0.71 + ], + "y": [ + 1.4145963945666917, + 1.4145963945666917, + 2.445457639790492, + 2.445457639790492, + 1.4145963945666917 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.72, + 0.73, + 0.73, + 0.72, + 0.72 + ], + "y": [ + 1.4345423602095102, + 1.4345423602095102, + 2.465511188128951, + 2.465511188128951, + 1.4345423602095102 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.73, + 0.74, + 0.74, + 0.73, + 0.73 + ], + "y": [ + 1.4544888118710508, + 1.4544888118710508, + 2.4855642548290646, + 2.4855642548290646, + 1.4544888118710508 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.74, + 0.75, + 0.75, + 0.74, + 0.74 + ], + "y": [ + 1.4744357451709371, + 1.4744357451709371, + 2.505616844231669, + 2.505616844231669, + 1.4744357451709371 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.75, + 0.76, + 0.76, + 0.75, + 0.75 + ], + "y": [ + 1.494383155768333, + 1.494383155768333, + 2.525668960638394, + 2.525668960638394, + 1.494383155768333 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.76, + 0.77, + 0.77, + 0.76, + 0.76 + ], + "y": [ + 1.5143310393616076, + 1.5143310393616076, + 2.5457206083120427, + 2.5457206083120427, + 1.5143310393616076 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.77, + 0.78, + 0.78, + 0.77, + 0.77 + ], + "y": [ + 1.5342793916879591, + 1.5342793916879591, + 2.5657717914769256, + 2.5657717914769256, + 1.5342793916879591 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.78, + 0.79, + 0.79, + 0.78, + 0.78 + ], + "y": [ + 1.5542282085230763, + 1.5542282085230763, + 2.5858225143192066, + 2.5858225143192066, + 1.5542282085230763 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.79, + 0.8, + 0.8, + 0.79, + 0.79 + ], + "y": [ + 1.5741774856807953, + 1.5741774856807953, + 2.605872780987257, + 2.605872780987257, + 1.5741774856807953 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.8, + 0.81, + 0.81, + 0.8, + 0.8 + ], + "y": [ + 1.594127219012745, + 1.594127219012745, + 2.6259225955919914, + 2.6259225955919914, + 1.594127219012745 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.81, + 0.8200000000000001, + 0.8200000000000001, + 0.81, + 0.81 + ], + "y": [ + 1.6140774044080106, + 1.6140774044080106, + 2.6459719622072138, + 2.6459719622072138, + 1.6140774044080106 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.8200000000000001, + 0.83, + 0.83, + 0.8200000000000001, + 0.8200000000000001 + ], + "y": [ + 1.634028037792788, + 1.634028037792788, + 2.6660208848699427, + 2.6660208848699427, + 1.634028037792788 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.83, + 0.84, + 0.84, + 0.83, + 0.83 + ], + "y": [ + 1.6539791151300594, + 1.6539791151300594, + 2.686069367580739, + 2.686069367580739, + 1.6539791151300594 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.84, + 0.85, + 0.85, + 0.84, + 0.84 + ], + "y": [ + 1.673930632419263, + 1.673930632419263, + 2.7061174143040616, + 2.7061174143040616, + 1.673930632419263 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.85, + 0.86, + 0.86, + 0.85, + 0.85 + ], + "y": [ + 1.6938825856959405, + 1.6938825856959405, + 2.7261650289685613, + 2.7261650289685613, + 1.6938825856959405 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.86, + 0.87, + 0.87, + 0.86, + 0.86 + ], + "y": [ + 1.713834971031441, + 1.713834971031441, + 2.7462122154674304, + 2.7462122154674304, + 1.713834971031441 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.87, + 0.88, + 0.88, + 0.87, + 0.87 + ], + "y": [ + 1.7337877845325718, + 1.7337877845325718, + 2.7662589776587025, + 2.7662589776587025, + 1.7337877845325718 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.88, + 0.89, + 0.89, + 0.88, + 0.88 + ], + "y": [ + 1.7537410223412997, + 1.7537410223412997, + 2.7863053193655776, + 2.7863053193655776, + 1.7537410223412997 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.89, + 0.9, + 0.9, + 0.89, + 0.89 + ], + "y": [ + 1.7736946806344247, + 1.7736946806344247, + 2.8063512443767493, + 2.8063512443767493, + 1.7736946806344247 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.9, + 0.91, + 0.91, + 0.9, + 0.9 + ], + "y": [ + 1.7936487556232532, + 1.7936487556232532, + 2.8263967564466954, + 2.8263967564466954, + 1.7936487556232532 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.91, + 0.92, + 0.92, + 0.91, + 0.91 + ], + "y": [ + 1.8136032435533067, + 1.8136032435533067, + 2.846441859295981, + 2.846441859295981, + 1.8136032435533067 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.92, + 0.93, + 0.93, + 0.92, + 0.92 + ], + "y": [ + 1.8335581407040213, + 1.8335581407040213, + 2.8664865566115236, + 2.8664865566115236, + 1.8335581407040213 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.93, + 0.9400000000000001, + 0.9400000000000001, + 0.93, + 0.93 + ], + "y": [ + 1.8535134433884788, + 1.8535134433884788, + 2.8865308520469535, + 2.8865308520469535, + 1.8535134433884788 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.9400000000000001, + 0.95, + 0.95, + 0.9400000000000001, + 0.9400000000000001 + ], + "y": [ + 1.8734691479530488, + 1.8734691479530488, + 2.9065747492229184, + 2.9065747492229184, + 1.8734691479530488 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.95, + 0.96, + 0.96, + 0.95, + 0.95 + ], + "y": [ + 1.8934252507770843, + 1.8934252507770843, + 2.9266182517273887, + 2.9266182517273887, + 1.8934252507770843 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.96, + 0.97, + 0.97, + 0.96, + 0.96 + ], + "y": [ + 1.9133817482726136, + 1.9133817482726136, + 2.946661363115933, + 2.946661363115933, + 1.9133817482726136 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.97, + 0.98, + 0.98, + 0.97, + 0.97 + ], + "y": [ + 1.9333386368840695, + 1.9333386368840695, + 2.96670408691202, + 2.96670408691202, + 1.9333386368840695 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.98, + 0.99, + 0.99, + 0.98, + 0.98 + ], + "y": [ + 1.9532959130879828, + 1.9532959130879828, + 2.9867464266073336, + 2.9867464266073336, + 1.9532959130879828 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.99, + 1, + 1, + 0.99, + 0.99 + ], + "y": [ + 1.973253573392669, + 1.973253573392669, + 3.0067883856620137, + 3.0067883856620137, + 1.973253573392669 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1, + 1.01, + 1.01, + 1, + 1 + ], + "y": [ + 1.9932116143379888, + 1.9932116143379888, + 3.0268299675049777, + 3.0268299675049777, + 1.9932116143379888 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.01, + 1.02, + 1.02, + 1.01, + 1.01 + ], + "y": [ + 2.013170032495025, + 2.013170032495025, + 3.0468711755341755, + 3.0468711755341755, + 2.013170032495025 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.02, + 1.03, + 1.03, + 1.02, + 1.02 + ], + "y": [ + 2.033128824465827, + 2.033128824465827, + 3.0669120131169034, + 3.0669120131169034, + 2.033128824465827 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.03, + 1.04, + 1.04, + 1.03, + 1.03 + ], + "y": [ + 2.0530879868830993, + 2.0530879868830993, + 3.0869524835900415, + 3.0869524835900415, + 2.0530879868830993 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.04, + 1.05, + 1.05, + 1.04, + 1.04 + ], + "y": [ + 2.0730475164099613, + 2.0730475164099613, + 3.106992590260348, + 3.106992590260348, + 2.0730475164099613 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.05, + 1.06, + 1.06, + 1.05, + 1.05 + ], + "y": [ + 2.0930074097396547, + 2.0930074097396547, + 3.127032336404732, + 3.127032336404732, + 2.0930074097396547 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.06, + 1.07, + 1.07, + 1.06, + 1.06 + ], + "y": [ + 2.112967663595271, + 2.112967663595271, + 3.147071725270527, + 3.147071725270527, + 2.112967663595271 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.07, + 1.08, + 1.08, + 1.07, + 1.07 + ], + "y": [ + 2.1329282747294758, + 2.1329282747294758, + 3.1671107600757344, + 3.1671107600757344, + 2.1329282747294758 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.08, + 1.09, + 1.09, + 1.08, + 1.08 + ], + "y": [ + 2.1528892399242685, + 2.1528892399242685, + 3.187149444009316, + 3.187149444009316, + 2.1528892399242685 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.09, + 1.1, + 1.1, + 1.09, + 1.09 + ], + "y": [ + 2.1728505559906868, + 2.1728505559906868, + 3.2071877802314335, + 3.2071877802314335, + 2.1728505559906868 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.1, + 1.11, + 1.11, + 1.1, + 1.1 + ], + "y": [ + 2.1928122197685695, + 2.1928122197685695, + 3.2272257718737194, + 3.2272257718737194, + 2.1928122197685695 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.11, + 1.12, + 1.12, + 1.11, + 1.11 + ], + "y": [ + 2.2127742281262837, + 2.2127742281262837, + 3.2472634220395333, + 3.2472634220395333, + 2.2127742281262837 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.12, + 1.1300000000000001, + 1.1300000000000001, + 1.12, + 1.12 + ], + "y": [ + 2.2327365779604698, + 2.2327365779604698, + 3.26730073367206, + 3.26730073367206, + 2.2327365779604698 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.1300000000000001, + 1.14, + 1.14, + 1.1300000000000001, + 1.1300000000000001 + ], + "y": [ + 2.252699266327943, + 2.252699266327943, + 3.28733770969558, + 3.28733770969558, + 2.252699266327943 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.14, + 1.15, + 1.15, + 1.14, + 1.14 + ], + "y": [ + 2.272662290304423, + 2.272662290304423, + 3.307374353137874, + 3.307374353137874, + 2.272662290304423 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.15, + 1.16, + 1.16, + 1.15, + 1.15 + ], + "y": [ + 2.2926256468621293, + 2.2926256468621293, + 3.327410666999291, + 3.327410666999291, + 2.2926256468621293 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.16, + 1.17, + 1.17, + 1.16, + 1.16 + ], + "y": [ + 2.3125893330007123, + 2.3125893330007123, + 3.3474466542530137, + 3.3474466542530137, + 2.3125893330007123 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.17, + 1.18, + 1.18, + 1.17, + 1.17 + ], + "y": [ + 2.3325533457469896, + 2.3325533457469896, + 3.3674823178453064, + 3.3674823178453064, + 2.3325533457469896 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.18, + 1.19, + 1.19, + 1.18, + 1.18 + ], + "y": [ + 2.352517682154697, + 2.352517682154697, + 3.3875176606957393, + 3.3875176606957393, + 2.352517682154697 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.19, + 1.2, + 1.2, + 1.19, + 1.19 + ], + "y": [ + 2.372482339304264, + 2.372482339304264, + 3.4075526856974583, + 3.4075526856974583, + 2.372482339304264 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.2, + 1.21, + 1.21, + 1.2, + 1.2 + ], + "y": [ + 2.392447314302545, + 2.392447314302545, + 3.427587395717411, + 3.427587395717411, + 2.392447314302545 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.21, + 1.22, + 1.22, + 1.21, + 1.21 + ], + "y": [ + 2.4124126042825926, + 2.4124126042825926, + 3.4476217935965843, + 3.4476217935965843, + 2.4124126042825926 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.22, + 1.23, + 1.23, + 1.22, + 1.22 + ], + "y": [ + 2.432378206403419, + 2.432378206403419, + 3.467655882150237, + 3.467655882150237, + 2.432378206403419 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.23, + 1.24, + 1.24, + 1.23, + 1.23 + ], + "y": [ + 2.4523441178497665, + 2.4523441178497665, + 3.4876896641681485, + 3.4876896641681485, + 2.4523441178497665 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.24, + 1.25, + 1.25, + 1.24, + 1.24 + ], + "y": [ + 2.472310335831855, + 2.472310335831855, + 3.5077231424148443, + 3.5077231424148443, + 2.472310335831855 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.25, + 1.26, + 1.26, + 1.25, + 1.25 + ], + "y": [ + 2.4922768575851593, + 2.4922768575851593, + 3.527756319629814, + 3.527756319629814, + 2.4922768575851593 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.26, + 1.27, + 1.27, + 1.26, + 1.26 + ], + "y": [ + 2.5122436803701897, + 2.5122436803701897, + 3.547789198527753, + 3.547789198527753, + 2.5122436803701897 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.27, + 1.28, + 1.28, + 1.27, + 1.27 + ], + "y": [ + 2.5322108014722504, + 2.5322108014722504, + 3.567821781798777, + 3.567821781798777, + 2.5322108014722504 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.28, + 1.29, + 1.29, + 1.28, + 1.28 + ], + "y": [ + 2.5521782182012265, + 2.5521782182012265, + 3.587854072108663, + 3.587854072108663, + 2.5521782182012265 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.29, + 1.3, + 1.3, + 1.29, + 1.29 + ], + "y": [ + 2.5721459278913406, + 2.5721459278913406, + 3.607886072099694, + 3.607886072099694, + 2.5721459278913406 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.3, + 1.31, + 1.31, + 1.3, + 1.3 + ], + "y": [ + 2.59211392790031, + 2.59211392790031, + 3.627917784388678, + 3.627917784388678, + 2.59211392790031 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.31, + 1.32, + 1.32, + 1.31, + 1.31 + ], + "y": [ + 2.6120822156113257, + 2.6120822156113257, + 3.647949211569748, + 3.647949211569748, + 2.6120822156113257 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.32, + 1.33, + 1.33, + 1.32, + 1.32 + ], + "y": [ + 2.6320507884302557, + 2.6320507884302557, + 3.66798035621356, + 3.66798035621356, + 2.6320507884302557 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.33, + 1.34, + 1.34, + 1.33, + 1.33 + ], + "y": [ + 2.652019643786444, + 2.652019643786444, + 3.688011220867506, + 3.688011220867506, + 2.652019643786444 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.34, + 1.35, + 1.35, + 1.34, + 1.34 + ], + "y": [ + 2.671988779132498, + 2.671988779132498, + 3.708041808055915, + 3.708041808055915, + 2.671988779132498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.35, + 1.36, + 1.36, + 1.35, + 1.35 + ], + "y": [ + 2.6919581919440887, + 2.6919581919440887, + 3.7280721202802756, + 3.7280721202802756, + 2.6919581919440887 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.36, + 1.37, + 1.37, + 1.36, + 1.36 + ], + "y": [ + 2.7119278797197284, + 2.7119278797197284, + 3.7481021600194153, + 3.7481021600194153, + 2.7119278797197284 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.37, + 1.3800000000000001, + 1.3800000000000001, + 1.37, + 1.37 + ], + "y": [ + 2.7318978399805887, + 2.7318978399805887, + 3.76813192972975, + 3.76813192972975, + 2.7318978399805887 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.3800000000000001, + 1.39, + 1.39, + 1.3800000000000001, + 1.3800000000000001 + ], + "y": [ + 2.751868070270254, + 2.751868070270254, + 3.7881614318454506, + 3.7881614318454506, + 2.751868070270254 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.39, + 1.4, + 1.4, + 1.39, + 1.39 + ], + "y": [ + 2.7718385681545534, + 2.7718385681545534, + 3.808190668777942, + 3.808190668777942, + 2.7718385681545534 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.4, + 1.41, + 1.41, + 1.4, + 1.4 + ], + "y": [ + 2.791809331222062, + 2.791809331222062, + 3.8282196429179356, + 3.8282196429179356, + 2.791809331222062 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.41, + 1.42, + 1.42, + 1.41, + 1.41 + ], + "y": [ + 2.8117803570820685, + 2.8117803570820685, + 3.848248356634042, + 3.848248356634042, + 2.8117803570820685 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.42, + 1.43, + 1.43, + 1.42, + 1.42 + ], + "y": [ + 2.831751643365962, + 2.831751643365962, + 3.868276812273469, + 3.868276812273469, + 2.831751643365962 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.43, + 1.44, + 1.44, + 1.43, + 1.43 + ], + "y": [ + 2.851723187726535, + 2.851723187726535, + 3.88830501216217, + 3.88830501216217, + 2.851723187726535 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.44, + 1.45, + 1.45, + 1.44, + 1.44 + ], + "y": [ + 2.8716949878378344, + 2.8716949878378344, + 3.908332958605072, + 3.908332958605072, + 2.8716949878378344 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.45, + 1.46, + 1.46, + 1.45, + 1.45 + ], + "y": [ + 2.8916670413949324, + 2.8916670413949324, + 3.928360653886229, + 3.928360653886229, + 2.8916670413949324 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.46, + 1.47, + 1.47, + 1.46, + 1.46 + ], + "y": [ + 2.9116393461137755, + 2.9116393461137755, + 3.9483881002690597, + 3.9483881002690597, + 2.9116393461137755 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.47, + 1.48, + 1.48, + 1.47, + 1.47 + ], + "y": [ + 2.9316118997309446, + 2.9316118997309446, + 3.968415299996498, + 3.968415299996498, + 2.9316118997309446 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.48, + 1.49, + 1.49, + 1.48, + 1.48 + ], + "y": [ + 2.9515847000035063, + 2.9515847000035063, + 3.9884422552911856, + 3.9884422552911856, + 2.9515847000035063 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.49, + 1.5, + 1.5, + 1.49, + 1.49 + ], + "y": [ + 2.971557744708819, + 2.971557744708819, + 4.008468968355661, + 4.008468968355661, + 2.971557744708819 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.5, + 1.51, + 1.51, + 1.5, + 1.5 + ], + "y": [ + 2.991531031644343, + 2.991531031644343, + 4.028495441372547, + 4.028495441372547, + 2.991531031644343 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.51, + 1.52, + 1.52, + 1.51, + 1.51 + ], + "y": [ + 3.0115045586274576, + 3.0115045586274576, + 4.048521676504723, + 4.048521676504723, + 3.0115045586274576 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.52, + 1.53, + 1.53, + 1.52, + 1.52 + ], + "y": [ + 3.031478323495281, + 3.031478323495281, + 4.068547675895514, + 4.068547675895514, + 3.031478323495281 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.53, + 1.54, + 1.54, + 1.53, + 1.53 + ], + "y": [ + 3.05145232410449, + 3.05145232410449, + 4.088573441668865, + 4.088573441668865, + 3.05145232410449 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.54, + 1.55, + 1.55, + 1.54, + 1.54 + ], + "y": [ + 3.0714265583311398, + 3.0714265583311398, + 4.108598975929504, + 4.108598975929504, + 3.0714265583311398 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.55, + 1.56, + 1.56, + 1.55, + 1.55 + ], + "y": [ + 3.0914010240705005, + 3.0914010240705005, + 4.128624280763134, + 4.128624280763134, + 3.0914010240705005 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.56, + 1.57, + 1.57, + 1.56, + 1.56 + ], + "y": [ + 3.1113757192368707, + 3.1113757192368707, + 4.148649358236604, + 4.148649358236604, + 3.1113757192368707 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.57, + 1.58, + 1.58, + 1.57, + 1.57 + ], + "y": [ + 3.1313506417634014, + 3.1313506417634014, + 4.168674210398065, + 4.168674210398065, + 3.1313506417634014 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.58, + 1.59, + 1.59, + 1.58, + 1.58 + ], + "y": [ + 3.1513257896019393, + 3.1513257896019393, + 4.188698839277152, + 4.188698839277152, + 3.1513257896019393 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.59, + 1.6, + 1.6, + 1.59, + 1.59 + ], + "y": [ + 3.1713011607228525, + 3.1713011607228525, + 4.208723246885148, + 4.208723246885148, + 3.1713011607228525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.6, + 1.61, + 1.61, + 1.6, + 1.6 + ], + "y": [ + 3.1912767531148574, + 3.1912767531148574, + 4.228747435227507, + 4.228747435227507, + 3.1912767531148574 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.61, + 1.62, + 1.62, + 1.61, + 1.61 + ], + "y": [ + 3.211252564772498, + 3.211252564772498, + 4.248771406386588, + 4.248771406386588, + 3.211252564772498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.62, + 1.6300000000000001, + 1.6300000000000001, + 1.62, + 1.62 + ], + "y": [ + 3.231228593613417, + 3.231228593613417, + 4.2687951623161835, + 4.2687951623161835, + 3.231228593613417 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.6300000000000001, + 1.64, + 1.64, + 1.6300000000000001, + 1.6300000000000001 + ], + "y": [ + 3.2512048376838214, + 3.2512048376838214, + 4.288818704952446, + 4.288818704952446, + 3.2512048376838214 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.64, + 1.65, + 1.65, + 1.64, + 1.64 + ], + "y": [ + 3.2711812950475596, + 3.2711812950475596, + 4.3088420362140525, + 4.3088420362140525, + 3.2711812950475596 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.65, + 1.66, + 1.66, + 1.65, + 1.65 + ], + "y": [ + 3.2911579637859525, + 3.2911579637859525, + 4.328865158002405, + 4.328865158002405, + 3.2911579637859525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.66, + 1.67, + 1.67, + 1.66, + 1.66 + ], + "y": [ + 3.311134841997599, + 3.311134841997599, + 4.34888807220173, + 4.34888807220173, + 3.311134841997599 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.67, + 1.68, + 1.68, + 1.67, + 1.67 + ], + "y": [ + 3.331111927798275, + 3.331111927798275, + 4.368910780679268, + 4.368910780679268, + 3.331111927798275 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.68, + 1.69, + 1.69, + 1.68, + 1.68 + ], + "y": [ + 3.3510892193207362, + 3.3510892193207362, + 4.388933285285427, + 4.388933285285427, + 3.3510892193207362 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.69, + 1.7, + 1.7, + 1.69, + 1.69 + ], + "y": [ + 3.3710667147145785, + 3.3710667147145785, + 4.408955587853926, + 4.408955587853926, + 3.3710667147145785 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.7, + 1.71, + 1.71, + 1.7, + 1.7 + ], + "y": [ + 3.3910444121460785, + 3.3910444121460785, + 4.428977690201947, + 4.428977690201947, + 3.3910444121460785 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.71, + 1.72, + 1.72, + 1.71, + 1.71 + ], + "y": [ + 3.4110223097980583, + 3.4110223097980583, + 4.448999594130281, + 4.448999594130281, + 3.4110223097980583 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.72, + 1.73, + 1.73, + 1.72, + 1.72 + ], + "y": [ + 3.4310004058697245, + 3.4310004058697245, + 4.469021301423491, + 4.469021301423491, + 3.4310004058697245 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.73, + 1.74, + 1.74, + 1.73, + 1.73 + ], + "y": [ + 3.450978698576514, + 3.450978698576514, + 4.489042813850043, + 4.489042813850043, + 3.450978698576514 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.74, + 1.75, + 1.75, + 1.74, + 1.74 + ], + "y": [ + 3.4709571861499637, + 3.4709571861499637, + 4.509064133162464, + 4.509064133162464, + 3.4709571861499637 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.75, + 1.76, + 1.76, + 1.75, + 1.75 + ], + "y": [ + 3.4909358668375434, + 3.4909358668375434, + 4.529085261097478, + 4.529085261097478, + 3.4909358668375434 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.76, + 1.77, + 1.77, + 1.76, + 1.76 + ], + "y": [ + 3.510914738902528, + 3.510914738902528, + 4.549106199376147, + 4.549106199376147, + 3.510914738902528 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.77, + 1.78, + 1.78, + 1.77, + 1.77 + ], + "y": [ + 3.5308938006238586, + 3.5308938006238586, + 4.56912694970403, + 4.56912694970403, + 3.5308938006238586 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.78, + 1.79, + 1.79, + 1.78, + 1.78 + ], + "y": [ + 3.550873050295974, + 3.550873050295974, + 4.589147513771298, + 4.589147513771298, + 3.550873050295974 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.79, + 1.8, + 1.8, + 1.79, + 1.79 + ], + "y": [ + 3.5708524862287057, + 3.5708524862287057, + 4.609167893252883, + 4.609167893252883, + 3.5708524862287057 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.8, + 1.81, + 1.81, + 1.8, + 1.8 + ], + "y": [ + 3.5908321067471203, + 3.5908321067471203, + 4.629188089808631, + 4.629188089808631, + 3.5908321067471203 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.81, + 1.82, + 1.82, + 1.81, + 1.81 + ], + "y": [ + 3.610811910191371, + 3.610811910191371, + 4.649208105083419, + 4.649208105083419, + 3.610811910191371 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.82, + 1.83, + 1.83, + 1.82, + 1.82 + ], + "y": [ + 3.630791894916582, + 3.630791894916582, + 4.6692279407073025, + 4.6692279407073025, + 3.630791894916582 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.83, + 1.84, + 1.84, + 1.83, + 1.83 + ], + "y": [ + 3.6507720592926978, + 3.6507720592926978, + 4.6892475982956325, + 4.6892475982956325, + 3.6507720592926978 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.84, + 1.85, + 1.85, + 1.84, + 1.84 + ], + "y": [ + 3.6707524017043665, + 3.6707524017043665, + 4.709267079449225, + 4.709267079449225, + 3.6707524017043665 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.85, + 1.86, + 1.86, + 1.85, + 1.85 + ], + "y": [ + 3.690732920550774, + 3.690732920550774, + 4.729286385754431, + 4.729286385754431, + 3.690732920550774 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.86, + 1.87, + 1.87, + 1.86, + 1.86 + ], + "y": [ + 3.710713614245567, + 3.710713614245567, + 4.749305518783341, + 4.749305518783341, + 3.710713614245567 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.87, + 1.8800000000000001, + 1.8800000000000001, + 1.87, + 1.87 + ], + "y": [ + 3.730694481216656, + 3.730694481216656, + 4.769324480093857, + 4.769324480093857, + 3.730694481216656 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.8800000000000001, + 1.89, + 1.89, + 1.8800000000000001, + 1.8800000000000001 + ], + "y": [ + 3.750675519906139, + 3.750675519906139, + 4.789343271229846, + 4.789343271229846, + 3.750675519906139 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.89, + 1.9, + 1.9, + 1.89, + 1.89 + ], + "y": [ + 3.7706567287701485, + 3.7706567287701485, + 4.8093618937212534, + 4.8093618937212534, + 3.7706567287701485 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.9, + 1.91, + 1.91, + 1.9, + 1.9 + ], + "y": [ + 3.7906381062787413, + 3.7906381062787413, + 4.829380349084241, + 4.829380349084241, + 3.7906381062787413 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.91, + 1.92, + 1.92, + 1.91, + 1.91 + ], + "y": [ + 3.810619650915753, + 3.810619650915753, + 4.849398638821323, + 4.849398638821323, + 3.810619650915753 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.92, + 1.93, + 1.93, + 1.92, + 1.92 + ], + "y": [ + 3.83060136117867, + 3.83060136117867, + 4.869416764421453, + 4.869416764421453, + 3.83060136117867 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.93, + 1.94, + 1.94, + 1.93, + 1.93 + ], + "y": [ + 3.850583235578538, + 3.850583235578538, + 4.889434727360179, + 4.889434727360179, + 3.850583235578538 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.94, + 1.95, + 1.95, + 1.94, + 1.94 + ], + "y": [ + 3.870565272639812, + 3.870565272639812, + 4.909452529099736, + 4.909452529099736, + 3.870565272639812 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.95, + 1.96, + 1.96, + 1.95, + 1.95 + ], + "y": [ + 3.8905474709002537, + 3.8905474709002537, + 4.929470171089208, + 4.929470171089208, + 3.8905474709002537 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.96, + 1.97, + 1.97, + 1.96, + 1.96 + ], + "y": [ + 3.9105298289107813, + 3.9105298289107813, + 4.949487654764619, + 4.949487654764619, + 3.9105298289107813 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.97, + 1.98, + 1.98, + 1.97, + 1.97 + ], + "y": [ + 3.93051234523537, + 3.93051234523537, + 4.969504981549026, + 4.969504981549026, + 3.93051234523537 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.98, + 1.99, + 1.99, + 1.98, + 1.98 + ], + "y": [ + 3.9504950184509613, + 3.9504950184509613, + 4.989522152852711, + 4.989522152852711, + 3.9504950184509613 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.99, + 2, + 2, + 1.99, + 1.99 + ], + "y": [ + 3.9704778471472753, + 3.9704778471472753, + 5.009539170073221, + 5.009539170073221, + 3.9704778471472753 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2, + 2.01, + 2.01, + 2, + 2 + ], + "y": [ + 3.990460829926765, + 3.990460829926765, + 5.0295560345955295, + 5.0295560345955295, + 3.990460829926765 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.01, + 2.0199999999999996, + 2.0199999999999996, + 2.01, + 2.01 + ], + "y": [ + 4.0104439654044555, + 4.0104439654044555, + 5.0495727477921335, + 5.0495727477921335, + 4.0104439654044555 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0199999999999996, + 2.03, + 2.03, + 2.0199999999999996, + 2.0199999999999996 + ], + "y": [ + 4.030427252207851, + 4.030427252207851, + 5.069589311023144, + 5.069589311023144, + 4.030427252207851 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.03, + 2.0399999999999996, + 2.0399999999999996, + 2.03, + 2.03 + ], + "y": [ + 4.050410688976839, + 4.050410688976839, + 5.08960572563642, + 5.08960572563642, + 4.050410688976839 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0399999999999996, + 2.05, + 2.05, + 2.0399999999999996, + 2.0399999999999996 + ], + "y": [ + 4.070394274363562, + 4.070394274363562, + 5.10962199296771, + 5.10962199296771, + 4.070394274363562 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.05, + 2.0599999999999996, + 2.0599999999999996, + 2.05, + 2.05 + ], + "y": [ + 4.090378007032272, + 4.090378007032272, + 5.129638114340691, + 5.129638114340691, + 4.090378007032272 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0599999999999996, + 2.07, + 2.07, + 2.0599999999999996, + 2.0599999999999996 + ], + "y": [ + 4.11036188565929, + 4.11036188565929, + 5.149654091067126, + 5.149654091067126, + 4.11036188565929 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.07, + 2.0799999999999996, + 2.0799999999999996, + 2.07, + 2.07 + ], + "y": [ + 4.130345908932854, + 4.130345908932854, + 5.169669924446984, + 5.169669924446984, + 4.130345908932854 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0799999999999996, + 2.09, + 2.09, + 2.0799999999999996, + 2.0799999999999996 + ], + "y": [ + 4.150330075552995, + 4.150330075552995, + 5.189685615768503, + 5.189685615768503, + 4.150330075552995 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.09, + 2.0999999999999996, + 2.0999999999999996, + 2.09, + 2.09 + ], + "y": [ + 4.170314384231475, + 4.170314384231475, + 5.20970116630832, + 5.20970116630832, + 4.170314384231475 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0999999999999996, + 2.11, + 2.11, + 2.0999999999999996, + 2.0999999999999996 + ], + "y": [ + 4.190298833691657, + 4.190298833691657, + 5.229716577331591, + 5.229716577331591, + 4.190298833691657 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.11, + 2.1199999999999997, + 2.1199999999999997, + 2.11, + 2.11 + ], + "y": [ + 4.210283422668385, + 4.210283422668385, + 5.249731850092045, + 5.249731850092045, + 4.210283422668385 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1199999999999997, + 2.13, + 2.13, + 2.1199999999999997, + 2.1199999999999997 + ], + "y": [ + 4.23026814990793, + 4.23026814990793, + 5.269746985832146, + 5.269746985832146, + 4.23026814990793 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.13, + 2.1399999999999997, + 2.1399999999999997, + 2.13, + 2.13 + ], + "y": [ + 4.2502530141678285, + 4.2502530141678285, + 5.289761985783146, + 5.289761985783146, + 4.2502530141678285 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1399999999999997, + 2.15, + 2.15, + 2.1399999999999997, + 2.1399999999999997 + ], + "y": [ + 4.270238014216828, + 4.270238014216828, + 5.309776851165243, + 5.309776851165243, + 4.270238014216828 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.15, + 2.1599999999999997, + 2.1599999999999997, + 2.15, + 2.15 + ], + "y": [ + 4.29022314883473, + 4.29022314883473, + 5.329791583187592, + 5.329791583187592, + 4.29022314883473 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1599999999999997, + 2.17, + 2.17, + 2.1599999999999997, + 2.1599999999999997 + ], + "y": [ + 4.31020841681238, + 4.31020841681238, + 5.349806183048509, + 5.349806183048509, + 4.31020841681238 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.17, + 2.1799999999999997, + 2.1799999999999997, + 2.17, + 2.17 + ], + "y": [ + 4.330193816951462, + 4.330193816951462, + 5.3698206519354965, + 5.3698206519354965, + 4.330193816951462 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1799999999999997, + 2.19, + 2.19, + 2.1799999999999997, + 2.1799999999999997 + ], + "y": [ + 4.350179348064474, + 4.350179348064474, + 5.389834991025353, + 5.389834991025353, + 4.350179348064474 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.19, + 2.1999999999999997, + 2.1999999999999997, + 2.19, + 2.19 + ], + "y": [ + 4.370165008974617, + 4.370165008974617, + 5.409849201484295, + 5.409849201484295, + 4.370165008974617 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1999999999999997, + 2.21, + 2.21, + 2.1999999999999997, + 2.1999999999999997 + ], + "y": [ + 4.390150798515673, + 4.390150798515673, + 5.429863284468043, + 5.429863284468043, + 4.390150798515673 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.21, + 2.2199999999999998, + 2.2199999999999998, + 2.21, + 2.21 + ], + "y": [ + 4.410136715531925, + 4.410136715531925, + 5.449877241121887, + 5.449877241121887, + 4.410136715531925 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2199999999999998, + 2.23, + 2.23, + 2.2199999999999998, + 2.2199999999999998 + ], + "y": [ + 4.43012275887808, + 4.43012275887808, + 5.469891072580831, + 5.469891072580831, + 4.43012275887808 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.23, + 2.2399999999999998, + 2.2399999999999998, + 2.23, + 2.23 + ], + "y": [ + 4.450108927419135, + 4.450108927419135, + 5.489904779969648, + 5.489904779969648, + 4.450108927419135 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2399999999999998, + 2.25, + 2.25, + 2.2399999999999998, + 2.2399999999999998 + ], + "y": [ + 4.470095220030317, + 4.470095220030317, + 5.509918364402975, + 5.509918364402975, + 4.470095220030317 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.25, + 2.26, + 2.26, + 2.25, + 2.25 + ], + "y": [ + 4.490081635596989, + 4.490081635596989, + 5.529931826985426, + 5.529931826985426, + 4.490081635596989 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.26, + 2.2699999999999996, + 2.2699999999999996, + 2.26, + 2.26 + ], + "y": [ + 4.510068173014537, + 4.510068173014537, + 5.54994516881165, + 5.54994516881165, + 4.510068173014537 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2699999999999996, + 2.28, + 2.28, + 2.2699999999999996, + 2.2699999999999996 + ], + "y": [ + 4.530054831188313, + 4.530054831188313, + 5.569958390966464, + 5.569958390966464, + 4.530054831188313 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.28, + 2.2899999999999996, + 2.2899999999999996, + 2.28, + 2.28 + ], + "y": [ + 4.550041609033498, + 4.550041609033498, + 5.589971494524921, + 5.589971494524921, + 4.550041609033498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2899999999999996, + 2.3, + 2.3, + 2.2899999999999996, + 2.2899999999999996 + ], + "y": [ + 4.57002850547504, + 4.57002850547504, + 5.609984480552367, + 5.609984480552367, + 4.57002850547504 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3, + 2.3099999999999996, + 2.3099999999999996, + 2.3, + 2.3 + ], + "y": [ + 4.590015519447594, + 4.590015519447594, + 5.629997350104584, + 5.629997350104584, + 4.590015519447594 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3099999999999996, + 2.32, + 2.32, + 2.3099999999999996, + 2.3099999999999996 + ], + "y": [ + 4.6100026498953754, + 4.6100026498953754, + 5.650010104227837, + 5.650010104227837, + 4.6100026498953754 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.32, + 2.3299999999999996, + 2.3299999999999996, + 2.32, + 2.32 + ], + "y": [ + 4.6299898957721215, + 4.6299898957721215, + 5.670022743958972, + 5.670022743958972, + 4.6299898957721215 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3299999999999996, + 2.34, + 2.34, + 2.3299999999999996, + 2.3299999999999996 + ], + "y": [ + 4.6499772560409856, + 4.6499772560409856, + 5.690035270325502, + 5.690035270325502, + 4.6499772560409856 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.34, + 2.3499999999999996, + 2.3499999999999996, + 2.34, + 2.34 + ], + "y": [ + 4.669964729674454, + 4.669964729674454, + 5.710047684345697, + 5.710047684345697, + 4.669964729674454 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3499999999999996, + 2.36, + 2.36, + 2.3499999999999996, + 2.3499999999999996 + ], + "y": [ + 4.689952315654259, + 4.689952315654259, + 5.730059987028655, + 5.730059987028655, + 4.689952315654259 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.36, + 2.3699999999999997, + 2.3699999999999997, + 2.36, + 2.36 + ], + "y": [ + 4.7099400129713, + 4.7099400129713, + 5.750072179374383, + 5.750072179374383, + 4.7099400129713 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3699999999999997, + 2.38, + 2.38, + 2.3699999999999997, + 2.3699999999999997 + ], + "y": [ + 4.729927820625571, + 4.729927820625571, + 5.77008426237391, + 5.77008426237391, + 4.729927820625571 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.38, + 2.3899999999999997, + 2.3899999999999997, + 2.38, + 2.38 + ], + "y": [ + 4.7499157376260435, + 4.7499157376260435, + 5.79009623700933, + 5.79009623700933, + 4.7499157376260435 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3899999999999997, + 2.4, + 2.4, + 2.3899999999999997, + 2.3899999999999997 + ], + "y": [ + 4.769903762990623, + 4.769903762990623, + 5.810108104253894, + 5.810108104253894, + 4.769903762990623 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4, + 2.4099999999999997, + 2.4099999999999997, + 2.4, + 2.4 + ], + "y": [ + 4.789891895746058, + 4.789891895746058, + 5.830119865072101, + 5.830119865072101, + 4.789891895746058 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4099999999999997, + 2.42, + 2.42, + 2.4099999999999997, + 2.4099999999999997 + ], + "y": [ + 4.80988013492785, + 4.80988013492785, + 5.850131520419771, + 5.850131520419771, + 4.80988013492785 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.42, + 2.4299999999999997, + 2.4299999999999997, + 2.42, + 2.42 + ], + "y": [ + 4.829868479580179, + 4.829868479580179, + 5.87014307124411, + 5.87014307124411, + 4.829868479580179 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4299999999999997, + 2.44, + 2.44, + 2.4299999999999997, + 2.4299999999999997 + ], + "y": [ + 4.849856928755839, + 4.849856928755839, + 5.890154518483834, + 5.890154518483834, + 4.849856928755839 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.44, + 2.4499999999999997, + 2.4499999999999997, + 2.44, + 2.44 + ], + "y": [ + 4.869845481516114, + 4.869845481516114, + 5.910165863069153, + 5.910165863069153, + 4.869845481516114 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4499999999999997, + 2.46, + 2.46, + 2.4499999999999997, + 2.4499999999999997 + ], + "y": [ + 4.889834136930794, + 4.889834136930794, + 5.930177105921947, + 5.930177105921947, + 4.889834136930794 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.46, + 2.4699999999999998, + 2.4699999999999998, + 2.46, + 2.46 + ], + "y": [ + 4.909822894077999, + 4.909822894077999, + 5.950188247955787, + 5.950188247955787, + 4.909822894077999 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4699999999999998, + 2.48, + 2.48, + 2.4699999999999998, + 2.4699999999999998 + ], + "y": [ + 4.9298117520441584, + 4.9298117520441584, + 5.97019929007604, + 5.97019929007604, + 4.9298117520441584 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.48, + 2.4899999999999998, + 2.4899999999999998, + 2.48, + 2.48 + ], + "y": [ + 4.949800709923905, + 4.949800709923905, + 5.990210233179907, + 5.990210233179907, + 4.949800709923905 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4899999999999998, + 2.5, + 2.5, + 2.4899999999999998, + 2.4899999999999998 + ], + "y": [ + 4.969789766820037, + 4.969789766820037, + 6.010221078156516, + 6.010221078156516, + 4.969789766820037 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5, + 2.51, + 2.51, + 2.5, + 2.5 + ], + "y": [ + 4.989778921843427, + 4.989778921843427, + 6.030231825886997, + 6.030231825886997, + 4.989778921843427 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.51, + 2.5199999999999996, + 2.5199999999999996, + 2.51, + 2.51 + ], + "y": [ + 5.009768174112946, + 5.009768174112946, + 6.050242477244562, + 6.050242477244562, + 5.009768174112946 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5199999999999996, + 2.53, + 2.53, + 2.5199999999999996, + 2.5199999999999996 + ], + "y": [ + 5.0297575227553795, + 5.0297575227553795, + 6.070253033094558, + 6.070253033094558, + 5.0297575227553795 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.53, + 2.5399999999999996, + 2.5399999999999996, + 2.53, + 2.53 + ], + "y": [ + 5.049746966905382, + 5.049746966905382, + 6.090263494294555, + 6.090263494294555, + 5.049746966905382 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5399999999999996, + 2.55, + 2.55, + 2.5399999999999996, + 2.5399999999999996 + ], + "y": [ + 5.069736505705385, + 5.069736505705385, + 6.110273861694383, + 6.110273861694383, + 5.069736505705385 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.55, + 2.5599999999999996, + 2.5599999999999996, + 2.55, + 2.55 + ], + "y": [ + 5.089726138305556, + 5.089726138305556, + 6.130284136136256, + 6.130284136136256, + 5.089726138305556 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5599999999999996, + 2.57, + 2.57, + 2.5599999999999996, + 2.5599999999999996 + ], + "y": [ + 5.109715863863682, + 5.109715863863682, + 6.1502943184548045, + 6.1502943184548045, + 5.109715863863682 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.57, + 2.5799999999999996, + 2.5799999999999996, + 2.57, + 2.57 + ], + "y": [ + 5.129705681545133, + 5.129705681545133, + 6.1703044094771275, + 6.1703044094771275, + 5.129705681545133 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5799999999999996, + 2.59, + 2.59, + 2.5799999999999996, + 2.5799999999999996 + ], + "y": [ + 5.149695590522809, + 5.149695590522809, + 6.190314410022909, + 6.190314410022909, + 5.149695590522809 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.59, + 2.5999999999999996, + 2.5999999999999996, + 2.59, + 2.59 + ], + "y": [ + 5.169685589977027, + 5.169685589977027, + 6.210324320904448, + 6.210324320904448, + 5.169685589977027 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5999999999999996, + 2.61, + 2.61, + 2.5999999999999996, + 2.5999999999999996 + ], + "y": [ + 5.189675679095487, + 5.189675679095487, + 6.230334142926723, + 6.230334142926723, + 5.189675679095487 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.61, + 2.6199999999999997, + 2.6199999999999997, + 2.61, + 2.61 + ], + "y": [ + 5.209665857073211, + 5.209665857073211, + 6.25034387688752, + 6.25034387688752, + 5.209665857073211 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6199999999999997, + 2.63, + 2.63, + 2.6199999999999997, + 2.6199999999999997 + ], + "y": [ + 5.229656123112413, + 5.229656123112413, + 6.270353523577384, + 6.270353523577384, + 5.229656123112413 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.63, + 2.6399999999999997, + 2.6399999999999997, + 2.63, + 2.63 + ], + "y": [ + 5.249646476422548, + 5.249646476422548, + 6.2903630837797895, + 6.2903630837797895, + 5.249646476422548 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6399999999999997, + 2.65, + 2.65, + 2.6399999999999997, + 2.6399999999999997 + ], + "y": [ + 5.269636916220142, + 5.269636916220142, + 6.310372558271153, + 6.310372558271153, + 5.269636916220142 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.65, + 2.6599999999999997, + 2.6599999999999997, + 2.65, + 2.65 + ], + "y": [ + 5.289627441728777, + 5.289627441728777, + 6.330381947820914, + 6.330381947820914, + 5.289627441728777 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6599999999999997, + 2.67, + 2.67, + 2.6599999999999997, + 2.6599999999999997 + ], + "y": [ + 5.309618052179015, + 5.309618052179015, + 6.3503912531915745, + 6.3503912531915745, + 5.309618052179015 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.67, + 2.6799999999999997, + 2.6799999999999997, + 2.67, + 2.67 + ], + "y": [ + 5.329608746808354, + 5.329608746808354, + 6.370400475138797, + 6.370400475138797, + 5.329608746808354 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6799999999999997, + 2.69, + 2.69, + 2.6799999999999997, + 2.6799999999999997 + ], + "y": [ + 5.349599524861131, + 5.349599524861131, + 6.390409614411454, + 6.390409614411454, + 5.349599524861131 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.69, + 2.6999999999999997, + 2.6999999999999997, + 2.69, + 2.69 + ], + "y": [ + 5.369590385588473, + 5.369590385588473, + 6.410418671751658, + 6.410418671751658, + 5.369590385588473 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6999999999999997, + 2.71, + 2.71, + 2.6999999999999997, + 2.6999999999999997 + ], + "y": [ + 5.389581328248268, + 5.389581328248268, + 6.430427647894854, + 6.430427647894854, + 5.389581328248268 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.71, + 2.7199999999999998, + 2.7199999999999998, + 2.71, + 2.71 + ], + "y": [ + 5.409572352105071, + 5.409572352105071, + 6.45043654356987, + 6.45043654356987, + 5.409572352105071 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7199999999999998, + 2.73, + 2.73, + 2.7199999999999998, + 2.7199999999999998 + ], + "y": [ + 5.429563456430055, + 5.429563456430055, + 6.470445359499003, + 6.470445359499003, + 5.429563456430055 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.73, + 2.7399999999999998, + 2.7399999999999998, + 2.73, + 2.73 + ], + "y": [ + 5.449554640500921, + 5.449554640500921, + 6.490454096398029, + 6.490454096398029, + 5.449554640500921 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7399999999999998, + 2.75, + 2.75, + 2.7399999999999998, + 2.7399999999999998 + ], + "y": [ + 5.469545903601894, + 5.469545903601894, + 6.5104627549763, + 6.5104627549763, + 5.469545903601894 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.75, + 2.76, + 2.76, + 2.75, + 2.75 + ], + "y": [ + 5.489537245023622, + 5.489537245023622, + 6.530471335936788, + 6.530471335936788, + 5.489537245023622 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.76, + 2.7699999999999996, + 2.7699999999999996, + 2.76, + 2.76 + ], + "y": [ + 5.509528664063133, + 5.509528664063133, + 6.550479839976121, + 6.550479839976121, + 5.509528664063133 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7699999999999996, + 2.78, + 2.78, + 2.7699999999999996, + 2.7699999999999996 + ], + "y": [ + 5.529520160023799, + 5.529520160023799, + 6.570488267784722, + 6.570488267784722, + 5.529520160023799 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.78, + 2.7899999999999996, + 2.7899999999999996, + 2.78, + 2.78 + ], + "y": [ + 5.549511732215198, + 5.549511732215198, + 6.590496620046732, + 6.590496620046732, + 5.549511732215198 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7899999999999996, + 2.8, + 2.8, + 2.7899999999999996, + 2.7899999999999996 + ], + "y": [ + 5.569503379953186, + 5.569503379953186, + 6.610504897440194, + 6.610504897440194, + 5.569503379953186 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8, + 2.8099999999999996, + 2.8099999999999996, + 2.8, + 2.8 + ], + "y": [ + 5.589495102559724, + 5.589495102559724, + 6.630513100637025, + 6.630513100637025, + 5.589495102559724 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8099999999999996, + 2.82, + 2.82, + 2.8099999999999996, + 2.8099999999999996 + ], + "y": [ + 5.609486899362892, + 5.609486899362892, + 6.65052123030312, + 6.65052123030312, + 5.609486899362892 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.82, + 2.8299999999999996, + 2.8299999999999996, + 2.82, + 2.82 + ], + "y": [ + 5.629478769696796, + 5.629478769696796, + 6.6705292870983754, + 6.6705292870983754, + 5.629478769696796 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8299999999999996, + 2.84, + 2.84, + 2.8299999999999996, + 2.8299999999999996 + ], + "y": [ + 5.64947071290154, + 5.64947071290154, + 6.690537271676769, + 6.690537271676769, + 5.64947071290154 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.84, + 2.8499999999999996, + 2.8499999999999996, + 2.84, + 2.84 + ], + "y": [ + 5.669462728323145, + 5.669462728323145, + 6.710545184686369, + 6.710545184686369, + 5.669462728323145 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8499999999999996, + 2.86, + 2.86, + 2.8499999999999996, + 2.8499999999999996 + ], + "y": [ + 5.689454815313544, + 5.689454815313544, + 6.730553026769436, + 6.730553026769436, + 5.689454815313544 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.86, + 2.8699999999999997, + 2.8699999999999997, + 2.86, + 2.86 + ], + "y": [ + 5.7094469732304765, + 5.7094469732304765, + 6.75056079856246, + 6.75056079856246, + 5.7094469732304765 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8699999999999997, + 2.88, + 2.88, + 2.8699999999999997, + 2.8699999999999997 + ], + "y": [ + 5.729439201437452, + 5.729439201437452, + 6.770568500696203, + 6.770568500696203, + 5.729439201437452 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.88, + 2.8899999999999997, + 2.8899999999999997, + 2.88, + 2.88 + ], + "y": [ + 5.749431499303708, + 5.749431499303708, + 6.790576133795765, + 6.790576133795765, + 5.749431499303708 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8899999999999997, + 2.9, + 2.9, + 2.8899999999999997, + 2.8899999999999997 + ], + "y": [ + 5.769423866204145, + 5.769423866204145, + 6.810583698480639, + 6.810583698480639, + 5.769423866204145 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9, + 2.9099999999999997, + 2.9099999999999997, + 2.9, + 2.9 + ], + "y": [ + 5.78941630151927, + 5.78941630151927, + 6.830591195364705, + 6.830591195364705, + 5.78941630151927 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9099999999999997, + 2.92, + 2.92, + 2.9099999999999997, + 2.9099999999999997 + ], + "y": [ + 5.809408804635203, + 5.809408804635203, + 6.850598625056355, + 6.850598625056355, + 5.809408804635203 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.92, + 2.9299999999999997, + 2.9299999999999997, + 2.92, + 2.92 + ], + "y": [ + 5.8294013749435525, + 5.8294013749435525, + 6.870605988158529, + 6.870605988158529, + 5.8294013749435525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9299999999999997, + 2.94, + 2.94, + 2.9299999999999997, + 2.9299999999999997 + ], + "y": [ + 5.849394011841378, + 5.849394011841378, + 6.890613285268695, + 6.890613285268695, + 5.849394011841378 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.94, + 2.9499999999999997, + 2.9499999999999997, + 2.94, + 2.94 + ], + "y": [ + 5.869386714731211, + 5.869386714731211, + 6.910620516978997, + 6.910620516978997, + 5.869386714731211 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9499999999999997, + 2.96, + 2.96, + 2.9499999999999997, + 2.9499999999999997 + ], + "y": [ + 5.889379483020908, + 5.889379483020908, + 6.930627683876247, + 6.930627683876247, + 5.889379483020908 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.96, + 2.9699999999999998, + 2.9699999999999998, + 2.96, + 2.96 + ], + "y": [ + 5.909372316123657, + 5.909372316123657, + 6.950634786541972, + 6.950634786541972, + 5.909372316123657 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9699999999999998, + 2.98, + 2.98, + 2.9699999999999998, + 2.9699999999999998 + ], + "y": [ + 5.929365213457931, + 5.929365213457931, + 6.970641825552474, + 6.970641825552474, + 5.929365213457931 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.98, + 2.9899999999999998, + 2.9899999999999998, + 2.98, + 2.98 + ], + "y": [ + 5.949358174447428, + 5.949358174447428, + 6.990648801478875, + 6.990648801478875, + 5.949358174447428 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9899999999999998, + 3, + 3, + 2.9899999999999998, + 2.9899999999999998 + ], + "y": [ + 5.969351198521027, + 5.969351198521027, + 7.0106557148871875, + 7.0106557148871875, + 5.969351198521027 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3, + 3.01, + 3.01, + 3, + 3 + ], + "y": [ + 5.989344285112713, + 5.989344285112713, + 7.030662566338294, + 7.030662566338294, + 5.989344285112713 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.01, + 3.0199999999999996, + 3.0199999999999996, + 3.01, + 3.01 + ], + "y": [ + 6.009337433661606, + 6.009337433661606, + 7.050669356388074, + 7.050669356388074, + 6.009337433661606 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0199999999999996, + 3.03, + 3.03, + 3.0199999999999996, + 3.0199999999999996 + ], + "y": [ + 6.029330643611825, + 6.029330643611825, + 7.070676085587385, + 7.070676085587385, + 6.029330643611825 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.03, + 3.0399999999999996, + 3.0399999999999996, + 3.03, + 3.03 + ], + "y": [ + 6.049323914412513, + 6.049323914412513, + 7.090682754482158, + 7.090682754482158, + 6.049323914412513 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0399999999999996, + 3.05, + 3.05, + 3.0399999999999996, + 3.0399999999999996 + ], + "y": [ + 6.069317245517739, + 6.069317245517739, + 7.110689363613407, + 7.110689363613407, + 6.069317245517739 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.05, + 3.0599999999999996, + 3.0599999999999996, + 3.05, + 3.05 + ], + "y": [ + 6.0893106363864895, + 6.0893106363864895, + 7.1306959135172825, + 7.1306959135172825, + 6.0893106363864895 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0599999999999996, + 3.07, + 3.07, + 3.0599999999999996, + 3.0599999999999996 + ], + "y": [ + 6.109304086482613, + 6.109304086482613, + 7.150702404725121, + 7.150702404725121, + 6.109304086482613 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.07, + 3.0799999999999996, + 3.0799999999999996, + 3.07, + 3.07 + ], + "y": [ + 6.129297595274774, + 6.129297595274774, + 7.170708837763462, + 7.170708837763462, + 6.129297595274774 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0799999999999996, + 3.09, + 3.09, + 3.0799999999999996, + 3.0799999999999996 + ], + "y": [ + 6.149291162236432, + 6.149291162236432, + 7.190715213154166, + 7.190715213154166, + 6.149291162236432 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.09, + 3.0999999999999996, + 3.0999999999999996, + 3.09, + 3.09 + ], + "y": [ + 6.169284786845727, + 6.169284786845727, + 7.210721531414344, + 7.210721531414344, + 6.169284786845727 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0999999999999996, + 3.11, + 3.11, + 3.0999999999999996, + 3.0999999999999996 + ], + "y": [ + 6.189278468585548, + 6.189278468585548, + 7.2307277930565075, + 7.2307277930565075, + 6.189278468585548 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.11, + 3.1199999999999997, + 3.1199999999999997, + 3.11, + 3.11 + ], + "y": [ + 6.209272206943384, + 6.209272206943384, + 7.250733998588523, + 7.250733998588523, + 6.209272206943384 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1199999999999997, + 3.13, + 3.13, + 3.1199999999999997, + 3.1199999999999997 + ], + "y": [ + 6.229266001411367, + 6.229266001411367, + 7.2707401485137275, + 7.2707401485137275, + 6.229266001411367 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.13, + 3.1399999999999997, + 3.1399999999999997, + 3.13, + 3.13 + ], + "y": [ + 6.249259851486162, + 6.249259851486162, + 7.290746243330911, + 7.290746243330911, + 6.249259851486162 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1399999999999997, + 3.15, + 3.15, + 3.1399999999999997, + 3.1399999999999997 + ], + "y": [ + 6.269253756668977, + 6.269253756668977, + 7.310752283534416, + 7.310752283534416, + 6.269253756668977 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.15, + 3.1599999999999997, + 3.1599999999999997, + 3.15, + 3.15 + ], + "y": [ + 6.289247716465471, + 6.289247716465471, + 7.33075826961411, + 7.33075826961411, + 6.289247716465471 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1599999999999997, + 3.17, + 3.17, + 3.1599999999999997, + 3.1599999999999997 + ], + "y": [ + 6.309241730385777, + 6.309241730385777, + 7.35076420205548, + 7.35076420205548, + 6.309241730385777 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.17, + 3.1799999999999997, + 3.1799999999999997, + 3.17, + 3.17 + ], + "y": [ + 6.329235797944406, + 6.329235797944406, + 7.370770081339643, + 7.370770081339643, + 6.329235797944406 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1799999999999997, + 3.19, + 3.19, + 3.1799999999999997, + 3.1799999999999997 + ], + "y": [ + 6.349229918660242, + 6.349229918660242, + 7.3907759079433735, + 7.3907759079433735, + 6.349229918660242 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.19, + 3.1999999999999997, + 3.1999999999999997, + 3.19, + 3.19 + ], + "y": [ + 6.369224092056511, + 6.369224092056511, + 7.410781682339206, + 7.410781682339206, + 6.369224092056511 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1999999999999997, + 3.21, + 3.21, + 3.1999999999999997, + 3.1999999999999997 + ], + "y": [ + 6.389218317660678, + 6.389218317660678, + 7.430787404995391, + 7.430787404995391, + 6.389218317660678 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.21, + 3.2199999999999998, + 3.2199999999999998, + 3.21, + 3.21 + ], + "y": [ + 6.409212595004492, + 6.409212595004492, + 7.45079307637598, + 7.45079307637598, + 6.409212595004492 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2199999999999998, + 3.23, + 3.23, + 3.2199999999999998, + 3.2199999999999998 + ], + "y": [ + 6.429206923623902, + 6.429206923623902, + 7.47079869694088, + 7.47079869694088, + 6.429206923623902 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.23, + 3.2399999999999998, + 3.2399999999999998, + 3.23, + 3.23 + ], + "y": [ + 6.4492013030590005, + 6.4492013030590005, + 7.490804267145858, + 7.490804267145858, + 6.4492013030590005 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2399999999999998, + 3.25, + 3.25, + 3.2399999999999998, + 3.2399999999999998 + ], + "y": [ + 6.469195732854022, + 6.469195732854022, + 7.510809787442572, + 7.510809787442572, + 6.469195732854022 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.25, + 3.26, + 3.26, + 3.25, + 3.25 + ], + "y": [ + 6.4891902125573075, + 6.4891902125573075, + 7.530815258278622, + 7.530815258278622, + 6.4891902125573075 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.26, + 3.2699999999999996, + 3.2699999999999996, + 3.26, + 3.26 + ], + "y": [ + 6.509184741721256, + 6.509184741721256, + 7.550820680097596, + 7.550820680097596, + 6.509184741721256 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2699999999999996, + 3.28, + 3.28, + 3.2699999999999996, + 3.2699999999999996 + ], + "y": [ + 6.529179319902282, + 6.529179319902282, + 7.570826053339121, + 7.570826053339121, + 6.529179319902282 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.28, + 3.2899999999999996, + 3.2899999999999996, + 3.28, + 3.28 + ], + "y": [ + 6.549173946660756, + 6.549173946660756, + 7.590831378438825, + 7.590831378438825, + 6.549173946660756 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2899999999999996, + 3.3, + 3.3, + 3.2899999999999996, + 3.2899999999999996 + ], + "y": [ + 6.569168621561051, + 6.569168621561051, + 7.61083665582846, + 7.61083665582846, + 6.569168621561051 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3, + 3.3099999999999996, + 3.3099999999999996, + 3.3, + 3.3 + ], + "y": [ + 6.589163344171415, + 6.589163344171415, + 7.630841885935898, + 7.630841885935898, + 6.589163344171415 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3099999999999996, + 3.32, + 3.32, + 3.3099999999999996, + 3.3099999999999996 + ], + "y": [ + 6.609158114063976, + 6.609158114063976, + 7.650847069185158, + 7.650847069185158, + 6.609158114063976 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.32, + 3.3299999999999996, + 3.3299999999999996, + 3.32, + 3.32 + ], + "y": [ + 6.6291529308147155, + 6.6291529308147155, + 7.6708522059964555, + 7.6708522059964555, + 6.6291529308147155 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3299999999999996, + 3.34, + 3.34, + 3.3299999999999996, + 3.3299999999999996 + ], + "y": [ + 6.649147794003417, + 6.649147794003417, + 7.690857296786227, + 7.690857296786227, + 6.649147794003417 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.34, + 3.3499999999999996, + 3.3499999999999996, + 3.34, + 3.34 + ], + "y": [ + 6.6691427032136446, + 6.6691427032136446, + 7.710862341967172, + 7.710862341967172, + 6.6691427032136446 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3499999999999996, + 3.36, + 3.36, + 3.3499999999999996, + 3.3499999999999996 + ], + "y": [ + 6.689137658032699, + 6.689137658032699, + 7.730867341948294, + 7.730867341948294, + 6.689137658032699 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.36, + 3.3699999999999997, + 3.3699999999999997, + 3.36, + 3.36 + ], + "y": [ + 6.709132658051576, + 6.709132658051576, + 7.750872297134906, + 7.750872297134906, + 6.709132658051576 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3699999999999997, + 3.38, + 3.38, + 3.3699999999999997, + 3.3699999999999997 + ], + "y": [ + 6.729127702864963, + 6.729127702864963, + 7.7708772079286925, + 7.7708772079286925, + 6.729127702864963 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.38, + 3.3899999999999997, + 3.3899999999999997, + 3.38, + 3.38 + ], + "y": [ + 6.749122792071176, + 6.749122792071176, + 7.790882074727729, + 7.790882074727729, + 6.749122792071176 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3899999999999997, + 3.4, + 3.4, + 3.3899999999999997, + 3.3899999999999997 + ], + "y": [ + 6.7691179252721385, + 6.7691179252721385, + 7.810886897926503, + 7.810886897926503, + 6.7691179252721385 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4, + 3.4099999999999997, + 3.4099999999999997, + 3.4, + 3.4 + ], + "y": [ + 6.7891131020733635, + 6.7891131020733635, + 7.830891677915973, + 7.830891677915973, + 6.7891131020733635 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4099999999999997, + 3.42, + 3.42, + 3.4099999999999997, + 3.4099999999999997 + ], + "y": [ + 6.809108322083892, + 6.809108322083892, + 7.8508964150835965, + 7.8508964150835965, + 6.809108322083892 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.42, + 3.4299999999999997, + 3.4299999999999997, + 3.42, + 3.42 + ], + "y": [ + 6.829103584916268, + 6.829103584916268, + 7.870901109813335, + 7.870901109813335, + 6.829103584916268 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4299999999999997, + 3.44, + 3.44, + 3.4299999999999997, + 3.4299999999999997 + ], + "y": [ + 6.849098890186529, + 6.849098890186529, + 7.890905762485708, + 7.890905762485708, + 6.849098890186529 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.44, + 3.4499999999999997, + 3.4499999999999997, + 3.44, + 3.44 + ], + "y": [ + 6.869094237514155, + 6.869094237514155, + 7.910910373477815, + 7.910910373477815, + 6.869094237514155 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4499999999999997, + 3.46, + 3.46, + 3.4499999999999997, + 3.4499999999999997 + ], + "y": [ + 6.889089626522047, + 6.889089626522047, + 7.930914943163376, + 7.930914943163376, + 6.889089626522047 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.46, + 3.4699999999999998, + 3.4699999999999998, + 3.46, + 3.46 + ], + "y": [ + 6.909085056836485, + 6.909085056836485, + 7.95091947191274, + 7.95091947191274, + 6.909085056836485 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4699999999999998, + 3.48, + 3.48, + 3.4699999999999998, + 3.4699999999999998 + ], + "y": [ + 6.929080528087121, + 6.929080528087121, + 7.970923960092961, + 7.970923960092961, + 6.929080528087121 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.48, + 3.4899999999999998, + 3.4899999999999998, + 3.48, + 3.48 + ], + "y": [ + 6.949076039906899, + 6.949076039906899, + 7.990928408067766, + 7.990928408067766, + 6.949076039906899 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4899999999999998, + 3.5, + 3.5, + 3.4899999999999998, + 3.4899999999999998 + ], + "y": [ + 6.969071591932093, + 6.969071591932093, + 8.010932816197652, + 8.010932816197652, + 6.969071591932093 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5, + 3.51, + 3.51, + 3.5, + 3.5 + ], + "y": [ + 6.989067183802205, + 6.989067183802205, + 8.030937184839832, + 8.030937184839832, + 6.989067183802205 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.51, + 3.5199999999999996, + 3.5199999999999996, + 3.51, + 3.51 + ], + "y": [ + 7.009062815160025, + 7.009062815160025, + 8.050941514348342, + 8.050941514348342, + 7.009062815160025 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5199999999999996, + 3.53, + 3.53, + 3.5199999999999996, + 3.5199999999999996 + ], + "y": [ + 7.029058485651515, + 7.029058485651515, + 8.070945805074043, + 8.070945805074043, + 7.029058485651515 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.53, + 3.5399999999999996, + 3.5399999999999996, + 3.53, + 3.53 + ], + "y": [ + 7.049054194925812, + 7.049054194925812, + 8.090950057364626, + 8.090950057364626, + 7.049054194925812 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5399999999999996, + 3.55, + 3.55, + 3.5399999999999996, + 3.5399999999999996 + ], + "y": [ + 7.069049942635228, + 7.069049942635228, + 8.110954271564689, + 8.110954271564689, + 7.069049942635228 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.55, + 3.5599999999999996, + 3.5599999999999996, + 3.55, + 3.55 + ], + "y": [ + 7.089045728435165, + 7.089045728435165, + 8.130958448015708, + 8.130958448015708, + 7.089045728435165 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5599999999999996, + 3.57, + 3.57, + 3.5599999999999996, + 3.5599999999999996 + ], + "y": [ + 7.109041551984144, + 7.109041551984144, + 8.150962587056112, + 8.150962587056112, + 7.109041551984144 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.57, + 3.5799999999999996, + 3.5799999999999996, + 3.57, + 3.57 + ], + "y": [ + 7.12903741294374, + 7.12903741294374, + 8.17096668902128, + 8.17096668902128, + 7.12903741294374 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5799999999999996, + 3.59, + 3.59, + 3.5799999999999996, + 3.5799999999999996 + ], + "y": [ + 7.14903331097857, + 7.14903331097857, + 8.190970754243597, + 8.190970754243597, + 7.14903331097857 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.59, + 3.5999999999999996, + 3.5999999999999996, + 3.59, + 3.59 + ], + "y": [ + 7.169029245756254, + 7.169029245756254, + 8.21097478305244, + 8.21097478305244, + 7.169029245756254 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5999999999999996, + 3.61, + 3.61, + 3.5999999999999996, + 3.5999999999999996 + ], + "y": [ + 7.189025216947409, + 7.189025216947409, + 8.230978775774254, + 8.230978775774254, + 7.189025216947409 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.61, + 3.6199999999999997, + 3.6199999999999997, + 3.61, + 3.61 + ], + "y": [ + 7.209021224225594, + 7.209021224225594, + 8.250982732732517, + 8.250982732732517, + 7.209021224225594 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6199999999999997, + 3.63, + 3.63, + 3.6199999999999997, + 3.6199999999999997 + ], + "y": [ + 7.229017267267332, + 7.229017267267332, + 8.270986654247846, + 8.270986654247846, + 7.229017267267332 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.63, + 3.6399999999999997, + 3.6399999999999997, + 3.63, + 3.63 + ], + "y": [ + 7.249013345752001, + 7.249013345752001, + 8.29099054063798, + 8.29099054063798, + 7.249013345752001 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6399999999999997, + 3.65, + 3.65, + 3.6399999999999997, + 3.6399999999999997 + ], + "y": [ + 7.269009459361866, + 7.269009459361866, + 8.310994392217765, + 8.310994392217765, + 7.269009459361866 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.65, + 3.6599999999999997, + 3.6599999999999997, + 3.65, + 3.65 + ], + "y": [ + 7.28900560778208, + 7.28900560778208, + 8.330998209299251, + 8.330998209299251, + 7.28900560778208 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6599999999999997, + 3.67, + 3.67, + 3.6599999999999997, + 3.6599999999999997 + ], + "y": [ + 7.309001790700593, + 7.309001790700593, + 8.351001992191675, + 8.351001992191675, + 7.309001790700593 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.67, + 3.6799999999999997, + 3.6799999999999997, + 3.67, + 3.67 + ], + "y": [ + 7.328998007808169, + 7.328998007808169, + 8.371005741201529, + 8.371005741201529, + 7.328998007808169 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6799999999999997, + 3.69, + 3.69, + 3.6799999999999997, + 3.6799999999999997 + ], + "y": [ + 7.348994258798315, + 7.348994258798315, + 8.391009456632506, + 8.391009456632506, + 7.348994258798315 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.69, + 3.6999999999999997, + 3.6999999999999997, + 3.69, + 3.69 + ], + "y": [ + 7.368990543367334, + 7.368990543367334, + 8.41101313878561, + 8.41101313878561, + 7.368990543367334 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6999999999999997, + 3.71, + 3.71, + 3.6999999999999997, + 3.6999999999999997 + ], + "y": [ + 7.3889868612142315, + 7.3889868612142315, + 8.431016787959134, + 8.431016787959134, + 7.3889868612142315 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.71, + 3.7199999999999998, + 3.7199999999999998, + 3.71, + 3.71 + ], + "y": [ + 7.408983212040706, + 7.408983212040706, + 8.451020404448673, + 8.451020404448673, + 7.408983212040706 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7199999999999998, + 3.73, + 3.73, + 3.7199999999999998, + 3.7199999999999998 + ], + "y": [ + 7.428979595551165, + 7.428979595551165, + 8.471023988547215, + 8.471023988547215, + 7.428979595551165 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.73, + 3.7399999999999998, + 3.7399999999999998, + 3.73, + 3.73 + ], + "y": [ + 7.448976011452626, + 7.448976011452626, + 8.491027540545065, + 8.491027540545065, + 7.448976011452626 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7399999999999998, + 3.75, + 3.75, + 3.7399999999999998, + 3.7399999999999998 + ], + "y": [ + 7.468972459454774, + 7.468972459454774, + 8.511031060729954, + 8.511031060729954, + 7.468972459454774 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.75, + 3.76, + 3.76, + 3.75, + 3.75 + ], + "y": [ + 7.488968939269884, + 7.488968939269884, + 8.531034549387025, + 8.531034549387025, + 7.488968939269884 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.76, + 3.7699999999999996, + 3.7699999999999996, + 3.76, + 3.76 + ], + "y": [ + 7.508965450612817, + 7.508965450612817, + 8.551038006798853, + 8.551038006798853, + 7.508965450612817 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7699999999999996, + 3.78, + 3.78, + 3.7699999999999996, + 3.7699999999999996 + ], + "y": [ + 7.528961993200992, + 7.528961993200992, + 8.571041433245531, + 8.571041433245531, + 7.528961993200992 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.78, + 3.7899999999999996, + 3.7899999999999996, + 3.78, + 3.78 + ], + "y": [ + 7.548958566754317, + 7.548958566754317, + 8.591044829004552, + 8.591044829004552, + 7.548958566754317 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7899999999999996, + 3.8, + 3.8, + 3.7899999999999996, + 3.7899999999999996 + ], + "y": [ + 7.568955170995299, + 7.568955170995299, + 8.611048194350966, + 8.611048194350966, + 7.568955170995299 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8, + 3.8099999999999996, + 3.8099999999999996, + 3.8, + 3.8 + ], + "y": [ + 7.588951805648888, + 7.588951805648888, + 8.631051529557359, + 8.631051529557359, + 7.588951805648888 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8099999999999996, + 3.82, + 3.82, + 3.8099999999999996, + 3.8099999999999996 + ], + "y": [ + 7.608948470442498, + 7.608948470442498, + 8.651054834893861, + 8.651054834893861, + 7.608948470442498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.82, + 3.8299999999999996, + 3.8299999999999996, + 3.82, + 3.82 + ], + "y": [ + 7.628945165105997, + 7.628945165105997, + 8.67105811062817, + 8.67105811062817, + 7.628945165105997 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8299999999999996, + 3.84, + 3.84, + 3.8299999999999996, + 3.8299999999999996 + ], + "y": [ + 7.6489418893716925, + 7.6489418893716925, + 8.691061357025603, + 8.691061357025603, + 7.6489418893716925 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.84, + 3.8499999999999996, + 3.8499999999999996, + 3.84, + 3.84 + ], + "y": [ + 7.668938642974261, + 7.668938642974261, + 8.711064574349086, + 8.711064574349086, + 7.668938642974261 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8499999999999996, + 3.86, + 3.86, + 3.8499999999999996, + 3.8499999999999996 + ], + "y": [ + 7.688935425650781, + 7.688935425650781, + 8.731067762859185, + 8.731067762859185, + 7.688935425650781 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.86, + 3.8699999999999997, + 3.8699999999999997, + 3.86, + 3.86 + ], + "y": [ + 7.708932237140685, + 7.708932237140685, + 8.751070922814103, + 8.751070922814103, + 7.708932237140685 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8699999999999997, + 3.88, + 3.88, + 3.8699999999999997, + 3.8699999999999997 + ], + "y": [ + 7.72892907718577, + 7.72892907718577, + 8.771074054469787, + 8.771074054469787, + 7.72892907718577 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.88, + 3.8899999999999997, + 3.8899999999999997, + 3.88, + 3.88 + ], + "y": [ + 7.748925945530089, + 7.748925945530089, + 8.791077158079853, + 8.791077158079853, + 7.748925945530089 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8899999999999997, + 3.9, + 3.9, + 3.8899999999999997, + 3.8899999999999997 + ], + "y": [ + 7.768922841920026, + 7.768922841920026, + 8.811080233895607, + 8.811080233895607, + 7.768922841920026 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9, + 3.9099999999999997, + 3.9099999999999997, + 3.9, + 3.9 + ], + "y": [ + 7.788919766104273, + 7.788919766104273, + 8.831083282166125, + 8.831083282166125, + 7.788919766104273 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9099999999999997, + 3.92, + 3.92, + 3.9099999999999997, + 3.9099999999999997 + ], + "y": [ + 7.808916717833759, + 7.808916717833759, + 8.851086303138317, + 8.851086303138317, + 7.808916717833759 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.92, + 3.9299999999999997, + 3.9299999999999997, + 3.92, + 3.92 + ], + "y": [ + 7.828913696861569, + 7.828913696861569, + 8.871089297056757, + 8.871089297056757, + 7.828913696861569 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9299999999999997, + 3.94, + 3.94, + 3.9299999999999997, + 3.9299999999999997 + ], + "y": [ + 7.848910702943131, + 7.848910702943131, + 8.891092264163909, + 8.891092264163909, + 7.848910702943131 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.94, + 3.9499999999999997, + 3.9499999999999997, + 3.94, + 3.94 + ], + "y": [ + 7.868907735835983, + 7.868907735835983, + 8.911095204700013, + 8.911095204700013, + 7.868907735835983 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9499999999999997, + 3.96, + 3.96, + 3.9499999999999997, + 3.9499999999999997 + ], + "y": [ + 7.888904795299881, + 7.888904795299881, + 8.931098118903233, + 8.931098118903233, + 7.888904795299881 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.96, + 3.9699999999999998, + 3.9699999999999998, + 3.96, + 3.96 + ], + "y": [ + 7.908901881096663, + 7.908901881096663, + 8.951101007009523, + 8.951101007009523, + 7.908901881096663 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9699999999999998, + 3.98, + 3.98, + 3.9699999999999998, + 3.9699999999999998 + ], + "y": [ + 7.928898992990377, + 7.928898992990377, + 8.97110386925271, + 8.97110386925271, + 7.928898992990377 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.98, + 3.9899999999999998, + 3.9899999999999998, + 3.98, + 3.98 + ], + "y": [ + 7.948896130747191, + 7.948896130747191, + 8.991106705864574, + 8.991106705864574, + 7.948896130747191 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9899999999999998, + 4, + 4, + 3.9899999999999998, + 3.9899999999999998 + ], + "y": [ + 7.96889329413533, + 7.96889329413533, + 9.011109517074816, + 9.011109517074816, + 7.96889329413533 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4, + 4.01, + 4.01, + 4, + 4 + ], + "y": [ + 7.988890482925091, + 7.988890482925091, + 9.031112303111033, + 9.031112303111033, + 7.988890482925091 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.01, + 4.02, + 4.02, + 4.01, + 4.01 + ], + "y": [ + 8.008887696888877, + 8.008887696888877, + 9.051115064198799, + 9.051115064198799, + 8.008887696888877 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.02, + 4.029999999999999, + 4.029999999999999, + 4.02, + 4.02 + ], + "y": [ + 8.028884935801115, + 8.028884935801115, + 9.071117800561675, + 9.071117800561675, + 8.028884935801115 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.029999999999999, + 4.04, + 4.04, + 4.029999999999999, + 4.029999999999999 + ], + "y": [ + 8.048882199438241, + 8.048882199438241, + 9.091120512421206, + 9.091120512421206, + 8.048882199438241 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.04, + 4.05, + 4.05, + 4.04, + 4.04 + ], + "y": [ + 8.068879487578712, + 8.068879487578712, + 9.11112319999699, + 9.11112319999699, + 8.068879487578712 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.05, + 4.06, + 4.06, + 4.05, + 4.05 + ], + "y": [ + 8.08887680000293, + 8.08887680000293, + 9.131125863506535, + 9.131125863506535, + 8.08887680000293 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.06, + 4.069999999999999, + 4.069999999999999, + 4.06, + 4.06 + ], + "y": [ + 8.10887413649339, + 8.10887413649339, + 9.15112850316557, + 9.15112850316557, + 8.10887413649339 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.069999999999999, + 4.08, + 4.08, + 4.069999999999999, + 4.069999999999999 + ], + "y": [ + 8.128871496834357, + 8.128871496834357, + 9.171131119187761, + 9.171131119187761, + 8.128871496834357 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.08, + 4.09, + 4.09, + 4.08, + 4.08 + ], + "y": [ + 8.148868880812168, + 8.148868880812168, + 9.191133711784902, + 9.191133711784902, + 8.148868880812168 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.09, + 4.1, + 4.1, + 4.09, + 4.09 + ], + "y": [ + 8.16886628821503, + 8.16886628821503, + 9.211136281166866, + 9.211136281166866, + 8.16886628821503 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1, + 4.109999999999999, + 4.109999999999999, + 4.1, + 4.1 + ], + "y": [ + 8.188863718833069, + 8.188863718833069, + 9.231138827541688, + 9.231138827541688, + 8.188863718833069 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.109999999999999, + 4.12, + 4.12, + 4.109999999999999, + 4.109999999999999 + ], + "y": [ + 8.20886117245825, + 8.20886117245825, + 9.251141351115491, + 9.251141351115491, + 8.20886117245825 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.12, + 4.13, + 4.13, + 4.12, + 4.12 + ], + "y": [ + 8.228858648884449, + 8.228858648884449, + 9.27114385209257, + 9.27114385209257, + 8.228858648884449 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.13, + 4.14, + 4.14, + 4.13, + 4.13 + ], + "y": [ + 8.248856147907373, + 8.248856147907373, + 9.291146330675417, + 9.291146330675417, + 8.248856147907373 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.14, + 4.1499999999999995, + 4.1499999999999995, + 4.14, + 4.14 + ], + "y": [ + 8.268853669324528, + 8.268853669324528, + 9.31114878706464, + 9.31114878706464, + 8.268853669324528 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1499999999999995, + 4.16, + 4.16, + 4.1499999999999995, + 4.1499999999999995 + ], + "y": [ + 8.288851212935308, + 8.288851212935308, + 9.331151221459091, + 9.331151221459091, + 8.288851212935308 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.16, + 4.17, + 4.17, + 4.16, + 4.16 + ], + "y": [ + 8.30884877854086, + 8.30884877854086, + 9.351153634055851, + 9.351153634055851, + 8.30884877854086 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.17, + 4.18, + 4.18, + 4.17, + 4.17 + ], + "y": [ + 8.328846365944102, + 8.328846365944102, + 9.371156025050183, + 9.371156025050183, + 8.328846365944102 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.18, + 4.1899999999999995, + 4.1899999999999995, + 4.18, + 4.18 + ], + "y": [ + 8.348843974949773, + 8.348843974949773, + 9.391158394635669, + 9.391158394635669, + 8.348843974949773 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1899999999999995, + 4.2, + 4.2, + 4.1899999999999995, + 4.1899999999999995 + ], + "y": [ + 8.36884160536429, + 8.36884160536429, + 9.41116074300409, + 9.41116074300409, + 8.36884160536429 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.2, + 4.21, + 4.21, + 4.2, + 4.2 + ], + "y": [ + 8.388839256995873, + 8.388839256995873, + 9.431163070345534, + 9.431163070345534, + 8.388839256995873 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.21, + 4.22, + 4.22, + 4.21, + 4.21 + ], + "y": [ + 8.40883692965443, + 8.40883692965443, + 9.451165376848405, + 9.451165376848405, + 8.40883692965443 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.22, + 4.2299999999999995, + 4.2299999999999995, + 4.22, + 4.22 + ], + "y": [ + 8.428834623151563, + 8.428834623151563, + 9.471167662699385, + 9.471167662699385, + 8.428834623151563 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.2299999999999995, + 4.24, + 4.24, + 4.2299999999999995, + 4.2299999999999995 + ], + "y": [ + 8.448832337300585, + 8.448832337300585, + 9.491169928083464, + 9.491169928083464, + 8.448832337300585 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.24, + 4.25, + 4.25, + 4.24, + 4.24 + ], + "y": [ + 8.468830071916509, + 8.468830071916509, + 9.511172173184068, + 9.511172173184068, + 8.468830071916509 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.25, + 4.26, + 4.26, + 4.25, + 4.25 + ], + "y": [ + 8.488827826815907, + 8.488827826815907, + 9.53117439818284, + 9.53117439818284, + 8.488827826815907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.26, + 4.27, + 4.27, + 4.26, + 4.26 + ], + "y": [ + 8.508825601817138, + 8.508825601817138, + 9.551176603259913, + 9.551176603259913, + 8.508825601817138 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.27, + 4.279999999999999, + 4.279999999999999, + 4.27, + 4.27 + ], + "y": [ + 8.528823396740068, + 8.528823396740068, + 9.571178788593725, + 9.571178788593725, + 8.528823396740068 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.279999999999999, + 4.29, + 4.29, + 4.279999999999999, + 4.279999999999999 + ], + "y": [ + 8.548821211406258, + 8.548821211406258, + 9.591180954361192, + 9.591180954361192, + 8.548821211406258 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.29, + 4.3, + 4.3, + 4.29, + 4.29 + ], + "y": [ + 8.568819045638794, + 8.568819045638794, + 9.611183100737573, + 9.611183100737573, + 8.568819045638794 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.3, + 4.31, + 4.31, + 4.3, + 4.3 + ], + "y": [ + 8.588816899262415, + 8.588816899262415, + 9.631185227896593, + 9.631185227896593, + 8.588816899262415 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.31, + 4.319999999999999, + 4.319999999999999, + 4.31, + 4.31 + ], + "y": [ + 8.608814772103399, + 8.608814772103399, + 9.651187336010388, + 9.651187336010388, + 8.608814772103399 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.319999999999999, + 4.33, + 4.33, + 4.319999999999999, + 4.319999999999999 + ], + "y": [ + 8.628812663989606, + 8.628812663989606, + 9.671189425249596, + 9.671189425249596, + 8.628812663989606 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.33, + 4.34, + 4.34, + 4.33, + 4.33 + ], + "y": [ + 8.648810574750401, + 8.648810574750401, + 9.691191495783274, + 9.691191495783274, + 8.648810574750401 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.34, + 4.35, + 4.35, + 4.34, + 4.34 + ], + "y": [ + 8.668808504216726, + 8.668808504216726, + 9.71119354777902, + 9.71119354777902, + 8.668808504216726 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.35, + 4.359999999999999, + 4.359999999999999, + 4.35, + 4.35 + ], + "y": [ + 8.688806452220982, + 8.688806452220982, + 9.731195581402847, + 9.731195581402847, + 8.688806452220982 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.359999999999999, + 4.37, + 4.37, + 4.359999999999999, + 4.359999999999999 + ], + "y": [ + 8.708804418597158, + 8.708804418597158, + 9.751197596819377, + 9.751197596819377, + 8.708804418597158 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.37, + 4.38, + 4.38, + 4.37, + 4.37 + ], + "y": [ + 8.72880240318063, + 8.72880240318063, + 9.771199594191712, + 9.771199594191712, + 8.72880240318063 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.38, + 4.39, + 4.39, + 4.38, + 4.38 + ], + "y": [ + 8.748800405808298, + 8.748800405808298, + 9.791201573681468, + 9.791201573681468, + 8.748800405808298 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.39, + 4.3999999999999995, + 4.3999999999999995, + 4.39, + 4.39 + ], + "y": [ + 8.768798426318545, + 8.768798426318545, + 9.81120353544883, + 9.81120353544883, + 8.768798426318545 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.3999999999999995, + 4.41, + 4.41, + 4.3999999999999995, + 4.3999999999999995 + ], + "y": [ + 8.788796464551186, + 8.788796464551186, + 9.831205479652533, + 9.831205479652533, + 8.788796464551186 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.41, + 4.42, + 4.42, + 4.41, + 4.41 + ], + "y": [ + 8.808794520347485, + 8.808794520347485, + 9.85120740644997, + 9.85120740644997, + 8.808794520347485 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.42, + 4.43, + 4.43, + 4.42, + 4.42 + ], + "y": [ + 8.828792593550052, + 8.828792593550052, + 9.871209315997003, + 9.871209315997003, + 8.828792593550052 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.43, + 4.4399999999999995, + 4.4399999999999995, + 4.43, + 4.43 + ], + "y": [ + 8.84879068400302, + 8.84879068400302, + 9.891211208448158, + 9.891211208448158, + 8.84879068400302 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.4399999999999995, + 4.45, + 4.45, + 4.4399999999999995, + 4.4399999999999995 + ], + "y": [ + 8.868788791551868, + 8.868788791551868, + 9.9112130839566, + 9.9112130839566, + 8.868788791551868 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.45, + 4.46, + 4.46, + 4.45, + 4.45 + ], + "y": [ + 8.88878691604343, + 8.88878691604343, + 9.931214942674092, + 9.931214942674092, + 8.88878691604343 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.46, + 4.47, + 4.47, + 4.46, + 4.46 + ], + "y": [ + 8.90878505732594, + 8.90878505732594, + 9.951216784751004, + 9.951216784751004, + 8.90878505732594 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.47, + 4.4799999999999995, + 4.4799999999999995, + 4.47, + 4.47 + ], + "y": [ + 8.92878321524903, + 8.92878321524903, + 9.971218610336399, + 9.971218610336399, + 8.92878321524903 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.4799999999999995, + 4.49, + 4.49, + 4.4799999999999995, + 4.4799999999999995 + ], + "y": [ + 8.948781389663639, + 8.948781389663639, + 9.991220419578017, + 9.991220419578017, + 8.948781389663639 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.49, + 4.5, + 4.5, + 4.49, + 4.49 + ], + "y": [ + 8.968779580422023, + 8.968779580422023, + 10.011222212622219, + 10.011222212622219, + 8.968779580422023 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.5, + 4.51, + 4.51, + 4.5, + 4.5 + ], + "y": [ + 8.988777787377824, + 8.988777787377824, + 10.031223989614103, + 10.031223989614103, + 8.988777787377824 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.51, + 4.52, + 4.52, + 4.51, + 4.51 + ], + "y": [ + 9.008776010385942, + 9.008776010385942, + 10.051225750697464, + 10.051225750697464, + 9.008776010385942 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.52, + 4.529999999999999, + 4.529999999999999, + 4.52, + 4.52 + ], + "y": [ + 9.028774249302584, + 9.028774249302584, + 10.071227496014746, + 10.071227496014746, + 9.028774249302584 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.529999999999999, + 4.54, + 4.54, + 4.529999999999999, + 4.529999999999999 + ], + "y": [ + 9.048772503985305, + 9.048772503985305, + 10.091229225707224, + 10.091229225707224, + 9.048772503985305 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.54, + 4.55, + 4.55, + 4.54, + 4.54 + ], + "y": [ + 9.06877077429283, + 9.06877077429283, + 10.111230939914806, + 10.111230939914806, + 9.06877077429283 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.55, + 4.56, + 4.56, + 4.55, + 4.55 + ], + "y": [ + 9.08876906008525, + 9.08876906008525, + 10.131232638776194, + 10.131232638776194, + 9.08876906008525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.56, + 4.569999999999999, + 4.569999999999999, + 4.56, + 4.56 + ], + "y": [ + 9.108767361223865, + 9.108767361223865, + 10.151234322428827, + 10.151234322428827, + 9.108767361223865 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.569999999999999, + 4.58, + 4.58, + 4.569999999999999, + 4.569999999999999 + ], + "y": [ + 9.128765677571234, + 9.128765677571234, + 10.17123599100895, + 10.17123599100895, + 9.128765677571234 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.58, + 4.59, + 4.59, + 4.58, + 4.58 + ], + "y": [ + 9.148764008991114, + 9.148764008991114, + 10.191237644651565, + 10.191237644651565, + 9.148764008991114 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.59, + 4.6, + 4.6, + 4.59, + 4.59 + ], + "y": [ + 9.168762355348502, + 9.168762355348502, + 10.211239283490414, + 10.211239283490414, + 9.168762355348502 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6, + 4.609999999999999, + 4.609999999999999, + 4.6, + 4.6 + ], + "y": [ + 9.188760716509655, + 9.188760716509655, + 10.231240907658114, + 10.231240907658114, + 9.188760716509655 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.609999999999999, + 4.62, + 4.62, + 4.609999999999999, + 4.609999999999999 + ], + "y": [ + 9.208759092341959, + 9.208759092341959, + 10.25124251728605, + 10.25124251728605, + 9.208759092341959 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.62, + 4.63, + 4.63, + 4.62, + 4.62 + ], + "y": [ + 9.228757482714025, + 9.228757482714025, + 10.27124411250447, + 10.27124411250447, + 9.228757482714025 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.63, + 4.64, + 4.64, + 4.63, + 4.63 + ], + "y": [ + 9.248755887495609, + 9.248755887495609, + 10.291245693442391, + 10.291245693442391, + 9.248755887495609 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.64, + 4.6499999999999995, + 4.6499999999999995, + 4.64, + 4.64 + ], + "y": [ + 9.268754306557689, + 9.268754306557689, + 10.311247260227754, + 10.311247260227754, + 9.268754306557689 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6499999999999995, + 4.66, + 4.66, + 4.6499999999999995, + 4.6499999999999995 + ], + "y": [ + 9.28875273977233, + 9.28875273977233, + 10.331248812987283, + 10.331248812987283, + 9.28875273977233 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.66, + 4.67, + 4.67, + 4.66, + 4.66 + ], + "y": [ + 9.308751187012803, + 9.308751187012803, + 10.35125035184662, + 10.35125035184662, + 9.308751187012803 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.67, + 4.68, + 4.68, + 4.67, + 4.67 + ], + "y": [ + 9.328749648153469, + 9.328749648153469, + 10.371251876930241, + 10.371251876930241, + 9.328749648153469 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.68, + 4.6899999999999995, + 4.6899999999999995, + 4.68, + 4.68 + ], + "y": [ + 9.34874812306985, + 9.34874812306985, + 10.391253388361513, + 10.391253388361513, + 9.34874812306985 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6899999999999995, + 4.7, + 4.7, + 4.6899999999999995, + 4.6899999999999995 + ], + "y": [ + 9.368746611638581, + 9.368746611638581, + 10.411254886262705, + 10.411254886262705, + 9.368746611638581 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.7, + 4.71, + 4.71, + 4.7, + 4.7 + ], + "y": [ + 9.388745113737391, + 9.388745113737391, + 10.431256370755012, + 10.431256370755012, + 9.388745113737391 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.71, + 4.72, + 4.72, + 4.71, + 4.71 + ], + "y": [ + 9.408743629245087, + 9.408743629245087, + 10.451257841958496, + 10.451257841958496, + 9.408743629245087 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.72, + 4.7299999999999995, + 4.7299999999999995, + 4.72, + 4.72 + ], + "y": [ + 9.428742158041606, + 9.428742158041606, + 10.471259299992163, + 10.471259299992163, + 9.428742158041606 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.7299999999999995, + 4.74, + 4.74, + 4.7299999999999995, + 4.7299999999999995 + ], + "y": [ + 9.448740700007942, + 9.448740700007942, + 10.491260744973966, + 10.491260744973966, + 9.448740700007942 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.74, + 4.75, + 4.75, + 4.74, + 4.74 + ], + "y": [ + 9.468739255026142, + 9.468739255026142, + 10.511262177020793, + 10.511262177020793, + 9.468739255026142 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.75, + 4.76, + 4.76, + 4.75, + 4.75 + ], + "y": [ + 9.488737822979317, + 9.488737822979317, + 10.531263596248504, + 10.531263596248504, + 9.488737822979317 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.76, + 4.77, + 4.77, + 4.76, + 4.76 + ], + "y": [ + 9.508736403751609, + 9.508736403751609, + 10.551265002771881, + 10.551265002771881, + 9.508736403751609 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.77, + 4.779999999999999, + 4.779999999999999, + 4.77, + 4.77 + ], + "y": [ + 9.528734997228234, + 9.528734997228234, + 10.571266396704681, + 10.571266396704681, + 9.528734997228234 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.779999999999999, + 4.79, + 4.79, + 4.779999999999999, + 4.779999999999999 + ], + "y": [ + 9.548733603295437, + 9.548733603295437, + 10.591267778159674, + 10.591267778159674, + 9.548733603295437 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.79, + 4.8, + 4.8, + 4.79, + 4.79 + ], + "y": [ + 9.568732221840447, + 9.568732221840447, + 10.611269147248597, + 10.611269147248597, + 9.568732221840447 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.8, + 4.81, + 4.81, + 4.8, + 4.8 + ], + "y": [ + 9.588730852751526, + 9.588730852751526, + 10.631270504082174, + 10.631270504082174, + 9.588730852751526 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.81, + 4.819999999999999, + 4.819999999999999, + 4.81, + 4.81 + ], + "y": [ + 9.608729495917952, + 9.608729495917952, + 10.651271848770175, + 10.651271848770175, + 9.608729495917952 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.819999999999999, + 4.83, + 4.83, + 4.819999999999999, + 4.819999999999999 + ], + "y": [ + 9.628728151229954, + 9.628728151229954, + 10.671273181421382, + 10.671273181421382, + 9.628728151229954 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.83, + 4.84, + 4.84, + 4.83, + 4.83 + ], + "y": [ + 9.64872681857875, + 9.64872681857875, + 10.691274502143553, + 10.691274502143553, + 9.64872681857875 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.84, + 4.85, + 4.85, + 4.84, + 4.84 + ], + "y": [ + 9.668725497856581, + 9.668725497856581, + 10.711275811043535, + 10.711275811043535, + 9.668725497856581 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.85, + 4.859999999999999, + 4.859999999999999, + 4.85, + 4.85 + ], + "y": [ + 9.688724188956602, + 9.688724188956602, + 10.731277108227166, + 10.731277108227166, + 9.688724188956602 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.859999999999999, + 4.87, + 4.87, + 4.859999999999999, + 4.859999999999999 + ], + "y": [ + 9.708722891772974, + 9.708722891772974, + 10.7512783937994, + 10.7512783937994, + 9.708722891772974 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.87, + 4.88, + 4.88, + 4.87, + 4.87 + ], + "y": [ + 9.728721606200743, + 9.728721606200743, + 10.771279667864194, + 10.771279667864194, + 9.728721606200743 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.88, + 4.89, + 4.89, + 4.88, + 4.88 + ], + "y": [ + 9.748720332135951, + 9.748720332135951, + 10.791280930524596, + 10.791280930524596, + 9.748720332135951 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.89, + 4.8999999999999995, + 4.8999999999999995, + 4.89, + 4.89 + ], + "y": [ + 9.768719069475551, + 9.768719069475551, + 10.811282181882746, + 10.811282181882746, + 9.768719069475551 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.8999999999999995, + 4.91, + 4.91, + 4.8999999999999995, + 4.8999999999999995 + ], + "y": [ + 9.788717818117405, + 9.788717818117405, + 10.831283422039832, + 10.831283422039832, + 9.788717818117405 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.91, + 4.92, + 4.92, + 4.91, + 4.91 + ], + "y": [ + 9.808716577960322, + 9.808716577960322, + 10.851284651096158, + 10.851284651096158, + 9.808716577960322 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.92, + 4.93, + 4.93, + 4.92, + 4.92 + ], + "y": [ + 9.828715348903998, + 9.828715348903998, + 10.87128586915113, + 10.87128586915113, + 9.828715348903998 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.93, + 4.9399999999999995, + 4.9399999999999995, + 4.93, + 4.93 + ], + "y": [ + 9.848714130849029, + 9.848714130849029, + 10.891287076303268, + 10.891287076303268, + 9.848714130849029 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.9399999999999995, + 4.95, + 4.95, + 4.9399999999999995, + 4.9399999999999995 + ], + "y": [ + 9.868712923696894, + 9.868712923696894, + 10.911288272650184, + 10.911288272650184, + 9.868712923696894 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.95, + 4.96, + 4.96, + 4.95, + 4.95 + ], + "y": [ + 9.88871172734998, + 9.88871172734998, + 10.931289458288655, + 10.931289458288655, + 9.88871172734998 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.96, + 4.97, + 4.97, + 4.96, + 4.96 + ], + "y": [ + 9.908710541711512, + 9.908710541711512, + 10.951290633314557, + 10.951290633314557, + 9.908710541711512 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.97, + 4.9799999999999995, + 4.9799999999999995, + 4.97, + 4.97 + ], + "y": [ + 9.928709366685613, + 9.928709366685613, + 10.971291797822913, + 10.971291797822913, + 9.928709366685613 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.9799999999999995, + 4.99, + 4.99, + 4.9799999999999995, + 4.9799999999999995 + ], + "y": [ + 9.94870820217726, + 9.94870820217726, + 10.991292951907871, + 10.991292951907871, + 9.94870820217726 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.99, + 5, + 5, + 4.99, + 4.99 + ], + "y": [ + 9.968707048092304, + 9.968707048092304, + 11.011294095662814, + 11.011294095662814, + 9.968707048092304 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5, + 5.01, + 5.01, + 5, + 5 + ], + "y": [ + 9.988705904337364, + 9.988705904337364, + 11.031295229180222, + 11.031295229180222, + 9.988705904337364 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.01, + 5.02, + 5.02, + 5.01, + 5.01 + ], + "y": [ + 10.008704770819959, + 10.008704770819959, + 11.051296352551768, + 11.051296352551768, + 10.008704770819959 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.02, + 5.029999999999999, + 5.029999999999999, + 5.02, + 5.02 + ], + "y": [ + 10.028703647448415, + 10.028703647448415, + 11.071297465868298, + 11.071297465868298, + 10.028703647448415 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.029999999999999, + 5.04, + 5.04, + 5.029999999999999, + 5.029999999999999 + ], + "y": [ + 10.048702534131888, + 10.048702534131888, + 11.091298569219854, + 11.091298569219854, + 10.048702534131888 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.04, + 5.05, + 5.05, + 5.04, + 5.04 + ], + "y": [ + 10.068701430780335, + 10.068701430780335, + 11.111299662695618, + 11.111299662695618, + 10.068701430780335 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.05, + 5.06, + 5.06, + 5.05, + 5.05 + ], + "y": [ + 10.088700337304573, + 10.088700337304573, + 11.131300746384044, + 11.131300746384044, + 10.088700337304573 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.06, + 5.069999999999999, + 5.069999999999999, + 5.06, + 5.06 + ], + "y": [ + 10.10869925361615, + 10.10869925361615, + 11.151301820372788, + 11.151301820372788, + 10.10869925361615 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.069999999999999, + 5.08, + 5.08, + 5.069999999999999, + 5.069999999999999 + ], + "y": [ + 10.128698179627408, + 10.128698179627408, + 11.171302884748682, + 11.171302884748682, + 10.128698179627408 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.08, + 5.09, + 5.09, + 5.08, + 5.08 + ], + "y": [ + 10.148697115251517, + 10.148697115251517, + 11.191303939597786, + 11.191303939597786, + 10.148697115251517 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.09, + 5.1, + 5.1, + 5.09, + 5.09 + ], + "y": [ + 10.168696060402416, + 10.168696060402416, + 11.211304985005421, + 11.211304985005421, + 10.168696060402416 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1, + 5.109999999999999, + 5.109999999999999, + 5.1, + 5.1 + ], + "y": [ + 10.188695014994783, + 10.188695014994783, + 11.231306021056104, + 11.231306021056104, + 10.188695014994783 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.109999999999999, + 5.12, + 5.12, + 5.109999999999999, + 5.109999999999999 + ], + "y": [ + 10.208693978944103, + 10.208693978944103, + 11.251307047833638, + 11.251307047833638, + 10.208693978944103 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.12, + 5.13, + 5.13, + 5.12, + 5.12 + ], + "y": [ + 10.228692952166572, + 10.228692952166572, + 11.271308065421026, + 11.271308065421026, + 10.228692952166572 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.13, + 5.14, + 5.14, + 5.13, + 5.13 + ], + "y": [ + 10.248691934579186, + 10.248691934579186, + 11.29130907390056, + 11.29130907390056, + 10.248691934579186 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.14, + 5.1499999999999995, + 5.1499999999999995, + 5.14, + 5.14 + ], + "y": [ + 10.268690926099655, + 10.268690926099655, + 11.311310073353786, + 11.311310073353786, + 10.268690926099655 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1499999999999995, + 5.16, + 5.16, + 5.1499999999999995, + 5.1499999999999995 + ], + "y": [ + 10.288689926646432, + 10.288689926646432, + 11.331311063861524, + 11.331311063861524, + 10.288689926646432 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.16, + 5.17, + 5.17, + 5.16, + 5.16 + ], + "y": [ + 10.308688936138697, + 10.308688936138697, + 11.351312045503875, + 11.351312045503875, + 10.308688936138697 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.17, + 5.18, + 5.18, + 5.17, + 5.17 + ], + "y": [ + 10.328687954496349, + 10.328687954496349, + 11.371313018360205, + 11.371313018360205, + 10.328687954496349 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.18, + 5.1899999999999995, + 5.1899999999999995, + 5.18, + 5.18 + ], + "y": [ + 10.348686981640022, + 10.348686981640022, + 11.391313982509175, + 11.391313982509175, + 10.348686981640022 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1899999999999995, + 5.2, + 5.2, + 5.1899999999999995, + 5.1899999999999995 + ], + "y": [ + 10.368686017491054, + 10.368686017491054, + 11.411314938028745, + 11.411314938028745, + 10.368686017491054 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.2, + 5.21, + 5.21, + 5.2, + 5.2 + ], + "y": [ + 10.388685061971486, + 10.388685061971486, + 11.431315884996174, + 11.431315884996174, + 10.388685061971486 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.21, + 5.22, + 5.22, + 5.21, + 5.21 + ], + "y": [ + 10.40868411500406, + 10.40868411500406, + 11.45131682348803, + 11.45131682348803, + 10.40868411500406 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.22, + 5.2299999999999995, + 5.2299999999999995, + 5.22, + 5.22 + ], + "y": [ + 10.428683176512207, + 10.428683176512207, + 11.471317753580198, + 11.471317753580198, + 10.428683176512207 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.2299999999999995, + 5.24, + 5.24, + 5.2299999999999995, + 5.2299999999999995 + ], + "y": [ + 10.448682246420042, + 10.448682246420042, + 11.491318675347904, + 11.491318675347904, + 10.448682246420042 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.24, + 5.25, + 5.25, + 5.24, + 5.24 + ], + "y": [ + 10.468681324652339, + 10.468681324652339, + 11.511319588865641, + 11.511319588865641, + 10.468681324652339 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.25, + 5.26, + 5.26, + 5.25, + 5.25 + ], + "y": [ + 10.488680411134604, + 10.488680411134604, + 11.53132049420729, + 11.53132049420729, + 10.488680411134604 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.26, + 5.27, + 5.27, + 5.26, + 5.26 + ], + "y": [ + 10.508679505792959, + 10.508679505792959, + 11.551321391446043, + 11.551321391446043, + 10.508679505792959 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.27, + 5.279999999999999, + 5.279999999999999, + 5.27, + 5.27 + ], + "y": [ + 10.528678608554207, + 10.528678608554207, + 11.571322280654424, + 11.571322280654424, + 10.528678608554207 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.279999999999999, + 5.29, + 5.29, + 5.279999999999999, + 5.279999999999999 + ], + "y": [ + 10.548677719345829, + 10.548677719345829, + 11.591323161904349, + 11.591323161904349, + 10.548677719345829 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.29, + 5.3, + 5.3, + 5.29, + 5.29 + ], + "y": [ + 10.568676838095907, + 10.568676838095907, + 11.611324035267115, + 11.611324035267115, + 10.568676838095907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.3, + 5.31, + 5.31, + 5.3, + 5.3 + ], + "y": [ + 10.588675964733143, + 10.588675964733143, + 11.631324900813286, + 11.631324900813286, + 10.588675964733143 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.31, + 5.319999999999999, + 5.319999999999999, + 5.31, + 5.31 + ], + "y": [ + 10.608675099186975, + 10.608675099186975, + 11.651325758612877, + 11.651325758612877, + 10.608675099186975 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.319999999999999, + 5.33, + 5.33, + 5.319999999999999, + 5.319999999999999 + ], + "y": [ + 10.628674241387387, + 10.628674241387387, + 11.671326608735203, + 11.671326608735203, + 10.628674241387387 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.33, + 5.34, + 5.34, + 5.33, + 5.33 + ], + "y": [ + 10.648673391265064, + 10.648673391265064, + 11.691327451249002, + 11.691327451249002, + 10.648673391265064 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.34, + 5.35, + 5.35, + 5.34, + 5.34 + ], + "y": [ + 10.668672548751267, + 10.668672548751267, + 11.711328286222377, + 11.711328286222377, + 10.668672548751267 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.35, + 5.359999999999999, + 5.359999999999999, + 5.35, + 5.35 + ], + "y": [ + 10.688671713777895, + 10.688671713777895, + 11.731329113722836, + 11.731329113722836, + 10.688671713777895 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.359999999999999, + 5.37, + 5.37, + 5.359999999999999, + 5.359999999999999 + ], + "y": [ + 10.708670886277439, + 10.708670886277439, + 11.751329933817313, + 11.751329933817313, + 10.708670886277439 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.37, + 5.38, + 5.38, + 5.37, + 5.37 + ], + "y": [ + 10.728670066182964, + 10.728670066182964, + 11.771330746572113, + 11.771330746572113, + 10.728670066182964 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.38, + 5.39, + 5.39, + 5.38, + 5.38 + ], + "y": [ + 10.748669253428167, + 10.748669253428167, + 11.79133155205289, + 11.79133155205289, + 10.748669253428167 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.39, + 5.3999999999999995, + 5.3999999999999995, + 5.39, + 5.39 + ], + "y": [ + 10.768668447947393, + 10.768668447947393, + 11.811332350324799, + 11.811332350324799, + 10.768668447947393 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.3999999999999995, + 5.41, + 5.41, + 5.3999999999999995, + 5.3999999999999995 + ], + "y": [ + 10.788667649675487, + 10.788667649675487, + 11.831333141452392, + 11.831333141452392, + 10.788667649675487 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.41, + 5.42, + 5.42, + 5.41, + 5.41 + ], + "y": [ + 10.808666858547896, + 10.808666858547896, + 11.851333925499613, + 11.851333925499613, + 10.808666858547896 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.42, + 5.43, + 5.43, + 5.42, + 5.42 + ], + "y": [ + 10.828666074500678, + 10.828666074500678, + 11.87133470252984, + 11.87133470252984, + 10.828666074500678 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.43, + 5.4399999999999995, + 5.4399999999999995, + 5.43, + 5.43 + ], + "y": [ + 10.848665297470454, + 10.848665297470454, + 11.891335472605903, + 11.891335472605903, + 10.848665297470454 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.4399999999999995, + 5.45, + 5.45, + 5.4399999999999995, + 5.4399999999999995 + ], + "y": [ + 10.868664527394394, + 10.868664527394394, + 11.911336235790055, + 11.911336235790055, + 10.868664527394394 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.45, + 5.46, + 5.46, + 5.45, + 5.45 + ], + "y": [ + 10.888663764210245, + 10.888663764210245, + 11.931336992143997, + 11.931336992143997, + 10.888663764210245 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.46, + 5.47, + 5.47, + 5.46, + 5.46 + ], + "y": [ + 10.908663007856305, + 10.908663007856305, + 11.951337741728848, + 11.951337741728848, + 10.908663007856305 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.47, + 5.4799999999999995, + 5.4799999999999995, + 5.47, + 5.47 + ], + "y": [ + 10.928662258271457, + 10.928662258271457, + 11.971338484605242, + 11.971338484605242, + 10.928662258271457 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.4799999999999995, + 5.49, + 5.49, + 5.4799999999999995, + 5.4799999999999995 + ], + "y": [ + 10.948661515395065, + 10.948661515395065, + 11.991339220833199, + 11.991339220833199, + 10.948661515395065 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.49, + 5.5, + 5.5, + 5.49, + 5.49 + ], + "y": [ + 10.968660779167111, + 10.968660779167111, + 12.011339950472271, + 12.011339950472271, + 10.968660779167111 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.5, + 5.51, + 5.51, + 5.5, + 5.5 + ], + "y": [ + 10.988660049528042, + 10.988660049528042, + 12.031340673581406, + 12.031340673581406, + 10.988660049528042 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.51, + 5.52, + 5.52, + 5.51, + 5.51 + ], + "y": [ + 11.00865932641891, + 11.00865932641891, + 12.051341390219081, + 12.051341390219081, + 11.00865932641891 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.52, + 5.529999999999999, + 5.529999999999999, + 5.52, + 5.52 + ], + "y": [ + 11.028658609781237, + 11.028658609781237, + 12.07134210044323, + 12.07134210044323, + 11.028658609781237 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.529999999999999, + 5.54, + 5.54, + 5.529999999999999, + 5.529999999999999 + ], + "y": [ + 11.04865789955709, + 11.04865789955709, + 12.091342804311264, + 12.091342804311264, + 11.04865789955709 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.54, + 5.55, + 5.55, + 5.54, + 5.54 + ], + "y": [ + 11.06865719568906, + 11.06865719568906, + 12.111343501880071, + 12.111343501880071, + 11.06865719568906 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.55, + 5.56, + 5.56, + 5.55, + 5.55 + ], + "y": [ + 11.088656498120255, + 11.088656498120255, + 12.13134419320603, + 12.13134419320603, + 11.088656498120255 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.56, + 5.569999999999999, + 5.569999999999999, + 5.56, + 5.56 + ], + "y": [ + 11.1086558067943, + 11.1086558067943, + 12.151344878345068, + 12.151344878345068, + 11.1086558067943 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.569999999999999, + 5.58, + 5.58, + 5.569999999999999, + 5.569999999999999 + ], + "y": [ + 11.128655121655264, + 11.128655121655264, + 12.171345557352543, + 12.171345557352543, + 11.128655121655264 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.58, + 5.59, + 5.59, + 5.58, + 5.58 + ], + "y": [ + 11.148654442647791, + 11.148654442647791, + 12.19134623028334, + 12.19134623028334, + 11.148654442647791 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.59, + 5.6, + 5.6, + 5.59, + 5.59 + ], + "y": [ + 11.168653769716997, + 11.168653769716997, + 12.211346897191856, + 12.211346897191856, + 11.168653769716997 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6, + 5.609999999999999, + 5.609999999999999, + 5.6, + 5.6 + ], + "y": [ + 11.188653102808484, + 11.188653102808484, + 12.231347558132013, + 12.231347558132013, + 11.188653102808484 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.609999999999999, + 5.62, + 5.62, + 5.609999999999999, + 5.609999999999999 + ], + "y": [ + 11.20865244186833, + 11.20865244186833, + 12.251348213157195, + 12.251348213157195, + 11.20865244186833 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.62, + 5.63, + 5.63, + 5.62, + 5.62 + ], + "y": [ + 11.22865178684315, + 11.22865178684315, + 12.271348862320409, + 12.271348862320409, + 11.22865178684315 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.63, + 5.64, + 5.64, + 5.63, + 5.63 + ], + "y": [ + 11.24865113767994, + 11.24865113767994, + 12.291349505674113, + 12.291349505674113, + 11.24865113767994 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.64, + 5.6499999999999995, + 5.6499999999999995, + 5.64, + 5.64 + ], + "y": [ + 11.268650494326238, + 11.268650494326238, + 12.311350143270293, + 12.311350143270293, + 11.268650494326238 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6499999999999995, + 5.66, + 5.66, + 5.6499999999999995, + 5.6499999999999995 + ], + "y": [ + 11.28864985673006, + 11.28864985673006, + 12.33135077516052, + 12.33135077516052, + 11.28864985673006 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.66, + 5.67, + 5.67, + 5.66, + 5.66 + ], + "y": [ + 11.308649224839836, + 11.308649224839836, + 12.351351401395846, + 12.351351401395846, + 11.308649224839836 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.67, + 5.68, + 5.68, + 5.67, + 5.67 + ], + "y": [ + 11.328648598604513, + 11.328648598604513, + 12.371352022026871, + 12.371352022026871, + 11.328648598604513 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.68, + 5.6899999999999995, + 5.6899999999999995, + 5.68, + 5.68 + ], + "y": [ + 11.34864797797349, + 11.34864797797349, + 12.391352637103799, + 12.391352637103799, + 11.34864797797349 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6899999999999995, + 5.7, + 5.7, + 5.6899999999999995, + 5.6899999999999995 + ], + "y": [ + 11.368647362896565, + 11.368647362896565, + 12.411353246676336, + 12.411353246676336, + 11.368647362896565 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.7, + 5.71, + 5.71, + 5.7, + 5.7 + ], + "y": [ + 11.38864675332403, + 11.38864675332403, + 12.431353850793696, + 12.431353850793696, + 11.38864675332403 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.71, + 5.72, + 5.72, + 5.71, + 5.71 + ], + "y": [ + 11.408646149206673, + 11.408646149206673, + 12.4513544495048, + 12.4513544495048, + 11.408646149206673 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.72, + 5.7299999999999995, + 5.7299999999999995, + 5.72, + 5.72 + ], + "y": [ + 11.428645550495572, + 11.428645550495572, + 12.471355042857956, + 12.471355042857956, + 11.428645550495572 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.7299999999999995, + 5.74, + 5.74, + 5.7299999999999995, + 5.7299999999999995 + ], + "y": [ + 11.448644957142418, + 11.448644957142418, + 12.491355630901186, + 12.491355630901186, + 11.448644957142418 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.74, + 5.75, + 5.75, + 5.74, + 5.74 + ], + "y": [ + 11.468644369099191, + 11.468644369099191, + 12.511356213682031, + 12.511356213682031, + 11.468644369099191 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.75, + 5.76, + 5.76, + 5.75, + 5.75 + ], + "y": [ + 11.488643786318349, + 11.488643786318349, + 12.53135679124753, + 12.53135679124753, + 11.488643786318349 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.76, + 5.77, + 5.77, + 5.76, + 5.76 + ], + "y": [ + 11.508643208752853, + 11.508643208752853, + 12.551357363644424, + 12.551357363644424, + 11.508643208752853 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.77, + 5.779999999999999, + 5.779999999999999, + 5.77, + 5.77 + ], + "y": [ + 11.528642636355961, + 11.528642636355961, + 12.571357930918934, + 12.571357930918934, + 11.528642636355961 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.779999999999999, + 5.79, + 5.79, + 5.779999999999999, + 5.779999999999999 + ], + "y": [ + 11.548642069081454, + 11.548642069081454, + 12.59135849311694, + 12.59135849311694, + 11.548642069081454 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.79, + 5.8, + 5.8, + 5.79, + 5.79 + ], + "y": [ + 11.56864150688345, + 11.56864150688345, + 12.611359050283875, + 12.611359050283875, + 11.56864150688345 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.8, + 5.81, + 5.81, + 5.8, + 5.8 + ], + "y": [ + 11.588640949716519, + 11.588640949716519, + 12.631359602464768, + 12.631359602464768, + 11.588640949716519 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.81, + 5.819999999999999, + 5.819999999999999, + 5.81, + 5.81 + ], + "y": [ + 11.608640397535629, + 11.608640397535629, + 12.651360149704262, + 12.651360149704262, + 11.608640397535629 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.819999999999999, + 5.83, + 5.83, + 5.819999999999999, + 5.819999999999999 + ], + "y": [ + 11.628639850296137, + 11.628639850296137, + 12.671360692046578, + 12.671360692046578, + 11.628639850296137 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.83, + 5.84, + 5.84, + 5.83, + 5.83 + ], + "y": [ + 11.648639307953824, + 11.648639307953824, + 12.69136122953555, + 12.69136122953555, + 11.648639307953824 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.84, + 5.85, + 5.85, + 5.84, + 5.84 + ], + "y": [ + 11.668638770464854, + 11.668638770464854, + 12.711361762214631, + 12.711361762214631, + 11.668638770464854 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.85, + 5.859999999999999, + 5.859999999999999, + 5.85, + 5.85 + ], + "y": [ + 11.688638237785776, + 11.688638237785776, + 12.731362290126851, + 12.731362290126851, + 11.688638237785776 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.859999999999999, + 5.87, + 5.87, + 5.859999999999999, + 5.859999999999999 + ], + "y": [ + 11.708637709873559, + 11.708637709873559, + 12.751362813314888, + 12.751362813314888, + 11.708637709873559 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.87, + 5.88, + 5.88, + 5.87, + 5.87 + ], + "y": [ + 11.728637186685525, + 11.728637186685525, + 12.771363331821021, + 12.771363331821021, + 11.728637186685525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.88, + 5.89, + 5.89, + 5.88, + 5.88 + ], + "y": [ + 11.748636668179394, + 11.748636668179394, + 12.791363845687183, + 12.791363845687183, + 11.748636668179394 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.89, + 5.8999999999999995, + 5.8999999999999995, + 5.89, + 5.89 + ], + "y": [ + 11.768636154313235, + 11.768636154313235, + 12.811364354954872, + 12.811364354954872, + 11.768636154313235 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.8999999999999995, + 5.91, + 5.91, + 5.8999999999999995, + 5.8999999999999995 + ], + "y": [ + 11.788635645045549, + 11.788635645045549, + 12.831364859665259, + 12.831364859665259, + 11.788635645045549 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.91, + 5.92, + 5.92, + 5.91, + 5.91 + ], + "y": [ + 11.808635140335165, + 11.808635140335165, + 12.851365359859127, + 12.851365359859127, + 11.808635140335165 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.92, + 5.93, + 5.93, + 5.92, + 5.92 + ], + "y": [ + 11.8286346401413, + 11.8286346401413, + 12.87136585557693, + 12.87136585557693, + 11.8286346401413 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.93, + 5.9399999999999995, + 5.9399999999999995, + 5.93, + 5.93 + ], + "y": [ + 11.8486341444235, + 11.8486341444235, + 12.891366346858709, + 12.891366346858709, + 11.8486341444235 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.9399999999999995, + 5.95, + 5.95, + 5.9399999999999995, + 5.9399999999999995 + ], + "y": [ + 11.868633653141723, + 11.868633653141723, + 12.911366833744157, + 12.911366833744157, + 11.868633653141723 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.95, + 5.96, + 5.96, + 5.95, + 5.95 + ], + "y": [ + 11.888633166256277, + 11.888633166256277, + 12.931367316272635, + 12.931367316272635, + 11.888633166256277 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.96, + 5.97, + 5.97, + 5.96, + 5.96 + ], + "y": [ + 11.908632683727802, + 11.908632683727802, + 12.951367794483144, + 12.951367794483144, + 11.908632683727802 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.97, + 5.9799999999999995, + 5.9799999999999995, + 5.97, + 5.97 + ], + "y": [ + 11.928632205517296, + 11.928632205517296, + 12.971368268414334, + 12.971368268414334, + 11.928632205517296 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.9799999999999995, + 5.99, + 5.99, + 5.9799999999999995, + 5.9799999999999995 + ], + "y": [ + 11.948631731586108, + 11.948631731586108, + 12.99136873810449, + 12.99136873810449, + 11.948631731586108 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.99, + 6, + 6, + 5.99, + 5.99 + ], + "y": [ + 11.968631261895954, + 11.968631261895954, + 13.011369203591585, + 13.011369203591585, + 11.968631261895954 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6, + 6.01, + 6.01, + 6, + 6 + ], + "y": [ + 11.988630796408863, + 11.988630796408863, + 13.031369664913246, + 13.031369664913246, + 11.988630796408863 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.01, + 6.02, + 6.02, + 6.01, + 6.01 + ], + "y": [ + 12.008630335087204, + 12.008630335087204, + 13.051370122106755, + 13.051370122106755, + 12.008630335087204 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.02, + 6.029999999999999, + 6.029999999999999, + 6.02, + 6.02 + ], + "y": [ + 12.028629877893698, + 12.028629877893698, + 13.071370575209045, + 13.071370575209045, + 12.028629877893698 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.029999999999999, + 6.04, + 6.04, + 6.029999999999999, + 6.029999999999999 + ], + "y": [ + 12.048629424791411, + 12.048629424791411, + 13.09137102425674, + 13.09137102425674, + 12.048629424791411 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.04, + 6.05, + 6.05, + 6.04, + 6.04 + ], + "y": [ + 12.068628975743719, + 12.068628975743719, + 13.111371469286151, + 13.111371469286151, + 12.068628975743719 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.05, + 6.06, + 6.06, + 6.05, + 6.05 + ], + "y": [ + 12.08862853071431, + 12.08862853071431, + 13.13137191033321, + 13.13137191033321, + 12.08862853071431 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.06, + 6.069999999999999, + 6.069999999999999, + 6.06, + 6.06 + ], + "y": [ + 12.108628089667254, + 12.108628089667254, + 13.151372347433577, + 13.151372347433577, + 12.108628089667254 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.069999999999999, + 6.08, + 6.08, + 6.069999999999999, + 6.069999999999999 + ], + "y": [ + 12.12862765256689, + 12.12862765256689, + 13.171372780622567, + 13.171372780622567, + 12.12862765256689 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.08, + 6.09, + 6.09, + 6.08, + 6.08 + ], + "y": [ + 12.148627219377902, + 12.148627219377902, + 13.191373209935195, + 13.191373209935195, + 12.148627219377902 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.09, + 6.1, + 6.1, + 6.09, + 6.09 + ], + "y": [ + 12.168626790065277, + 12.168626790065277, + 13.211373635406156, + 13.211373635406156, + 12.168626790065277 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1, + 6.109999999999999, + 6.109999999999999, + 6.1, + 6.1 + ], + "y": [ + 12.188626364594318, + 12.188626364594318, + 13.231374057069837, + 13.231374057069837, + 12.188626364594318 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.109999999999999, + 6.12, + 6.12, + 6.109999999999999, + 6.109999999999999 + ], + "y": [ + 12.20862594293064, + 12.20862594293064, + 13.251374474960299, + 13.251374474960299, + 12.20862594293064 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.12, + 6.13, + 6.13, + 6.12, + 6.12 + ], + "y": [ + 12.228625525040181, + 12.228625525040181, + 13.2713748891113, + 13.2713748891113, + 12.228625525040181 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.13, + 6.14, + 6.14, + 6.13, + 6.13 + ], + "y": [ + 12.248625110889183, + 12.248625110889183, + 13.291375299556343, + 13.291375299556343, + 12.248625110889183 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.14, + 6.1499999999999995, + 6.1499999999999995, + 6.14, + 6.14 + ], + "y": [ + 12.268624700444143, + 12.268624700444143, + 13.311375706328581, + 13.311375706328581, + 12.268624700444143 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1499999999999995, + 6.16, + 6.16, + 6.1499999999999995, + 6.1499999999999995 + ], + "y": [ + 12.288624293671907, + 12.288624293671907, + 13.331376109460889, + 13.331376109460889, + 12.288624293671907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.16, + 6.17, + 6.17, + 6.16, + 6.16 + ], + "y": [ + 12.308623890539602, + 12.308623890539602, + 13.351376508985833, + 13.351376508985833, + 12.308623890539602 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.17, + 6.18, + 6.18, + 6.17, + 6.17 + ], + "y": [ + 12.32862349101466, + 12.32862349101466, + 13.371376904935701, + 13.371376904935701, + 12.32862349101466 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.18, + 6.1899999999999995, + 6.1899999999999995, + 6.18, + 6.18 + ], + "y": [ + 12.348623095064795, + 12.348623095064795, + 13.391377297342494, + 13.391377297342494, + 12.348623095064795 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1899999999999995, + 6.2, + 6.2, + 6.1899999999999995, + 6.1899999999999995 + ], + "y": [ + 12.368622702658005, + 12.368622702658005, + 13.411377686237934, + 13.411377686237934, + 12.368622702658005 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2, + 6.21, + 6.21, + 6.2, + 6.2 + ], + "y": [ + 12.388622313762568, + 12.388622313762568, + 13.43137807165343, + 13.43137807165343, + 12.388622313762568 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.21, + 6.22, + 6.22, + 6.21, + 6.21 + ], + "y": [ + 12.408621928347074, + 12.408621928347074, + 13.451378453620151, + 13.451378453620151, + 12.408621928347074 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.22, + 6.2299999999999995, + 6.2299999999999995, + 6.22, + 6.22 + ], + "y": [ + 12.428621546380356, + 12.428621546380356, + 13.471378832168902, + 13.471378832168902, + 12.428621546380356 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2299999999999995, + 6.24, + 6.24, + 6.2299999999999995, + 6.2299999999999995 + ], + "y": [ + 12.448621167831607, + 12.448621167831607, + 13.49137920733035, + 13.49137920733035, + 12.448621167831607 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.24, + 6.25, + 6.25, + 6.24, + 6.24 + ], + "y": [ + 12.468620792670162, + 12.468620792670162, + 13.511379579134779, + 13.511379579134779, + 12.468620792670162 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.25, + 6.26, + 6.26, + 6.25, + 6.25 + ], + "y": [ + 12.488620420865736, + 12.488620420865736, + 13.531379947612207, + 13.531379947612207, + 12.488620420865736 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.26, + 6.27, + 6.27, + 6.26, + 6.26 + ], + "y": [ + 12.508620052388311, + 12.508620052388311, + 13.551380312792459, + 13.551380312792459, + 12.508620052388311 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.27, + 6.279999999999999, + 6.279999999999999, + 6.27, + 6.27 + ], + "y": [ + 12.528619687208062, + 12.528619687208062, + 13.571380674705, + 13.571380674705, + 12.528619687208062 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.279999999999999, + 6.29, + 6.29, + 6.279999999999999, + 6.279999999999999 + ], + "y": [ + 12.548619325295522, + 12.548619325295522, + 13.5913810333791, + 13.5913810333791, + 12.548619325295522 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.29, + 6.3, + 6.3, + 6.29, + 6.29 + ], + "y": [ + 12.568618966621425, + 12.568618966621425, + 13.611381388843737, + 13.611381388843737, + 12.568618966621425 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3, + 6.31, + 6.31, + 6.3, + 6.3 + ], + "y": [ + 12.588618611156791, + 12.588618611156791, + 13.631381741127635, + 13.631381741127635, + 12.588618611156791 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.31, + 6.319999999999999, + 6.319999999999999, + 6.31, + 6.31 + ], + "y": [ + 12.608618258872896, + 12.608618258872896, + 13.651382090259244, + 13.651382090259244, + 12.608618258872896 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.319999999999999, + 6.33, + 6.33, + 6.319999999999999, + 6.319999999999999 + ], + "y": [ + 12.62861790974129, + 12.62861790974129, + 13.671382436266812, + 13.671382436266812, + 12.62861790974129 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.33, + 6.34, + 6.34, + 6.33, + 6.33 + ], + "y": [ + 12.648617563733724, + 12.648617563733724, + 13.691382779178264, + 13.691382779178264, + 12.648617563733724 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.34, + 6.35, + 6.35, + 6.34, + 6.34 + ], + "y": [ + 12.668617220822275, + 12.668617220822275, + 13.711383119021315, + 13.711383119021315, + 12.668617220822275 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.35, + 6.359999999999999, + 6.359999999999999, + 6.35, + 6.35 + ], + "y": [ + 12.688616880979227, + 12.688616880979227, + 13.731383455823462, + 13.731383455823462, + 12.688616880979227 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.359999999999999, + 6.37, + 6.37, + 6.359999999999999, + 6.359999999999999 + ], + "y": [ + 12.708616544177083, + 12.708616544177083, + 13.751383789611861, + 13.751383789611861, + 12.708616544177083 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.37, + 6.38, + 6.38, + 6.37, + 6.37 + ], + "y": [ + 12.728616210388687, + 12.728616210388687, + 13.771384120413517, + 13.771384120413517, + 12.728616210388687 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.38, + 6.39, + 6.39, + 6.38, + 6.38 + ], + "y": [ + 12.748615879587033, + 12.748615879587033, + 13.791384448255172, + 13.791384448255172, + 12.748615879587033 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.39, + 6.3999999999999995, + 6.3999999999999995, + 6.39, + 6.39 + ], + "y": [ + 12.76861555174538, + 12.76861555174538, + 13.811384773163283, + 13.811384773163283, + 12.76861555174538 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3999999999999995, + 6.41, + 6.41, + 6.3999999999999995, + 6.3999999999999995 + ], + "y": [ + 12.788615226837273, + 12.788615226837273, + 13.831385095164103, + 13.831385095164103, + 12.788615226837273 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.41, + 6.42, + 6.42, + 6.41, + 6.41 + ], + "y": [ + 12.808614904836455, + 12.808614904836455, + 13.85138541428367, + 13.85138541428367, + 12.808614904836455 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.42, + 6.43, + 6.43, + 6.42, + 6.42 + ], + "y": [ + 12.828614585716892, + 12.828614585716892, + 13.87138573054779, + 13.87138573054779, + 12.828614585716892 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.43, + 6.4399999999999995, + 6.4399999999999995, + 6.43, + 6.43 + ], + "y": [ + 12.848614269452774, + 12.848614269452774, + 13.891386043982001, + 13.891386043982001, + 12.848614269452774 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4399999999999995, + 6.45, + 6.45, + 6.4399999999999995, + 6.4399999999999995 + ], + "y": [ + 12.868613956018566, + 12.868613956018566, + 13.911386354611597, + 13.911386354611597, + 12.868613956018566 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.45, + 6.46, + 6.46, + 6.45, + 6.45 + ], + "y": [ + 12.888613645388972, + 12.888613645388972, + 13.93138666246172, + 13.93138666246172, + 12.888613645388972 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.46, + 6.47, + 6.47, + 6.46, + 6.46 + ], + "y": [ + 12.908613337538851, + 12.908613337538851, + 13.951386967557234, + 13.951386967557234, + 12.908613337538851 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.47, + 6.4799999999999995, + 6.4799999999999995, + 6.47, + 6.47 + ], + "y": [ + 12.92861303244334, + 12.92861303244334, + 13.971387269922769, + 13.971387269922769, + 12.92861303244334 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4799999999999995, + 6.49, + 6.49, + 6.4799999999999995, + 6.4799999999999995 + ], + "y": [ + 12.948612730077809, + 12.948612730077809, + 13.991387569582782, + 13.991387569582782, + 12.948612730077809 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.49, + 6.5, + 6.5, + 6.49, + 6.49 + ], + "y": [ + 12.968612430417798, + 12.968612430417798, + 14.011387866561465, + 14.011387866561465, + 12.968612430417798 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5, + 6.51, + 6.51, + 6.5, + 6.5 + ], + "y": [ + 12.988612133439117, + 12.988612133439117, + 14.031388160882818, + 14.031388160882818, + 12.988612133439117 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.51, + 6.52, + 6.52, + 6.51, + 6.51 + ], + "y": [ + 13.008611839117767, + 13.008611839117767, + 14.051388452570606, + 14.051388452570606, + 13.008611839117767 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.52, + 6.529999999999999, + 6.529999999999999, + 6.52, + 6.52 + ], + "y": [ + 13.028611547429982, + 13.028611547429982, + 14.071388741648423, + 14.071388741648423, + 13.028611547429982 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.529999999999999, + 6.54, + 6.54, + 6.529999999999999, + 6.529999999999999 + ], + "y": [ + 13.048611258352167, + 13.048611258352167, + 14.09138902813963, + 14.09138902813963, + 13.048611258352167 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.54, + 6.55, + 6.55, + 6.54, + 6.54 + ], + "y": [ + 13.068610971860963, + 13.068610971860963, + 14.11138931206734, + 14.11138931206734, + 13.068610971860963 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.55, + 6.56, + 6.56, + 6.55, + 6.55 + ], + "y": [ + 13.088610687933256, + 13.088610687933256, + 14.131389593454546, + 14.131389593454546, + 13.088610687933256 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.56, + 6.569999999999999, + 6.569999999999999, + 6.56, + 6.56 + ], + "y": [ + 13.108610406546052, + 13.108610406546052, + 14.151389872323946, + 14.151389872323946, + 13.108610406546052 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.569999999999999, + 6.58, + 6.58, + 6.569999999999999, + 6.569999999999999 + ], + "y": [ + 13.128610127676655, + 13.128610127676655, + 14.171390148698078, + 14.171390148698078, + 13.128610127676655 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.58, + 6.59, + 6.59, + 6.58, + 6.58 + ], + "y": [ + 13.148609851302526, + 13.148609851302526, + 14.191390422599294, + 14.191390422599294, + 13.148609851302526 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.59, + 6.6, + 6.6, + 6.59, + 6.59 + ], + "y": [ + 13.168609577401313, + 13.168609577401313, + 14.211390694049703, + 14.211390694049703, + 13.168609577401313 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6, + 6.609999999999999, + 6.609999999999999, + 6.6, + 6.6 + ], + "y": [ + 13.188609305950907, + 13.188609305950907, + 14.231390963071247, + 14.231390963071247, + 13.188609305950907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.609999999999999, + 6.62, + 6.62, + 6.609999999999999, + 6.609999999999999 + ], + "y": [ + 13.208609036929365, + 13.208609036929365, + 14.25139122968565, + 14.25139122968565, + 13.208609036929365 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.62, + 6.63, + 6.63, + 6.62, + 6.62 + ], + "y": [ + 13.228608770314965, + 13.228608770314965, + 14.271391493914463, + 14.271391493914463, + 13.228608770314965 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.63, + 6.64, + 6.64, + 6.63, + 6.63 + ], + "y": [ + 13.248608506086155, + 13.248608506086155, + 14.291391755779044, + 14.291391755779044, + 13.248608506086155 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.64, + 6.6499999999999995, + 6.6499999999999995, + 6.64, + 6.64 + ], + "y": [ + 13.268608244221577, + 13.268608244221577, + 14.311392015300529, + 14.311392015300529, + 13.268608244221577 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6499999999999995, + 6.66, + 6.66, + 6.6499999999999995, + 6.6499999999999995 + ], + "y": [ + 13.288607984700095, + 13.288607984700095, + 14.331392272499883, + 14.331392272499883, + 13.288607984700095 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.66, + 6.67, + 6.67, + 6.66, + 6.66 + ], + "y": [ + 13.308607727500743, + 13.308607727500743, + 14.351392527397875, + 14.351392527397875, + 13.308607727500743 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.67, + 6.68, + 6.68, + 6.67, + 6.67 + ], + "y": [ + 13.328607472602753, + 13.328607472602753, + 14.371392780015139, + 14.371392780015139, + 13.328607472602753 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.68, + 6.6899999999999995, + 6.6899999999999995, + 6.68, + 6.68 + ], + "y": [ + 13.348607219985492, + 13.348607219985492, + 14.391393030372077, + 14.391393030372077, + 13.348607219985492 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6899999999999995, + 6.7, + 6.7, + 6.6899999999999995, + 6.6899999999999995 + ], + "y": [ + 13.368606969628557, + 13.368606969628557, + 14.411393278488898, + 14.411393278488898, + 13.368606969628557 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7, + 6.71, + 6.71, + 6.7, + 6.7 + ], + "y": [ + 13.388606721511739, + 13.388606721511739, + 14.431393524385655, + 14.431393524385655, + 13.388606721511739 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.71, + 6.72, + 6.72, + 6.71, + 6.71 + ], + "y": [ + 13.408606475614985, + 13.408606475614985, + 14.45139376808222, + 14.45139376808222, + 13.408606475614985 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.72, + 6.7299999999999995, + 6.7299999999999995, + 6.72, + 6.72 + ], + "y": [ + 13.428606231918423, + 13.428606231918423, + 14.471394009598288, + 14.471394009598288, + 13.428606231918423 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7299999999999995, + 6.74, + 6.74, + 6.7299999999999995, + 6.7299999999999995 + ], + "y": [ + 13.448605990402356, + 13.448605990402356, + 14.49139424895337, + 14.49139424895337, + 13.448605990402356 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.74, + 6.75, + 6.75, + 6.74, + 6.74 + ], + "y": [ + 13.468605751047278, + 13.468605751047278, + 14.511394486166797, + 14.511394486166797, + 13.468605751047278 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.75, + 6.76, + 6.76, + 6.75, + 6.75 + ], + "y": [ + 13.488605513833853, + 13.488605513833853, + 14.531394721257737, + 14.531394721257737, + 13.488605513833853 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.76, + 6.77, + 6.77, + 6.76, + 6.76 + ], + "y": [ + 13.508605278742916, + 13.508605278742916, + 14.551394954245186, + 14.551394954245186, + 13.508605278742916 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.77, + 6.779999999999999, + 6.779999999999999, + 6.77, + 6.77 + ], + "y": [ + 13.52860504575547, + 13.52860504575547, + 14.571395185147967, + 14.571395185147967, + 13.52860504575547 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.779999999999999, + 6.79, + 6.79, + 6.779999999999999, + 6.779999999999999 + ], + "y": [ + 13.548604814852691, + 13.548604814852691, + 14.591395413984705, + 14.591395413984705, + 13.548604814852691 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.79, + 6.8, + 6.8, + 6.79, + 6.79 + ], + "y": [ + 13.568604586015956, + 13.568604586015956, + 14.611395640773903, + 14.611395640773903, + 13.568604586015956 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8, + 6.81, + 6.81, + 6.8, + 6.8 + ], + "y": [ + 13.58860435922676, + 13.58860435922676, + 14.631395865533928, + 14.631395865533928, + 13.58860435922676 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.81, + 6.819999999999999, + 6.819999999999999, + 6.81, + 6.81 + ], + "y": [ + 13.608604134466738, + 13.608604134466738, + 14.65139608828292, + 14.65139608828292, + 13.608604134466738 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.819999999999999, + 6.83, + 6.83, + 6.819999999999999, + 6.819999999999999 + ], + "y": [ + 13.628603911717748, + 13.628603911717748, + 14.671396309038819, + 14.671396309038819, + 13.628603911717748 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.83, + 6.84, + 6.84, + 6.83, + 6.83 + ], + "y": [ + 13.648603690961853, + 13.648603690961853, + 14.69139652781953, + 14.69139652781953, + 13.648603690961853 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.84, + 6.85, + 6.85, + 6.84, + 6.84 + ], + "y": [ + 13.668603472181145, + 13.668603472181145, + 14.711396744642691, + 14.711396744642691, + 13.668603472181145 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.85, + 6.859999999999999, + 6.859999999999999, + 6.85, + 6.85 + ], + "y": [ + 13.688603255357986, + 13.688603255357986, + 14.731396959525814, + 14.731396959525814, + 13.688603255357986 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.859999999999999, + 6.87, + 6.87, + 6.859999999999999, + 6.859999999999999 + ], + "y": [ + 13.708603040474866, + 13.708603040474866, + 14.751397172486282, + 14.751397172486282, + 13.708603040474866 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.87, + 6.88, + 6.88, + 6.87, + 6.87 + ], + "y": [ + 13.7286028275144, + 13.7286028275144, + 14.771397383541295, + 14.771397383541295, + 13.7286028275144 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.88, + 6.89, + 6.89, + 6.88, + 6.88 + ], + "y": [ + 13.74860261645939, + 13.74860261645939, + 14.79139759270789, + 14.79139759270789, + 13.74860261645939 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.89, + 6.8999999999999995, + 6.8999999999999995, + 6.89, + 6.89 + ], + "y": [ + 13.768602407292798, + 13.768602407292798, + 14.811397800002997, + 14.811397800002997, + 13.768602407292798 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8999999999999995, + 6.91, + 6.91, + 6.8999999999999995, + 6.8999999999999995 + ], + "y": [ + 13.788602199997694, + 13.788602199997694, + 14.831398005443337, + 14.831398005443337, + 13.788602199997694 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.91, + 6.92, + 6.92, + 6.91, + 6.91 + ], + "y": [ + 13.808601994557357, + 13.808601994557357, + 14.851398209045515, + 14.851398209045515, + 13.808601994557357 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.92, + 6.93, + 6.93, + 6.92, + 6.92 + ], + "y": [ + 13.828601790955181, + 13.828601790955181, + 14.871398410825963, + 14.871398410825963, + 13.828601790955181 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.93, + 6.9399999999999995, + 6.9399999999999995, + 6.93, + 6.93 + ], + "y": [ + 13.848601589174736, + 13.848601589174736, + 14.891398610800998, + 14.891398610800998, + 13.848601589174736 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9399999999999995, + 6.95, + 6.95, + 6.9399999999999995, + 6.9399999999999995 + ], + "y": [ + 13.868601389199704, + 13.868601389199704, + 14.91139880898678, + 14.91139880898678, + 13.868601389199704 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.95, + 6.96, + 6.96, + 6.95, + 6.95 + ], + "y": [ + 13.888601191013924, + 13.888601191013924, + 14.931399005399316, + 14.931399005399316, + 13.888601191013924 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.96, + 6.97, + 6.97, + 6.96, + 6.96 + ], + "y": [ + 13.908600994601391, + 13.908600994601391, + 14.951399200054448, + 14.951399200054448, + 13.908600994601391 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.97, + 6.9799999999999995, + 6.9799999999999995, + 6.97, + 6.97 + ], + "y": [ + 13.928600799946262, + 13.928600799946262, + 14.97139939296794, + 14.97139939296794, + 13.928600799946262 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9799999999999995, + 6.99, + 6.99, + 6.9799999999999995, + 6.9799999999999995 + ], + "y": [ + 13.948600607032771, + 13.948600607032771, + 14.991399584155376, + 14.991399584155376, + 13.948600607032771 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.99, + 7, + 7, + 6.99, + 6.99 + ], + "y": [ + 13.968600415845339, + 13.968600415845339, + 15.01139977363217, + 15.01139977363217, + 13.968600415845339 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7, + 7.01, + 7.01, + 7, + 7 + ], + "y": [ + 13.988600226368547, + 13.988600226368547, + 15.031399961413637, + 15.031399961413637, + 13.988600226368547 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.01, + 7.02, + 7.02, + 7.01, + 7.01 + ], + "y": [ + 14.008600038587083, + 14.008600038587083, + 15.051400147514947, + 15.051400147514947, + 14.008600038587083 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.02, + 7.029999999999999, + 7.029999999999999, + 7.02, + 7.02 + ], + "y": [ + 14.028599852485776, + 14.028599852485776, + 15.07140033195117, + 15.07140033195117, + 14.028599852485776 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.029999999999999, + 7.04, + 7.04, + 7.029999999999999, + 7.029999999999999 + ], + "y": [ + 14.048599668049556, + 14.048599668049556, + 15.091400514737195, + 15.091400514737195, + 14.048599668049556 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.04, + 7.05, + 7.05, + 7.04, + 7.04 + ], + "y": [ + 14.068599485263533, + 14.068599485263533, + 15.111400695887747, + 15.111400695887747, + 14.068599485263533 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.05, + 7.06, + 7.06, + 7.05, + 7.05 + ], + "y": [ + 14.088599304112984, + 14.088599304112984, + 15.131400875417514, + 15.131400875417514, + 14.088599304112984 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.06, + 7.069999999999999, + 7.069999999999999, + 7.06, + 7.06 + ], + "y": [ + 14.10859912458322, + 14.10859912458322, + 15.151401053340956, + 15.151401053340956, + 14.10859912458322 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.069999999999999, + 7.08, + 7.08, + 7.069999999999999, + 7.069999999999999 + ], + "y": [ + 14.12859894665978, + 14.12859894665978, + 15.17140122967246, + 15.17140122967246, + 14.12859894665978 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.08, + 7.09, + 7.09, + 7.08, + 7.08 + ], + "y": [ + 14.14859877032828, + 14.14859877032828, + 15.191401404426284, + 15.191401404426284, + 14.14859877032828 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.09, + 7.1, + 7.1, + 7.09, + 7.09 + ], + "y": [ + 14.168598595574458, + 14.168598595574458, + 15.211401577616536, + 15.211401577616536, + 14.168598595574458 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1, + 7.109999999999999, + 7.109999999999999, + 7.1, + 7.1 + ], + "y": [ + 14.188598422384208, + 14.188598422384208, + 15.231401749257195, + 15.231401749257195, + 14.188598422384208 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.109999999999999, + 7.12, + 7.12, + 7.109999999999999, + 7.109999999999999 + ], + "y": [ + 14.208598250743552, + 14.208598250743552, + 15.251401919362149, + 15.251401919362149, + 14.208598250743552 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.12, + 7.13, + 7.13, + 7.12, + 7.12 + ], + "y": [ + 14.228598080638601, + 14.228598080638601, + 15.27140208794514, + 15.27140208794514, + 14.228598080638601 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.13, + 7.14, + 7.14, + 7.13, + 7.13 + ], + "y": [ + 14.248597912055613, + 14.248597912055613, + 15.291402255019763, + 15.291402255019763, + 14.248597912055613 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.14, + 7.1499999999999995, + 7.1499999999999995, + 7.14, + 7.14 + ], + "y": [ + 14.268597744980992, + 14.268597744980992, + 15.31140242059953, + 15.31140242059953, + 14.268597744980992 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1499999999999995, + 7.16, + 7.16, + 7.1499999999999995, + 7.1499999999999995 + ], + "y": [ + 14.288597579401229, + 14.288597579401229, + 15.331402584697821, + 15.331402584697821, + 14.288597579401229 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.16, + 7.17, + 7.17, + 7.16, + 7.16 + ], + "y": [ + 14.30859741530294, + 14.30859741530294, + 15.351402747327894, + 15.351402747327894, + 14.30859741530294 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.17, + 7.18, + 7.18, + 7.17, + 7.17 + ], + "y": [ + 14.32859725267287, + 14.32859725267287, + 15.371402908502871, + 15.371402908502871, + 14.32859725267287 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.18, + 7.1899999999999995, + 7.1899999999999995, + 7.18, + 7.18 + ], + "y": [ + 14.348597091497895, + 14.348597091497895, + 15.391403068235784, + 15.391403068235784, + 14.348597091497895 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1899999999999995, + 7.2, + 7.2, + 7.1899999999999995, + 7.1899999999999995 + ], + "y": [ + 14.368596931764985, + 14.368596931764985, + 15.411403226539532, + 15.411403226539532, + 14.368596931764985 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2, + 7.21, + 7.21, + 7.2, + 7.2 + ], + "y": [ + 14.38859677346124, + 14.38859677346124, + 15.431403383426904, + 15.431403383426904, + 14.38859677346124 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.21, + 7.22, + 7.22, + 7.21, + 7.21 + ], + "y": [ + 14.40859661657387, + 14.40859661657387, + 15.451403538910567, + 15.451403538910567, + 14.40859661657387 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.22, + 7.2299999999999995, + 7.2299999999999995, + 7.22, + 7.22 + ], + "y": [ + 14.42859646109021, + 14.42859646109021, + 15.471403693003097, + 15.471403693003097, + 14.42859646109021 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2299999999999995, + 7.24, + 7.24, + 7.2299999999999995, + 7.2299999999999995 + ], + "y": [ + 14.448596306997683, + 14.448596306997683, + 15.49140384571692, + 15.49140384571692, + 14.448596306997683 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.24, + 7.25, + 7.25, + 7.24, + 7.24 + ], + "y": [ + 14.468596154283862, + 14.468596154283862, + 15.51140399706443, + 15.51140399706443, + 14.468596154283862 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.25, + 7.26, + 7.26, + 7.25, + 7.25 + ], + "y": [ + 14.488596002936355, + 14.488596002936355, + 15.531404147057778, + 15.531404147057778, + 14.488596002936355 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.26, + 7.27, + 7.27, + 7.26, + 7.26 + ], + "y": [ + 14.50859585294301, + 14.50859585294301, + 15.551404295709105, + 15.551404295709105, + 14.50859585294301 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.27, + 7.279999999999999, + 7.279999999999999, + 7.27, + 7.27 + ], + "y": [ + 14.528595704291686, + 14.528595704291686, + 15.57140444303044, + 15.57140444303044, + 14.528595704291686 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.279999999999999, + 7.29, + 7.29, + 7.279999999999999, + 7.279999999999999 + ], + "y": [ + 14.548595556970353, + 14.548595556970353, + 15.591404589033653, + 15.591404589033653, + 14.548595556970353 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.29, + 7.3, + 7.3, + 7.29, + 7.29 + ], + "y": [ + 14.568595410967143, + 14.568595410967143, + 15.611404733730591, + 15.611404733730591, + 14.568595410967143 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3, + 7.31, + 7.31, + 7.3, + 7.3 + ], + "y": [ + 14.588595266270207, + 14.588595266270207, + 15.631404877132878, + 15.631404877132878, + 14.588595266270207 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.31, + 7.319999999999999, + 7.319999999999999, + 7.31, + 7.31 + ], + "y": [ + 14.608595122867923, + 14.608595122867923, + 15.651405019252131, + 15.651405019252131, + 14.608595122867923 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.319999999999999, + 7.33, + 7.33, + 7.319999999999999, + 7.319999999999999 + ], + "y": [ + 14.628594980748673, + 14.628594980748673, + 15.671405160099823, + 15.671405160099823, + 14.628594980748673 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.33, + 7.34, + 7.34, + 7.33, + 7.33 + ], + "y": [ + 14.648594839900984, + 14.648594839900984, + 15.691405299687355, + 15.691405299687355, + 14.648594839900984 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.34, + 7.35, + 7.35, + 7.34, + 7.34 + ], + "y": [ + 14.668594700313454, + 14.668594700313454, + 15.71140543802597, + 15.71140543802597, + 14.668594700313454 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.35, + 7.359999999999999, + 7.359999999999999, + 7.35, + 7.35 + ], + "y": [ + 14.688594561974842, + 14.688594561974842, + 15.731405575126868, + 15.731405575126868, + 14.688594561974842 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.359999999999999, + 7.37, + 7.37, + 7.359999999999999, + 7.359999999999999 + ], + "y": [ + 14.708594424873947, + 14.708594424873947, + 15.751405711001105, + 15.751405711001105, + 14.708594424873947 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.37, + 7.38, + 7.38, + 7.37, + 7.37 + ], + "y": [ + 14.728594288999712, + 14.728594288999712, + 15.771405845659672, + 15.771405845659672, + 14.728594288999712 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.38, + 7.39, + 7.39, + 7.38, + 7.38 + ], + "y": [ + 14.748594154341149, + 14.748594154341149, + 15.791405979113446, + 15.791405979113446, + 14.748594154341149 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.39, + 7.3999999999999995, + 7.3999999999999995, + 7.39, + 7.39 + ], + "y": [ + 14.768594020887377, + 14.768594020887377, + 15.811406111373207, + 15.811406111373207, + 14.768594020887377 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3999999999999995, + 7.41, + 7.41, + 7.3999999999999995, + 7.3999999999999995 + ], + "y": [ + 14.788593888627618, + 14.788593888627618, + 15.831406242449626, + 15.831406242449626, + 14.788593888627618 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.41, + 7.42, + 7.42, + 7.41, + 7.41 + ], + "y": [ + 14.808593757551202, + 14.808593757551202, + 15.851406372353281, + 15.851406372353281, + 14.808593757551202 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.42, + 7.43, + 7.43, + 7.42, + 7.42 + ], + "y": [ + 14.82859362764755, + 14.82859362764755, + 15.871406501094707, + 15.871406501094707, + 14.82859362764755 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.43, + 7.4399999999999995, + 7.4399999999999995, + 7.43, + 7.43 + ], + "y": [ + 14.848593498906126, + 14.848593498906126, + 15.891406628684255, + 15.891406628684255, + 14.848593498906126 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4399999999999995, + 7.45, + 7.45, + 7.4399999999999995, + 7.4399999999999995 + ], + "y": [ + 14.868593371316582, + 14.868593371316582, + 15.911406755132264, + 15.911406755132264, + 14.868593371316582 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.45, + 7.46, + 7.46, + 7.45, + 7.45 + ], + "y": [ + 14.888593244868575, + 14.888593244868575, + 15.93140688044893, + 15.93140688044893, + 14.888593244868575 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.46, + 7.47, + 7.47, + 7.46, + 7.46 + ], + "y": [ + 14.908593119551911, + 14.908593119551911, + 15.951407004644397, + 15.951407004644397, + 14.908593119551911 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.47, + 7.4799999999999995, + 7.4799999999999995, + 7.47, + 7.47 + ], + "y": [ + 14.928592995356448, + 14.928592995356448, + 15.971407127728677, + 15.971407127728677, + 14.928592995356448 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4799999999999995, + 7.49, + 7.49, + 7.4799999999999995, + 7.4799999999999995 + ], + "y": [ + 14.94859287227217, + 14.94859287227217, + 15.991407249711747, + 15.991407249711747, + 14.94859287227217 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.49, + 7.5, + 7.5, + 7.49, + 7.49 + ], + "y": [ + 14.968592750289103, + 14.968592750289103, + 16.0114073706034, + 16.0114073706034, + 14.968592750289103 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5, + 7.51, + 7.51, + 7.5, + 7.5 + ], + "y": [ + 14.988592629397452, + 14.988592629397452, + 16.031407490413443, + 16.031407490413443, + 14.988592629397452 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.51, + 7.52, + 7.52, + 7.51, + 7.51 + ], + "y": [ + 15.008592509587412, + 15.008592509587412, + 16.051407609151557, + 16.051407609151557, + 15.008592509587412 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.52, + 7.529999999999999, + 7.529999999999999, + 7.52, + 7.52 + ], + "y": [ + 15.028592390849301, + 15.028592390849301, + 16.071407726827324, + 16.071407726827324, + 15.028592390849301 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.529999999999999, + 7.54, + 7.54, + 7.529999999999999, + 7.529999999999999 + ], + "y": [ + 15.048592273173538, + 15.048592273173538, + 16.091407843450252, + 16.091407843450252, + 15.048592273173538 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.54, + 7.55, + 7.55, + 7.54, + 7.54 + ], + "y": [ + 15.068592156550611, + 15.068592156550611, + 16.111407959029773, + 16.111407959029773, + 15.068592156550611 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.55, + 7.56, + 7.56, + 7.55, + 7.55 + ], + "y": [ + 15.088592040971093, + 15.088592040971093, + 16.131408073575216, + 16.131408073575216, + 15.088592040971093 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.56, + 7.569999999999999, + 7.569999999999999, + 7.56, + 7.56 + ], + "y": [ + 15.108591926425653, + 15.108591926425653, + 16.151408187095807, + 16.151408187095807, + 15.108591926425653 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.569999999999999, + 7.58, + 7.58, + 7.569999999999999, + 7.569999999999999 + ], + "y": [ + 15.128591812905064, + 15.128591812905064, + 16.171408299600724, + 16.171408299600724, + 15.128591812905064 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.58, + 7.59, + 7.59, + 7.58, + 7.58 + ], + "y": [ + 15.148591700400152, + 15.148591700400152, + 16.19140841109908, + 16.19140841109908, + 15.148591700400152 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.59, + 7.6, + 7.6, + 7.59, + 7.59 + ], + "y": [ + 15.168591588901796, + 15.168591588901796, + 16.211408521599886, + 16.211408521599886, + 15.168591588901796 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6, + 7.609999999999999, + 7.609999999999999, + 7.6, + 7.6 + ], + "y": [ + 15.188591478400996, + 15.188591478400996, + 16.231408631112036, + 16.231408631112036, + 15.188591478400996 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.609999999999999, + 7.62, + 7.62, + 7.609999999999999, + 7.609999999999999 + ], + "y": [ + 15.208591368888845, + 15.208591368888845, + 16.251408739644393, + 16.251408739644393, + 15.208591368888845 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.62, + 7.63, + 7.63, + 7.62, + 7.62 + ], + "y": [ + 15.228591260356492, + 15.228591260356492, + 16.271408847205702, + 16.271408847205702, + 15.228591260356492 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.63, + 7.64, + 7.64, + 7.63, + 7.63 + ], + "y": [ + 15.248591152795186, + 15.248591152795186, + 16.291408953804687, + 16.291408953804687, + 15.248591152795186 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.64, + 7.6499999999999995, + 7.6499999999999995, + 7.64, + 7.64 + ], + "y": [ + 15.268591046196201, + 15.268591046196201, + 16.31140905944992, + 16.31140905944992, + 15.268591046196201 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6499999999999995, + 7.66, + 7.66, + 7.6499999999999995, + 7.6499999999999995 + ], + "y": [ + 15.288590940550973, + 15.288590940550973, + 16.331409164149978, + 16.331409164149978, + 15.288590940550973 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.66, + 7.67, + 7.67, + 7.66, + 7.66 + ], + "y": [ + 15.308590835850918, + 15.308590835850918, + 16.351409267913308, + 16.351409267913308, + 15.308590835850918 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.67, + 7.68, + 7.68, + 7.67, + 7.67 + ], + "y": [ + 15.32859073208759, + 15.32859073208759, + 16.37140937074825, + 16.37140937074825, + 15.32859073208759 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.68, + 7.6899999999999995, + 7.6899999999999995, + 7.68, + 7.68 + ], + "y": [ + 15.348590629252653, + 15.348590629252653, + 16.39140947266315, + 16.39140947266315, + 15.348590629252653 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6899999999999995, + 7.7, + 7.7, + 7.6899999999999995, + 7.6899999999999995 + ], + "y": [ + 15.368590527337757, + 15.368590527337757, + 16.41140957366622, + 16.41140957366622, + 15.368590527337757 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7, + 7.71, + 7.71, + 7.7, + 7.7 + ], + "y": [ + 15.388590426334687, + 15.388590426334687, + 16.43140967376565, + 16.43140967376565, + 15.388590426334687 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.71, + 7.72, + 7.72, + 7.71, + 7.71 + ], + "y": [ + 15.40859032623526, + 15.40859032623526, + 16.45140977296948, + 16.45140977296948, + 15.40859032623526 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.72, + 7.7299999999999995, + 7.7299999999999995, + 7.72, + 7.72 + ], + "y": [ + 15.42859022703143, + 15.42859022703143, + 16.471409871285758, + 16.471409871285758, + 15.42859022703143 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7299999999999995, + 7.74, + 7.74, + 7.7299999999999995, + 7.7299999999999995 + ], + "y": [ + 15.448590128715153, + 15.448590128715153, + 16.49140996872241, + 16.49140996872241, + 15.448590128715153 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.74, + 7.75, + 7.75, + 7.74, + 7.74 + ], + "y": [ + 15.468590031278499, + 15.468590031278499, + 16.511410065287315, + 16.511410065287315, + 15.468590031278499 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.75, + 7.76, + 7.76, + 7.75, + 7.75 + ], + "y": [ + 15.488589934713593, + 15.488589934713593, + 16.53141016098827, + 16.53141016098827, + 15.488589934713593 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.76, + 7.77, + 7.77, + 7.76, + 7.76 + ], + "y": [ + 15.50858983901264, + 15.50858983901264, + 16.551410255833012, + 16.551410255833012, + 15.50858983901264 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.77, + 7.779999999999999, + 7.779999999999999, + 7.77, + 7.77 + ], + "y": [ + 15.528589744167894, + 15.528589744167894, + 16.571410349829186, + 16.571410349829186, + 15.528589744167894 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.779999999999999, + 7.79, + 7.79, + 7.779999999999999, + 7.779999999999999 + ], + "y": [ + 15.54858965017172, + 15.54858965017172, + 16.591410442984397, + 16.591410442984397, + 15.54858965017172 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.79, + 7.8, + 7.8, + 7.79, + 7.79 + ], + "y": [ + 15.568589557016509, + 15.568589557016509, + 16.61141053530613, + 16.61141053530613, + 15.568589557016509 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8, + 7.81, + 7.81, + 7.8, + 7.8 + ], + "y": [ + 15.588589464694774, + 15.588589464694774, + 16.63141062680191, + 16.63141062680191, + 15.588589464694774 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.81, + 7.819999999999999, + 7.819999999999999, + 7.81, + 7.81 + ], + "y": [ + 15.608589373198996, + 15.608589373198996, + 16.651410717479095, + 16.651410717479095, + 15.608589373198996 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.819999999999999, + 7.83, + 7.83, + 7.819999999999999, + 7.819999999999999 + ], + "y": [ + 15.628589282521808, + 15.628589282521808, + 16.671410807344984, + 16.671410807344984, + 15.628589282521808 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.83, + 7.84, + 7.84, + 7.83, + 7.83 + ], + "y": [ + 15.64858919265592, + 15.64858919265592, + 16.691410896406847, + 16.691410896406847, + 15.64858919265592 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.84, + 7.85, + 7.85, + 7.84, + 7.84 + ], + "y": [ + 15.668589103594055, + 15.668589103594055, + 16.711410984671883, + 16.711410984671883, + 15.668589103594055 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.85, + 7.859999999999999, + 7.859999999999999, + 7.85, + 7.85 + ], + "y": [ + 15.688589015329018, + 15.688589015329018, + 16.731411072147264, + 16.731411072147264, + 15.688589015329018 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.859999999999999, + 7.87, + 7.87, + 7.859999999999999, + 7.859999999999999 + ], + "y": [ + 15.708588927853636, + 15.708588927853636, + 16.75141115884001, + 16.75141115884001, + 15.708588927853636 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.87, + 7.88, + 7.88, + 7.87, + 7.87 + ], + "y": [ + 15.728588841160889, + 15.728588841160889, + 16.771411244757154, + 16.771411244757154, + 15.728588841160889 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.88, + 7.89, + 7.89, + 7.88, + 7.88 + ], + "y": [ + 15.748588755243745, + 15.748588755243745, + 16.791411329905607, + 16.791411329905607, + 15.748588755243745 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.89, + 7.8999999999999995, + 7.8999999999999995, + 7.89, + 7.89 + ], + "y": [ + 15.76858867009529, + 15.76858867009529, + 16.811411414292248, + 16.811411414292248, + 15.76858867009529 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8999999999999995, + 7.91, + 7.91, + 7.8999999999999995, + 7.8999999999999995 + ], + "y": [ + 15.788588585708649, + 15.788588585708649, + 16.831411497923927, + 16.831411497923927, + 15.788588585708649 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.91, + 7.92, + 7.92, + 7.91, + 7.91 + ], + "y": [ + 15.80858850207697, + 15.80858850207697, + 16.851411580807362, + 16.851411580807362, + 15.80858850207697 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.92, + 7.93, + 7.93, + 7.92, + 7.92 + ], + "y": [ + 15.828588419193535, + 15.828588419193535, + 16.871411662949228, + 16.871411662949228, + 15.828588419193535 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.93, + 7.9399999999999995, + 7.9399999999999995, + 7.93, + 7.93 + ], + "y": [ + 15.848588337051664, + 15.848588337051664, + 16.89141174435625, + 16.89141174435625, + 15.848588337051664 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9399999999999995, + 7.95, + 7.95, + 7.9399999999999995, + 7.9399999999999995 + ], + "y": [ + 15.868588255644642, + 15.868588255644642, + 16.911411825034918, + 16.911411825034918, + 15.868588255644642 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.95, + 7.96, + 7.96, + 7.95, + 7.95 + ], + "y": [ + 15.888588174965975, + 15.888588174965975, + 16.93141190499177, + 16.93141190499177, + 15.888588174965975 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.96, + 7.97, + 7.97, + 7.96, + 7.96 + ], + "y": [ + 15.908588095009122, + 15.908588095009122, + 16.95141198423332, + 16.95141198423332, + 15.908588095009122 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.97, + 7.9799999999999995, + 7.9799999999999995, + 7.97, + 7.97 + ], + "y": [ + 15.92858801576757, + 15.92858801576757, + 16.971412062765843, + 16.971412062765843, + 15.92858801576757 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9799999999999995, + 7.99, + 7.99, + 7.9799999999999995, + 7.9799999999999995 + ], + "y": [ + 15.948587937235047, + 15.948587937235047, + 16.991412140595795, + 16.991412140595795, + 15.948587937235047 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.99, + 8, + 8, + 7.99, + 7.99 + ], + "y": [ + 15.968587859405094, + 15.968587859405094, + 17.011412217729426, + 17.011412217729426, + 15.968587859405094 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8, + 8.01, + 8.01, + 8, + 8 + ], + "y": [ + 15.988587782271463, + 15.988587782271463, + 17.03141229417291, + 17.03141229417291, + 15.988587782271463 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.01, + 8.02, + 8.02, + 8.01, + 8.01 + ], + "y": [ + 16.008587705827978, + 16.008587705827978, + 17.051412369932535, + 17.051412369932535, + 16.008587705827978 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.02, + 8.03, + 8.03, + 8.02, + 8.02 + ], + "y": [ + 16.02858763006835, + 16.02858763006835, + 17.071412445014317, + 17.071412445014317, + 16.02858763006835 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.03, + 8.04, + 8.04, + 8.03, + 8.03 + ], + "y": [ + 16.048587554986568, + 16.048587554986568, + 17.091412519424388, + 17.091412519424388, + 16.048587554986568 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.04, + 8.049999999999999, + 8.049999999999999, + 8.04, + 8.04 + ], + "y": [ + 16.068587480576497, + 16.068587480576497, + 17.111412593168712, + 17.111412593168712, + 16.068587480576497 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.049999999999999, + 8.06, + 8.06, + 8.049999999999999, + 8.049999999999999 + ], + "y": [ + 16.088587406832172, + 16.088587406832172, + 17.131412666253283, + 17.131412666253283, + 16.088587406832172 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.95, + 5.96, + 5.96, + 5.95, + 5.95 + ], + "y": [ + 11.888633166256277, + 11.888633166256277, + 17.151363746300504, + 17.151363746300504, + 11.888633166256277 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.96, + 5.97, + 5.97, + 5.96, + 5.96 + ], + "y": [ + 11.908572585818636, + 11.908572585818636, + 17.171214812150577, + 17.171214812150577, + 11.908572585818636 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.97, + 5.98, + 5.98, + 5.97, + 5.97 + ], + "y": [ + 11.928412006636453, + 11.928412006636453, + 17.19096586340309, + 17.19096586340309, + 11.928412006636453 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.98, + 5.99, + 5.99, + 5.98, + 5.98 + ], + "y": [ + 11.948151429175253, + 11.948151429175253, + 17.21061690005283, + 17.21061690005283, + 11.948151429175253 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.99, + 6, + 6, + 5.99, + 5.99 + ], + "y": [ + 11.967790853505397, + 11.967790853505397, + 17.230167922109977, + 17.230167922109977, + 11.967790853505397 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6, + 6.01, + 6.01, + 6, + 6 + ], + "y": [ + 11.98733027968182, + 11.98733027968182, + 17.249618929600796, + 17.249618929600796, + 11.98733027968182 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.01, + 6.0200000000000005, + 6.0200000000000005, + 6.01, + 6.01 + ], + "y": [ + 12.006769707743366, + 12.006769707743366, + 17.268969922568353, + 17.268969922568353, + 12.006769707743366 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.0200000000000005, + 6.03, + 6.03, + 6.0200000000000005, + 6.0200000000000005 + ], + "y": [ + 12.026109137712087, + 12.026109137712087, + 17.288220901073185, + 17.288220901073185, + 12.026109137712087 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.03, + 6.04, + 6.04, + 6.03, + 6.03 + ], + "y": [ + 12.045348569592543, + 12.045348569592543, + 17.307371865193925, + 17.307371865193925, + 12.045348569592543 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.04, + 6.05, + 6.05, + 6.04, + 6.04 + ], + "y": [ + 12.064488003371217, + 12.064488003371217, + 17.326422815027886, + 17.326422815027886, + 12.064488003371217 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.05, + 6.0600000000000005, + 6.0600000000000005, + 6.05, + 6.05 + ], + "y": [ + 12.083527439015894, + 12.083527439015894, + 17.345373750691596, + 17.345373750691596, + 12.083527439015894 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.0600000000000005, + 6.07, + 6.07, + 6.0600000000000005, + 6.0600000000000005 + ], + "y": [ + 12.10246687647514, + 12.10246687647514, + 17.364224672321324, + 17.364224672321324, + 12.10246687647514 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.07, + 6.08, + 6.08, + 6.07, + 6.07 + ], + "y": [ + 12.121306315677801, + 12.121306315677801, + 17.382975580073456, + 17.382975580073456, + 12.121306315677801 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.08, + 6.09, + 6.09, + 6.08, + 6.08 + ], + "y": [ + 12.14004575653257, + 12.14004575653257, + 17.401626474124868, + 17.401626474124868, + 12.14004575653257 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.09, + 6.1000000000000005, + 6.1000000000000005, + 6.09, + 6.09 + ], + "y": [ + 12.158685198927657, + 12.158685198927657, + 17.42017735467318, + 17.42017735467318, + 12.158685198927657 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1000000000000005, + 6.11, + 6.11, + 6.1000000000000005, + 6.1000000000000005 + ], + "y": [ + 12.177224642730522, + 12.177224642730522, + 17.438628221936987, + 17.438628221936987, + 12.177224642730522 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.11, + 6.12, + 6.12, + 6.11, + 6.11 + ], + "y": [ + 12.19566408778766, + 12.19566408778766, + 17.456979076155974, + 17.456979076155974, + 12.19566408778766 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.12, + 6.13, + 6.13, + 6.12, + 6.12 + ], + "y": [ + 12.214003533924462, + 12.214003533924462, + 17.475229917590944, + 17.475229917590944, + 12.214003533924462 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.13, + 6.140000000000001, + 6.140000000000001, + 6.13, + 6.13 + ], + "y": [ + 12.232242980945198, + 12.232242980945198, + 17.49338074652369, + 17.49338074652369, + 12.232242980945198 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.140000000000001, + 6.15, + 6.15, + 6.140000000000001, + 6.140000000000001 + ], + "y": [ + 12.250382428633134, + 12.250382428633134, + 17.511431563256927, + 17.511431563256927, + 12.250382428633134 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.15, + 6.16, + 6.16, + 6.15, + 6.15 + ], + "y": [ + 12.268421876750635, + 12.268421876750635, + 17.529382368113932, + 17.529382368113932, + 12.268421876750635 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.16, + 6.17, + 6.17, + 6.16, + 6.16 + ], + "y": [ + 12.286361325039486, + 12.286361325039486, + 17.54723316143823, + 17.54723316143823, + 12.286361325039486 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.17, + 6.180000000000001, + 6.180000000000001, + 6.17, + 6.17 + ], + "y": [ + 12.304200773221211, + 12.304200773221211, + 17.564983943593138, + 17.564983943593138, + 12.304200773221211 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.180000000000001, + 6.19, + 6.19, + 6.180000000000001, + 6.180000000000001 + ], + "y": [ + 12.321940220997558, + 12.321940220997558, + 17.582634714961156, + 17.582634714961156, + 12.321940220997558 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.19, + 6.2, + 6.2, + 6.19, + 6.19 + ], + "y": [ + 12.339579668051096, + 12.339579668051096, + 17.60018547594335, + 17.60018547594335, + 12.339579668051096 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2, + 6.21, + 6.21, + 6.2, + 6.2 + ], + "y": [ + 12.357119114045794, + 12.357119114045794, + 17.61763622695853, + 17.61763622695853, + 12.357119114045794 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.21, + 6.220000000000001, + 6.220000000000001, + 6.21, + 6.21 + ], + "y": [ + 12.374558558627886, + 12.374558558627886, + 17.63498696844247, + 17.63498696844247, + 12.374558558627886 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.220000000000001, + 6.23, + 6.23, + 6.220000000000001, + 6.220000000000001 + ], + "y": [ + 12.391898001426645, + 12.391898001426645, + 17.65223770084687, + 17.65223770084687, + 12.391898001426645 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.23, + 6.24, + 6.24, + 6.23, + 6.23 + ], + "y": [ + 12.409137442055405, + 12.409137442055405, + 17.669388424638434, + 17.669388424638434, + 12.409137442055405 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.24, + 6.25, + 6.25, + 6.24, + 6.24 + ], + "y": [ + 12.426276880112525, + 12.426276880112525, + 17.6864391402977, + 17.6864391402977, + 12.426276880112525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.25, + 6.26, + 6.26, + 6.25, + 6.25 + ], + "y": [ + 12.443316315182484, + 12.443316315182484, + 17.703389848317897, + 17.703389848317897, + 12.443316315182484 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.26, + 6.2700000000000005, + 6.2700000000000005, + 6.26, + 6.26 + ], + "y": [ + 12.460255746837074, + 12.460255746837074, + 17.72024054920371, + 17.72024054920371, + 12.460255746837074 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2700000000000005, + 6.28, + 6.28, + 6.2700000000000005, + 6.2700000000000005 + ], + "y": [ + 12.477095174636652, + 12.477095174636652, + 17.736991243470037, + 17.736991243470037, + 12.477095174636652 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.28, + 6.29, + 6.29, + 6.28, + 6.28 + ], + "y": [ + 12.493834598131334, + 12.493834598131334, + 17.75364193164063, + 17.75364193164063, + 12.493834598131334 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.29, + 6.3, + 6.3, + 6.29, + 6.29 + ], + "y": [ + 12.510474016862398, + 12.510474016862398, + 17.770192614246774, + 17.770192614246774, + 12.510474016862398 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3, + 6.3100000000000005, + 6.3100000000000005, + 6.3, + 6.3 + ], + "y": [ + 12.527013430363573, + 12.527013430363573, + 17.78664329182591, + 17.78664329182591, + 12.527013430363573 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3100000000000005, + 6.32, + 6.32, + 6.3100000000000005, + 6.3100000000000005 + ], + "y": [ + 12.543452838162432, + 12.543452838162432, + 17.80299396492029, + 17.80299396492029, + 12.543452838162432 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.32, + 6.33, + 6.33, + 6.32, + 6.32 + ], + "y": [ + 12.559792239781736, + 12.559792239781736, + 17.819244634075556, + 17.819244634075556, + 12.559792239781736 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.33, + 6.34, + 6.34, + 6.33, + 6.33 + ], + "y": [ + 12.57603163474086, + 12.57603163474086, + 17.83539529983939, + 17.83539529983939, + 12.57603163474086 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.34, + 6.3500000000000005, + 6.3500000000000005, + 6.34, + 6.34 + ], + "y": [ + 12.592171022557128, + 12.592171022557128, + 17.8514459627602, + 17.8514459627602, + 12.592171022557128 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3500000000000005, + 6.36, + 6.36, + 6.3500000000000005, + 6.3500000000000005 + ], + "y": [ + 12.60821040274712, + 12.60821040274712, + 17.867396623385755, + 17.867396623385755, + 12.60821040274712 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.36, + 6.37, + 6.37, + 6.36, + 6.36 + ], + "y": [ + 12.624149774828087, + 12.624149774828087, + 17.88324728226194, + 17.88324728226194, + 12.624149774828087 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.37, + 6.38, + 6.38, + 6.37, + 6.37 + ], + "y": [ + 12.639989138319129, + 12.639989138319129, + 17.898997939931505, + 17.898997939931505, + 12.639989138319129 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.38, + 6.390000000000001, + 6.390000000000001, + 6.38, + 6.38 + ], + "y": [ + 12.655728492742492, + 12.655728492742492, + 17.914648596932867, + 17.914648596932867, + 12.655728492742492 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.390000000000001, + 6.4, + 6.4, + 6.390000000000001, + 6.390000000000001 + ], + "y": [ + 12.671367837624762, + 12.671367837624762, + 17.930199253799014, + 17.930199253799014, + 12.671367837624762 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4, + 6.41, + 6.41, + 6.4, + 6.4 + ], + "y": [ + 12.686907172497927, + 12.686907172497927, + 17.945649911056442, + 17.945649911056442, + 12.686907172497927 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.41, + 6.42, + 6.42, + 6.41, + 6.41 + ], + "y": [ + 12.702346496900486, + 12.702346496900486, + 17.961000569224133, + 17.961000569224133, + 12.702346496900486 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.42, + 6.43, + 6.43, + 6.42, + 6.42 + ], + "y": [ + 12.71768581037843, + 12.71768581037843, + 17.976251228812647, + 17.976251228812647, + 12.71768581037843 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.43, + 6.44, + 6.44, + 6.43, + 6.43 + ], + "y": [ + 12.732925112486182, + 12.732925112486182, + 17.99140189032329, + 17.99140189032329, + 12.732925112486182 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.44, + 6.45, + 6.45, + 6.44, + 6.44 + ], + "y": [ + 12.748064402787417, + 12.748064402787417, + 18.00645255424731, + 18.00645255424731, + 12.748064402787417 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.45, + 6.46, + 6.46, + 6.45, + 6.45 + ], + "y": [ + 12.763103680855853, + 12.763103680855853, + 18.021403221065246, + 18.021403221065246, + 12.763103680855853 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.46, + 6.470000000000001, + 6.470000000000001, + 6.46, + 6.46 + ], + "y": [ + 12.77804294627594, + 12.77804294627594, + 18.036253891246258, + 18.036253891246258, + 12.77804294627594 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.470000000000001, + 6.48, + 6.48, + 6.470000000000001, + 6.470000000000001 + ], + "y": [ + 12.792882198643472, + 12.792882198643472, + 18.051004565247627, + 18.051004565247627, + 12.792882198643472 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.48, + 6.49, + 6.49, + 6.48, + 6.48 + ], + "y": [ + 12.807621437566144, + 12.807621437566144, + 18.065655243514236, + 18.065655243514236, + 12.807621437566144 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.49, + 6.5, + 6.5, + 6.49, + 6.49 + ], + "y": [ + 12.822260662664036, + 12.822260662664036, + 18.080205926478243, + 18.080205926478243, + 12.822260662664036 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5, + 6.51, + 6.51, + 6.5, + 6.5 + ], + "y": [ + 12.836799873569953, + 12.836799873569953, + 18.094656614558712, + 18.094656614558712, + 12.836799873569953 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.51, + 6.5200000000000005, + 6.5200000000000005, + 6.51, + 6.51 + ], + "y": [ + 12.851239069929779, + 12.851239069929779, + 18.10900730816137, + 18.10900730816137, + 12.851239069929779 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5200000000000005, + 6.53, + 6.53, + 6.5200000000000005, + 6.5200000000000005 + ], + "y": [ + 12.865578251402756, + 12.865578251402756, + 18.123258007678405, + 18.123258007678405, + 12.865578251402756 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.53, + 6.54, + 6.54, + 6.53, + 6.53 + ], + "y": [ + 12.879817417661641, + 12.879817417661641, + 18.137408713488366, + 18.137408713488366, + 12.879817417661641 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.54, + 6.55, + 6.55, + 6.54, + 6.54 + ], + "y": [ + 12.893956568392833, + 12.893956568392833, + 18.151459425956055, + 18.151459425956055, + 12.893956568392833 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.55, + 6.5600000000000005, + 6.5600000000000005, + 6.55, + 6.55 + ], + "y": [ + 12.907995703296484, + 12.907995703296484, + 18.16541014543254, + 18.16541014543254, + 12.907995703296484 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5600000000000005, + 6.57, + 6.57, + 6.5600000000000005, + 6.5600000000000005 + ], + "y": [ + 12.92193482208647, + 12.92193482208647, + 18.17926087225515, + 18.17926087225515, + 12.92193482208647 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.57, + 6.58, + 6.58, + 6.57, + 6.57 + ], + "y": [ + 12.935773924490418, + 12.935773924490418, + 18.193011606747593, + 18.193011606747593, + 12.935773924490418 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.58, + 6.59, + 6.59, + 6.58, + 6.58 + ], + "y": [ + 12.94951301024954, + 12.94951301024954, + 18.20666234922004, + 18.20666234922004, + 12.94951301024954 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.59, + 6.6000000000000005, + 6.6000000000000005, + 6.59, + 6.59 + ], + "y": [ + 12.963152079118611, + 12.963152079118611, + 18.220213099969293, + 18.220213099969293, + 12.963152079118611 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6000000000000005, + 6.61, + 6.61, + 6.6000000000000005, + 6.6000000000000005 + ], + "y": [ + 12.976691130865767, + 12.976691130865767, + 18.233663859278995, + 18.233663859278995, + 12.976691130865767 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.61, + 6.62, + 6.62, + 6.61, + 6.61 + ], + "y": [ + 12.990130165272305, + 12.990130165272305, + 18.247014627419816, + 18.247014627419816, + 12.990130165272305 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.62, + 6.63, + 6.63, + 6.62, + 6.62 + ], + "y": [ + 13.003469182132472, + 13.003469182132472, + 18.260265404649715, + 18.260265404649715, + 13.003469182132472 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.63, + 6.640000000000001, + 6.640000000000001, + 6.63, + 6.63 + ], + "y": [ + 13.016708181253248, + 13.016708181253248, + 18.273416191214192, + 18.273416191214192, + 13.016708181253248 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.640000000000001, + 6.65, + 6.65, + 6.640000000000001, + 6.640000000000001 + ], + "y": [ + 13.029847162454049, + 13.029847162454049, + 18.286466987346586, + 18.286466987346586, + 13.029847162454049 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.65, + 6.66, + 6.66, + 6.65, + 6.65 + ], + "y": [ + 13.042886125566469, + 13.042886125566469, + 18.299417793268354, + 18.299417793268354, + 13.042886125566469 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.66, + 6.67, + 6.67, + 6.66, + 6.66 + ], + "y": [ + 13.055825070433965, + 13.055825070433965, + 18.312268609189424, + 18.312268609189424, + 13.055825070433965 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.67, + 6.68, + 6.68, + 6.67, + 6.67 + ], + "y": [ + 13.068663996911527, + 13.068663996911527, + 18.32501943530847, + 18.32501943530847, + 13.068663996911527 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.68, + 6.69, + 6.69, + 6.68, + 6.68 + ], + "y": [ + 13.081402904865403, + 13.081402904865403, + 18.337670271813284, + 18.337670271813284, + 13.081402904865403 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.69, + 6.7, + 6.7, + 6.69, + 6.69 + ], + "y": [ + 13.094041794172721, + 13.094041794172721, + 18.350221118881095, + 18.350221118881095, + 13.094041794172721 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7, + 6.71, + 6.71, + 6.7, + 6.7 + ], + "y": [ + 13.106580664721157, + 13.106580664721157, + 18.362671976678893, + 18.362671976678893, + 13.106580664721157 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.71, + 6.720000000000001, + 6.720000000000001, + 6.71, + 6.71 + ], + "y": [ + 13.119019516408628, + 13.119019516408628, + 18.375022845363773, + 18.375022845363773, + 13.119019516408628 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.720000000000001, + 6.73, + 6.73, + 6.720000000000001, + 6.720000000000001 + ], + "y": [ + 13.131358349142953, + 13.131358349142953, + 18.387273725083315, + 18.387273725083315, + 13.131358349142953 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.73, + 6.74, + 6.74, + 6.73, + 6.73 + ], + "y": [ + 13.14359716284146, + 13.14359716284146, + 18.399424615975843, + 18.399424615975843, + 13.14359716284146 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.74, + 6.75, + 6.75, + 6.74, + 6.74 + ], + "y": [ + 13.15573595743072, + 13.15573595743072, + 18.41147551817083, + 18.41147551817083, + 13.15573595743072 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.75, + 6.76, + 6.76, + 6.75, + 6.75 + ], + "y": [ + 13.167774732846167, + 13.167774732846167, + 18.423426431789153, + 18.423426431789153, + 13.167774732846167 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.76, + 6.7700000000000005, + 6.7700000000000005, + 6.76, + 6.76 + ], + "y": [ + 13.179713489031817, + 13.179713489031817, + 18.4352773569435, + 18.4352773569435, + 13.179713489031817 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7700000000000005, + 6.78, + 6.78, + 6.7700000000000005, + 6.7700000000000005 + ], + "y": [ + 13.191552225939885, + 13.191552225939885, + 18.44702829373861, + 18.44702829373861, + 13.191552225939885 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.78, + 6.79, + 6.79, + 6.78, + 6.78 + ], + "y": [ + 13.203290943530517, + 13.203290943530517, + 18.45867924227162, + 18.45867924227162, + 13.203290943530517 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.79, + 6.8, + 6.8, + 6.79, + 6.79 + ], + "y": [ + 13.214929641771477, + 13.214929641771477, + 18.47023020263232, + 18.47023020263232, + 13.214929641771477 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8, + 6.8100000000000005, + 6.8100000000000005, + 6.8, + 6.8 + ], + "y": [ + 13.226468320637869, + 13.226468320637869, + 18.48168117490349, + 18.48168117490349, + 13.226468320637869 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8100000000000005, + 6.82, + 6.82, + 6.8100000000000005, + 6.8100000000000005 + ], + "y": [ + 13.237906980111788, + 13.237906980111788, + 18.493032159161157, + 18.493032159161157, + 13.237906980111788 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.82, + 6.83, + 6.83, + 6.82, + 6.82 + ], + "y": [ + 13.249245620182101, + 13.249245620182101, + 18.504283155474855, + 18.504283155474855, + 13.249245620182101 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.83, + 6.84, + 6.84, + 6.83, + 6.83 + ], + "y": [ + 13.26048424084416, + 13.26048424084416, + 18.515434163907916, + 18.515434163907916, + 13.26048424084416 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.84, + 6.8500000000000005, + 6.8500000000000005, + 6.84, + 6.84 + ], + "y": [ + 13.271622842099521, + 13.271622842099521, + 18.526485184517664, + 18.526485184517664, + 13.271622842099521 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8500000000000005, + 6.86, + 6.86, + 6.8500000000000005, + 6.8500000000000005 + ], + "y": [ + 13.282661423955727, + 13.282661423955727, + 18.53743621735572, + 18.53743621735572, + 13.282661423955727 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.86, + 6.87, + 6.87, + 6.86, + 6.86 + ], + "y": [ + 13.293599986426043, + 13.293599986426043, + 18.548287262468175, + 18.548287262468175, + 13.293599986426043 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.87, + 6.88, + 6.88, + 6.87, + 6.87 + ], + "y": [ + 13.304438529529257, + 13.304438529529257, + 18.55903831989582, + 18.55903831989582, + 13.304438529529257 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.88, + 6.890000000000001, + 6.890000000000001, + 6.88, + 6.88 + ], + "y": [ + 13.31517705328945, + 13.31517705328945, + 18.569689389674384, + 18.569689389674384, + 13.31517705328945 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.890000000000001, + 6.9, + 6.9, + 6.890000000000001, + 6.890000000000001 + ], + "y": [ + 13.325815557735766, + 13.325815557735766, + 18.580240471834724, + 18.580240471834724, + 13.325815557735766 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9, + 6.91, + 6.91, + 6.9, + 6.9 + ], + "y": [ + 13.336354042902215, + 13.336354042902215, + 18.59069156640298, + 18.59069156640298, + 13.336354042902215 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.91, + 6.92, + 6.92, + 6.91, + 6.91 + ], + "y": [ + 13.346792508827521, + 13.346792508827521, + 18.601042673400762, + 18.601042673400762, + 13.346792508827521 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.92, + 6.93, + 6.93, + 6.92, + 6.92 + ], + "y": [ + 13.35713095555495, + 13.35713095555495, + 18.61129379284535, + 18.61129379284535, + 13.35713095555495 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.93, + 6.94, + 6.94, + 6.93, + 6.93 + ], + "y": [ + 13.36736938313209, + 13.36736938313209, + 18.62144492474981, + 18.62144492474981, + 13.36736938313209 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.94, + 6.95, + 6.95, + 6.94, + 6.94 + ], + "y": [ + 13.377507791610725, + 13.377507791610725, + 18.631496069123187, + 18.631496069123187, + 13.377507791610725 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.95, + 6.96, + 6.96, + 6.95, + 6.95 + ], + "y": [ + 13.387546181046694, + 13.387546181046694, + 18.64144722597061, + 18.64144722597061, + 13.387546181046694 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.96, + 6.970000000000001, + 6.970000000000001, + 6.96, + 6.96 + ], + "y": [ + 13.39748455149971, + 13.39748455149971, + 18.651298395293423, + 18.651298395293423, + 13.39748455149971 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.970000000000001, + 6.98, + 6.98, + 6.970000000000001, + 6.970000000000001 + ], + "y": [ + 13.407322903033275, + 13.407322903033275, + 18.661049577089354, + 18.661049577089354, + 13.407322903033275 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.98, + 6.99, + 6.99, + 6.98, + 6.98 + ], + "y": [ + 13.417061235714538, + 13.417061235714538, + 18.67070077135257, + 18.67070077135257, + 13.417061235714538 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.99, + 7, + 7, + 6.99, + 6.99 + ], + "y": [ + 13.426699549614186, + 13.426699549614186, + 18.680251978073798, + 18.680251978073798, + 13.426699549614186 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7, + 7.01, + 7.01, + 7, + 7 + ], + "y": [ + 13.436237844806335, + 13.436237844806335, + 18.689703197240462, + 18.689703197240462, + 13.436237844806335 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.01, + 7.0200000000000005, + 7.0200000000000005, + 7.01, + 7.01 + ], + "y": [ + 13.445676121368422, + 13.445676121368422, + 18.699054428836735, + 18.699054428836735, + 13.445676121368422 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.0200000000000005, + 7.03, + 7.03, + 7.0200000000000005, + 7.0200000000000005 + ], + "y": [ + 13.455014379381122, + 13.455014379381122, + 18.708305672843636, + 18.708305672843636, + 13.455014379381122 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.03, + 7.04, + 7.04, + 7.03, + 7.03 + ], + "y": [ + 13.464252618928263, + 13.464252618928263, + 18.71745692923909, + 18.71745692923909, + 13.464252618928263 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.04, + 7.050000000000001, + 7.050000000000001, + 7.04, + 7.04 + ], + "y": [ + 13.473390840096757, + 13.473390840096757, + 18.726508197998026, + 18.726508197998026, + 13.473390840096757 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.050000000000001, + 7.0600000000000005, + 7.0600000000000005, + 7.050000000000001, + 7.050000000000001 + ], + "y": [ + 13.482429042976525, + 13.482429042976525, + 18.735459479092423, + 18.735459479092423, + 13.482429042976525 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.0600000000000005, + 7.07, + 7.07, + 7.0600000000000005, + 7.0600000000000005 + ], + "y": [ + 13.49136722766043, + 13.49136722766043, + 18.744310772491364, + 18.744310772491364, + 13.49136722766043 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.07, + 7.08, + 7.08, + 7.07, + 7.07 + ], + "y": [ + 13.500205394244228, + 13.500205394244228, + 18.753062078161065, + 18.753062078161065, + 13.500205394244228 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.08, + 7.09, + 7.09, + 7.08, + 7.08 + ], + "y": [ + 13.508943542826552, + 13.508943542826552, + 18.76171339606498, + 18.76171339606498, + 13.508943542826552 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.09, + 7.1, + 7.1, + 7.09, + 7.09 + ], + "y": [ + 13.51758167350879, + 13.51758167350879, + 18.77026472616376, + 18.77026472616376, + 13.51758167350879 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1, + 7.11, + 7.11, + 7.1, + 7.1 + ], + "y": [ + 13.526119786395114, + 13.526119786395114, + 18.77871606841535, + 18.77871606841535, + 13.526119786395114 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.11, + 7.12, + 7.12, + 7.11, + 7.11 + ], + "y": [ + 13.534557881592411, + 13.534557881592411, + 18.787067422775, + 18.787067422775, + 13.534557881592411 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.12, + 7.13, + 7.13, + 7.12, + 7.12 + ], + "y": [ + 13.542895959210266, + 13.542895959210266, + 18.79531878919523, + 18.79531878919523, + 13.542895959210266 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.13, + 7.140000000000001, + 7.140000000000001, + 7.13, + 7.13 + ], + "y": [ + 13.551134019361006, + 13.551134019361006, + 18.803470167625907, + 18.803470167625907, + 13.551134019361006 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.140000000000001, + 7.15, + 7.15, + 7.140000000000001, + 7.140000000000001 + ], + "y": [ + 13.55927206215959, + 13.55927206215959, + 18.811521558014213, + 18.811521558014213, + 13.55927206215959 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.15, + 7.16, + 7.16, + 7.15, + 7.15 + ], + "y": [ + 13.567310087723655, + 13.567310087723655, + 18.819472960304683, + 18.819472960304683, + 13.567310087723655 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.16, + 7.17, + 7.17, + 7.16, + 7.16 + ], + "y": [ + 13.575248096173498, + 13.575248096173498, + 18.82732437443917, + 18.82732437443917, + 13.575248096173498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.17, + 7.18, + 7.18, + 7.17, + 7.17 + ], + "y": [ + 13.583086087632095, + 13.583086087632095, + 18.83507580035685, + 18.83507580035685, + 13.583086087632095 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.18, + 7.19, + 7.19, + 7.18, + 7.18 + ], + "y": [ + 13.590824062225085, + 13.590824062225085, + 18.842727237994204, + 18.842727237994204, + 13.590824062225085 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.19, + 7.2, + 7.2, + 7.19, + 7.19 + ], + "y": [ + 13.598462020080838, + 13.598462020080838, + 18.850278687284973, + 18.850278687284973, + 13.598462020080838 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2, + 7.21, + 7.21, + 7.2, + 7.2 + ], + "y": [ + 13.60599996133042, + 13.60599996133042, + 18.857730148160186, + 18.857730148160186, + 13.60599996133042 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.21, + 7.220000000000001, + 7.220000000000001, + 7.21, + 7.21 + ], + "y": [ + 13.613437886107617, + 13.613437886107617, + 18.865081620548068, + 18.865081620548068, + 13.613437886107617 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.220000000000001, + 7.23, + 7.23, + 7.220000000000001, + 7.220000000000001 + ], + "y": [ + 13.620775794549033, + 13.620775794549033, + 18.872333104374036, + 18.872333104374036, + 13.620775794549033 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.23, + 7.24, + 7.24, + 7.23, + 7.23 + ], + "y": [ + 13.62801368679406, + 13.62801368679406, + 18.879484599560634, + 18.879484599560634, + 13.62801368679406 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.24, + 7.25, + 7.25, + 7.24, + 7.24 + ], + "y": [ + 13.635151562984966, + 13.635151562984966, + 18.886536106027464, + 18.886536106027464, + 13.635151562984966 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.25, + 7.26, + 7.26, + 7.25, + 7.25 + ], + "y": [ + 13.642189423266982, + 13.642189423266982, + 18.893487623691183, + 18.893487623691183, + 13.642189423266982 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.26, + 7.2700000000000005, + 7.2700000000000005, + 7.26, + 7.26 + ], + "y": [ + 13.64912726778827, + 13.64912726778827, + 18.900339152465367, + 18.900339152465367, + 13.64912726778827 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2700000000000005, + 7.28, + 7.28, + 7.2700000000000005, + 7.2700000000000005 + ], + "y": [ + 13.655965096700047, + 13.655965096700047, + 18.90709069226047, + 18.90709069226047, + 13.655965096700047 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.28, + 7.29, + 7.29, + 7.28, + 7.28 + ], + "y": [ + 13.662702910156673, + 13.662702910156673, + 18.913742242983737, + 18.913742242983737, + 13.662702910156673 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.29, + 7.300000000000001, + 7.300000000000001, + 7.29, + 7.29 + ], + "y": [ + 13.669340708315723, + 13.669340708315723, + 18.920293804539085, + 18.920293804539085, + 13.669340708315723 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.300000000000001, + 7.3100000000000005, + 7.3100000000000005, + 7.300000000000001, + 7.300000000000001 + ], + "y": [ + 13.67587849133809, + 13.67587849133809, + 18.926745376826997, + 18.926745376826997, + 13.67587849133809 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3100000000000005, + 7.32, + 7.32, + 7.3100000000000005, + 7.3100000000000005 + ], + "y": [ + 13.682316259388106, + 13.682316259388106, + 18.933096959744454, + 18.933096959744454, + 13.682316259388106 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.32, + 7.33, + 7.33, + 7.32, + 7.32 + ], + "y": [ + 13.688654012633586, + 13.688654012633586, + 18.93934855318476, + 18.93934855318476, + 13.688654012633586 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.33, + 7.34, + 7.34, + 7.33, + 7.33 + ], + "y": [ + 13.694891751246029, + 13.694891751246029, + 18.94550015703741, + 18.94550015703741, + 13.694891751246029 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.34, + 7.35, + 7.35, + 7.34, + 7.34 + ], + "y": [ + 13.701029475400755, + 13.701029475400755, + 18.951551771187944, + 18.951551771187944, + 13.701029475400755 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.35, + 7.36, + 7.36, + 7.35, + 7.35 + ], + "y": [ + 13.707067185277019, + 13.707067185277019, + 18.957503395517758, + 18.957503395517758, + 13.707067185277019 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.36, + 7.37, + 7.37, + 7.36, + 7.36 + ], + "y": [ + 13.713004881058222, + 13.713004881058222, + 18.96335502990394, + 18.96335502990394, + 13.713004881058222 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.37, + 7.38, + 7.38, + 7.37, + 7.37 + ], + "y": [ + 13.718842562932087, + 13.718842562932087, + 18.969106674219027, + 18.969106674219027, + 13.718842562932087 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.38, + 7.390000000000001, + 7.390000000000001, + 7.38, + 7.38 + ], + "y": [ + 13.72458023109089, + 13.72458023109089, + 18.974758328330857, + 18.974758328330857, + 13.72458023109089 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.390000000000001, + 7.4, + 7.4, + 7.390000000000001, + 7.390000000000001 + ], + "y": [ + 13.73021788573159, + 13.73021788573159, + 18.980309992102235, + 18.980309992102235, + 13.73021788573159 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4, + 7.41, + 7.41, + 7.4, + 7.4 + ], + "y": [ + 13.735755527056169, + 13.735755527056169, + 18.985761665390715, + 18.985761665390715, + 13.735755527056169 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.41, + 7.42, + 7.42, + 7.41, + 7.41 + ], + "y": [ + 13.741193155271885, + 13.741193155271885, + 18.991113348048273, + 18.991113348048273, + 13.741193155271885 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.42, + 7.43, + 7.43, + 7.42, + 7.42 + ], + "y": [ + 13.746530770591534, + 13.746530770591534, + 18.996365039921002, + 18.996365039921002, + 13.746530770591534 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.43, + 7.44, + 7.44, + 7.43, + 7.43 + ], + "y": [ + 13.751768373233844, + 13.751768373233844, + 19.001516740848743, + 19.001516740848743, + 13.751768373233844 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.44, + 7.45, + 7.45, + 7.44, + 7.44 + ], + "y": [ + 13.756905963423762, + 13.756905963423762, + 19.006568450664645, + 19.006568450664645, + 13.756905963423762 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.45, + 7.46, + 7.46, + 7.45, + 7.45 + ], + "y": [ + 13.761943541392938, + 13.761943541392938, + 19.011520169194807, + 19.011520169194807, + 13.761943541392938 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.46, + 7.470000000000001, + 7.470000000000001, + 7.46, + 7.46 + ], + "y": [ + 13.766881107380062, + 13.766881107380062, + 19.016371896257713, + 19.016371896257713, + 13.766881107380062 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.470000000000001, + 7.48, + 7.48, + 7.470000000000001, + 7.470000000000001 + ], + "y": [ + 13.771718661631436, + 13.771718661631436, + 19.021123631663723, + 19.021123631663723, + 13.771718661631436 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.48, + 7.49, + 7.49, + 7.48, + 7.48 + ], + "y": [ + 13.7764562044015, + 13.7764562044015, + 19.025775375214504, + 19.025775375214504, + 13.7764562044015 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.49, + 7.5, + 7.5, + 7.49, + 7.49 + ], + "y": [ + 13.781093735953375, + 13.781093735953375, + 19.030327126702286, + 19.030327126702286, + 13.781093735953375 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5, + 7.51, + 7.51, + 7.5, + 7.5 + ], + "y": [ + 13.785631256559622, + 13.785631256559622, + 19.034778885909194, + 19.034778885909194, + 13.785631256559622 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.51, + 7.5200000000000005, + 7.5200000000000005, + 7.51, + 7.51 + ], + "y": [ + 13.790068766502902, + 13.790068766502902, + 19.03913065260638, + 19.03913065260638, + 13.790068766502902 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5200000000000005, + 7.53, + 7.53, + 7.5200000000000005, + 7.5200000000000005 + ], + "y": [ + 13.79440626607685, + 13.79440626607685, + 19.04338242655309, + 19.04338242655309, + 13.79440626607685 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.53, + 7.54, + 7.54, + 7.53, + 7.53 + ], + "y": [ + 13.798643755587017, + 13.798643755587017, + 19.047534207495673, + 19.047534207495673, + 13.798643755587017 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.54, + 7.550000000000001, + 7.550000000000001, + 7.54, + 7.54 + ], + "y": [ + 13.80278123535183, + 13.80278123535183, + 19.051585995166377, + 19.051585995166377, + 13.80278123535183 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.550000000000001, + 7.5600000000000005, + 7.5600000000000005, + 7.550000000000001, + 7.550000000000001 + ], + "y": [ + 13.806818705703833, + 13.806818705703833, + 19.055537789282038, + 19.055537789282038, + 13.806818705703833 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5600000000000005, + 7.57, + 7.57, + 7.5600000000000005, + 7.5600000000000005 + ], + "y": [ + 13.810756166990982, + 13.810756166990982, + 19.0593895895426, + 19.0593895895426, + 13.810756166990982 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.57, + 7.58, + 7.58, + 7.57, + 7.57 + ], + "y": [ + 13.814593619578101, + 13.814593619578101, + 19.063141395629454, + 19.063141395629454, + 13.814593619578101 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.58, + 7.59, + 7.59, + 7.58, + 7.58 + ], + "y": [ + 13.818331063848595, + 13.818331063848595, + 19.066793207203514, + 19.066793207203514, + 13.818331063848595 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.59, + 7.6, + 7.6, + 7.59, + 7.59 + ], + "y": [ + 13.821968500206326, + 13.821968500206326, + 19.07034502390306, + 19.07034502390306, + 13.821968500206326 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6, + 7.61, + 7.61, + 7.6, + 7.6 + ], + "y": [ + 13.825505929077806, + 13.825505929077806, + 19.073796845341246, + 19.073796845341246, + 13.825505929077806 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.61, + 7.62, + 7.62, + 7.61, + 7.61 + ], + "y": [ + 13.82894335091466, + 13.82894335091466, + 19.077148671103274, + 19.077148671103274, + 13.82894335091466 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.62, + 7.63, + 7.63, + 7.62, + 7.62 + ], + "y": [ + 13.832280766196456, + 13.832280766196456, + 19.08040050074313, + 19.08040050074313, + 13.832280766196456 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.63, + 7.640000000000001, + 7.640000000000001, + 7.63, + 7.63 + ], + "y": [ + 13.835518175433988, + 13.835518175433988, + 19.083552333779775, + 19.083552333779775, + 13.835518175433988 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.640000000000001, + 7.65, + 7.65, + 7.640000000000001, + 7.640000000000001 + ], + "y": [ + 13.838655579173096, + 13.838655579173096, + 19.0866041696927, + 19.0866041696927, + 13.838655579173096 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.65, + 7.66, + 7.66, + 7.65, + 7.65 + ], + "y": [ + 13.841692977999053, + 13.841692977999053, + 19.089556007917004, + 19.089556007917004, + 13.841692977999053 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.66, + 7.67, + 7.67, + 7.66, + 7.66 + ], + "y": [ + 13.844630372541545, + 13.844630372541545, + 19.092407847837357, + 19.092407847837357, + 13.844630372541545 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.67, + 7.68, + 7.68, + 7.67, + 7.67 + ], + "y": [ + 13.847467763480688, + 13.847467763480688, + 19.095159688780953, + 19.095159688780953, + 13.847467763480688 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.68, + 7.69, + 7.69, + 7.68, + 7.68 + ], + "y": [ + 13.85020515155405, + 13.85020515155405, + 19.097811530009235, + 19.097811530009235, + 13.85020515155405 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.69, + 7.7, + 7.7, + 7.69, + 7.69 + ], + "y": [ + 13.85284253756497, + 13.85284253756497, + 19.100363370708017, + 19.100363370708017, + 13.85284253756497 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7, + 7.71, + 7.71, + 7.7, + 7.7 + ], + "y": [ + 13.855379922392416, + 13.855379922392416, + 19.10281520997568, + 19.10281520997568, + 13.855379922392416 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.71, + 7.720000000000001, + 7.720000000000001, + 7.71, + 7.71 + ], + "y": [ + 13.857817307002783, + 13.857817307002783, + 19.105167046808976, + 19.105167046808976, + 13.857817307002783 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.720000000000001, + 7.73, + 7.73, + 7.720000000000001, + 7.720000000000001 + ], + "y": [ + 13.860154692464096, + 13.860154692464096, + 19.1074188800858, + 19.1074188800858, + 13.860154692464096 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.73, + 7.74, + 7.74, + 7.73, + 7.73 + ], + "y": [ + 13.862392079963232, + 13.862392079963232, + 19.109570708544112, + 19.109570708544112, + 13.862392079963232 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.74, + 7.75, + 7.75, + 7.74, + 7.74 + ], + "y": [ + 13.864529470827009, + 13.864529470827009, + 19.111622530756, + 19.111622530756, + 13.864529470827009 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.75, + 7.76, + 7.76, + 7.75, + 7.75 + ], + "y": [ + 13.866566866548114, + 13.866566866548114, + 19.113574345095465, + 19.113574345095465, + 13.866566866548114 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.76, + 7.7700000000000005, + 7.7700000000000005, + 7.76, + 7.76 + ], + "y": [ + 13.868504268817311, + 13.868504268817311, + 19.1154261496979, + 19.1154261496979, + 13.868504268817311 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7700000000000005, + 7.78, + 7.78, + 7.7700000000000005, + 7.7700000000000005 + ], + "y": [ + 13.870341679563994, + 13.870341679563994, + 19.11717794240871, + 19.11717794240871, + 13.870341679563994 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.78, + 7.79, + 7.79, + 7.78, + 7.78 + ], + "y": [ + 13.872079101007527, + 13.872079101007527, + 19.11882972071733, + 19.11882972071733, + 13.872079101007527 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.79, + 7.800000000000001, + 7.800000000000001, + 7.79, + 7.79 + ], + "y": [ + 13.873716535723245, + 13.873716535723245, + 19.120381481671384, + 19.120381481671384, + 13.873716535723245 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.800000000000001, + 7.8100000000000005, + 7.8100000000000005, + 7.800000000000001, + 7.800000000000001 + ], + "y": [ + 13.875253986728309, + 13.875253986728309, + 19.121833221763367, + 19.121833221763367, + 13.875253986728309 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8100000000000005, + 7.82, + 7.82, + 7.8100000000000005, + 7.8100000000000005 + ], + "y": [ + 13.87669145759498, + 13.87669145759498, + 19.123184703383853, + 19.123184703383853, + 13.87669145759498 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.82, + 7.83, + 7.83, + 7.82, + 7.82 + ], + "y": [ + 13.878029185997459, + 13.878029185997459, + 19.12443617213632, + 19.12443617213632, + 13.878029185997459 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.83, + 7.84, + 7.84, + 7.83, + 7.83 + ], + "y": [ + 13.879266926397053, + 13.879266926397053, + 19.12558762158137, + 19.12558762158137, + 13.879266926397053 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.84, + 7.85, + 7.85, + 7.84, + 7.84 + ], + "y": [ + 13.880404685297915, + 13.880404685297915, + 19.12663904366207, + 19.12663904366207, + 13.880404685297915 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.85, + 7.86, + 7.86, + 7.85, + 7.85 + ], + "y": [ + 13.881442470821757, + 13.881442470821757, + 19.12759042809715, + 19.12759042809715, + 13.881442470821757 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.86, + 7.87, + 7.87, + 7.86, + 7.86 + ], + "y": [ + 13.882380293314624, + 13.882380293314624, + 19.128441761462398, + 19.128441761462398, + 13.882380293314624 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.87, + 7.88, + 7.88, + 7.87, + 7.87 + ], + "y": [ + 13.8832181662655, + 13.8832181662655, + 19.129193025748627, + 19.129193025748627, + 13.8832181662655 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.88, + 7.890000000000001, + 7.890000000000001, + 7.88, + 7.88 + ], + "y": [ + 13.883956107748347, + 13.883956107748347, + 19.12984419599784, + 19.12984419599784, + 13.883956107748347 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.890000000000001, + 7.9, + 7.9, + 7.890000000000001, + 7.890000000000001 + ], + "y": [ + 13.884594142785922, + 13.884594142785922, + 19.13039523622449, + 19.13039523622449, + 13.884594142785922 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9, + 7.91, + 7.91, + 7.9, + 7.9 + ], + "y": [ + 13.885132307428552, + 13.885132307428552, + 19.130846091938132, + 19.130846091938132, + 13.885132307428552 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.91, + 7.92, + 7.92, + 7.91, + 7.91 + ], + "y": [ + 13.885570656231442, + 13.885570656231442, + 19.131196675468537, + 19.131196675468537, + 13.885570656231442 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.92, + 7.93, + 7.93, + 7.92, + 7.92 + ], + "y": [ + 13.88590927692961, + 13.88590927692961, + 19.131446835521174, + 19.131446835521174, + 13.88590927692961 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.93, + 7.94, + 7.94, + 7.93, + 7.93 + ], + "y": [ + 13.886148320882342, + 13.886148320882342, + 19.131596302989472, + 19.131596302989472, + 13.886148320882342 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.94, + 7.95, + 7.95, + 7.94, + 7.94 + ], + "y": [ + 13.886288057260986, + 13.886288057260986, + 19.131645063064262, + 19.131645063064262, + 13.886288057260986 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.95, + 7.96, + 7.96, + 7.95, + 7.95 + ], + "y": [ + 13.8862873269008, + 13.8862873269008, + 19.131645063064262, + 19.131645063064262, + 13.8862873269008 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.96, + 7.97, + 7.97, + 7.96, + 7.96 + ], + "y": [ + 13.886163809374407, + 13.886163809374407, + 19.131604271690854, + 19.131604271690854, + 13.886163809374407 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.97, + 7.98, + 7.98, + 7.97, + 7.97 + ], + "y": [ + 13.885957928282053, + 13.885957928282053, + 19.13148188615171, + 19.13148188615171, + 13.885957928282053 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.98, + 7.99, + 7.99, + 7.98, + 7.98 + ], + "y": [ + 13.885669666229639, + 13.885669666229639, + 19.131277905795322, + 19.131277905795322, + 13.885669666229639 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.99, + 8, + 8, + 7.99, + 7.99 + ], + "y": [ + 13.88529899945673, + 13.88529899945673, + 19.13099231358332, + 19.13099231358332, + 13.88529899945673 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8, + 8.01, + 8.01, + 8, + 8 + ], + "y": [ + 13.884845897186775, + 13.884845897186775, + 19.130625085134447, + 19.130625085134447, + 13.884845897186775 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.01, + 8.02, + 8.02, + 8.01, + 8.01 + ], + "y": [ + 13.884310321970847, + 13.884310321970847, + 19.130176189381967, + 19.130176189381967, + 13.884310321970847 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.02, + 8.03, + 8.03, + 8.02, + 8.02 + ], + "y": [ + 13.883692229381259, + 13.883692229381259, + 19.129645588358375, + 19.129645588358375, + 13.883692229381259 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.03, + 8.04, + 8.04, + 8.03, + 8.03 + ], + "y": [ + 13.88299156827758, + 13.88299156827758, + 19.12903323726652, + 19.12903323726652, + 13.88299156827758 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.04, + 8.05, + 8.05, + 8.04, + 8.04 + ], + "y": [ + 13.88220828075248, + 13.88220828075248, + 19.128339084445617, + 19.128339084445617, + 13.88220828075248 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.05, + 8.06, + 8.06, + 8.05, + 8.05 + ], + "y": [ + 13.881342302151399, + 13.881342302151399, + 19.12756307139643, + 19.12756307139643, + 13.881342302151399 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.06, + 8.07, + 8.07, + 8.06, + 8.06 + ], + "y": [ + 13.880393561113777, + 13.880393561113777, + 19.126705132795426, + 19.126705132795426, + 13.880393561113777 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.07, + 8.08, + 8.08, + 8.07, + 8.07 + ], + "y": [ + 13.879361979605298, + 13.879361979605298, + 19.125765196495358, + 19.125765196495358, + 13.879361979605298 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.08, + 8.09, + 8.09, + 8.08, + 8.08 + ], + "y": [ + 13.878247473130461, + 13.878247473130461, + 19.12474318353836, + 19.12474318353836, + 13.878247473130461 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.09, + 8.1, + 8.1, + 8.09, + 8.09 + ], + "y": [ + 13.877049950077291, + 13.877049950077291, + 19.123639007978472, + 19.123639007978472, + 13.877049950077291 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.1, + 8.11, + 8.11, + 8.1, + 8.1 + ], + "y": [ + 13.875769312545907, + 13.875769312545907, + 19.12245257758817, + 19.12245257758817, + 13.875769312545907 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.11, + 8.120000000000001, + 8.120000000000001, + 8.11, + 8.11 + ], + "y": [ + 13.874405459381066, + 13.874405459381066, + 19.121183793082913, + 19.121183793082913, + 13.874405459381066 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.120000000000001, + 8.129999999999999, + 8.129999999999999, + 8.120000000000001, + 8.120000000000001 + ], + "y": [ + 13.872958280632009, + 13.872958280632009, + 19.119832545145506, + 19.119832545145506, + 13.872958280632009 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.129999999999999, + 8.14, + 8.14, + 8.129999999999999, + 8.129999999999999 + ], + "y": [ + 13.871427658677833, + 13.871427658677833, + 19.118398720027383, + 19.118398720027383, + 13.871427658677833 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.14, + 8.15, + 8.15, + 8.14, + 8.14 + ], + "y": [ + 13.869813469928415, + 13.869813469928415, + 19.116882198488216, + 19.116882198488216, + 13.869813469928415 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.15, + 8.16, + 8.16, + 8.15, + 8.15 + ], + "y": [ + 13.868115584163089, + 13.868115584163089, + 19.115282854164107, + 19.115282854164107, + 13.868115584163089 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.16, + 8.17, + 8.17, + 8.16, + 8.16 + ], + "y": [ + 13.866333864751933, + 13.866333864751933, + 19.11360055430195, + 19.11360055430195, + 13.866333864751933 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.17, + 8.18, + 8.18, + 8.17, + 8.17 + ], + "y": [ + 13.864468168696725, + 13.864468168696725, + 19.111835159615335, + 19.111835159615335, + 13.864468168696725 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.18, + 8.19, + 8.19, + 8.18, + 8.18 + ], + "y": [ + 13.862518346682664, + 13.862518346682664, + 19.10998652432488, + 19.10998652432488, + 13.862518346682664 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.19, + 8.2, + 8.2, + 8.19, + 8.19 + ], + "y": [ + 13.860484243119288, + 13.860484243119288, + 19.108054496191713, + 19.108054496191713, + 13.860484243119288 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.2, + 8.21, + 8.21, + 8.2, + 8.2 + ], + "y": [ + 13.858365696188239, + 13.858365696188239, + 19.10603891656607, + 19.10603891656607, + 13.858365696188239 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.21, + 8.219999999999999, + 8.219999999999999, + 8.21, + 8.21 + ], + "y": [ + 13.856162537892928, + 13.856162537892928, + 19.103939620433035, + 19.103939620433035, + 13.856162537892928 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.219999999999999, + 8.23, + 8.23, + 8.219999999999999, + 8.219999999999999 + ], + "y": [ + 13.853874594110044, + 13.853874594110044, + 19.101756436460505, + 19.101756436460505, + 13.853874594110044 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.23, + 8.24, + 8.24, + 8.23, + 8.23 + ], + "y": [ + 13.851501684642859, + 13.851501684642859, + 19.09948918704957, + 19.09948918704957, + 13.851501684642859 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.24, + 8.25, + 8.25, + 8.24, + 8.24 + ], + "y": [ + 13.849043623276753, + 13.849043623276753, + 19.09713768838714, + 19.09713768838714, + 13.849043623276753 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.25, + 8.26, + 8.26, + 8.25, + 8.25 + ], + "y": [ + 13.846500217836446, + 13.846500217836446, + 19.09470175050068, + 19.09470175050068, + 13.846500217836446 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.26, + 8.27, + 8.27, + 8.26, + 8.26 + ], + "y": [ + 13.843871270245609, + 13.843871270245609, + 19.092181177315236, + 19.092181177315236, + 13.843871270245609 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.27, + 8.28, + 8.28, + 8.27, + 8.27 + ], + "y": [ + 13.841156576588414, + 13.841156576588414, + 19.089575766712617, + 19.089575766712617, + 13.841156576588414 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.28, + 8.29, + 8.29, + 8.28, + 8.28 + ], + "y": [ + 13.838355927173236, + 13.838355927173236, + 19.08688531059261, + 19.08688531059261, + 13.838355927173236 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.29, + 8.3, + 8.3, + 8.29, + 8.29 + ], + "y": [ + 13.83546910659856, + 13.83546910659856, + 19.084109594936425, + 19.084109594936425, + 13.83546910659856 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.3, + 8.31, + 8.31, + 8.3, + 8.3 + ], + "y": [ + 13.832495893820996, + 13.832495893820996, + 19.08124839987228, + 19.08124839987228, + 13.832495893820996 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.31, + 8.32, + 8.32, + 8.31, + 8.31 + ], + "y": [ + 13.829436062225483, + 13.829436062225483, + 19.07830149974312, + 19.07830149974312, + 13.829436062225483 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.32, + 8.33, + 8.33, + 8.32, + 8.32 + ], + "y": [ + 13.826289379697744, + 13.826289379697744, + 19.0752686631765, + 19.0752686631765, + 13.826289379697744 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.33, + 8.34, + 8.34, + 8.33, + 8.33 + ], + "y": [ + 13.823055608698887, + 13.823055608698887, + 19.072149653156625, + 19.072149653156625, + 13.823055608698887 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.34, + 8.35, + 8.35, + 8.34, + 8.34 + ], + "y": [ + 13.819734506342206, + 13.819734506342206, + 19.06894422709857, + 19.06894422709857, + 13.819734506342206 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.35, + 8.36, + 8.36, + 8.35, + 8.35 + ], + "y": [ + 13.816325824472361, + 13.816325824472361, + 19.065652136924747, + 19.065652136924747, + 13.816325824472361 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.36, + 8.370000000000001, + 8.370000000000001, + 8.36, + 8.36 + ], + "y": [ + 13.812829309746604, + 13.812829309746604, + 19.062273129143488, + 19.062273129143488, + 13.812829309746604 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.370000000000001, + 8.379999999999999, + 8.379999999999999, + 8.370000000000001, + 8.370000000000001 + ], + "y": [ + 13.80924470371842, + 13.80924470371842, + 19.058806944929906, + 19.058806944929906, + 13.80924470371842 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.379999999999999, + 8.39, + 8.39, + 8.379999999999999, + 8.379999999999999 + ], + "y": [ + 13.805571742923384, + 13.805571742923384, + 19.055253320208962, + 19.055253320208962, + 13.805571742923384 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.39, + 8.4, + 8.4, + 8.39, + 8.39 + ], + "y": [ + 13.801810158967257, + 13.801810158967257, + 19.051611985740827, + 19.051611985740827, + 13.801810158967257 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.4, + 8.41, + 8.41, + 8.4, + 8.4 + ], + "y": [ + 13.797959678616452, + 13.797959678616452, + 19.04788266720844, + 19.04788266720844, + 13.797959678616452 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.41, + 8.42, + 8.42, + 8.41, + 8.41 + ], + "y": [ + 13.794020024540224, + 13.794020024540224, + 19.04406508530738, + 19.04406508530738, + 13.794020024540224 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.42, + 8.43, + 8.43, + 8.42, + 8.42 + ], + "y": [ + 13.789990915119596, + 13.789990915119596, + 19.040158955718383, + 19.040158955718383, + 13.789990915119596 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.43, + 8.44, + 8.44, + 8.43, + 8.43 + ], + "y": [ + 13.785872063271256, + 13.785872063271256, + 19.036163989290408, + 19.036163989290408, + 13.785872063271256 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.44, + 8.45, + 8.45, + 8.44, + 8.44 + ], + "y": [ + 13.781663177131858, + 13.781663177131858, + 19.032079892384672, + 19.032079892384672, + 13.781663177131858 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.45, + 8.46, + 8.46, + 8.45, + 8.45 + ], + "y": [ + 13.777363960120063, + 13.777363960120063, + 19.027906367090583, + 19.027906367090583, + 13.777363960120063 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.46, + 8.469999999999999, + 8.469999999999999, + 8.46, + 8.46 + ], + "y": [ + 13.772974112095447, + 13.772974112095447, + 19.02364311136737, + 19.02364311136737, + 13.772974112095447 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.469999999999999, + 8.48, + 8.48, + 8.469999999999999, + 8.469999999999999 + ], + "y": [ + 13.768493328780737, + 13.768493328780737, + 19.01928981809351, + 19.01928981809351, + 13.768493328780737 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.48, + 8.49, + 8.49, + 8.48, + 8.48 + ], + "y": [ + 13.763921301871035, + 13.763921301871035, + 19.014846175857773, + 19.014846175857773, + 13.763921301871035 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.49, + 8.5, + 8.5, + 8.49, + 8.49 + ], + "y": [ + 13.759251133424742, + 13.759251133424742, + 19.01031186906784, + 19.01031186906784, + 13.759251133424742 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.5, + 8.51, + 8.51, + 8.5, + 8.5 + ], + "y": [ + 13.754481672615313, + 13.754481672615313, + 19.005693163782304, + 19.005693163782304, + 13.754481672615313 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.51, + 8.52, + 8.52, + 8.51, + 8.51 + ], + "y": [ + 13.749619819093352, + 13.749619819093352, + 19.00099057118649, + 19.00099057118649, + 13.749619819093352 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.52, + 8.53, + 8.53, + 8.52, + 8.52 + ], + "y": [ + 13.744665252391282, + 13.744665252391282, + 18.996196544463082, + 18.996196544463082, + 13.744665252391282 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.53, + 8.54, + 8.54, + 8.53, + 8.53 + ], + "y": [ + 13.739617648653647, + 13.739617648653647, + 18.99131074962482, + 18.99131074962482, + 13.739617648653647 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.54, + 8.55, + 8.55, + 8.54, + 8.54 + ], + "y": [ + 13.734476680761398, + 13.734476680761398, + 18.986332849026788, + 18.986332849026788, + 13.734476680761398 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.55, + 8.56, + 8.56, + 8.55, + 8.55 + ], + "y": [ + 13.729242018458976, + 13.729242018458976, + 18.981262501489507, + 18.981262501489507, + 13.729242018458976 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.56, + 8.57, + 8.57, + 8.56, + 8.56 + ], + "y": [ + 13.723913328483624, + 13.723913328483624, + 18.97609936242447, + 18.97609936242447, + 13.723913328483624 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.57, + 8.58, + 8.58, + 8.57, + 8.57 + ], + "y": [ + 13.718490274697503, + 13.718490274697503, + 18.97084308396228, + 18.97084308396228, + 13.718490274697503 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.58, + 8.59, + 8.59, + 8.58, + 8.58 + ], + "y": [ + 13.712972518222323, + 13.712972518222323, + 18.965493315083272, + 18.965493315083272, + 13.712972518222323 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.59, + 8.6, + 8.6, + 8.59, + 8.59 + ], + "y": [ + 13.70735971757638, + 13.70735971757638, + 18.96004970175069, + 18.96004970175069, + 13.70735971757638 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.6, + 8.61, + 8.61, + 8.6, + 8.6 + ], + "y": [ + 13.701651528814597, + 13.701651528814597, + 18.95451188704652, + 18.95451188704652, + 13.701651528814597 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.61, + 8.620000000000001, + 8.620000000000001, + 8.61, + 8.61 + ], + "y": [ + 13.695847605670727, + 13.695847605670727, + 18.94887951130978, + 18.94887951130978, + 13.695847605670727 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.620000000000001, + 8.629999999999999, + 8.629999999999999, + 8.620000000000001, + 8.620000000000001 + ], + "y": [ + 13.689947599702544, + 13.689947599702544, + 18.943152212277532, + 18.943152212277532, + 13.689947599702544 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.629999999999999, + 8.64, + 8.64, + 8.629999999999999, + 8.629999999999999 + ], + "y": [ + 13.683951160439568, + 13.683951160439568, + 18.937329625228507, + 18.937329625228507, + 13.683951160439568 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.64, + 8.65, + 8.65, + 8.64, + 8.64 + ], + "y": [ + 13.677857935533451, + 13.677857935533451, + 18.931411383129273, + 18.931411383129273, + 13.677857935533451 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.65, + 8.66, + 8.66, + 8.65, + 8.65 + ], + "y": [ + 13.671667570911083, + 13.671667570911083, + 18.925397116783245, + 18.925397116783245, + 13.671667570911083 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.66, + 8.67, + 8.67, + 8.66, + 8.66 + ], + "y": [ + 13.665379710930466, + 13.665379710930466, + 18.919286454982227, + 18.919286454982227, + 13.665379710930466 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.67, + 8.68, + 8.68, + 8.67, + 8.67 + ], + "y": [ + 13.658993998539323, + 13.658993998539323, + 18.91307902466069, + 18.91307902466069, + 13.658993998539323 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.68, + 8.69, + 8.69, + 8.68, + 8.68 + ], + "y": [ + 13.652510075436329, + 13.652510075436329, + 18.906774451052797, + 18.906774451052797, + 13.652510075436329 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.69, + 8.7, + 8.7, + 8.69, + 8.69 + ], + "y": [ + 13.645927582235316, + 13.645927582235316, + 18.90037235785218, + 18.90037235785218, + 13.645927582235316 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.7, + 8.71, + 8.71, + 8.7, + 8.7 + ], + "y": [ + 13.6392461586322, + 13.6392461586322, + 18.893872367374406, + 18.893872367374406, + 13.6392461586322 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.71, + 8.719999999999999, + 8.719999999999999, + 8.71, + 8.71 + ], + "y": [ + 13.632465794537424, + 13.632465794537424, + 18.887274100722262, + 18.887274100722262, + 13.632465794537424 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.719999999999999, + 8.73, + 8.73, + 8.719999999999999, + 8.719999999999999 + ], + "y": [ + 13.625585790682532, + 13.625585790682532, + 18.880577161813918, + 18.880577161813918, + 13.625585790682532 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.73, + 8.74, + 8.74, + 8.73, + 8.73 + ], + "y": [ + 13.618605601692835, + 13.618605601692835, + 18.873781185360922, + 18.873781185360922, + 13.618605601692835 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.74, + 8.75, + 8.75, + 8.74, + 8.74 + ], + "y": [ + 13.611525042467989, + 13.611525042467989, + 18.86688597355188, + 18.86688597355188, + 13.611525042467989 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.75, + 8.76, + 8.76, + 8.75, + 8.75 + ], + "y": [ + 13.604343750910028, + 13.604343750910028, + 18.85989096755899, + 18.85989096755899, + 13.604343750910028 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.76, + 8.77, + 8.77, + 8.76, + 8.76 + ], + "y": [ + 13.597061365064464, + 13.597061365064464, + 18.852795785169825, + 18.852795785169825, + 13.597061365064464 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.77, + 8.78, + 8.78, + 8.77, + 8.77 + ], + "y": [ + 13.589677523306708, + 13.589677523306708, + 18.845600044011782, + 18.845600044011782, + 13.589677523306708 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.78, + 8.79, + 8.79, + 8.78, + 8.78 + ], + "y": [ + 13.58219186453142, + 13.58219186453142, + 18.838303361736937, + 18.838303361736937, + 13.58219186453142 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.79, + 8.8, + 8.8, + 8.79, + 8.79 + ], + "y": [ + 13.574604028344632, + 13.574604028344632, + 18.830905356209765, + 18.830905356209765, + 13.574604028344632 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.8, + 8.81, + 8.81, + 8.8, + 8.8 + ], + "y": [ + 13.566913655258887, + 13.566913655258887, + 18.82340564569781, + 18.82340564569781, + 13.566913655258887 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.81, + 8.82, + 8.82, + 8.81, + 8.81 + ], + "y": [ + 13.559120386891246, + 13.559120386891246, + 18.815803849065183, + 18.815803849065183, + 13.559120386891246 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.82, + 8.83, + 8.83, + 8.82, + 8.82 + ], + "y": [ + 13.551223866164298, + 13.551223866164298, + 18.808099585969046, + 18.808099585969046, + 13.551223866164298 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.83, + 8.84, + 8.84, + 8.83, + 8.83 + ], + "y": [ + 13.54322373751004, + 13.54322373751004, + 18.800292477058974, + 18.800292477058974, + 13.54322373751004 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.84, + 8.85, + 8.85, + 8.84, + 8.84 + ], + "y": [ + 13.535119647076769, + 13.535119647076769, + 18.792382144179328, + 18.792382144179328, + 13.535119647076769 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.85, + 8.86, + 8.86, + 8.85, + 8.85 + ], + "y": [ + 13.52691124293893, + 13.52691124293893, + 18.78436821057452, + 18.78436821057452, + 13.52691124293893 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.86, + 8.870000000000001, + 8.870000000000001, + 8.86, + 8.86 + ], + "y": [ + 13.518598175309968, + 13.518598175309968, + 18.77625030109732, + 18.77625030109732, + 13.518598175309968 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.870000000000001, + 8.879999999999999, + 8.879999999999999, + 8.870000000000001, + 8.870000000000001 + ], + "y": [ + 13.510180096758123, + 13.510180096758123, + 18.768028042420084, + 18.768028042420084, + 13.510180096758123 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.879999999999999, + 8.89, + 8.89, + 8.879999999999999, + 8.879999999999999 + ], + "y": [ + 13.501656662425178, + 13.501656662425178, + 18.75970106324902, + 18.75970106324902, + 13.501656662425178 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.89, + 8.9, + 8.9, + 8.89, + 8.89 + ], + "y": [ + 13.493027530248284, + 13.493027530248284, + 18.751268994541434, + 18.751268994541434, + 13.493027530248284 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.9, + 8.91, + 8.91, + 8.9, + 8.9 + ], + "y": [ + 13.48429236118466, + 13.48429236118466, + 18.74273146972598, + 18.74273146972598, + 13.48429236118466 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.91, + 8.92, + 8.92, + 8.91, + 8.91 + ], + "y": [ + 13.475450819439393, + 13.475450819439393, + 18.734088124925986, + 18.734088124925986, + 13.475450819439393 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.92, + 8.93, + 8.93, + 8.92, + 8.92 + ], + "y": [ + 13.466502572696038, + 13.466502572696038, + 18.725338599185687, + 18.725338599185687, + 13.466502572696038 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.93, + 8.94, + 8.94, + 8.93, + 8.93 + ], + "y": [ + 13.457447292350293, + 13.457447292350293, + 18.71648253469961, + 18.71648253469961, + 13.457447292350293 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.94, + 8.95, + 8.95, + 8.94, + 8.94 + ], + "y": [ + 13.44828465374652, + 13.44828465374652, + 18.707519577044923, + 18.707519577044923, + 13.44828465374652 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.95, + 8.96, + 8.96, + 8.95, + 8.95 + ], + "y": [ + 13.439014336417259, + 13.439014336417259, + 18.69844937541677, + 18.69844937541677, + 13.439014336417259 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.96, + 8.969999999999999, + 8.969999999999999, + 8.96, + 8.96 + ], + "y": [ + 13.429636024325596, + 13.429636024325596, + 18.689271582866716, + 18.689271582866716, + 13.429636024325596 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.969999999999999, + 8.98, + 8.98, + 8.969999999999999, + 8.969999999999999 + ], + "y": [ + 13.42014940611023, + 13.42014940611023, + 18.679985856544107, + 18.679985856544107, + 13.42014940611023 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.98, + 8.99, + 8.99, + 8.98, + 8.98 + ], + "y": [ + 13.410554175333676, + 13.410554175333676, + 18.670591857940533, + 18.670591857940533, + 13.410554175333676 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.99, + 9, + 9, + 8.99, + 8.99 + ], + "y": [ + 13.400850030732958, + 13.400850030732958, + 18.661089253137174, + 18.661089253137174, + 13.400850030732958 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9, + 9.01, + 9.01, + 9, + 9 + ], + "y": [ + 13.39103667647325, + 13.39103667647325, + 18.65147771305521, + 18.65147771305521, + 13.39103667647325 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.01, + 9.02, + 9.02, + 9.01, + 9.01 + ], + "y": [ + 13.38111382240417, + 13.38111382240417, + 18.64175691370916, + 18.64175691370916, + 13.38111382240417 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.02, + 9.03, + 9.03, + 9.02, + 9.02 + ], + "y": [ + 13.371081184318832, + 13.371081184318832, + 18.63192653646313, + 18.63192653646313, + 13.371081184318832 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.03, + 9.04, + 9.04, + 9.03, + 9.03 + ], + "y": [ + 13.360938484215584, + 13.360938484215584, + 18.621986268290026, + 18.621986268290026, + 13.360938484215584 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.04, + 9.05, + 9.05, + 9.04, + 9.04 + ], + "y": [ + 13.350685450562334, + 13.350685450562334, + 18.611935802033635, + 18.611935802033635, + 13.350685450562334 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.05, + 9.06, + 9.06, + 9.05, + 9.05 + ], + "y": [ + 13.340321818563652, + 13.340321818563652, + 18.601774836673595, + 18.601774836673595, + 13.340321818563652 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.06, + 9.07, + 9.07, + 9.06, + 9.06 + ], + "y": [ + 13.32984733043047, + 13.32984733043047, + 18.591503077593188, + 18.591503077593188, + 13.32984733043047 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.07, + 9.08, + 9.08, + 9.07, + 9.07 + ], + "y": [ + 13.319261735652507, + 13.319261735652507, + 18.581120236850005, + 18.581120236850005, + 13.319261735652507 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.08, + 9.09, + 9.09, + 9.08, + 9.08 + ], + "y": [ + 13.308564791273312, + 13.308564791273312, + 18.57062603344935, + 18.57062603344935, + 13.308564791273312 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.09, + 9.1, + 9.1, + 9.09, + 9.09 + ], + "y": [ + 13.29775626216809, + 13.29775626216809, + 18.560020193620534, + 18.560020193620534, + 13.29775626216809 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.1, + 9.11, + 9.11, + 9.1, + 9.1 + ], + "y": [ + 13.286835921324215, + 13.286835921324215, + 18.549302451095844, + 18.549302451095844, + 13.286835921324215 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.11, + 9.120000000000001, + 9.120000000000001, + 9.11, + 9.11 + ], + "y": [ + 13.275803550124555, + 13.275803550124555, + 18.538472547392356, + 18.538472547392356, + 13.275803550124555 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.120000000000001, + 9.129999999999999, + 9.129999999999999, + 9.120000000000001, + 9.120000000000001 + ], + "y": [ + 13.264658938633644, + 13.264658938633644, + 18.52753023209647, + 18.52753023209647, + 13.264658938633644 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.129999999999999, + 9.14, + 9.14, + 9.129999999999999, + 9.129999999999999 + ], + "y": [ + 13.253401885886579, + 13.253401885886579, + 18.516475263151193, + 18.516475263151193, + 13.253401885886579 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.14, + 9.15, + 9.15, + 9.14, + 9.14 + ], + "y": [ + 13.242032200180981, + 13.242032200180981, + 18.505307407146283, + 18.505307407146283, + 13.242032200180981 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.15, + 9.16, + 9.16, + 9.15, + 9.15 + ], + "y": [ + 13.230549699371775, + 13.230549699371775, + 18.494026439610987, + 18.494026439610987, + 13.230549699371775 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.16, + 9.17, + 9.17, + 9.16, + 9.16 + ], + "y": [ + 13.218954211168878, + 13.218954211168878, + 18.48263214530973, + 18.48263214530973, + 13.218954211168878 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.17, + 9.18, + 9.18, + 9.17, + 9.17 + ], + "y": [ + 13.20724557343798, + 13.20724557343798, + 18.471124318540507, + 18.471124318540507, + 13.20724557343798 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.18, + 9.19, + 9.19, + 9.18, + 9.18 + ], + "y": [ + 13.195423634504145, + 13.195423634504145, + 18.459502763436085, + 18.459502763436085, + 13.195423634504145 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.19, + 9.2, + 9.2, + 9.19, + 9.19 + ], + "y": [ + 13.183488253458497, + 13.183488253458497, + 18.447767294268054, + 18.447767294268054, + 13.183488253458497 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.2, + 9.21, + 9.21, + 9.2, + 9.2 + ], + "y": [ + 13.171439300467735, + 13.171439300467735, + 18.43591773575364, + 18.43591773575364, + 13.171439300467735 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.21, + 9.219999999999999, + 9.219999999999999, + 9.21, + 9.21 + ], + "y": [ + 13.159276657086703, + 13.159276657086703, + 18.423953923365456, + 18.423953923365456, + 13.159276657086703 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.219999999999999, + 9.23, + 9.23, + 9.219999999999999, + 9.219999999999999 + ], + "y": [ + 13.147000216573728, + 13.147000216573728, + 18.41187570364396, + 18.41187570364396, + 13.147000216573728 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.23, + 9.24, + 9.24, + 9.23, + 9.23 + ], + "y": [ + 13.134609884208853, + 13.134609884208853, + 18.399682934512864, + 18.399682934512864, + 13.134609884208853 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.24, + 9.25, + 9.25, + 9.24, + 9.24 + ], + "y": [ + 13.122105577614947, + 13.122105577614947, + 18.387375485597307, + 18.387375485597307, + 13.122105577614947 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.25, + 9.26, + 9.26, + 9.25, + 9.25 + ], + "y": [ + 13.109487227081408, + 13.109487227081408, + 18.374953238544855, + 18.374953238544855, + 13.109487227081408 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.26, + 9.27, + 9.27, + 9.26, + 9.26 + ], + "y": [ + 13.096754775890675, + 13.096754775890675, + 18.362416087349317, + 18.362416087349317, + 13.096754775890675 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.27, + 9.28, + 9.28, + 9.27, + 9.27 + ], + "y": [ + 13.083908180647324, + 13.083908180647324, + 18.3497639386773, + 18.3497639386773, + 13.083908180647324 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.28, + 9.29, + 9.29, + 9.28, + 9.28 + ], + "y": [ + 13.070947411609746, + 13.070947411609746, + 18.33699671219755, + 18.33699671219755, + 13.070947411609746 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.29, + 9.3, + 9.3, + 9.29, + 9.29 + ], + "y": [ + 13.057872453024277, + 13.057872453024277, + 18.32411434091295, + 18.32411434091295, + 13.057872453024277 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.3, + 9.31, + 9.31, + 9.3, + 9.3 + ], + "y": [ + 13.044683303461865, + 13.044683303461865, + 18.311116771495197, + 18.311116771495197, + 13.044683303461865 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.31, + 9.32, + 9.32, + 9.31, + 9.31 + ], + "y": [ + 13.031379976157039, + 13.031379976157039, + 18.29800396462212, + 18.29800396462212, + 13.031379976157039 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.32, + 9.33, + 9.33, + 9.32, + 9.32 + ], + "y": [ + 13.017962499349215, + 13.017962499349215, + 18.28477589531752, + 18.28477589531752, + 13.017962499349215 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.33, + 9.34, + 9.34, + 9.33, + 9.33 + ], + "y": [ + 13.004430916626275, + 13.004430916626275, + 18.271432553293547, + 18.271432553293547, + 13.004430916626275 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.34, + 9.35, + 9.35, + 9.34, + 9.34 + ], + "y": [ + 12.990785287270327, + 12.990785287270327, + 18.25797394329554, + 18.25797394329554, + 12.990785287270327 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.35, + 9.36, + 9.36, + 9.35, + 9.35 + ], + "y": [ + 12.97702568660562, + 12.97702568660562, + 18.24440008544925, + 18.24440008544925, + 12.97702568660562 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.36, + 9.370000000000001, + 9.370000000000001, + 9.36, + 9.36 + ], + "y": [ + 12.963152206348493, + 12.963152206348493, + 18.230711015610392, + 18.230711015610392, + 12.963152206348493 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.370000000000001, + 9.379999999999999, + 9.379999999999999, + 9.370000000000001, + 9.370000000000001 + ], + "y": [ + 12.949164954959414, + 12.949164954959414, + 18.216906785716493, + 18.216906785716493, + 12.949164954959414 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.379999999999999, + 9.39, + 9.39, + 9.379999999999999, + 9.379999999999999 + ], + "y": [ + 12.9350640579969, + 12.9350640579969, + 18.202987464140946, + 18.202987464140946, + 12.9350640579969 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.39, + 9.4, + 9.4, + 9.39, + 9.39 + ], + "y": [ + 12.920849658473394, + 12.920849658473394, + 18.188953136049207, + 18.188953136049207, + 12.920849658473394 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.4, + 9.41, + 9.41, + 9.4, + 9.4 + ], + "y": [ + 12.906521917212945, + 12.906521917212945, + 18.174803903757084, + 18.174803903757084, + 12.906521917212945 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.41, + 9.42, + 9.42, + 9.41, + 9.41 + ], + "y": [ + 12.892081013210678, + 12.892081013210678, + 18.160539887091026, + 18.160539887091026, + 12.892081013210678 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.42, + 9.43, + 9.43, + 9.42, + 9.42 + ], + "y": [ + 12.877527143993978, + 12.877527143993978, + 18.146161223750397, + 18.146161223750397, + 12.877527143993978 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.43, + 9.44, + 9.44, + 9.43, + 9.43 + ], + "y": [ + 12.862860525985296, + 12.862860525985296, + 18.13166806967156, + 18.13166806967156, + 12.862860525985296 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.44, + 9.45, + 9.45, + 9.44, + 9.44 + ], + "y": [ + 12.848081394866576, + 12.848081394866576, + 18.117060599393874, + 18.117060599393874, + 12.848081394866576 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.45, + 9.46, + 9.46, + 9.45, + 9.45 + ], + "y": [ + 12.833190005945138, + 12.833190005945138, + 18.10233900642736, + 18.10233900642736, + 12.833190005945138 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.46, + 9.469999999999999, + 9.469999999999999, + 9.46, + 9.46 + ], + "y": [ + 12.818186634521057, + 12.818186634521057, + 18.08750350362204, + 18.08750350362204, + 12.818186634521057 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.469999999999999, + 9.48, + 9.48, + 9.469999999999999, + 9.469999999999999 + ], + "y": [ + 12.803071576255883, + 12.803071576255883, + 18.07255432353891, + 18.07255432353891, + 12.803071576255883 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.48, + 9.49, + 9.49, + 9.48, + 9.48 + ], + "y": [ + 12.787845147542633, + 12.787845147542633, + 18.057491718822412, + 18.057491718822412, + 12.787845147542633 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.49, + 9.5, + 9.5, + 9.49, + 9.49 + ], + "y": [ + 12.77250768587705, + 12.77250768587705, + 18.042315962574342, + 18.042315962574342, + 12.77250768587705 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.5, + 9.51, + 9.51, + 9.5, + 9.5 + ], + "y": [ + 12.757059550229947, + 12.757059550229947, + 18.027027348729135, + 18.027027348729135, + 12.757059550229947 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.51, + 9.52, + 9.52, + 9.51, + 9.51 + ], + "y": [ + 12.741501121420612, + 12.741501121420612, + 18.01162619243045, + 18.01162619243045, + 12.741501121420612 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.52, + 9.53, + 9.53, + 9.52, + 9.52 + ], + "y": [ + 12.725832802491201, + 12.725832802491201, + 17.99611283040894, + 17.99611283040894, + 12.725832802491201 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.53, + 9.54, + 9.54, + 9.53, + 9.53 + ], + "y": [ + 12.710055019081999, + 12.710055019081999, + 17.980487621361146, + 17.980487621361146, + 12.710055019081999 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.54, + 9.55, + 9.55, + 9.54, + 9.54 + ], + "y": [ + 12.694168219807485, + 12.694168219807485, + 17.96475094632943, + 17.96475094632943, + 12.694168219807485 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.55, + 9.56, + 9.56, + 9.55, + 9.55 + ], + "y": [ + 12.678172876633035, + 12.678172876633035, + 17.94890320908285, + 17.94890320908285, + 12.678172876633035 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.56, + 9.57, + 9.57, + 9.56, + 9.56 + ], + "y": [ + 12.66206948525234, + 12.66206948525234, + 17.932944836498887, + 17.932944836498887, + 12.66206948525234 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.57, + 9.58, + 9.58, + 9.57, + 9.57 + ], + "y": [ + 12.645858565465188, + 12.645858565465188, + 17.916876278945907, + 17.916876278945907, + 12.645858565465188 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.58, + 9.59, + 9.59, + 9.58, + 9.58 + ], + "y": [ + 12.629540661555787, + 12.629540661555787, + 17.90069801066634, + 17.90069801066634, + 12.629540661555787 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.59, + 9.6, + 9.6, + 9.59, + 9.59 + ], + "y": [ + 12.613116342671278, + 12.613116342671278, + 17.88441053016038, + 17.88441053016038, + 12.613116342671278 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.6, + 9.61, + 9.61, + 9.6, + 9.6 + ], + "y": [ + 12.596586203200491, + 12.596586203200491, + 17.868014360570154, + 17.868014360570154, + 12.596586203200491 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.61, + 9.620000000000001, + 9.620000000000001, + 9.61, + 9.61 + ], + "y": [ + 12.5799508631528, + 12.5799508631528, + 17.85151005006425, + 17.85151005006425, + 12.5799508631528 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.620000000000001, + 9.629999999999999, + 9.629999999999999, + 9.620000000000001, + 9.620000000000001 + ], + "y": [ + 12.563210968536897, + 12.563210968536897, + 17.83489817222252, + 17.83489817222252, + 12.563210968536897 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.629999999999999, + 9.64, + 9.64, + 9.629999999999999, + 9.629999999999999 + ], + "y": [ + 12.546367191739476, + 12.546367191739476, + 17.818179326420978, + 17.818179326420978, + 12.546367191739476 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.64, + 9.65, + 9.65, + 9.64, + 9.64 + ], + "y": [ + 12.529420231903643, + 12.529420231903643, + 17.80135413821678, + 17.80135413821678, + 12.529420231903643 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.65, + 9.66, + 9.66, + 9.65, + 9.65 + ], + "y": [ + 12.512370815306909, + 12.512370815306909, + 17.78442325973307, + 17.78442325973307, + 12.512370815306909 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.66, + 9.67, + 9.67, + 9.66, + 9.66 + ], + "y": [ + 12.49521969573875, + 12.49521969573875, + 17.76738737004368, + 17.76738737004368, + 12.49521969573875 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.67, + 9.68, + 9.68, + 9.67, + 9.67 + ], + "y": [ + 12.477967654877476, + 12.477967654877476, + 17.750247175557412, + 17.750247175557412, + 12.477967654877476 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.68, + 9.69, + 9.69, + 9.68, + 9.68 + ], + "y": [ + 12.46061550266637, + 12.46061550266637, + 17.733003410401984, + 17.733003410401984, + 12.46061550266637 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.69, + 9.7, + 9.7, + 9.69, + 9.69 + ], + "y": [ + 12.44316407768891, + 12.44316407768891, + 17.715656836807334, + 17.715656836807334, + 12.44316407768891 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.7, + 9.71, + 9.71, + 9.7, + 9.7 + ], + "y": [ + 12.425614247543031, + 12.425614247543031, + 17.69820824548821, + 17.69820824548821, + 12.425614247543031 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.71, + 9.719999999999999, + 9.719999999999999, + 9.71, + 9.71 + ], + "y": [ + 12.407966909214142, + 12.407966909214142, + 17.68065845602598, + 17.68065845602598, + 12.407966909214142 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.719999999999999, + 9.73, + 9.73, + 9.719999999999999, + 9.719999999999999 + ], + "y": [ + 12.390222989446894, + 12.390222989446894, + 17.663008317249403, + 17.663008317249403, + 12.390222989446894 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.73, + 9.74, + 9.74, + 9.73, + 9.73 + ], + "y": [ + 12.372383445115512, + 12.372383445115512, + 17.645258707614357, + 17.645258707614357, + 12.372383445115512 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.74, + 9.75, + 9.75, + 9.74, + 9.74 + ], + "y": [ + 12.35444926359244, + 12.35444926359244, + 17.627410535582225, + 17.627410535582225, + 12.35444926359244 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.75, + 9.76, + 9.76, + 9.75, + 9.75 + ], + "y": [ + 12.336421463115373, + 12.336421463115373, + 17.609464739997012, + 17.609464739997012, + 12.336421463115373 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.76, + 9.77, + 9.77, + 9.76, + 9.76 + ], + "y": [ + 12.318301093152341, + 12.318301093152341, + 17.591422290460795, + 17.591422290460795, + 12.318301093152341 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.77, + 9.78, + 9.78, + 9.77, + 9.77 + ], + "y": [ + 12.300089234764645, + 12.300089234764645, + 17.573284187707507, + 17.573284187707507, + 12.300089234764645 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.78, + 9.79, + 9.79, + 9.78, + 9.78 + ], + "y": [ + 12.281787000967753, + 12.281787000967753, + 17.555051463974973, + 17.555051463974973, + 12.281787000967753 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.79, + 9.8, + 9.8, + 9.79, + 9.79 + ], + "y": [ + 12.263395537089696, + 12.263395537089696, + 17.536725183374784, + 17.536725183374784, + 12.263395537089696 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.8, + 9.81, + 9.81, + 9.8, + 9.8 + ], + "y": [ + 12.244916021127024, + 12.244916021127024, + 17.51830644226012, + 17.51830644226012, + 12.244916021127024 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.81, + 9.82, + 9.82, + 9.81, + 9.81 + ], + "y": [ + 12.226349664097915, + 12.226349664097915, + 17.499796369591188, + 17.499796369591188, + 12.226349664097915 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.82, + 9.83, + 9.83, + 9.82, + 9.82 + ], + "y": [ + 12.207697710392603, + 12.207697710392603, + 17.481196127298215, + 17.481196127298215, + 12.207697710392603 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.83, + 9.84, + 9.84, + 9.83, + 9.83 + ], + "y": [ + 12.18896143812058, + 12.18896143812058, + 17.46250691064171, + 17.46250691064171, + 12.18896143812058 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.84, + 9.85, + 9.85, + 9.84, + 9.84 + ], + "y": [ + 12.170142159454667, + 12.170142159454667, + 17.443729948569935, + 17.443729948569935, + 12.170142159454667 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.85, + 9.86, + 9.86, + 9.85, + 9.85 + ], + "y": [ + 12.151241220971615, + 12.151241220971615, + 17.424866504073403, + 17.424866504073403, + 12.151241220971615 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.86, + 9.870000000000001, + 9.870000000000001, + 9.86, + 9.86 + ], + "y": [ + 12.132260003989243, + 12.132260003989243, + 17.405917874536108, + 17.405917874536108, + 12.132260003989243 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.870000000000001, + 9.879999999999999, + 9.879999999999999, + 9.870000000000001, + 9.870000000000001 + ], + "y": [ + 12.11319992489959, + 12.11319992489959, + 17.3868853920834, + 17.3868853920834, + 12.11319992489959 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.879999999999999, + 9.89, + 9.89, + 9.879999999999999, + 9.879999999999999 + ], + "y": [ + 12.094062435498323, + 12.094062435498323, + 17.367770423926363, + 17.367770423926363, + 12.094062435498323 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.89, + 9.9, + 9.9, + 9.89, + 9.89 + ], + "y": [ + 12.074849023309838, + 12.074849023309838, + 17.348574372702387, + 17.348574372702387, + 12.074849023309838 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.9, + 9.91, + 9.91, + 9.9, + 9.9 + ], + "y": [ + 12.055561211908016, + 12.055561211908016, + 17.329298676811828, + 17.329298676811828, + 12.055561211908016 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.91, + 9.92, + 9.92, + 9.91, + 9.91 + ], + "y": [ + 12.036200279442681, + 12.036200279442681, + 17.309944810750537, + 17.309944810750537, + 12.036200279442681 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.92, + 9.93, + 9.93, + 9.92, + 9.92 + ], + "y": [ + 12.016768115280115, + 12.016768115280115, + 17.290514298396907, + 17.290514298396907, + 12.016768115280115 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.93, + 9.94, + 9.94, + 9.93, + 9.93 + ], + "y": [ + 11.997266352974954, + 11.997266352974954, + 17.271008673955023, + 17.271008673955023, + 11.997266352974954 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.94, + 9.95, + 9.95, + 9.94, + 9.94 + ], + "y": [ + 11.977696663363343, + 11.977696663363343, + 17.251429522160247, + 17.251429522160247, + 11.977696663363343 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.95, + 9.96, + 9.96, + 9.95, + 9.95 + ], + "y": [ + 11.9580608951072, + 11.9580608951072, + 17.231778465128414, + 17.231778465128414, + 11.9580608951072 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.96, + 9.969999999999999, + 9.969999999999999, + 9.96, + 9.96 + ], + "y": [ + 11.938360648378765, + 11.938360648378765, + 17.212057022416236, + 17.212057022416236, + 11.938360648378765 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.969999999999999, + 9.98, + 9.98, + 9.969999999999999, + 9.969999999999999 + ], + "y": [ + 11.918597707640439, + 11.918597707640439, + 17.19226703793043, + 17.19226703793043, + 11.918597707640439 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.98, + 9.99, + 9.99, + 9.98, + 9.98 + ], + "y": [ + 11.8987738957869, + 11.8987738957869, + 17.172410247730205, + 17.172410247730205, + 11.8987738957869 + ] + }, + { + "fill": "toself", + "fillcolor": "#FF0000", + "line": { + "color": "#CC0000", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.99, + 10, + 10, + 9.99, + 9.99 + ], + "y": [ + 11.878891074417327, + 11.878891074417327, + 17.15248842645552, + 17.15248842645552, + 11.878891074417327 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0, + 0.01, + 0.01, + 0, + 0 + ], + "y": [ + 15, + 15, + 16.010197881618293, + 16.010197881618293, + 15 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.01, + 0.02, + 0.02, + 0.01, + 0.01 + ], + "y": [ + 15.009802118381707, + 15.009802118381707, + 16.020394116537823, + 16.020394116537823, + 15.009802118381707 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.02, + 0.03, + 0.03, + 0.02, + 0.02 + ], + "y": [ + 15.019605883462178, + 15.019605883462178, + 16.030588695823262, + 16.030588695823262, + 15.019605883462178 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.03, + 0.04, + 0.04, + 0.03, + 0.03 + ], + "y": [ + 15.029411304176737, + 15.029411304176737, + 16.040781632489537, + 16.040781632489537, + 15.029411304176737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.04, + 0.05, + 0.05, + 0.04, + 0.04 + ], + "y": [ + 15.03921836751046, + 15.03921836751046, + 16.05097293946555, + 16.05097293946555, + 15.03921836751046 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.05, + 0.060000000000000005, + 0.060000000000000005, + 0.05, + 0.05 + ], + "y": [ + 15.049027060534451, + 15.049027060534451, + 16.061162629594424, + 16.061162629594424, + 15.049027060534451 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.060000000000000005, + 0.06999999999999999, + 0.06999999999999999, + 0.060000000000000005, + 0.060000000000000005 + ], + "y": [ + 15.058837370405573, + 15.058837370405573, + 16.071350715633862, + 16.071350715633862, + 15.058837370405573 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.06999999999999999, + 0.08, + 0.08, + 0.06999999999999999, + 0.06999999999999999 + ], + "y": [ + 15.068649284366135, + 15.068649284366135, + 16.08153721025637, + 16.08153721025637, + 15.068649284366135 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.08, + 0.09, + 0.09, + 0.08, + 0.08 + ], + "y": [ + 15.078462789743623, + 15.078462789743623, + 16.091722126049643, + 16.091722126049643, + 15.078462789743623 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.09, + 0.09999999999999999, + 0.09999999999999999, + 0.09, + 0.09 + ], + "y": [ + 15.088277873950355, + 15.088277873950355, + 16.10190547551685, + 16.10190547551685, + 15.088277873950355 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.09999999999999999, + 0.11, + 0.11, + 0.09999999999999999, + 0.09999999999999999 + ], + "y": [ + 15.098094524483145, + 15.098094524483145, + 16.112087271076902, + 16.112087271076902, + 15.098094524483145 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.11, + 0.12, + 0.12, + 0.11, + 0.11 + ], + "y": [ + 15.107912728923091, + 15.107912728923091, + 16.122267525064803, + 16.122267525064803, + 15.107912728923091 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.12, + 0.13, + 0.13, + 0.12, + 0.12 + ], + "y": [ + 15.11773247493519, + 15.11773247493519, + 16.13244624973196, + 16.13244624973196, + 15.11773247493519 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.13, + 0.14, + 0.14, + 0.13, + 0.13 + ], + "y": [ + 15.127553750268037, + 15.127553750268037, + 16.14262345724653, + 16.14262345724653, + 15.127553750268037 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.14, + 0.15000000000000002, + 0.15000000000000002, + 0.14, + 0.14 + ], + "y": [ + 15.137376542753465, + 15.137376542753465, + 16.152799159693718, + 16.152799159693718, + 15.137376542753465 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.15000000000000002, + 0.16, + 0.16, + 0.15000000000000002, + 0.15000000000000002 + ], + "y": [ + 15.147200840306278, + 15.147200840306278, + 16.162973369076102, + 16.162973369076102, + 15.147200840306278 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.16, + 0.17, + 0.17, + 0.16, + 0.16 + ], + "y": [ + 15.157026630923891, + 15.157026630923891, + 16.173146097313975, + 16.173146097313975, + 15.157026630923891 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.17, + 0.18000000000000002, + 0.18000000000000002, + 0.17, + 0.17 + ], + "y": [ + 15.166853902686018, + 15.166853902686018, + 16.183317356245695, + 16.183317356245695, + 15.166853902686018 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.18000000000000002, + 0.19, + 0.19, + 0.18000000000000002, + 0.18000000000000002 + ], + "y": [ + 15.176682643754297, + 15.176682643754297, + 16.193487157627953, + 16.193487157627953, + 15.176682643754297 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.19, + 0.2, + 0.2, + 0.19, + 0.19 + ], + "y": [ + 15.18651284237204, + 15.18651284237204, + 16.20365551313621, + 16.20365551313621, + 15.18651284237204 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.2, + 0.21000000000000002, + 0.21000000000000002, + 0.2, + 0.2 + ], + "y": [ + 15.196344486863781, + 15.196344486863781, + 16.213822434365, + 16.213822434365, + 15.196344486863781 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.21000000000000002, + 0.22, + 0.22, + 0.21000000000000002, + 0.21000000000000002 + ], + "y": [ + 15.206177565634992, + 15.206177565634992, + 16.223987932828237, + 16.223987932828237, + 15.206177565634992 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.22, + 0.23, + 0.23, + 0.22, + 0.22 + ], + "y": [ + 15.216012067171754, + 15.216012067171754, + 16.234152019959634, + 16.234152019959634, + 15.216012067171754 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.23, + 0.24000000000000002, + 0.24000000000000002, + 0.23, + 0.23 + ], + "y": [ + 15.225847980040356, + 15.225847980040356, + 16.24431470711297, + 16.24431470711297, + 15.225847980040356 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.24000000000000002, + 0.25, + 0.25, + 0.24000000000000002, + 0.24000000000000002 + ], + "y": [ + 15.23568529288702, + 15.23568529288702, + 16.254476005562466, + 16.254476005562466, + 15.23568529288702 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.25, + 0.26, + 0.26, + 0.25, + 0.25 + ], + "y": [ + 15.245523994437523, + 15.245523994437523, + 16.264635926503225, + 16.264635926503225, + 15.245523994437523 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.26, + 0.27, + 0.27, + 0.26, + 0.26 + ], + "y": [ + 15.255364073496764, + 15.255364073496764, + 16.274794481051487, + 16.274794481051487, + 15.255364073496764 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.27, + 0.28, + 0.28, + 0.27, + 0.27 + ], + "y": [ + 15.265205518948502, + 15.265205518948502, + 16.284951680244987, + 16.284951680244987, + 15.265205518948502 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.28, + 0.29000000000000004, + 0.29000000000000004, + 0.28, + 0.28 + ], + "y": [ + 15.275048319755001, + 15.275048319755001, + 16.295107535043424, + 16.295107535043424, + 15.275048319755001 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.29000000000000004, + 0.3, + 0.3, + 0.29000000000000004, + 0.29000000000000004 + ], + "y": [ + 15.284892464956565, + 15.284892464956565, + 16.30526205632868, + 16.30526205632868, + 15.284892464956565 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.3, + 0.31, + 0.31, + 0.3, + 0.3 + ], + "y": [ + 15.29473794367131, + 15.29473794367131, + 16.315415254905265, + 16.315415254905265, + 15.29473794367131 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.31, + 0.32, + 0.32, + 0.31, + 0.31 + ], + "y": [ + 15.304584745094722, + 15.304584745094722, + 16.32556714150068, + 16.32556714150068, + 15.304584745094722 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.32, + 0.33, + 0.33, + 0.32, + 0.32 + ], + "y": [ + 15.314432858499305, + 15.314432858499305, + 16.33571772676579, + 16.33571772676579, + 15.314432858499305 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.33, + 0.34, + 0.34, + 0.33, + 0.33 + ], + "y": [ + 15.324282273234198, + 15.324282273234198, + 16.345867021275147, + 16.345867021275147, + 15.324282273234198 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.34, + 0.35000000000000003, + 0.35000000000000003, + 0.34, + 0.34 + ], + "y": [ + 15.334132978724837, + 15.334132978724837, + 16.356015035527395, + 16.356015035527395, + 15.334132978724837 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.35000000000000003, + 0.36, + 0.36, + 0.35000000000000003, + 0.35000000000000003 + ], + "y": [ + 15.34398496447259, + 15.34398496447259, + 16.366161779945653, + 16.366161779945653, + 15.34398496447259 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.36, + 0.37, + 0.37, + 0.36, + 0.36 + ], + "y": [ + 15.353838220054332, + 15.353838220054332, + 16.376307264877823, + 16.376307264877823, + 15.353838220054332 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.37, + 0.38, + 0.38, + 0.37, + 0.37 + ], + "y": [ + 15.363692735122159, + 15.363692735122159, + 16.38645150059705, + 16.38645150059705, + 15.363692735122159 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.38, + 0.39, + 0.39, + 0.38, + 0.38 + ], + "y": [ + 15.373548499402931, + 15.373548499402931, + 16.39659449730209, + 16.39659449730209, + 15.373548499402931 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.39, + 0.4, + 0.4, + 0.39, + 0.39 + ], + "y": [ + 15.383405502697894, + 15.383405502697894, + 16.406736265117583, + 16.406736265117583, + 15.383405502697894 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.4, + 0.41000000000000003, + 0.41000000000000003, + 0.4, + 0.4 + ], + "y": [ + 15.3932637348824, + 15.3932637348824, + 16.41687681409456, + 16.41687681409456, + 15.3932637348824 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.41000000000000003, + 0.42, + 0.42, + 0.41000000000000003, + 0.41000000000000003 + ], + "y": [ + 15.403123185905422, + 15.403123185905422, + 16.427016154210705, + 16.427016154210705, + 15.403123185905422 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.42, + 0.43, + 0.43, + 0.42, + 0.42 + ], + "y": [ + 15.412983845789277, + 15.412983845789277, + 16.437154295370853, + 16.437154295370853, + 15.412983845789277 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.43, + 0.44, + 0.44, + 0.43, + 0.43 + ], + "y": [ + 15.422845704629127, + 15.422845704629127, + 16.447291247407282, + 16.447291247407282, + 15.422845704629127 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.44, + 0.45, + 0.45, + 0.44, + 0.44 + ], + "y": [ + 15.4327087525927, + 15.4327087525927, + 16.45742702008011, + 16.45742702008011, + 15.4327087525927 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.45, + 0.46, + 0.46, + 0.45, + 0.45 + ], + "y": [ + 15.442572979919868, + 15.442572979919868, + 16.467561623077724, + 16.467561623077724, + 15.442572979919868 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.46, + 0.47000000000000003, + 0.47000000000000003, + 0.46, + 0.46 + ], + "y": [ + 15.452438376922256, + 15.452438376922256, + 16.477695066017095, + 16.477695066017095, + 15.452438376922256 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.47000000000000003, + 0.48, + 0.48, + 0.47000000000000003, + 0.47000000000000003 + ], + "y": [ + 15.462304933982884, + 15.462304933982884, + 16.48782735844419, + 16.48782735844419, + 15.462304933982884 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.48, + 0.49, + 0.49, + 0.48, + 0.48 + ], + "y": [ + 15.472172641555787, + 15.472172641555787, + 16.49795850983436, + 16.49795850983436, + 15.472172641555787 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.49, + 0.5, + 0.5, + 0.49, + 0.49 + ], + "y": [ + 15.482041490165615, + 15.482041490165615, + 16.508088529592765, + 16.508088529592765, + 15.482041490165615 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.5, + 0.51, + 0.51, + 0.5, + 0.5 + ], + "y": [ + 15.491911470407205, + 15.491911470407205, + 16.518217427054704, + 16.518217427054704, + 15.491911470407205 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.51, + 0.52, + 0.52, + 0.51, + 0.51 + ], + "y": [ + 15.501782572945265, + 15.501782572945265, + 16.528345211485945, + 16.528345211485945, + 15.501782572945265 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.52, + 0.53, + 0.53, + 0.52, + 0.52 + ], + "y": [ + 15.511654788514017, + 15.511654788514017, + 16.538471892083244, + 16.538471892083244, + 15.511654788514017 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.53, + 0.54, + 0.54, + 0.53, + 0.53 + ], + "y": [ + 15.521528107916716, + 15.521528107916716, + 16.54859747797465, + 16.54859747797465, + 15.521528107916716 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.54, + 0.55, + 0.55, + 0.54, + 0.54 + ], + "y": [ + 15.531402522025306, + 15.531402522025306, + 16.558721978219907, + 16.558721978219907, + 15.531402522025306 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.55, + 0.56, + 0.56, + 0.55, + 0.55 + ], + "y": [ + 15.541278021780045, + 15.541278021780045, + 16.568845401810794, + 16.568845401810794, + 15.541278021780045 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.56, + 0.5700000000000001, + 0.5700000000000001, + 0.56, + 0.56 + ], + "y": [ + 15.551154598189154, + 15.551154598189154, + 16.57896775767159, + 16.57896775767159, + 15.551154598189154 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.5700000000000001, + 0.58, + 0.58, + 0.5700000000000001, + 0.5700000000000001 + ], + "y": [ + 15.561032242328352, + 15.561032242328352, + 16.58908905465941, + 16.58908905465941, + 15.561032242328352 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.58, + 0.59, + 0.59, + 0.58, + 0.58 + ], + "y": [ + 15.57091094534053, + 15.57091094534053, + 16.59920930156461, + 16.59920930156461, + 15.57091094534053 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.59, + 0.6, + 0.6, + 0.59, + 0.59 + ], + "y": [ + 15.580790698435324, + 15.580790698435324, + 16.609328507111176, + 16.609328507111176, + 15.580790698435324 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.6, + 0.61, + 0.61, + 0.6, + 0.6 + ], + "y": [ + 15.590671492888754, + 15.590671492888754, + 16.61944667995709, + 16.61944667995709, + 15.590671492888754 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.61, + 0.62, + 0.62, + 0.61, + 0.61 + ], + "y": [ + 15.600553320042836, + 15.600553320042836, + 16.629563828694753, + 16.629563828694753, + 15.600553320042836 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.62, + 0.63, + 0.63, + 0.62, + 0.62 + ], + "y": [ + 15.610436171305171, + 15.610436171305171, + 16.639679961851265, + 16.639679961851265, + 15.610436171305171 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.63, + 0.64, + 0.64, + 0.63, + 0.63 + ], + "y": [ + 15.620320038148655, + 15.620320038148655, + 16.649795087888943, + 16.649795087888943, + 15.620320038148655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.64, + 0.65, + 0.65, + 0.64, + 0.64 + ], + "y": [ + 15.630204912110974, + 15.630204912110974, + 16.659909215205655, + 16.659909215205655, + 15.630204912110974 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.65, + 0.66, + 0.66, + 0.65, + 0.65 + ], + "y": [ + 15.640090784794257, + 15.640090784794257, + 16.670022352135152, + 16.670022352135152, + 15.640090784794257 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.66, + 0.67, + 0.67, + 0.66, + 0.66 + ], + "y": [ + 15.649977647864757, + 15.649977647864757, + 16.680134506947557, + 16.680134506947557, + 15.649977647864757 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.67, + 0.68, + 0.68, + 0.67, + 0.67 + ], + "y": [ + 15.659865493052347, + 15.659865493052347, + 16.690245687849654, + 16.690245687849654, + 15.659865493052347 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.68, + 0.6900000000000001, + 0.6900000000000001, + 0.68, + 0.68 + ], + "y": [ + 15.669754312150248, + 15.669754312150248, + 16.700355902985294, + 16.700355902985294, + 15.669754312150248 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.6900000000000001, + 0.7, + 0.7, + 0.6900000000000001, + 0.6900000000000001 + ], + "y": [ + 15.679644097014602, + 15.679644097014602, + 16.710465160435906, + 16.710465160435906, + 15.679644097014602 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.7, + 0.71, + 0.71, + 0.7, + 0.7 + ], + "y": [ + 15.689534839563985, + 15.689534839563985, + 16.720573468220643, + 16.720573468220643, + 15.689534839563985 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.71, + 0.72, + 0.72, + 0.71, + 0.71 + ], + "y": [ + 15.699426531779245, + 15.699426531779245, + 16.730680834296876, + 16.730680834296876, + 15.699426531779245 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.72, + 0.73, + 0.73, + 0.72, + 0.72 + ], + "y": [ + 15.709319165703008, + 15.709319165703008, + 16.740787266560698, + 16.740787266560698, + 15.709319165703008 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.73, + 0.74, + 0.74, + 0.73, + 0.73 + ], + "y": [ + 15.719212733439182, + 15.719212733439182, + 16.750892772847077, + 16.750892772847077, + 15.719212733439182 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.74, + 0.75, + 0.75, + 0.74, + 0.74 + ], + "y": [ + 15.729107227152799, + 15.729107227152799, + 16.760997360930396, + 16.760997360930396, + 15.729107227152799 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.75, + 0.76, + 0.76, + 0.75, + 0.75 + ], + "y": [ + 15.739002639069474, + 15.739002639069474, + 16.771101038524787, + 16.771101038524787, + 15.739002639069474 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.76, + 0.77, + 0.77, + 0.76, + 0.76 + ], + "y": [ + 15.748898961475083, + 15.748898961475083, + 16.781203813284517, + 16.781203813284517, + 15.748898961475083 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.77, + 0.78, + 0.78, + 0.77, + 0.77 + ], + "y": [ + 15.758796186715347, + 15.758796186715347, + 16.791305692804368, + 16.791305692804368, + 15.758796186715347 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.78, + 0.79, + 0.79, + 0.78, + 0.78 + ], + "y": [ + 15.76869430719549, + 15.76869430719549, + 16.801406684619938, + 16.801406684619938, + 15.76869430719549 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.79, + 0.8, + 0.8, + 0.79, + 0.79 + ], + "y": [ + 15.778593315379918, + 15.778593315379918, + 16.81150679620819, + 16.81150679620819, + 15.778593315379918 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.8, + 0.81, + 0.81, + 0.8, + 0.8 + ], + "y": [ + 15.788493203791663, + 15.788493203791663, + 16.821606034987536, + 16.821606034987536, + 15.788493203791663 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.81, + 0.8200000000000001, + 0.8200000000000001, + 0.81, + 0.81 + ], + "y": [ + 15.79839396501231, + 15.79839396501231, + 16.831704408318583, + 16.831704408318583, + 15.79839396501231 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.8200000000000001, + 0.83, + 0.83, + 0.8200000000000001, + 0.8200000000000001 + ], + "y": [ + 15.808295591681262, + 15.808295591681262, + 16.841801923504278, + 16.841801923504278, + 15.808295591681262 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.83, + 0.84, + 0.84, + 0.83, + 0.83 + ], + "y": [ + 15.818198076495563, + 15.818198076495563, + 16.851898587790245, + 16.851898587790245, + 15.818198076495563 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.84, + 0.85, + 0.85, + 0.84, + 0.84 + ], + "y": [ + 15.828101412209591, + 15.828101412209591, + 16.86199440836529, + 16.86199440836529, + 15.828101412209591 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.85, + 0.86, + 0.86, + 0.85, + 0.85 + ], + "y": [ + 15.838005591634541, + 15.838005591634541, + 16.872089392361676, + 16.872089392361676, + 15.838005591634541 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.86, + 0.87, + 0.87, + 0.86, + 0.86 + ], + "y": [ + 15.847910607638152, + 15.847910607638152, + 16.882183546855558, + 16.882183546855558, + 15.847910607638152 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.87, + 0.88, + 0.88, + 0.87, + 0.87 + ], + "y": [ + 15.857816453144265, + 15.857816453144265, + 16.89227687886734, + 16.89227687886734, + 15.857816453144265 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.88, + 0.89, + 0.89, + 0.88, + 0.88 + ], + "y": [ + 15.86772312113248, + 15.86772312113248, + 16.90236939536194, + 16.90236939536194, + 15.86772312113248 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.89, + 0.9, + 0.9, + 0.89, + 0.89 + ], + "y": [ + 15.877630604637877, + 15.877630604637877, + 16.912461103249335, + 16.912461103249335, + 15.877630604637877 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.9, + 0.91, + 0.91, + 0.9, + 0.9 + ], + "y": [ + 15.887538896750476, + 15.887538896750476, + 16.922552009384734, + 16.922552009384734, + 15.887538896750476 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.91, + 0.92, + 0.92, + 0.91, + 0.91 + ], + "y": [ + 15.897447990615074, + 15.897447990615074, + 16.932642120569124, + 16.932642120569124, + 15.897447990615074 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.92, + 0.93, + 0.93, + 0.92, + 0.92 + ], + "y": [ + 15.90735787943068, + 15.90735787943068, + 16.94273144354947, + 16.94273144354947, + 15.90735787943068 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.93, + 0.9400000000000001, + 0.9400000000000001, + 0.93, + 0.93 + ], + "y": [ + 15.917268556450331, + 15.917268556450331, + 16.952819985019254, + 16.952819985019254, + 15.917268556450331 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.9400000000000001, + 0.95, + 0.95, + 0.9400000000000001, + 0.9400000000000001 + ], + "y": [ + 15.927180014980543, + 15.927180014980543, + 16.962907751618594, + 16.962907751618594, + 15.927180014980543 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.95, + 0.96, + 0.96, + 0.95, + 0.95 + ], + "y": [ + 15.937092248381196, + 15.937092248381196, + 16.972994749934884, + 16.972994749934884, + 15.937092248381196 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.96, + 0.97, + 0.97, + 0.96, + 0.96 + ], + "y": [ + 15.947005250064905, + 15.947005250064905, + 16.98308098650289, + 16.98308098650289, + 15.947005250064905 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.97, + 0.98, + 0.98, + 0.97, + 0.97 + ], + "y": [ + 15.956919013496893, + 15.956919013496893, + 16.99316646780531, + 16.99316646780531, + 15.956919013496893 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.98, + 0.99, + 0.99, + 0.98, + 0.98 + ], + "y": [ + 15.966833532194471, + 15.966833532194471, + 17.003251200273045, + 17.003251200273045, + 15.966833532194471 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 0.99, + 1, + 1, + 0.99, + 0.99 + ], + "y": [ + 15.97674879972673, + 15.97674879972673, + 17.013335190285527, + 17.013335190285527, + 15.97674879972673 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1, + 1.01, + 1.01, + 1, + 1 + ], + "y": [ + 15.986664809714245, + 15.986664809714245, + 17.023418444171046, + 17.023418444171046, + 15.986664809714245 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.01, + 1.02, + 1.02, + 1.01, + 1.01 + ], + "y": [ + 15.99658155582872, + 15.99658155582872, + 17.033500968207292, + 17.033500968207292, + 15.99658155582872 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.02, + 1.03, + 1.03, + 1.02, + 1.02 + ], + "y": [ + 16.006499031792472, + 16.006499031792472, + 17.043582768621356, + 17.043582768621356, + 16.006499031792472 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.03, + 1.04, + 1.04, + 1.03, + 1.03 + ], + "y": [ + 16.016417231378405, + 16.016417231378405, + 17.053663851590393, + 17.053663851590393, + 16.016417231378405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.04, + 1.05, + 1.05, + 1.04, + 1.04 + ], + "y": [ + 16.026336148409364, + 16.026336148409364, + 17.063744223241905, + 17.063744223241905, + 16.026336148409364 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.05, + 1.06, + 1.06, + 1.05, + 1.05 + ], + "y": [ + 16.036255776757848, + 16.036255776757848, + 17.07382388965397, + 17.07382388965397, + 16.036255776757848 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.06, + 1.07, + 1.07, + 1.06, + 1.06 + ], + "y": [ + 16.04617611034578, + 16.04617611034578, + 17.083902856855687, + 17.083902856855687, + 16.04617611034578 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.07, + 1.08, + 1.08, + 1.07, + 1.07 + ], + "y": [ + 16.056097143144058, + 16.056097143144058, + 17.093981130827537, + 17.093981130827537, + 16.056097143144058 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.08, + 1.09, + 1.09, + 1.08, + 1.08 + ], + "y": [ + 16.066018869172204, + 16.066018869172204, + 17.10405871750157, + 17.10405871750157, + 16.066018869172204 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.09, + 1.1, + 1.1, + 1.09, + 1.09 + ], + "y": [ + 16.075941282498167, + 16.075941282498167, + 17.114135622761985, + 17.114135622761985, + 16.075941282498167 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.1, + 1.11, + 1.11, + 1.1, + 1.1 + ], + "y": [ + 16.085864377237748, + 16.085864377237748, + 17.124211852445267, + 17.124211852445267, + 16.085864377237748 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.11, + 1.12, + 1.12, + 1.11, + 1.11 + ], + "y": [ + 16.09578814755446, + 16.09578814755446, + 17.134287412340647, + 17.134287412340647, + 16.09578814755446 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.12, + 1.1300000000000001, + 1.1300000000000001, + 1.12, + 1.12 + ], + "y": [ + 16.105712587659077, + 16.105712587659077, + 17.14436230819031, + 17.14436230819031, + 16.105712587659077 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.1300000000000001, + 1.14, + 1.14, + 1.1300000000000001, + 1.1300000000000001 + ], + "y": [ + 16.11563769180941, + 16.11563769180941, + 17.154436545689883, + 17.154436545689883, + 16.11563769180941 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.14, + 1.15, + 1.15, + 1.14, + 1.14 + ], + "y": [ + 16.125563454309834, + 16.125563454309834, + 17.16451013048858, + 17.16451013048858, + 16.125563454309834 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.15, + 1.16, + 1.16, + 1.15, + 1.15 + ], + "y": [ + 16.135489869511133, + 16.135489869511133, + 17.17458306818983, + 17.17458306818983, + 16.135489869511133 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.16, + 1.17, + 1.17, + 1.16, + 1.16 + ], + "y": [ + 16.14541693180988, + 16.14541693180988, + 17.18465536435125, + 17.18465536435125, + 16.14541693180988 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.17, + 1.18, + 1.18, + 1.17, + 1.17 + ], + "y": [ + 16.155344635648454, + 16.155344635648454, + 17.194727024485175, + 17.194727024485175, + 16.155344635648454 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.18, + 1.19, + 1.19, + 1.18, + 1.18 + ], + "y": [ + 16.165272975514526, + 16.165272975514526, + 17.204798054058994, + 17.204798054058994, + 16.165272975514526 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.19, + 1.2, + 1.2, + 1.19, + 1.19 + ], + "y": [ + 16.175201945940703, + 16.175201945940703, + 17.21486845849541, + 17.21486845849541, + 16.175201945940703 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.2, + 1.21, + 1.21, + 1.2, + 1.2 + ], + "y": [ + 16.185131541504283, + 16.185131541504283, + 17.224938243172787, + 17.224938243172787, + 16.185131541504283 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.21, + 1.22, + 1.22, + 1.21, + 1.21 + ], + "y": [ + 16.195061756826902, + 16.195061756826902, + 17.235007413425432, + 17.235007413425432, + 16.195061756826902 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.22, + 1.23, + 1.23, + 1.22, + 1.22 + ], + "y": [ + 16.204992586574253, + 16.204992586574253, + 17.245075974543973, + 17.245075974543973, + 16.204992586574253 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.23, + 1.24, + 1.24, + 1.23, + 1.23 + ], + "y": [ + 16.21492402545571, + 16.21492402545571, + 17.255143931775706, + 17.255143931775706, + 16.21492402545571 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.24, + 1.25, + 1.25, + 1.24, + 1.24 + ], + "y": [ + 16.22485606822397, + 16.22485606822397, + 17.265211290324828, + 17.265211290324828, + 16.22485606822397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.25, + 1.26, + 1.26, + 1.25, + 1.25 + ], + "y": [ + 16.234788709674845, + 16.234788709674845, + 17.27527805535276, + 17.27527805535276, + 16.234788709674845 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.26, + 1.27, + 1.27, + 1.26, + 1.26 + ], + "y": [ + 16.24472194464691, + 16.24472194464691, + 17.28534423197849, + 17.28534423197849, + 16.24472194464691 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.27, + 1.28, + 1.28, + 1.27, + 1.27 + ], + "y": [ + 16.254655768021177, + 16.254655768021177, + 17.295409825278867, + 17.295409825278867, + 16.254655768021177 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.28, + 1.29, + 1.29, + 1.28, + 1.28 + ], + "y": [ + 16.264590174720794, + 16.264590174720794, + 17.30547484028903, + 17.30547484028903, + 16.264590174720794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.29, + 1.3, + 1.3, + 1.29, + 1.29 + ], + "y": [ + 16.274525159710628, + 16.274525159710628, + 17.315539282002483, + 17.315539282002483, + 16.274525159710628 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.3, + 1.31, + 1.31, + 1.3, + 1.3 + ], + "y": [ + 16.28446071799717, + 16.28446071799717, + 17.325603155371592, + 17.325603155371592, + 16.28446071799717 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.31, + 1.32, + 1.32, + 1.31, + 1.31 + ], + "y": [ + 16.294396844628057, + 16.294396844628057, + 17.335666465307813, + 17.335666465307813, + 16.294396844628057 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.32, + 1.33, + 1.33, + 1.32, + 1.32 + ], + "y": [ + 16.304333534691832, + 16.304333534691832, + 17.34572921668196, + 17.34572921668196, + 16.304333534691832 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.33, + 1.34, + 1.34, + 1.33, + 1.33 + ], + "y": [ + 16.31427078331768, + 16.31427078331768, + 17.35579141432467, + 17.35579141432467, + 16.31427078331768 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.34, + 1.35, + 1.35, + 1.34, + 1.34 + ], + "y": [ + 16.324208585674967, + 16.324208585674967, + 17.365853063026485, + 17.365853063026485, + 16.324208585674967 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.35, + 1.36, + 1.36, + 1.35, + 1.35 + ], + "y": [ + 16.33414693697315, + 16.33414693697315, + 17.37591416753835, + 17.37591416753835, + 16.33414693697315 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.36, + 1.37, + 1.37, + 1.36, + 1.36 + ], + "y": [ + 16.34408583246128, + 16.34408583246128, + 17.385974732571697, + 17.385974732571697, + 16.34408583246128 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.37, + 1.3800000000000001, + 1.3800000000000001, + 1.37, + 1.37 + ], + "y": [ + 16.35402526742793, + 16.35402526742793, + 17.396034762799072, + 17.396034762799072, + 16.35402526742793 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.3800000000000001, + 1.39, + 1.39, + 1.3800000000000001, + 1.3800000000000001 + ], + "y": [ + 16.36396523720055, + 16.36396523720055, + 17.406094262853934, + 17.406094262853934, + 16.36396523720055 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.39, + 1.4, + 1.4, + 1.39, + 1.39 + ], + "y": [ + 16.373905737145684, + 16.373905737145684, + 17.41615323733148, + 17.41615323733148, + 16.373905737145684 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.4, + 1.41, + 1.41, + 1.4, + 1.4 + ], + "y": [ + 16.383846762668135, + 16.383846762668135, + 17.42621169078849, + 17.42621169078849, + 16.383846762668135 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.41, + 1.42, + 1.42, + 1.41, + 1.41 + ], + "y": [ + 16.393788309211118, + 16.393788309211118, + 17.43626962774394, + 17.43626962774394, + 16.393788309211118 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.42, + 1.43, + 1.43, + 1.42, + 1.42 + ], + "y": [ + 16.403730372255666, + 16.403730372255666, + 17.44632705267917, + 17.44632705267917, + 16.403730372255666 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.43, + 1.44, + 1.44, + 1.43, + 1.43 + ], + "y": [ + 16.413672947320432, + 16.413672947320432, + 17.456383970038058, + 17.456383970038058, + 16.413672947320432 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.44, + 1.45, + 1.45, + 1.44, + 1.44 + ], + "y": [ + 16.42361602996154, + 16.42361602996154, + 17.466440384227504, + 17.466440384227504, + 16.42361602996154 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.45, + 1.46, + 1.46, + 1.45, + 1.45 + ], + "y": [ + 16.43355961577209, + 16.43355961577209, + 17.476496299617523, + 17.476496299617523, + 16.43355961577209 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.46, + 1.47, + 1.47, + 1.46, + 1.46 + ], + "y": [ + 16.443503700382067, + 16.443503700382067, + 17.486551720541687, + 17.486551720541687, + 16.443503700382067 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.47, + 1.48, + 1.48, + 1.47, + 1.47 + ], + "y": [ + 16.4534482794579, + 16.4534482794579, + 17.49660665129734, + 17.49660665129734, + 16.4534482794579 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.48, + 1.49, + 1.49, + 1.48, + 1.48 + ], + "y": [ + 16.46339334870224, + 16.46339334870224, + 17.50666109614584, + 17.50666109614584, + 16.46339334870224 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.49, + 1.5, + 1.5, + 1.49, + 1.49 + ], + "y": [ + 16.473338903853737, + 16.473338903853737, + 17.516715059312876, + 17.516715059312876, + 16.473338903853737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.5, + 1.51, + 1.51, + 1.5, + 1.5 + ], + "y": [ + 16.483284940686698, + 16.483284940686698, + 17.526768544922074, + 17.526768544922074, + 16.483284940686698 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.51, + 1.52, + 1.52, + 1.51, + 1.51 + ], + "y": [ + 16.493231455077495, + 16.493231455077495, + 17.536821557030247, + 17.536821557030247, + 16.493231455077495 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.52, + 1.53, + 1.53, + 1.52, + 1.52 + ], + "y": [ + 16.50317844296932, + 16.50317844296932, + 17.54687409976157, + 17.54687409976157, + 16.50317844296932 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.53, + 1.54, + 1.54, + 1.53, + 1.53 + ], + "y": [ + 16.51312590023799, + 16.51312590023799, + 17.556926177205554, + 17.556926177205554, + 16.51312590023799 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.54, + 1.55, + 1.55, + 1.54, + 1.54 + ], + "y": [ + 16.523073822794004, + 16.523073822794004, + 17.566977793417347, + 17.566977793417347, + 16.523073822794004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.55, + 1.56, + 1.56, + 1.55, + 1.55 + ], + "y": [ + 16.533022206582206, + 16.533022206582206, + 17.577028952417887, + 17.577028952417887, + 16.533022206582206 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.56, + 1.57, + 1.57, + 1.56, + 1.56 + ], + "y": [ + 16.542971047581663, + 16.542971047581663, + 17.587079658194373, + 17.587079658194373, + 16.542971047581663 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.57, + 1.58, + 1.58, + 1.57, + 1.57 + ], + "y": [ + 16.552920341805173, + 16.552920341805173, + 17.597129914700332, + 17.597129914700332, + 16.552920341805173 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.58, + 1.59, + 1.59, + 1.58, + 1.58 + ], + "y": [ + 16.56287008529921, + 16.56287008529921, + 17.60717972585595, + 17.60717972585595, + 16.56287008529921 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.59, + 1.6, + 1.6, + 1.59, + 1.59 + ], + "y": [ + 16.572820274143588, + 16.572820274143588, + 17.6172290955484, + 17.6172290955484, + 16.572820274143588 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.6, + 1.61, + 1.61, + 1.6, + 1.6 + ], + "y": [ + 16.582770904451134, + 16.582770904451134, + 17.627278027632016, + 17.627278027632016, + 16.582770904451134 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.61, + 1.62, + 1.62, + 1.61, + 1.61 + ], + "y": [ + 16.592721972367514, + 16.592721972367514, + 17.63732652592858, + 17.63732652592858, + 16.592721972367514 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.62, + 1.6300000000000001, + 1.6300000000000001, + 1.62, + 1.62 + ], + "y": [ + 16.602673474070947, + 16.602673474070947, + 17.647374594227504, + 17.647374594227504, + 16.602673474070947 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.6300000000000001, + 1.64, + 1.64, + 1.6300000000000001, + 1.6300000000000001 + ], + "y": [ + 16.612625405772018, + 16.612625405772018, + 17.657422236286205, + 17.657422236286205, + 16.612625405772018 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.64, + 1.65, + 1.65, + 1.64, + 1.64 + ], + "y": [ + 16.622577763713313, + 16.622577763713313, + 17.667469455830314, + 17.667469455830314, + 16.622577763713313 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.65, + 1.66, + 1.66, + 1.65, + 1.65 + ], + "y": [ + 16.6325305441692, + 16.6325305441692, + 17.677516256553968, + 17.677516256553968, + 16.6325305441692 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.66, + 1.67, + 1.67, + 1.66, + 1.66 + ], + "y": [ + 16.642483743445542, + 16.642483743445542, + 17.68756264211981, + 17.68756264211981, + 16.642483743445542 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.67, + 1.68, + 1.68, + 1.67, + 1.67 + ], + "y": [ + 16.652437357879695, + 16.652437357879695, + 17.697608616159627, + 17.697608616159627, + 16.652437357879695 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.68, + 1.69, + 1.69, + 1.68, + 1.68 + ], + "y": [ + 16.662391383839875, + 16.662391383839875, + 17.707654182274307, + 17.707654182274307, + 16.662391383839875 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.69, + 1.7, + 1.7, + 1.69, + 1.69 + ], + "y": [ + 16.67234581772519, + 16.67234581772519, + 17.717699344034198, + 17.717699344034198, + 16.67234581772519 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.7, + 1.71, + 1.71, + 1.7, + 1.7 + ], + "y": [ + 16.682300655965296, + 16.682300655965296, + 17.727744104979344, + 17.727744104979344, + 16.682300655965296 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.71, + 1.72, + 1.72, + 1.71, + 1.71 + ], + "y": [ + 16.692255895020146, + 16.692255895020146, + 17.73778846861967, + 17.73778846861967, + 16.692255895020146 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.72, + 1.73, + 1.73, + 1.72, + 1.72 + ], + "y": [ + 16.702211531379817, + 16.702211531379817, + 17.74783243843524, + 17.74783243843524, + 16.702211531379817 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.73, + 1.74, + 1.74, + 1.73, + 1.73 + ], + "y": [ + 16.712167561564243, + 16.712167561564243, + 17.75787601787659, + 17.75787601787659, + 16.712167561564243 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.74, + 1.75, + 1.75, + 1.74, + 1.74 + ], + "y": [ + 16.722123982122888, + 16.722123982122888, + 17.7679192103648, + 17.7679192103648, + 16.722123982122888 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.75, + 1.76, + 1.76, + 1.75, + 1.75 + ], + "y": [ + 16.732080789634676, + 16.732080789634676, + 17.77796201929182, + 17.77796201929182, + 16.732080789634676 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.76, + 1.77, + 1.77, + 1.76, + 1.76 + ], + "y": [ + 16.74203798070765, + 16.74203798070765, + 17.788004448020875, + 17.788004448020875, + 16.74203798070765 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.77, + 1.78, + 1.78, + 1.77, + 1.77 + ], + "y": [ + 16.75199555197859, + 16.75199555197859, + 17.798046499886276, + 17.798046499886276, + 16.75199555197859 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.78, + 1.79, + 1.79, + 1.78, + 1.78 + ], + "y": [ + 16.761953500113187, + 16.761953500113187, + 17.808088178194033, + 17.808088178194033, + 16.761953500113187 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.79, + 1.8, + 1.8, + 1.79, + 1.79 + ], + "y": [ + 16.771911821805425, + 16.771911821805425, + 17.81812948622192, + 17.81812948622192, + 16.771911821805425 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.8, + 1.81, + 1.81, + 1.8, + 1.8 + ], + "y": [ + 16.781870513777534, + 16.781870513777534, + 17.828170427219717, + 17.828170427219717, + 16.781870513777534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.81, + 1.82, + 1.82, + 1.81, + 1.81 + ], + "y": [ + 16.791829572779733, + 16.791829572779733, + 17.83821100440934, + 17.83821100440934, + 16.791829572779733 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.82, + 1.83, + 1.83, + 1.82, + 1.82 + ], + "y": [ + 16.801788995590105, + 16.801788995590105, + 17.848251220985357, + 17.848251220985357, + 16.801788995590105 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.83, + 1.84, + 1.84, + 1.83, + 1.83 + ], + "y": [ + 16.811748779014085, + 16.811748779014085, + 17.858291080114842, + 17.858291080114842, + 16.811748779014085 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.84, + 1.85, + 1.85, + 1.84, + 1.84 + ], + "y": [ + 16.821708919884596, + 16.821708919884596, + 17.868330584937922, + 17.868330584937922, + 16.821708919884596 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.85, + 1.86, + 1.86, + 1.85, + 1.85 + ], + "y": [ + 16.831669415061512, + 16.831669415061512, + 17.878369738567716, + 17.878369738567716, + 16.831669415061512 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.86, + 1.87, + 1.87, + 1.86, + 1.86 + ], + "y": [ + 16.841630261431714, + 16.841630261431714, + 17.888408544090765, + 17.888408544090765, + 16.841630261431714 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.87, + 1.8800000000000001, + 1.8800000000000001, + 1.87, + 1.87 + ], + "y": [ + 16.85159145590866, + 16.85159145590866, + 17.898447004567913, + 17.898447004567913, + 16.85159145590866 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.8800000000000001, + 1.89, + 1.89, + 1.8800000000000001, + 1.8800000000000001 + ], + "y": [ + 16.86155299543151, + 16.86155299543151, + 17.90848512303202, + 17.90848512303202, + 16.86155299543151 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.89, + 1.9, + 1.9, + 1.89, + 1.89 + ], + "y": [ + 16.8715148769674, + 16.8715148769674, + 17.91852290249093, + 17.91852290249093, + 16.8715148769674 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.9, + 1.91, + 1.91, + 1.9, + 1.9 + ], + "y": [ + 16.881477097508483, + 16.881477097508483, + 17.928560345926623, + 17.928560345926623, + 16.881477097508483 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.91, + 1.92, + 1.92, + 1.91, + 1.91 + ], + "y": [ + 16.891439654072787, + 16.891439654072787, + 17.93859745629554, + 17.93859745629554, + 16.891439654072787 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.92, + 1.93, + 1.93, + 1.92, + 1.92 + ], + "y": [ + 16.901402543703867, + 16.901402543703867, + 17.948634236528754, + 17.948634236528754, + 16.901402543703867 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.93, + 1.94, + 1.94, + 1.93, + 1.93 + ], + "y": [ + 16.91136576347065, + 16.91136576347065, + 17.958670689532095, + 17.958670689532095, + 16.91136576347065 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.94, + 1.95, + 1.95, + 1.94, + 1.94 + ], + "y": [ + 16.921329310467303, + 16.921329310467303, + 17.96870681818643, + 17.96870681818643, + 16.921329310467303 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.95, + 1.96, + 1.96, + 1.95, + 1.95 + ], + "y": [ + 16.931293181812965, + 16.931293181812965, + 17.978742625347845, + 17.978742625347845, + 16.931293181812965 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.96, + 1.97, + 1.97, + 1.96, + 1.96 + ], + "y": [ + 16.941257374651546, + 16.941257374651546, + 17.98877811384785, + 17.98877811384785, + 16.941257374651546 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.97, + 1.98, + 1.98, + 1.97, + 1.97 + ], + "y": [ + 16.951221886151536, + 16.951221886151536, + 17.99881328649363, + 17.99881328649363, + 16.951221886151536 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.98, + 1.99, + 1.99, + 1.98, + 1.98 + ], + "y": [ + 16.961186713505754, + 16.961186713505754, + 18.00884814606813, + 18.00884814606813, + 16.961186713505754 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 1.99, + 2, + 2, + 1.99, + 1.99 + ], + "y": [ + 16.97115185393125, + 16.97115185393125, + 18.018882695330344, + 18.018882695330344, + 16.97115185393125 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2, + 2.01, + 2.01, + 2, + 2 + ], + "y": [ + 16.98111730466903, + 16.98111730466903, + 18.028916937015516, + 18.028916937015516, + 16.98111730466903 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.01, + 2.0199999999999996, + 2.0199999999999996, + 2.01, + 2.01 + ], + "y": [ + 16.991083062983854, + 16.991083062983854, + 18.038950873835258, + 18.038950873835258, + 16.991083062983854 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0199999999999996, + 2.03, + 2.03, + 2.0199999999999996, + 2.0199999999999996 + ], + "y": [ + 17.00104912616411, + 17.00104912616411, + 18.048984508477773, + 18.048984508477773, + 17.00104912616411 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.03, + 2.0399999999999996, + 2.0399999999999996, + 2.03, + 2.03 + ], + "y": [ + 17.01101549152159, + 17.01101549152159, + 18.05901784360815, + 18.05901784360815, + 17.01101549152159 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0399999999999996, + 2.05, + 2.05, + 2.0399999999999996, + 2.0399999999999996 + ], + "y": [ + 17.02098215639121, + 17.02098215639121, + 18.06905088186835, + 18.06905088186835, + 17.02098215639121 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.05, + 2.0599999999999996, + 2.0599999999999996, + 2.05, + 2.05 + ], + "y": [ + 17.030949118131005, + 17.030949118131005, + 18.079083625877637, + 18.079083625877637, + 17.030949118131005 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0599999999999996, + 2.07, + 2.07, + 2.0599999999999996, + 2.0599999999999996 + ], + "y": [ + 17.040916374121714, + 17.040916374121714, + 18.08911607823258, + 18.08911607823258, + 17.040916374121714 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.07, + 2.0799999999999996, + 2.0799999999999996, + 2.07, + 2.07 + ], + "y": [ + 17.05088392176677, + 17.05088392176677, + 18.099148241506647, + 18.099148241506647, + 17.05088392176677 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0799999999999996, + 2.09, + 2.09, + 2.0799999999999996, + 2.0799999999999996 + ], + "y": [ + 17.060851758492696, + 17.060851758492696, + 18.109180118252194, + 18.109180118252194, + 17.060851758492696 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.09, + 2.0999999999999996, + 2.0999999999999996, + 2.09, + 2.09 + ], + "y": [ + 17.070819881747145, + 17.070819881747145, + 18.11921171099905, + 18.11921171099905, + 17.070819881747145 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.0999999999999996, + 2.11, + 2.11, + 2.0999999999999996, + 2.0999999999999996 + ], + "y": [ + 17.080788289000285, + 17.080788289000285, + 18.129243022255043, + 18.129243022255043, + 17.080788289000285 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.11, + 2.1199999999999997, + 2.1199999999999997, + 2.11, + 2.11 + ], + "y": [ + 17.090756977744288, + 17.090756977744288, + 18.139274054506377, + 18.139274054506377, + 17.090756977744288 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1199999999999997, + 2.13, + 2.13, + 2.1199999999999997, + 2.1199999999999997 + ], + "y": [ + 17.10072594549295, + 17.10072594549295, + 18.1493048102177, + 18.1493048102177, + 17.10072594549295 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.13, + 2.1399999999999997, + 2.1399999999999997, + 2.13, + 2.13 + ], + "y": [ + 17.110695189781623, + 17.110695189781623, + 18.159335291832353, + 18.159335291832353, + 17.110695189781623 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1399999999999997, + 2.15, + 2.15, + 2.1399999999999997, + 2.1399999999999997 + ], + "y": [ + 17.120664708166967, + 17.120664708166967, + 18.16936550177235, + 18.16936550177235, + 17.120664708166967 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.15, + 2.1599999999999997, + 2.1599999999999997, + 2.15, + 2.15 + ], + "y": [ + 17.130634498226964, + 17.130634498226964, + 18.179395442438906, + 18.179395442438906, + 17.130634498226964 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1599999999999997, + 2.17, + 2.17, + 2.1599999999999997, + 2.1599999999999997 + ], + "y": [ + 17.140604557560405, + 17.140604557560405, + 18.189425116212288, + 18.189425116212288, + 17.140604557560405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.17, + 2.1799999999999997, + 2.1799999999999997, + 2.17, + 2.17 + ], + "y": [ + 17.15057488378702, + 17.15057488378702, + 18.19945452545214, + 18.19945452545214, + 17.15057488378702 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1799999999999997, + 2.19, + 2.19, + 2.1799999999999997, + 2.1799999999999997 + ], + "y": [ + 17.160545474547163, + 17.160545474547163, + 18.20948367249766, + 18.20948367249766, + 17.160545474547163 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.19, + 2.1999999999999997, + 2.1999999999999997, + 2.19, + 2.19 + ], + "y": [ + 17.170516327501637, + 17.170516327501637, + 18.219512559667656, + 18.219512559667656, + 17.170516327501637 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.1999999999999997, + 2.21, + 2.21, + 2.1999999999999997, + 2.1999999999999997 + ], + "y": [ + 17.18048744033164, + 17.18048744033164, + 18.229541189260832, + 18.229541189260832, + 17.18048744033164 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.21, + 2.2199999999999998, + 2.2199999999999998, + 2.21, + 2.21 + ], + "y": [ + 17.19045881073846, + 17.19045881073846, + 18.239569563555968, + 18.239569563555968, + 17.19045881073846 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2199999999999998, + 2.23, + 2.23, + 2.2199999999999998, + 2.2199999999999998 + ], + "y": [ + 17.20043043644332, + 17.20043043644332, + 18.249597684811928, + 18.249597684811928, + 17.20043043644332 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.23, + 2.2399999999999998, + 2.2399999999999998, + 2.23, + 2.23 + ], + "y": [ + 17.210402315187356, + 17.210402315187356, + 18.259625555268038, + 18.259625555268038, + 17.210402315187356 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2399999999999998, + 2.25, + 2.25, + 2.2399999999999998, + 2.2399999999999998 + ], + "y": [ + 17.22037444473124, + 17.22037444473124, + 18.26965317714416, + 18.26965317714416, + 17.22037444473124 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.25, + 2.26, + 2.26, + 2.25, + 2.25 + ], + "y": [ + 17.230346822855115, + 17.230346822855115, + 18.27968055264077, + 18.27968055264077, + 17.230346822855115 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.26, + 2.2699999999999996, + 2.2699999999999996, + 2.26, + 2.26 + ], + "y": [ + 17.2403194473585, + 17.2403194473585, + 18.289707683939202, + 18.289707683939202, + 17.2403194473585 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2699999999999996, + 2.28, + 2.28, + 2.2699999999999996, + 2.2699999999999996 + ], + "y": [ + 17.250292316060065, + 17.250292316060065, + 18.299734573201814, + 18.299734573201814, + 17.250292316060065 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.28, + 2.2899999999999996, + 2.2899999999999996, + 2.28, + 2.28 + ], + "y": [ + 17.26026542679745, + 17.26026542679745, + 18.309761222572174, + 18.309761222572174, + 17.26026542679745 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.2899999999999996, + 2.3, + 2.3, + 2.2899999999999996, + 2.2899999999999996 + ], + "y": [ + 17.270238777427085, + 17.270238777427085, + 18.319787634175107, + 18.319787634175107, + 17.270238777427085 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3, + 2.3099999999999996, + 2.3099999999999996, + 2.3, + 2.3 + ], + "y": [ + 17.28021236582415, + 17.28021236582415, + 18.329813810116985, + 18.329813810116985, + 17.28021236582415 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3099999999999996, + 2.32, + 2.32, + 2.3099999999999996, + 2.3099999999999996 + ], + "y": [ + 17.290186189882267, + 17.290186189882267, + 18.339839752485865, + 18.339839752485865, + 17.290186189882267 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.32, + 2.3299999999999996, + 2.3299999999999996, + 2.32, + 2.32 + ], + "y": [ + 17.300160247513382, + 17.300160247513382, + 18.349865463351403, + 18.349865463351403, + 17.300160247513382 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3299999999999996, + 2.34, + 2.34, + 2.3299999999999996, + 2.3299999999999996 + ], + "y": [ + 17.31013453664784, + 17.31013453664784, + 18.35989094476536, + 18.35989094476536, + 17.31013453664784 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.34, + 2.3499999999999996, + 2.3499999999999996, + 2.34, + 2.34 + ], + "y": [ + 17.32010905523388, + 17.32010905523388, + 18.36991619876156, + 18.36991619876156, + 17.32010905523388 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3499999999999996, + 2.36, + 2.36, + 2.3499999999999996, + 2.3499999999999996 + ], + "y": [ + 17.330083801237677, + 17.330083801237677, + 18.379941227356067, + 18.379941227356067, + 17.330083801237677 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.36, + 2.3699999999999997, + 2.3699999999999997, + 2.36, + 2.36 + ], + "y": [ + 17.340058772643165, + 17.340058772643165, + 18.389966032547374, + 18.389966032547374, + 17.340058772643165 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3699999999999997, + 2.38, + 2.38, + 2.3699999999999997, + 2.3699999999999997 + ], + "y": [ + 17.350033967451854, + 17.350033967451854, + 18.399990616316487, + 18.399990616316487, + 17.350033967451854 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.38, + 2.3899999999999997, + 2.3899999999999997, + 2.38, + 2.38 + ], + "y": [ + 17.360009383682737, + 17.360009383682737, + 18.410014980627082, + 18.410014980627082, + 17.360009383682737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.3899999999999997, + 2.4, + 2.4, + 2.3899999999999997, + 2.3899999999999997 + ], + "y": [ + 17.369985019372137, + 17.369985019372137, + 18.42003912742575, + 18.42003912742575, + 17.369985019372137 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4, + 2.4099999999999997, + 2.4099999999999997, + 2.4, + 2.4 + ], + "y": [ + 17.379960872573466, + 17.379960872573466, + 18.43006305864209, + 18.43006305864209, + 17.379960872573466 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4099999999999997, + 2.42, + 2.42, + 2.4099999999999997, + 2.4099999999999997 + ], + "y": [ + 17.38993694135712, + 17.38993694135712, + 18.440086776188693, + 18.440086776188693, + 17.38993694135712 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.42, + 2.4299999999999997, + 2.4299999999999997, + 2.42, + 2.42 + ], + "y": [ + 17.399913223810515, + 17.399913223810515, + 18.450110281961557, + 18.450110281961557, + 17.399913223810515 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4299999999999997, + 2.44, + 2.44, + 2.4299999999999997, + 2.4299999999999997 + ], + "y": [ + 17.409889718037647, + 17.409889718037647, + 18.460133577839976, + 18.460133577839976, + 17.409889718037647 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.44, + 2.4499999999999997, + 2.4499999999999997, + 2.44, + 2.44 + ], + "y": [ + 17.419866422159224, + 17.419866422159224, + 18.470156665686925, + 18.470156665686925, + 17.419866422159224 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4499999999999997, + 2.46, + 2.46, + 2.4499999999999997, + 2.4499999999999997 + ], + "y": [ + 17.42984333431227, + 17.42984333431227, + 18.480179547349007, + 18.480179547349007, + 17.42984333431227 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.46, + 2.4699999999999998, + 2.4699999999999998, + 2.46, + 2.46 + ], + "y": [ + 17.439820452650185, + 17.439820452650185, + 18.49020222460161, + 18.49020222460161, + 17.439820452650185 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4699999999999998, + 2.48, + 2.48, + 2.4699999999999998, + 2.4699999999999998 + ], + "y": [ + 17.449797775397577, + 17.449797775397577, + 18.50022469937108, + 18.50022469937108, + 17.449797775397577 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.48, + 2.4899999999999998, + 2.4899999999999998, + 2.48, + 2.48 + ], + "y": [ + 17.459775300628102, + 17.459775300628102, + 18.510246973461793, + 18.510246973461793, + 17.459775300628102 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.4899999999999998, + 2.5, + 2.5, + 2.4899999999999998, + 2.4899999999999998 + ], + "y": [ + 17.469753026537386, + 17.469753026537386, + 18.520269048654967, + 18.520269048654967, + 17.469753026537386 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5, + 2.51, + 2.51, + 2.5, + 2.5 + ], + "y": [ + 17.47973095134421, + 17.47973095134421, + 18.530290926716397, + 18.530290926716397, + 17.47973095134421 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.51, + 2.5199999999999996, + 2.5199999999999996, + 2.51, + 2.51 + ], + "y": [ + 17.489709073282775, + 17.489709073282775, + 18.54031260939631, + 18.54031260939631, + 17.489709073282775 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5199999999999996, + 2.53, + 2.53, + 2.5199999999999996, + 2.5199999999999996 + ], + "y": [ + 17.49968739060286, + 17.49968739060286, + 18.5503340984296, + 18.5503340984296, + 17.49968739060286 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.53, + 2.5399999999999996, + 2.5399999999999996, + 2.53, + 2.53 + ], + "y": [ + 17.509665901569562, + 17.509665901569562, + 18.560355395535975, + 18.560355395535975, + 17.509665901569562 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5399999999999996, + 2.55, + 2.55, + 2.5399999999999996, + 2.5399999999999996 + ], + "y": [ + 17.519644604463185, + 17.519644604463185, + 18.570376502420064, + 18.570376502420064, + 17.519644604463185 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.55, + 2.5599999999999996, + 2.5599999999999996, + 2.55, + 2.55 + ], + "y": [ + 17.52962349757909, + 17.52962349757909, + 18.580397420771504, + 18.580397420771504, + 17.52962349757909 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5599999999999996, + 2.57, + 2.57, + 2.5599999999999996, + 2.5599999999999996 + ], + "y": [ + 17.539602579227648, + 17.539602579227648, + 18.590418152265194, + 18.590418152265194, + 17.539602579227648 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.57, + 2.5799999999999996, + 2.5799999999999996, + 2.57, + 2.57 + ], + "y": [ + 17.549581847733954, + 17.549581847733954, + 18.600438698561245, + 18.600438698561245, + 17.549581847733954 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5799999999999996, + 2.59, + 2.59, + 2.5799999999999996, + 2.5799999999999996 + ], + "y": [ + 17.5595613014379, + 17.5595613014379, + 18.61045906130522, + 18.61045906130522, + 17.5595613014379 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.59, + 2.5999999999999996, + 2.5999999999999996, + 2.59, + 2.59 + ], + "y": [ + 17.56954093869392, + 17.56954093869392, + 18.620479242128315, + 18.620479242128315, + 17.56954093869392 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.5999999999999996, + 2.61, + 2.61, + 2.5999999999999996, + 2.5999999999999996 + ], + "y": [ + 17.57952075787082, + 17.57952075787082, + 18.63049924264734, + 18.63049924264734, + 17.57952075787082 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.61, + 2.6199999999999997, + 2.6199999999999997, + 2.61, + 2.61 + ], + "y": [ + 17.589500757351793, + 17.589500757351793, + 18.64051906446493, + 18.64051906446493, + 17.589500757351793 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6199999999999997, + 2.63, + 2.63, + 2.6199999999999997, + 2.6199999999999997 + ], + "y": [ + 17.5994809355342, + 17.5994809355342, + 18.650538709169567, + 18.650538709169567, + 17.5994809355342 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.63, + 2.6399999999999997, + 2.6399999999999997, + 2.63, + 2.63 + ], + "y": [ + 17.609461290829557, + 17.609461290829557, + 18.66055817833595, + 18.66055817833595, + 17.609461290829557 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6399999999999997, + 2.65, + 2.65, + 2.6399999999999997, + 2.6399999999999997 + ], + "y": [ + 17.61944182166317, + 17.61944182166317, + 18.67057747352477, + 18.67057747352477, + 17.61944182166317 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.65, + 2.6599999999999997, + 2.6599999999999997, + 2.65, + 2.65 + ], + "y": [ + 17.629422526474347, + 17.629422526474347, + 18.680596596283046, + 18.680596596283046, + 17.629422526474347 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6599999999999997, + 2.67, + 2.67, + 2.6599999999999997, + 2.6599999999999997 + ], + "y": [ + 17.639403403716067, + 17.639403403716067, + 18.690615548144255, + 18.690615548144255, + 17.639403403716067 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.67, + 2.6799999999999997, + 2.6799999999999997, + 2.67, + 2.67 + ], + "y": [ + 17.649384451854853, + 17.649384451854853, + 18.70063433062832, + 18.70063433062832, + 17.649384451854853 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6799999999999997, + 2.69, + 2.69, + 2.6799999999999997, + 2.6799999999999997 + ], + "y": [ + 17.659365669370786, + 17.659365669370786, + 18.71065294524184, + 18.71065294524184, + 17.659365669370786 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.69, + 2.6999999999999997, + 2.6999999999999997, + 2.69, + 2.69 + ], + "y": [ + 17.66934705475726, + 17.66934705475726, + 18.72067139347817, + 18.72067139347817, + 17.66934705475726 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.6999999999999997, + 2.71, + 2.71, + 2.6999999999999997, + 2.6999999999999997 + ], + "y": [ + 17.679328606520926, + 17.679328606520926, + 18.73068967681745, + 18.73068967681745, + 17.679328606520926 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.71, + 2.7199999999999998, + 2.7199999999999998, + 2.71, + 2.71 + ], + "y": [ + 17.689310323181644, + 17.689310323181644, + 18.740707796726863, + 18.740707796726863, + 17.689310323181644 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7199999999999998, + 2.73, + 2.73, + 2.7199999999999998, + 2.7199999999999998 + ], + "y": [ + 17.699292203272226, + 17.699292203272226, + 18.750725754660664, + 18.750725754660664, + 17.699292203272226 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.73, + 2.7399999999999998, + 2.7399999999999998, + 2.73, + 2.73 + ], + "y": [ + 17.70927424533842, + 17.70927424533842, + 18.760743552060266, + 18.760743552060266, + 17.70927424533842 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7399999999999998, + 2.75, + 2.75, + 2.7399999999999998, + 2.7399999999999998 + ], + "y": [ + 17.719256447938815, + 17.719256447938815, + 18.770761190354428, + 18.770761190354428, + 17.719256447938815 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.75, + 2.76, + 2.76, + 2.75, + 2.75 + ], + "y": [ + 17.72923880964465, + 17.72923880964465, + 18.78077867095934, + 18.78077867095934, + 17.72923880964465 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.76, + 2.7699999999999996, + 2.7699999999999996, + 2.76, + 2.76 + ], + "y": [ + 17.739221329039733, + 17.739221329039733, + 18.79079599527869, + 18.79079599527869, + 17.739221329039733 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7699999999999996, + 2.78, + 2.78, + 2.7699999999999996, + 2.7699999999999996 + ], + "y": [ + 17.74920400472038, + 17.74920400472038, + 18.800813164703726, + 18.800813164703726, + 17.74920400472038 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.78, + 2.7899999999999996, + 2.7899999999999996, + 2.78, + 2.78 + ], + "y": [ + 17.75918683529534, + 17.75918683529534, + 18.810830180613586, + 18.810830180613586, + 17.75918683529534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.7899999999999996, + 2.8, + 2.8, + 2.7899999999999996, + 2.7899999999999996 + ], + "y": [ + 17.769169819385475, + 17.769169819385475, + 18.820847044375153, + 18.820847044375153, + 17.769169819385475 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8, + 2.8099999999999996, + 2.8099999999999996, + 2.8, + 2.8 + ], + "y": [ + 17.779152955623903, + 17.779152955623903, + 18.83086375734321, + 18.83086375734321, + 17.779152955623903 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8099999999999996, + 2.82, + 2.82, + 2.8099999999999996, + 2.8099999999999996 + ], + "y": [ + 17.789136242655843, + 17.789136242655843, + 18.84088032086071, + 18.84088032086071, + 17.789136242655843 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.82, + 2.8299999999999996, + 2.8299999999999996, + 2.82, + 2.82 + ], + "y": [ + 17.79911967913834, + 17.79911967913834, + 18.850896736258683, + 18.850896736258683, + 17.79911967913834 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8299999999999996, + 2.84, + 2.84, + 2.8299999999999996, + 2.8299999999999996 + ], + "y": [ + 17.80910326374036, + 17.80910326374036, + 18.860913004856453, + 18.860913004856453, + 17.80910326374036 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.84, + 2.8499999999999996, + 2.8499999999999996, + 2.84, + 2.84 + ], + "y": [ + 17.819086995142587, + 17.819086995142587, + 18.87092912796169, + 18.87092912796169, + 17.819086995142587 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8499999999999996, + 2.86, + 2.86, + 2.8499999999999996, + 2.8499999999999996 + ], + "y": [ + 17.829070872037345, + 17.829070872037345, + 18.880945106870538, + 18.880945106870538, + 17.829070872037345 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.86, + 2.8699999999999997, + 2.8699999999999997, + 2.86, + 2.86 + ], + "y": [ + 17.839054893128495, + 17.839054893128495, + 18.890960942867693, + 18.890960942867693, + 17.839054893128495 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8699999999999997, + 2.88, + 2.88, + 2.8699999999999997, + 2.8699999999999997 + ], + "y": [ + 17.849039057131336, + 17.849039057131336, + 18.900976637226492, + 18.900976637226492, + 17.849039057131336 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.88, + 2.8899999999999997, + 2.8899999999999997, + 2.88, + 2.88 + ], + "y": [ + 17.859023362772533, + 17.859023362772533, + 18.910992191208997, + 18.910992191208997, + 17.859023362772533 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.8899999999999997, + 2.9, + 2.9, + 2.8899999999999997, + 2.8899999999999997 + ], + "y": [ + 17.869007808790023, + 17.869007808790023, + 18.921007606066194, + 18.921007606066194, + 17.869007808790023 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9, + 2.9099999999999997, + 2.9099999999999997, + 2.9, + 2.9 + ], + "y": [ + 17.878992393932823, + 17.878992393932823, + 18.93102288303803, + 18.93102288303803, + 17.878992393932823 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9099999999999997, + 2.92, + 2.92, + 2.9099999999999997, + 2.9099999999999997 + ], + "y": [ + 17.888977116960984, + 17.888977116960984, + 18.941038023353382, + 18.941038023353382, + 17.888977116960984 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.92, + 2.9299999999999997, + 2.9299999999999997, + 2.92, + 2.92 + ], + "y": [ + 17.898961976645626, + 17.898961976645626, + 18.951053028230394, + 18.951053028230394, + 17.898961976645626 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9299999999999997, + 2.94, + 2.94, + 2.9299999999999997, + 2.9299999999999997 + ], + "y": [ + 17.90894697176861, + 17.90894697176861, + 18.961067898876337, + 18.961067898876337, + 17.90894697176861 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.94, + 2.9499999999999997, + 2.9499999999999997, + 2.94, + 2.94 + ], + "y": [ + 17.918932101122664, + 17.918932101122664, + 18.971082636487946, + 18.971082636487946, + 17.918932101122664 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9499999999999997, + 2.96, + 2.96, + 2.9499999999999997, + 2.9499999999999997 + ], + "y": [ + 17.92891736351105, + 17.92891736351105, + 18.98109724225126, + 18.98109724225126, + 17.92891736351105 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.96, + 2.9699999999999998, + 2.9699999999999998, + 2.96, + 2.96 + ], + "y": [ + 17.938902757747734, + 17.938902757747734, + 18.991111717341855, + 18.991111717341855, + 17.938902757747734 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9699999999999998, + 2.98, + 2.98, + 2.9699999999999998, + 2.9699999999999998 + ], + "y": [ + 17.948888282657133, + 17.948888282657133, + 19.001126062924943, + 19.001126062924943, + 17.948888282657133 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.98, + 2.9899999999999998, + 2.9899999999999998, + 2.98, + 2.98 + ], + "y": [ + 17.958873937074042, + 17.958873937074042, + 19.011140280155416, + 19.011140280155416, + 17.958873937074042 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 2.9899999999999998, + 3, + 3, + 2.9899999999999998, + 2.9899999999999998 + ], + "y": [ + 17.968859719843564, + 17.968859719843564, + 19.021154370177936, + 19.021154370177936, + 17.968859719843564 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3, + 3.01, + 3.01, + 3, + 3 + ], + "y": [ + 17.97884562982104, + 17.97884562982104, + 19.031168334127035, + 19.031168334127035, + 17.97884562982104 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.01, + 3.0199999999999996, + 3.0199999999999996, + 3.01, + 3.01 + ], + "y": [ + 17.98883166587194, + 17.98883166587194, + 19.041182173127215, + 19.041182173127215, + 17.98883166587194 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0199999999999996, + 3.03, + 3.03, + 3.0199999999999996, + 3.0199999999999996 + ], + "y": [ + 17.998817826871754, + 17.998817826871754, + 19.051195888293, + 19.051195888293, + 17.998817826871754 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.03, + 3.0399999999999996, + 3.0399999999999996, + 3.03, + 3.03 + ], + "y": [ + 18.008804111705963, + 18.008804111705963, + 19.061209480729165, + 19.061209480729165, + 18.008804111705963 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0399999999999996, + 3.05, + 3.05, + 3.0399999999999996, + 3.0399999999999996 + ], + "y": [ + 18.018790519269796, + 18.018790519269796, + 19.071222951530558, + 19.071222951530558, + 18.018790519269796 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.05, + 3.0599999999999996, + 3.0599999999999996, + 3.05, + 3.05 + ], + "y": [ + 18.0287770484684, + 18.0287770484684, + 19.081236301782372, + 19.081236301782372, + 18.0287770484684 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0599999999999996, + 3.07, + 3.07, + 3.0599999999999996, + 3.0599999999999996 + ], + "y": [ + 18.03876369821658, + 18.03876369821658, + 19.09124953256025, + 19.09124953256025, + 18.03876369821658 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.07, + 3.0799999999999996, + 3.0799999999999996, + 3.07, + 3.07 + ], + "y": [ + 18.048750467438698, + 18.048750467438698, + 19.10126264493016, + 19.10126264493016, + 18.048750467438698 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0799999999999996, + 3.09, + 3.09, + 3.0799999999999996, + 3.0799999999999996 + ], + "y": [ + 18.058737355068786, + 18.058737355068786, + 19.11127563994885, + 19.11127563994885, + 18.058737355068786 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.09, + 3.0999999999999996, + 3.0999999999999996, + 3.09, + 3.09 + ], + "y": [ + 18.06872436005009, + 18.06872436005009, + 19.1212885186635, + 19.1212885186635, + 18.06872436005009 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.0999999999999996, + 3.11, + 3.11, + 3.0999999999999996, + 3.0999999999999996 + ], + "y": [ + 18.078711481335436, + 18.078711481335436, + 19.13130128211219, + 19.13130128211219, + 18.078711481335436 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.11, + 3.1199999999999997, + 3.1199999999999997, + 3.11, + 3.11 + ], + "y": [ + 18.088698717886743, + 18.088698717886743, + 19.141313931323683, + 19.141313931323683, + 18.088698717886743 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1199999999999997, + 3.13, + 3.13, + 3.1199999999999997, + 3.1199999999999997 + ], + "y": [ + 18.098686068675246, + 18.098686068675246, + 19.151326467317602, + 19.151326467317602, + 18.098686068675246 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.13, + 3.1399999999999997, + 3.1399999999999997, + 3.13, + 3.13 + ], + "y": [ + 18.108673532681323, + 18.108673532681323, + 19.161338891104602, + 19.161338891104602, + 18.108673532681323 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1399999999999997, + 3.15, + 3.15, + 3.1399999999999997, + 3.1399999999999997 + ], + "y": [ + 18.11866110889432, + 18.11866110889432, + 19.171351203686395, + 19.171351203686395, + 18.11866110889432 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.15, + 3.1599999999999997, + 3.1599999999999997, + 3.15, + 3.15 + ], + "y": [ + 18.128648796312522, + 18.128648796312522, + 19.18136340605569, + 19.18136340605569, + 18.128648796312522 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1599999999999997, + 3.17, + 3.17, + 3.1599999999999997, + 3.1599999999999997 + ], + "y": [ + 18.13863659394322, + 18.13863659394322, + 19.191375499196493, + 19.191375499196493, + 18.13863659394322 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.17, + 3.1799999999999997, + 3.1799999999999997, + 3.17, + 3.17 + ], + "y": [ + 18.148624500802416, + 18.148624500802416, + 19.20138748408407, + 19.20138748408407, + 18.148624500802416 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1799999999999997, + 3.19, + 3.19, + 3.1799999999999997, + 3.1799999999999997 + ], + "y": [ + 18.158612515914836, + 18.158612515914836, + 19.211399361685043, + 19.211399361685043, + 18.158612515914836 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.19, + 3.1999999999999997, + 3.1999999999999997, + 3.19, + 3.19 + ], + "y": [ + 18.16860063831386, + 18.16860063831386, + 19.221411132957456, + 19.221411132957456, + 18.16860063831386 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.1999999999999997, + 3.21, + 3.21, + 3.1999999999999997, + 3.1999999999999997 + ], + "y": [ + 18.17858886704144, + 18.17858886704144, + 19.231422798850772, + 19.231422798850772, + 18.17858886704144 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.21, + 3.2199999999999998, + 3.2199999999999998, + 3.21, + 3.21 + ], + "y": [ + 18.18857720114812, + 18.18857720114812, + 19.241434360306148, + 19.241434360306148, + 18.18857720114812 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2199999999999998, + 3.23, + 3.23, + 3.2199999999999998, + 3.2199999999999998 + ], + "y": [ + 18.19856563969274, + 18.19856563969274, + 19.25144581825632, + 19.25144581825632, + 18.19856563969274 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.23, + 3.2399999999999998, + 3.2399999999999998, + 3.23, + 3.23 + ], + "y": [ + 18.208554181742564, + 18.208554181742564, + 19.261457173625697, + 19.261457173625697, + 18.208554181742564 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2399999999999998, + 3.25, + 3.25, + 3.2399999999999998, + 3.2399999999999998 + ], + "y": [ + 18.218542826373184, + 18.218542826373184, + 19.271468427330603, + 19.271468427330603, + 18.218542826373184 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.25, + 3.26, + 3.26, + 3.25, + 3.25 + ], + "y": [ + 18.228531572668274, + 18.228531572668274, + 19.28147958027917, + 19.28147958027917, + 18.228531572668274 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.26, + 3.2699999999999996, + 3.2699999999999996, + 3.26, + 3.26 + ], + "y": [ + 18.238520419719702, + 18.238520419719702, + 19.29149063337141, + 19.29149063337141, + 18.238520419719702 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2699999999999996, + 3.28, + 3.28, + 3.2699999999999996, + 3.2699999999999996 + ], + "y": [ + 18.24850936662746, + 18.24850936662746, + 19.30150158749945, + 19.30150158749945, + 18.24850936662746 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.28, + 3.2899999999999996, + 3.2899999999999996, + 3.28, + 3.28 + ], + "y": [ + 18.258498412499414, + 18.258498412499414, + 19.311512443547446, + 19.311512443547446, + 18.258498412499414 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.2899999999999996, + 3.3, + 3.3, + 3.2899999999999996, + 3.2899999999999996 + ], + "y": [ + 18.268487556451415, + 18.268487556451415, + 19.321523202391624, + 19.321523202391624, + 18.268487556451415 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3, + 3.3099999999999996, + 3.3099999999999996, + 3.3, + 3.3 + ], + "y": [ + 18.278476797607233, + 18.278476797607233, + 19.33153386490051, + 19.33153386490051, + 18.278476797607233 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3099999999999996, + 3.32, + 3.32, + 3.3099999999999996, + 3.3099999999999996 + ], + "y": [ + 18.288466135098343, + 18.288466135098343, + 19.341544431934878, + 19.341544431934878, + 18.288466135098343 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.32, + 3.3299999999999996, + 3.3299999999999996, + 3.32, + 3.32 + ], + "y": [ + 18.29845556806397, + 18.29845556806397, + 19.351554904347946, + 19.351554904347946, + 18.29845556806397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3299999999999996, + 3.34, + 3.34, + 3.3299999999999996, + 3.3299999999999996 + ], + "y": [ + 18.3084450956509, + 18.3084450956509, + 19.36156528298518, + 19.36156528298518, + 18.3084450956509 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.34, + 3.3499999999999996, + 3.3499999999999996, + 3.34, + 3.34 + ], + "y": [ + 18.318434717013663, + 18.318434717013663, + 19.371575568684676, + 19.371575568684676, + 18.318434717013663 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3499999999999996, + 3.36, + 3.36, + 3.3499999999999996, + 3.3499999999999996 + ], + "y": [ + 18.32842443131416, + 18.32842443131416, + 19.381585762277027, + 19.381585762277027, + 18.32842443131416 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.36, + 3.3699999999999997, + 3.3699999999999997, + 3.36, + 3.36 + ], + "y": [ + 18.338414237721807, + 18.338414237721807, + 19.391595864585444, + 19.391595864585444, + 18.338414237721807 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3699999999999997, + 3.38, + 3.38, + 3.3699999999999997, + 3.3699999999999997 + ], + "y": [ + 18.348404135413386, + 18.348404135413386, + 19.401605876425755, + 19.401605876425755, + 18.348404135413386 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.38, + 3.3899999999999997, + 3.3899999999999997, + 3.38, + 3.38 + ], + "y": [ + 18.35839412357307, + 18.35839412357307, + 19.41161579860667, + 19.41161579860667, + 18.35839412357307 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.3899999999999997, + 3.4, + 3.4, + 3.3899999999999997, + 3.3899999999999997 + ], + "y": [ + 18.36838420139215, + 18.36838420139215, + 19.421625631929594, + 19.421625631929594, + 18.36838420139215 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4, + 3.4099999999999997, + 3.4099999999999997, + 3.4, + 3.4 + ], + "y": [ + 18.378374368069224, + 18.378374368069224, + 19.431635377188822, + 19.431635377188822, + 18.378374368069224 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4099999999999997, + 3.42, + 3.42, + 3.4099999999999997, + 3.4099999999999997 + ], + "y": [ + 18.38836462280999, + 18.38836462280999, + 19.441645035171614, + 19.441645035171614, + 18.38836462280999 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.42, + 3.4299999999999997, + 3.4299999999999997, + 3.42, + 3.42 + ], + "y": [ + 18.398354964827195, + 18.398354964827195, + 19.451654606658266, + 19.451654606658266, + 18.398354964827195 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4299999999999997, + 3.44, + 3.44, + 3.4299999999999997, + 3.4299999999999997 + ], + "y": [ + 18.40834539334054, + 18.40834539334054, + 19.461664092422055, + 19.461664092422055, + 18.40834539334054 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.44, + 3.4499999999999997, + 3.4499999999999997, + 3.44, + 3.44 + ], + "y": [ + 18.418335907576747, + 18.418335907576747, + 19.471673493229453, + 19.471673493229453, + 18.418335907576747 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4499999999999997, + 3.46, + 3.46, + 3.4499999999999997, + 3.4499999999999997 + ], + "y": [ + 18.428326506769345, + 18.428326506769345, + 19.481682809839977, + 19.481682809839977, + 18.428326506769345 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.46, + 3.4699999999999998, + 3.4699999999999998, + 3.46, + 3.46 + ], + "y": [ + 18.438317190158816, + 18.438317190158816, + 19.491692043006527, + 19.491692043006527, + 18.438317190158816 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4699999999999998, + 3.48, + 3.48, + 3.4699999999999998, + 3.4699999999999998 + ], + "y": [ + 18.448307956992263, + 18.448307956992263, + 19.5017011934752, + 19.5017011934752, + 18.448307956992263 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.48, + 3.4899999999999998, + 3.4899999999999998, + 3.48, + 3.48 + ], + "y": [ + 18.458298806523587, + 18.458298806523587, + 19.511710261985577, + 19.511710261985577, + 18.458298806523587 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.4899999999999998, + 3.5, + 3.5, + 3.4899999999999998, + 3.4899999999999998 + ], + "y": [ + 18.468289738013205, + 18.468289738013205, + 19.521719249270546, + 19.521719249270546, + 18.468289738013205 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5, + 3.51, + 3.51, + 3.5, + 3.5 + ], + "y": [ + 18.47828075072823, + 18.47828075072823, + 19.53172815605646, + 19.53172815605646, + 18.47828075072823 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.51, + 3.5199999999999996, + 3.5199999999999996, + 3.51, + 3.51 + ], + "y": [ + 18.488271843942314, + 18.488271843942314, + 19.541736983063267, + 19.541736983063267, + 18.488271843942314 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5199999999999996, + 3.53, + 3.53, + 3.5199999999999996, + 3.5199999999999996 + ], + "y": [ + 18.498263016935503, + 18.498263016935503, + 19.551745731004488, + 19.551745731004488, + 18.498263016935503 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.53, + 3.5399999999999996, + 3.5399999999999996, + 3.53, + 3.53 + ], + "y": [ + 18.50825426899428, + 18.50825426899428, + 19.561754400587333, + 19.561754400587333, + 18.50825426899428 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5399999999999996, + 3.55, + 3.55, + 3.5399999999999996, + 3.5399999999999996 + ], + "y": [ + 18.51824559941143, + 18.51824559941143, + 19.57176299251263, + 19.57176299251263, + 18.51824559941143 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.55, + 3.5599999999999996, + 3.5599999999999996, + 3.55, + 3.55 + ], + "y": [ + 18.528237007486126, + 18.528237007486126, + 19.581771507474944, + 19.581771507474944, + 18.528237007486126 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5599999999999996, + 3.57, + 3.57, + 3.5599999999999996, + 3.5599999999999996 + ], + "y": [ + 18.53822849252381, + 18.53822849252381, + 19.59177994616282, + 19.59177994616282, + 18.53822849252381 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.57, + 3.5799999999999996, + 3.5799999999999996, + 3.57, + 3.57 + ], + "y": [ + 18.54822005383593, + 18.54822005383593, + 19.601788309258474, + 19.601788309258474, + 18.54822005383593 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5799999999999996, + 3.59, + 3.59, + 3.5799999999999996, + 3.5799999999999996 + ], + "y": [ + 18.558211690740272, + 18.558211690740272, + 19.611796597438197, + 19.611796597438197, + 18.558211690740272 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.59, + 3.5999999999999996, + 3.5999999999999996, + 3.59, + 3.59 + ], + "y": [ + 18.568203402560545, + 18.568203402560545, + 19.62180481137214, + 19.62180481137214, + 18.568203402560545 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.5999999999999996, + 3.61, + 3.61, + 3.5999999999999996, + 3.5999999999999996 + ], + "y": [ + 18.578195188626598, + 18.578195188626598, + 19.63181295172453, + 19.63181295172453, + 18.578195188626598 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.61, + 3.6199999999999997, + 3.6199999999999997, + 3.61, + 3.61 + ], + "y": [ + 18.588187048274204, + 18.588187048274204, + 19.641821019153685, + 19.641821019153685, + 18.588187048274204 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6199999999999997, + 3.63, + 3.63, + 3.6199999999999997, + 3.6199999999999997 + ], + "y": [ + 18.598178980845045, + 18.598178980845045, + 19.651829014312018, + 19.651829014312018, + 18.598178980845045 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.63, + 3.6399999999999997, + 3.6399999999999997, + 3.63, + 3.63 + ], + "y": [ + 18.60817098568671, + 18.60817098568671, + 19.661836937846147, + 19.661836937846147, + 18.60817098568671 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6399999999999997, + 3.65, + 3.65, + 3.6399999999999997, + 3.6399999999999997 + ], + "y": [ + 18.618163062152576, + 18.618163062152576, + 19.67184479039701, + 19.67184479039701, + 18.618163062152576 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.65, + 3.6599999999999997, + 3.6599999999999997, + 3.65, + 3.65 + ], + "y": [ + 18.628155209601708, + 18.628155209601708, + 19.68185257259975, + 19.68185257259975, + 18.628155209601708 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6599999999999997, + 3.67, + 3.67, + 3.6599999999999997, + 3.6599999999999997 + ], + "y": [ + 18.638147427398962, + 18.638147427398962, + 19.691860285083756, + 19.691860285083756, + 18.638147427398962 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.67, + 3.6799999999999997, + 3.6799999999999997, + 3.67, + 3.67 + ], + "y": [ + 18.648139714914954, + 18.648139714914954, + 19.70186792847296, + 19.70186792847296, + 18.648139714914954 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6799999999999997, + 3.69, + 3.69, + 3.6799999999999997, + 3.6799999999999997 + ], + "y": [ + 18.658132071525745, + 18.658132071525745, + 19.711875503385656, + 19.711875503385656, + 18.658132071525745 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.69, + 3.6999999999999997, + 3.6999999999999997, + 3.69, + 3.69 + ], + "y": [ + 18.668124496613046, + 18.668124496613046, + 19.721883010434635, + 19.721883010434635, + 18.668124496613046 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.6999999999999997, + 3.71, + 3.71, + 3.6999999999999997, + 3.6999999999999997 + ], + "y": [ + 18.678116989564064, + 18.678116989564064, + 19.731890450227237, + 19.731890450227237, + 18.678116989564064 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.71, + 3.7199999999999998, + 3.7199999999999998, + 3.71, + 3.71 + ], + "y": [ + 18.688109549771458, + 18.688109549771458, + 19.741897823365427, + 19.741897823365427, + 18.688109549771458 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7199999999999998, + 3.73, + 3.73, + 3.7199999999999998, + 3.7199999999999998 + ], + "y": [ + 18.698102176633263, + 18.698102176633263, + 19.751905130445703, + 19.751905130445703, + 18.698102176633263 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.73, + 3.7399999999999998, + 3.7399999999999998, + 3.73, + 3.73 + ], + "y": [ + 18.708094869552983, + 18.708094869552983, + 19.76191237205928, + 19.76191237205928, + 18.708094869552983 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7399999999999998, + 3.75, + 3.75, + 3.7399999999999998, + 3.7399999999999998 + ], + "y": [ + 18.7180876279394, + 18.7180876279394, + 19.77191954879208, + 19.77191954879208, + 18.7180876279394 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.75, + 3.76, + 3.76, + 3.75, + 3.75 + ], + "y": [ + 18.728080451206598, + 18.728080451206598, + 19.781926661224915, + 19.781926661224915, + 18.728080451206598 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.76, + 3.7699999999999996, + 3.7699999999999996, + 3.76, + 3.76 + ], + "y": [ + 18.73807333877376, + 18.73807333877376, + 19.791933709933282, + 19.791933709933282, + 18.73807333877376 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7699999999999996, + 3.78, + 3.78, + 3.7699999999999996, + 3.7699999999999996 + ], + "y": [ + 18.74806629006539, + 18.74806629006539, + 19.80194069548759, + 19.80194069548759, + 18.74806629006539 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.78, + 3.7899999999999996, + 3.7899999999999996, + 3.78, + 3.78 + ], + "y": [ + 18.758059304511075, + 18.758059304511075, + 19.811947618453143, + 19.811947618453143, + 18.758059304511075 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.7899999999999996, + 3.8, + 3.8, + 3.7899999999999996, + 3.7899999999999996 + ], + "y": [ + 18.76805238154552, + 18.76805238154552, + 19.82195447939021, + 19.82195447939021, + 18.76805238154552 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8, + 3.8099999999999996, + 3.8099999999999996, + 3.8, + 3.8 + ], + "y": [ + 18.778045520608448, + 18.778045520608448, + 19.8319612788541, + 19.8319612788541, + 18.778045520608448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8099999999999996, + 3.82, + 3.82, + 3.8099999999999996, + 3.8099999999999996 + ], + "y": [ + 18.788038721144556, + 18.788038721144556, + 19.841968017395104, + 19.841968017395104, + 18.788038721144556 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.82, + 3.8299999999999996, + 3.8299999999999996, + 3.82, + 3.82 + ], + "y": [ + 18.798031982603547, + 18.798031982603547, + 19.851974695558635, + 19.851974695558635, + 18.798031982603547 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8299999999999996, + 3.84, + 3.84, + 3.8299999999999996, + 3.8299999999999996 + ], + "y": [ + 18.80802530444001, + 18.80802530444001, + 19.861981313885217, + 19.861981313885217, + 18.80802530444001 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.84, + 3.8499999999999996, + 3.8499999999999996, + 3.84, + 3.84 + ], + "y": [ + 18.818018686113426, + 18.818018686113426, + 19.87198787291056, + 19.87198787291056, + 18.818018686113426 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8499999999999996, + 3.86, + 3.86, + 3.8499999999999996, + 3.8499999999999996 + ], + "y": [ + 18.82801212708808, + 18.82801212708808, + 19.881994373165643, + 19.881994373165643, + 18.82801212708808 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.86, + 3.8699999999999997, + 3.8699999999999997, + 3.86, + 3.86 + ], + "y": [ + 18.83800562683299, + 18.83800562683299, + 19.892000815176605, + 19.892000815176605, + 18.83800562683299 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8699999999999997, + 3.88, + 3.88, + 3.8699999999999997, + 3.8699999999999997 + ], + "y": [ + 18.847999184822026, + 18.847999184822026, + 19.902007199464933, + 19.902007199464933, + 18.847999184822026 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.88, + 3.8899999999999997, + 3.8899999999999997, + 3.88, + 3.88 + ], + "y": [ + 18.857992800533694, + 18.857992800533694, + 19.91201352654746, + 19.91201352654746, + 18.857992800533694 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.8899999999999997, + 3.9, + 3.9, + 3.8899999999999997, + 3.8899999999999997 + ], + "y": [ + 18.86798647345116, + 18.86798647345116, + 19.922019796936404, + 19.922019796936404, + 18.86798647345116 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9, + 3.9099999999999997, + 3.9099999999999997, + 3.9, + 3.9 + ], + "y": [ + 18.877980203062215, + 18.877980203062215, + 19.93202601113947, + 19.93202601113947, + 18.877980203062215 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9099999999999997, + 3.92, + 3.92, + 3.9099999999999997, + 3.9099999999999997 + ], + "y": [ + 18.887973988859144, + 18.887973988859144, + 19.942032169659687, + 19.942032169659687, + 18.887973988859144 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.92, + 3.9299999999999997, + 3.9299999999999997, + 3.92, + 3.92 + ], + "y": [ + 18.897967830338924, + 18.897967830338924, + 19.95203827299574, + 19.95203827299574, + 18.897967830338924 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9299999999999997, + 3.94, + 3.94, + 3.9299999999999997, + 3.9299999999999997 + ], + "y": [ + 18.907961727002867, + 18.907961727002867, + 19.962044321641734, + 19.962044321641734, + 18.907961727002867 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.94, + 3.9499999999999997, + 3.9499999999999997, + 3.94, + 3.94 + ], + "y": [ + 18.91795567835687, + 18.91795567835687, + 19.97205031608747, + 19.97205031608747, + 18.91795567835687 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9499999999999997, + 3.96, + 3.96, + 3.9499999999999997, + 3.9499999999999997 + ], + "y": [ + 18.92794968391113, + 18.92794968391113, + 19.98205625681833, + 19.98205625681833, + 18.92794968391113 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.96, + 3.9699999999999998, + 3.9699999999999998, + 3.96, + 3.96 + ], + "y": [ + 18.937943743180266, + 18.937943743180266, + 19.99206214431527, + 19.99206214431527, + 18.937943743180266 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9699999999999998, + 3.98, + 3.98, + 3.9699999999999998, + 3.9699999999999998 + ], + "y": [ + 18.94793785568332, + 18.94793785568332, + 20.002067979055116, + 20.002067979055116, + 18.94793785568332 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.98, + 3.9899999999999998, + 3.9899999999999998, + 3.98, + 3.98 + ], + "y": [ + 18.95793202094347, + 18.95793202094347, + 20.012073761510308, + 20.012073761510308, + 18.95793202094347 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 3.9899999999999998, + 4, + 4, + 3.9899999999999998, + 3.9899999999999998 + ], + "y": [ + 18.967926238488275, + 18.967926238488275, + 20.02207949214909, + 20.02207949214909, + 18.967926238488275 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4, + 4.01, + 4.01, + 4, + 4 + ], + "y": [ + 18.97792050784949, + 18.97792050784949, + 20.032085171435597, + 20.032085171435597, + 18.97792050784949 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.01, + 4.02, + 4.02, + 4.01, + 4.01 + ], + "y": [ + 18.987914828562978, + 18.987914828562978, + 20.042090799829722, + 20.042090799829722, + 18.987914828562978 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.02, + 4.029999999999999, + 4.029999999999999, + 4.02, + 4.02 + ], + "y": [ + 18.99790920016885, + 18.99790920016885, + 20.05209637778731, + 20.05209637778731, + 18.99790920016885 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.029999999999999, + 4.04, + 4.04, + 4.029999999999999, + 4.029999999999999 + ], + "y": [ + 19.007903622211256, + 19.007903622211256, + 20.062101905760112, + 20.062101905760112, + 19.007903622211256 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.04, + 4.05, + 4.05, + 4.04, + 4.04 + ], + "y": [ + 19.01789809423845, + 19.01789809423845, + 20.07210738419582, + 20.07210738419582, + 19.01789809423845 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.05, + 4.06, + 4.06, + 4.05, + 4.05 + ], + "y": [ + 19.027892615802738, + 19.027892615802738, + 20.08211281353807, + 20.08211281353807, + 19.027892615802738 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.06, + 4.069999999999999, + 4.069999999999999, + 4.06, + 4.06 + ], + "y": [ + 19.037887186460484, + 19.037887186460484, + 20.092118194226703, + 20.092118194226703, + 19.037887186460484 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.069999999999999, + 4.08, + 4.08, + 4.069999999999999, + 4.069999999999999 + ], + "y": [ + 19.047881805771848, + 19.047881805771848, + 20.102123526697543, + 20.102123526697543, + 19.047881805771848 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.08, + 4.09, + 4.09, + 4.08, + 4.08 + ], + "y": [ + 19.057876473301004, + 19.057876473301004, + 20.11212881138244, + 20.11212881138244, + 19.057876473301004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.09, + 4.1, + 4.1, + 4.09, + 4.09 + ], + "y": [ + 19.067871188616103, + 19.067871188616103, + 20.122134048709427, + 20.122134048709427, + 19.067871188616103 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1, + 4.109999999999999, + 4.109999999999999, + 4.1, + 4.1 + ], + "y": [ + 19.077865951289112, + 19.077865951289112, + 20.132139239102823, + 20.132139239102823, + 19.077865951289112 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.109999999999999, + 4.12, + 4.12, + 4.109999999999999, + 4.109999999999999 + ], + "y": [ + 19.087860760895712, + 19.087860760895712, + 20.142144382983, + 20.142144382983, + 19.087860760895712 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.12, + 4.13, + 4.13, + 4.12, + 4.12 + ], + "y": [ + 19.097855617015533, + 19.097855617015533, + 20.15214948076666, + 20.15214948076666, + 19.097855617015533 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.13, + 4.14, + 4.14, + 4.13, + 4.13 + ], + "y": [ + 19.107850519231867, + 19.107850519231867, + 20.162154532866708, + 20.162154532866708, + 19.107850519231867 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.14, + 4.1499999999999995, + 4.1499999999999995, + 4.14, + 4.14 + ], + "y": [ + 19.117845467131815, + 19.117845467131815, + 20.17215953969247, + 20.17215953969247, + 19.117845467131815 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1499999999999995, + 4.16, + 4.16, + 4.1499999999999995, + 4.1499999999999995 + ], + "y": [ + 19.12784046030605, + 19.12784046030605, + 20.182164501649474, + 20.182164501649474, + 19.12784046030605 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.16, + 4.17, + 4.17, + 4.16, + 4.16 + ], + "y": [ + 19.13783549834904, + 19.13783549834904, + 20.192169419139727, + 20.192169419139727, + 19.13783549834904 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.17, + 4.18, + 4.18, + 4.17, + 4.17 + ], + "y": [ + 19.147830580858784, + 19.147830580858784, + 20.202174292561576, + 20.202174292561576, + 19.147830580858784 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.18, + 4.1899999999999995, + 4.1899999999999995, + 4.18, + 4.18 + ], + "y": [ + 19.15782570743693, + 19.15782570743693, + 20.212179122309916, + 20.212179122309916, + 19.15782570743693 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.1899999999999995, + 4.2, + 4.2, + 4.1899999999999995, + 4.1899999999999995 + ], + "y": [ + 19.167820877688587, + 19.167820877688587, + 20.22218390877598, + 20.22218390877598, + 19.167820877688587 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.2, + 4.21, + 4.21, + 4.2, + 4.2 + ], + "y": [ + 19.17781609122252, + 19.17781609122252, + 20.23218865234747, + 20.23218865234747, + 19.17781609122252 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.21, + 4.22, + 4.22, + 4.21, + 4.21 + ], + "y": [ + 19.187811347651024, + 19.187811347651024, + 20.24219335340885, + 20.24219335340885, + 19.187811347651024 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.22, + 4.2299999999999995, + 4.2299999999999995, + 4.22, + 4.22 + ], + "y": [ + 19.19780664658964, + 19.19780664658964, + 20.252198012340944, + 20.252198012340944, + 19.19780664658964 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.2299999999999995, + 4.24, + 4.24, + 4.2299999999999995, + 4.2299999999999995 + ], + "y": [ + 19.207801987657543, + 19.207801987657543, + 20.26220262952114, + 20.26220262952114, + 19.207801987657543 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.24, + 4.25, + 4.25, + 4.24, + 4.24 + ], + "y": [ + 19.217797370477342, + 19.217797370477342, + 20.272207205323614, + 20.272207205323614, + 19.217797370477342 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.25, + 4.26, + 4.26, + 4.25, + 4.25 + ], + "y": [ + 19.227792794674865, + 19.227792794674865, + 20.2822117401191, + 20.2822117401191, + 19.227792794674865 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.26, + 4.27, + 4.27, + 4.26, + 4.26 + ], + "y": [ + 19.237788259879377, + 19.237788259879377, + 20.292216234274985, + 20.292216234274985, + 19.237788259879377 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.27, + 4.279999999999999, + 4.279999999999999, + 4.27, + 4.27 + ], + "y": [ + 19.247783765723486, + 19.247783765723486, + 20.30222068815549, + 20.30222068815549, + 19.247783765723486 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.279999999999999, + 4.29, + 4.29, + 4.279999999999999, + 4.279999999999999 + ], + "y": [ + 19.257779311842977, + 19.257779311842977, + 20.312225102121452, + 20.312225102121452, + 19.257779311842977 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.29, + 4.3, + 4.3, + 4.29, + 4.29 + ], + "y": [ + 19.26777489787701, + 19.26777489787701, + 20.322229476530513, + 20.322229476530513, + 19.26777489787701 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.3, + 4.31, + 4.31, + 4.3, + 4.3 + ], + "y": [ + 19.277770523467947, + 19.277770523467947, + 20.332233811737133, + 20.332233811737133, + 19.277770523467947 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.31, + 4.319999999999999, + 4.319999999999999, + 4.31, + 4.31 + ], + "y": [ + 19.287766188261322, + 19.287766188261322, + 20.342238108092584, + 20.342238108092584, + 19.287766188261322 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.319999999999999, + 4.33, + 4.33, + 4.319999999999999, + 4.319999999999999 + ], + "y": [ + 19.297761891905868, + 19.297761891905868, + 20.352242365945088, + 20.352242365945088, + 19.297761891905868 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.33, + 4.34, + 4.34, + 4.33, + 4.33 + ], + "y": [ + 19.30775763405336, + 19.30775763405336, + 20.36224658563956, + 20.36224658563956, + 19.30775763405336 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.34, + 4.35, + 4.35, + 4.34, + 4.34 + ], + "y": [ + 19.317753414358883, + 19.317753414358883, + 20.372250767517965, + 20.372250767517965, + 19.317753414358883 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.35, + 4.359999999999999, + 4.359999999999999, + 4.35, + 4.35 + ], + "y": [ + 19.327749232480475, + 19.327749232480475, + 20.382254911919276, + 20.382254911919276, + 19.327749232480475 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.359999999999999, + 4.37, + 4.37, + 4.359999999999999, + 4.359999999999999 + ], + "y": [ + 19.33774508807916, + 19.33774508807916, + 20.392259019179246, + 20.392259019179246, + 19.33774508807916 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.37, + 4.38, + 4.38, + 4.37, + 4.37 + ], + "y": [ + 19.347740980819186, + 19.347740980819186, + 20.402263089630683, + 20.402263089630683, + 19.347740980819186 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.38, + 4.39, + 4.39, + 4.38, + 4.38 + ], + "y": [ + 19.357736910367745, + 19.357736910367745, + 20.412267123603545, + 20.412267123603545, + 19.357736910367745 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.39, + 4.3999999999999995, + 4.3999999999999995, + 4.39, + 4.39 + ], + "y": [ + 19.36773287639488, + 19.36773287639488, + 20.422271121424714, + 20.422271121424714, + 19.36773287639488 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.3999999999999995, + 4.41, + 4.41, + 4.3999999999999995, + 4.3999999999999995 + ], + "y": [ + 19.377728878573706, + 19.377728878573706, + 20.4322750834181, + 20.4322750834181, + 19.377728878573706 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.41, + 4.42, + 4.42, + 4.41, + 4.41 + ], + "y": [ + 19.387724916580314, + 19.387724916580314, + 20.44227900990486, + 20.44227900990486, + 19.387724916580314 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.42, + 4.43, + 4.43, + 4.42, + 4.42 + ], + "y": [ + 19.397720990093553, + 19.397720990093553, + 20.45228290120313, + 20.45228290120313, + 19.397720990093553 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.43, + 4.4399999999999995, + 4.4399999999999995, + 4.43, + 4.43 + ], + "y": [ + 19.407717098795278, + 19.407717098795278, + 20.46228675762834, + 20.46228675762834, + 19.407717098795278 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.4399999999999995, + 4.45, + 4.45, + 4.4399999999999995, + 4.4399999999999995 + ], + "y": [ + 19.417713242370063, + 19.417713242370063, + 20.47229057949303, + 20.47229057949303, + 19.417713242370063 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.45, + 4.46, + 4.46, + 4.45, + 4.45 + ], + "y": [ + 19.42770942050537, + 19.42770942050537, + 20.4822943671069, + 20.4822943671069, + 19.42770942050537 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.46, + 4.47, + 4.47, + 4.46, + 4.46 + ], + "y": [ + 19.437705632891497, + 19.437705632891497, + 20.49229812077688, + 20.49229812077688, + 19.437705632891497 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.47, + 4.4799999999999995, + 4.4799999999999995, + 4.47, + 4.47 + ], + "y": [ + 19.447701879221512, + 19.447701879221512, + 20.50230184080725, + 20.50230184080725, + 19.447701879221512 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.4799999999999995, + 4.49, + 4.49, + 4.4799999999999995, + 4.4799999999999995 + ], + "y": [ + 19.45769815919114, + 19.45769815919114, + 20.512305527499414, + 20.512305527499414, + 19.45769815919114 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.49, + 4.5, + 4.5, + 4.49, + 4.49 + ], + "y": [ + 19.46769447249897, + 19.46769447249897, + 20.522309181152295, + 20.522309181152295, + 19.46769447249897 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.5, + 4.51, + 4.51, + 4.5, + 4.5 + ], + "y": [ + 19.477690818846085, + 19.477690818846085, + 20.53231280206191, + 20.53231280206191, + 19.477690818846085 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.51, + 4.52, + 4.52, + 4.51, + 4.51 + ], + "y": [ + 19.487687197936467, + 19.487687197936467, + 20.542316390521794, + 20.542316390521794, + 19.487687197936467 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.52, + 4.529999999999999, + 4.529999999999999, + 4.52, + 4.52 + ], + "y": [ + 19.497683609476578, + 19.497683609476578, + 20.552319946822713, + 20.552319946822713, + 19.497683609476578 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.529999999999999, + 4.54, + 4.54, + 4.529999999999999, + 4.529999999999999 + ], + "y": [ + 19.507680053175655, + 19.507680053175655, + 20.56232347125296, + 20.56232347125296, + 19.507680053175655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.54, + 4.55, + 4.55, + 4.54, + 4.54 + ], + "y": [ + 19.517676528745405, + 19.517676528745405, + 20.572326964098195, + 20.572326964098195, + 19.517676528745405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.55, + 4.56, + 4.56, + 4.55, + 4.55 + ], + "y": [ + 19.527673035900165, + 19.527673035900165, + 20.582330425641455, + 20.582330425641455, + 19.527673035900165 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.56, + 4.569999999999999, + 4.569999999999999, + 4.56, + 4.56 + ], + "y": [ + 19.5376695743569, + 19.5376695743569, + 20.592333856163318, + 20.592333856163318, + 19.5376695743569 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.569999999999999, + 4.58, + 4.58, + 4.569999999999999, + 4.569999999999999 + ], + "y": [ + 19.547666143835034, + 19.547666143835034, + 20.602337255941844, + 20.602337255941844, + 19.547666143835034 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.58, + 4.59, + 4.59, + 4.58, + 4.58 + ], + "y": [ + 19.557662744056504, + 19.557662744056504, + 20.612340625252635, + 20.612340625252635, + 19.557662744056504 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.59, + 4.6, + 4.6, + 4.59, + 4.59 + ], + "y": [ + 19.56765937474571, + 19.56765937474571, + 20.622343964368728, + 20.622343964368728, + 19.56765937474571 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6, + 4.609999999999999, + 4.609999999999999, + 4.6, + 4.6 + ], + "y": [ + 19.577656035629612, + 19.577656035629612, + 20.63234727356075, + 20.63234727356075, + 19.577656035629612 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.609999999999999, + 4.62, + 4.62, + 4.609999999999999, + 4.609999999999999 + ], + "y": [ + 19.587652726437586, + 19.587652726437586, + 20.642350553096886, + 20.642350553096886, + 19.587652726437586 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.62, + 4.63, + 4.63, + 4.62, + 4.62 + ], + "y": [ + 19.597649446901446, + 19.597649446901446, + 20.65235380324302, + 20.65235380324302, + 19.597649446901446 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.63, + 4.64, + 4.64, + 4.63, + 4.63 + ], + "y": [ + 19.607646196755308, + 19.607646196755308, + 20.662357024262626, + 20.662357024262626, + 19.607646196755308 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.64, + 4.6499999999999995, + 4.6499999999999995, + 4.64, + 4.64 + ], + "y": [ + 19.6176429757357, + 19.6176429757357, + 20.672360216416696, + 20.672360216416696, + 19.6176429757357 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6499999999999995, + 4.66, + 4.66, + 4.6499999999999995, + 4.6499999999999995 + ], + "y": [ + 19.627639783581625, + 19.627639783581625, + 20.68236337996406, + 20.68236337996406, + 19.627639783581625 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.66, + 4.67, + 4.67, + 4.66, + 4.66 + ], + "y": [ + 19.637636620034257, + 19.637636620034257, + 20.69236651516102, + 20.69236651516102, + 19.637636620034257 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.67, + 4.68, + 4.68, + 4.67, + 4.67 + ], + "y": [ + 19.647633484837293, + 19.647633484837293, + 20.70236962226183, + 20.70236962226183, + 19.647633484837293 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.68, + 4.6899999999999995, + 4.6899999999999995, + 4.68, + 4.68 + ], + "y": [ + 19.657630377736478, + 19.657630377736478, + 20.712372701518287, + 20.712372701518287, + 19.657630377736478 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.6899999999999995, + 4.7, + 4.7, + 4.6899999999999995, + 4.6899999999999995 + ], + "y": [ + 19.667627298480017, + 19.667627298480017, + 20.72237575317993, + 20.72237575317993, + 19.667627298480017 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.7, + 4.71, + 4.71, + 4.7, + 4.7 + ], + "y": [ + 19.67762424681837, + 19.67762424681837, + 20.732378777494173, + 20.732378777494173, + 19.67762424681837 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.71, + 4.72, + 4.72, + 4.71, + 4.71 + ], + "y": [ + 19.687621222504124, + 19.687621222504124, + 20.74238177470611, + 20.74238177470611, + 19.687621222504124 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.72, + 4.7299999999999995, + 4.7299999999999995, + 4.72, + 4.72 + ], + "y": [ + 19.69761822529218, + 19.69761822529218, + 20.75238474505875, + 20.75238474505875, + 19.69761822529218 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.7299999999999995, + 4.74, + 4.74, + 4.7299999999999995, + 4.7299999999999995 + ], + "y": [ + 19.707615254939537, + 19.707615254939537, + 20.762387688792813, + 20.762387688792813, + 19.707615254939537 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.74, + 4.75, + 4.75, + 4.74, + 4.74 + ], + "y": [ + 19.71761231120547, + 19.71761231120547, + 20.772390606146892, + 20.772390606146892, + 19.71761231120547 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.75, + 4.76, + 4.76, + 4.75, + 4.75 + ], + "y": [ + 19.727609393851388, + 19.727609393851388, + 20.78239349735748, + 20.78239349735748, + 19.727609393851388 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.76, + 4.77, + 4.77, + 4.76, + 4.76 + ], + "y": [ + 19.737606502640798, + 19.737606502640798, + 20.7923963626589, + 20.7923963626589, + 19.737606502640798 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.77, + 4.779999999999999, + 4.779999999999999, + 4.77, + 4.77 + ], + "y": [ + 19.747603637339374, + 19.747603637339374, + 20.802399202283475, + 20.802399202283475, + 19.747603637339374 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.779999999999999, + 4.79, + 4.79, + 4.779999999999999, + 4.779999999999999 + ], + "y": [ + 19.757600797714794, + 19.757600797714794, + 20.812402016461302, + 20.812402016461302, + 19.757600797714794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.79, + 4.8, + 4.8, + 4.79, + 4.79 + ], + "y": [ + 19.767597983536962, + 19.767597983536962, + 20.82240480542054, + 20.82240480542054, + 19.767597983536962 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.8, + 4.81, + 4.81, + 4.8, + 4.8 + ], + "y": [ + 19.77759519457772, + 19.77759519457772, + 20.83240756938729, + 20.83240756938729, + 19.77759519457772 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.81, + 4.819999999999999, + 4.819999999999999, + 4.81, + 4.81 + ], + "y": [ + 19.787592430610967, + 19.787592430610967, + 20.842410308585503, + 20.842410308585503, + 19.787592430610967 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.819999999999999, + 4.83, + 4.83, + 4.819999999999999, + 4.819999999999999 + ], + "y": [ + 19.79758969141275, + 19.79758969141275, + 20.852413023237244, + 20.852413023237244, + 19.79758969141275 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.83, + 4.84, + 4.84, + 4.83, + 4.83 + ], + "y": [ + 19.807586976761005, + 19.807586976761005, + 20.862415713562587, + 20.862415713562587, + 19.807586976761005 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.84, + 4.85, + 4.85, + 4.84, + 4.84 + ], + "y": [ + 19.817584286435658, + 19.817584286435658, + 20.87241837977957, + 20.87241837977957, + 19.817584286435658 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.85, + 4.859999999999999, + 4.859999999999999, + 4.85, + 4.85 + ], + "y": [ + 19.82758162021867, + 19.82758162021867, + 20.882421022104374, + 20.882421022104374, + 19.82758162021867 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.859999999999999, + 4.87, + 4.87, + 4.859999999999999, + 4.859999999999999 + ], + "y": [ + 19.837578977893862, + 19.837578977893862, + 20.892423640751083, + 20.892423640751083, + 19.837578977893862 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.87, + 4.88, + 4.88, + 4.87, + 4.87 + ], + "y": [ + 19.84757635924715, + 19.84757635924715, + 20.902426235932047, + 20.902426235932047, + 19.84757635924715 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.88, + 4.89, + 4.89, + 4.88, + 4.88 + ], + "y": [ + 19.85757376406618, + 19.85757376406618, + 20.91242880785753, + 20.91242880785753, + 19.85757376406618 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.89, + 4.8999999999999995, + 4.8999999999999995, + 4.89, + 4.89 + ], + "y": [ + 19.867571192140694, + 19.867571192140694, + 20.922431356736066, + 20.922431356736066, + 19.867571192140694 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.8999999999999995, + 4.91, + 4.91, + 4.8999999999999995, + 4.8999999999999995 + ], + "y": [ + 19.877568643262155, + 19.877568643262155, + 20.932433882774294, + 20.932433882774294, + 19.877568643262155 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.91, + 4.92, + 4.92, + 4.91, + 4.91 + ], + "y": [ + 19.887566117223923, + 19.887566117223923, + 20.94243638617691, + 20.94243638617691, + 19.887566117223923 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.92, + 4.93, + 4.93, + 4.92, + 4.92 + ], + "y": [ + 19.8975636138213, + 19.8975636138213, + 20.952438867146906, + 20.952438867146906, + 19.8975636138213 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.93, + 4.9399999999999995, + 4.9399999999999995, + 4.93, + 4.93 + ], + "y": [ + 19.907561132851303, + 19.907561132851303, + 20.962441325885273, + 20.962441325885273, + 19.907561132851303 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.9399999999999995, + 4.95, + 4.95, + 4.9399999999999995, + 4.9399999999999995 + ], + "y": [ + 19.917558674112932, + 19.917558674112932, + 20.97244376259137, + 20.97244376259137, + 19.917558674112932 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.95, + 4.96, + 4.96, + 4.95, + 4.95 + ], + "y": [ + 19.92755623740683, + 19.92755623740683, + 20.982446177462695, + 20.982446177462695, + 19.92755623740683 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.96, + 4.97, + 4.97, + 4.96, + 4.96 + ], + "y": [ + 19.937553822535502, + 19.937553822535502, + 20.99244857069503, + 20.99244857069503, + 19.937553822535502 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.97, + 4.9799999999999995, + 4.9799999999999995, + 4.97, + 4.97 + ], + "y": [ + 19.947551429303164, + 19.947551429303164, + 21.00245094248234, + 21.00245094248234, + 19.947551429303164 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.9799999999999995, + 4.99, + 4.99, + 4.9799999999999995, + 4.9799999999999995 + ], + "y": [ + 19.95754905751585, + 19.95754905751585, + 21.012453293016875, + 21.012453293016875, + 19.95754905751585 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 4.99, + 5, + 5, + 4.99, + 4.99 + ], + "y": [ + 19.96754670698131, + 19.96754670698131, + 21.022455622489105, + 21.022455622489105, + 19.96754670698131 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5, + 5.01, + 5.01, + 5, + 5 + ], + "y": [ + 19.977544377509076, + 19.977544377509076, + 21.032457931087883, + 21.032457931087883, + 19.977544377509076 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.01, + 5.02, + 5.02, + 5.01, + 5.01 + ], + "y": [ + 19.987542068910294, + 19.987542068910294, + 21.042460219000347, + 21.042460219000347, + 19.987542068910294 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.02, + 5.029999999999999, + 5.029999999999999, + 5.02, + 5.02 + ], + "y": [ + 19.997539780997826, + 19.997539780997826, + 21.05246248641194, + 21.05246248641194, + 19.997539780997826 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.029999999999999, + 5.04, + 5.04, + 5.029999999999999, + 5.029999999999999 + ], + "y": [ + 20.00753751358623, + 20.00753751358623, + 21.062464733506495, + 21.062464733506495, + 20.00753751358623 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.04, + 5.05, + 5.05, + 5.04, + 5.04 + ], + "y": [ + 20.01753526649167, + 20.01753526649167, + 21.072466960466073, + 21.072466960466073, + 20.01753526649167 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.05, + 5.06, + 5.06, + 5.05, + 5.05 + ], + "y": [ + 20.027533039532088, + 20.027533039532088, + 21.08246916747121, + 21.08246916747121, + 20.027533039532088 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.06, + 5.069999999999999, + 5.069999999999999, + 5.06, + 5.06 + ], + "y": [ + 20.037530832526947, + 20.037530832526947, + 21.09247135470079, + 21.09247135470079, + 20.037530832526947 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.069999999999999, + 5.08, + 5.08, + 5.069999999999999, + 5.069999999999999 + ], + "y": [ + 20.047528645297362, + 20.047528645297362, + 21.102473522332115, + 21.102473522332115, + 20.047528645297362 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.08, + 5.09, + 5.09, + 5.08, + 5.08 + ], + "y": [ + 20.057526477666034, + 20.057526477666034, + 21.112475670540828, + 21.112475670540828, + 20.057526477666034 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.09, + 5.1, + 5.1, + 5.09, + 5.09 + ], + "y": [ + 20.067524329457317, + 20.067524329457317, + 21.122477799501137, + 21.122477799501137, + 20.067524329457317 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1, + 5.109999999999999, + 5.109999999999999, + 5.1, + 5.1 + ], + "y": [ + 20.077522200497004, + 20.077522200497004, + 21.132479909385484, + 21.132479909385484, + 20.077522200497004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.109999999999999, + 5.12, + 5.12, + 5.109999999999999, + 5.109999999999999 + ], + "y": [ + 20.087520090612653, + 20.087520090612653, + 21.142482000365025, + 21.142482000365025, + 20.087520090612653 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.12, + 5.13, + 5.13, + 5.12, + 5.12 + ], + "y": [ + 20.09751799963311, + 20.09751799963311, + 21.152484072609166, + 21.152484072609166, + 20.09751799963311 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.13, + 5.14, + 5.14, + 5.13, + 5.13 + ], + "y": [ + 20.107515927388963, + 20.107515927388963, + 21.16248612628584, + 21.16248612628584, + 20.107515927388963 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.14, + 5.1499999999999995, + 5.1499999999999995, + 5.14, + 5.14 + ], + "y": [ + 20.117513873712284, + 20.117513873712284, + 21.17248816156151, + 21.17248816156151, + 20.117513873712284 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1499999999999995, + 5.16, + 5.16, + 5.1499999999999995, + 5.1499999999999995 + ], + "y": [ + 20.12751183843661, + 20.12751183843661, + 21.18249017860115, + 21.18249017860115, + 20.12751183843661 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.16, + 5.17, + 5.17, + 5.16, + 5.16 + ], + "y": [ + 20.137509821396968, + 20.137509821396968, + 21.19249217756822, + 21.19249217756822, + 20.137509821396968 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.17, + 5.18, + 5.18, + 5.17, + 5.17 + ], + "y": [ + 20.147507822429894, + 20.147507822429894, + 21.20249415862477, + 21.20249415862477, + 20.147507822429894 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.18, + 5.1899999999999995, + 5.1899999999999995, + 5.18, + 5.18 + ], + "y": [ + 20.15750584137334, + 20.15750584137334, + 21.212496121931363, + 21.212496121931363, + 20.15750584137334 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.1899999999999995, + 5.2, + 5.2, + 5.1899999999999995, + 5.1899999999999995 + ], + "y": [ + 20.167503878066743, + 20.167503878066743, + 21.222498067647113, + 21.222498067647113, + 20.167503878066743 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.2, + 5.21, + 5.21, + 5.2, + 5.2 + ], + "y": [ + 20.17750193235099, + 20.17750193235099, + 21.23249999592977, + 21.23249999592977, + 20.17750193235099 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.21, + 5.22, + 5.22, + 5.21, + 5.21 + ], + "y": [ + 20.187500004068326, + 20.187500004068326, + 21.24250190693558, + 21.24250190693558, + 20.187500004068326 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.22, + 5.2299999999999995, + 5.2299999999999995, + 5.22, + 5.22 + ], + "y": [ + 20.197498093062514, + 20.197498093062514, + 21.25250380081938, + 21.25250380081938, + 20.197498093062514 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.2299999999999995, + 5.24, + 5.24, + 5.2299999999999995, + 5.2299999999999995 + ], + "y": [ + 20.20749619917871, + 20.20749619917871, + 21.262505677734673, + 21.262505677734673, + 20.20749619917871 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.24, + 5.25, + 5.25, + 5.24, + 5.24 + ], + "y": [ + 20.217494322263413, + 20.217494322263413, + 21.27250753783363, + 21.27250753783363, + 20.217494322263413 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.25, + 5.26, + 5.26, + 5.25, + 5.25 + ], + "y": [ + 20.227492462164452, + 20.227492462164452, + 21.28250938126701, + 21.28250938126701, + 20.227492462164452 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.26, + 5.27, + 5.27, + 5.26, + 5.26 + ], + "y": [ + 20.23749061873107, + 20.23749061873107, + 21.29251120818418, + 21.29251120818418, + 20.23749061873107 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.27, + 5.279999999999999, + 5.279999999999999, + 5.27, + 5.27 + ], + "y": [ + 20.247488791813893, + 20.247488791813893, + 21.302513018733254, + 21.302513018733254, + 20.247488791813893 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.279999999999999, + 5.29, + 5.29, + 5.279999999999999, + 5.279999999999999 + ], + "y": [ + 20.257486981264815, + 20.257486981264815, + 21.312514813060893, + 21.312514813060893, + 20.257486981264815 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.29, + 5.3, + 5.3, + 5.29, + 5.29 + ], + "y": [ + 20.267485186937172, + 20.267485186937172, + 21.32251659131255, + 21.32251659131255, + 20.267485186937172 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.3, + 5.31, + 5.31, + 5.3, + 5.3 + ], + "y": [ + 20.277483408685512, + 20.277483408685512, + 21.332518353632377, + 21.332518353632377, + 20.277483408685512 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.31, + 5.319999999999999, + 5.319999999999999, + 5.31, + 5.31 + ], + "y": [ + 20.28748164636568, + 20.28748164636568, + 21.342520100163142, + 21.342520100163142, + 20.28748164636568 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.319999999999999, + 5.33, + 5.33, + 5.319999999999999, + 5.319999999999999 + ], + "y": [ + 20.29747989983491, + 20.29747989983491, + 21.35252183104639, + 21.35252183104639, + 20.29747989983491 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.33, + 5.34, + 5.34, + 5.33, + 5.33 + ], + "y": [ + 20.30747816895166, + 20.30747816895166, + 21.36252354642247, + 21.36252354642247, + 20.30747816895166 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.34, + 5.35, + 5.35, + 5.34, + 5.34 + ], + "y": [ + 20.317476453575576, + 20.317476453575576, + 21.372525246430342, + 21.372525246430342, + 20.317476453575576 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.35, + 5.359999999999999, + 5.359999999999999, + 5.35, + 5.35 + ], + "y": [ + 20.3274747535677, + 20.3274747535677, + 21.382526931207785, + 21.382526931207785, + 20.3274747535677 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.359999999999999, + 5.37, + 5.37, + 5.359999999999999, + 5.359999999999999 + ], + "y": [ + 20.337473068790253, + 20.337473068790253, + 21.39252860089129, + 21.39252860089129, + 20.337473068790253 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.37, + 5.38, + 5.38, + 5.37, + 5.37 + ], + "y": [ + 20.347471399106745, + 20.347471399106745, + 21.402530255616252, + 21.402530255616252, + 20.347471399106745 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.38, + 5.39, + 5.39, + 5.38, + 5.38 + ], + "y": [ + 20.357469744381778, + 20.357469744381778, + 21.412531895516665, + 21.412531895516665, + 20.357469744381778 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.39, + 5.3999999999999995, + 5.3999999999999995, + 5.39, + 5.39 + ], + "y": [ + 20.36746810448136, + 20.36746810448136, + 21.422533520725523, + 21.422533520725523, + 20.36746810448136 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.3999999999999995, + 5.41, + 5.41, + 5.3999999999999995, + 5.3999999999999995 + ], + "y": [ + 20.3774664792725, + 20.3774664792725, + 21.432535131374514, + 21.432535131374514, + 20.3774664792725 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.41, + 5.42, + 5.42, + 5.41, + 5.41 + ], + "y": [ + 20.387464868623503, + 20.387464868623503, + 21.442536727594117, + 21.442536727594117, + 20.387464868623503 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.42, + 5.43, + 5.43, + 5.42, + 5.42 + ], + "y": [ + 20.397463272403897, + 20.397463272403897, + 21.45253830951369, + 21.45253830951369, + 20.397463272403897 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.43, + 5.4399999999999995, + 5.4399999999999995, + 5.43, + 5.43 + ], + "y": [ + 20.40746169048432, + 20.40746169048432, + 21.462539877261438, + 21.462539877261438, + 20.40746169048432 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.4399999999999995, + 5.45, + 5.45, + 5.4399999999999995, + 5.4399999999999995 + ], + "y": [ + 20.417460122736568, + 20.417460122736568, + 21.47254143096443, + 21.47254143096443, + 20.417460122736568 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.45, + 5.46, + 5.46, + 5.45, + 5.45 + ], + "y": [ + 20.427458569033572, + 20.427458569033572, + 21.48254297074855, + 21.48254297074855, + 20.427458569033572 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.46, + 5.47, + 5.47, + 5.46, + 5.46 + ], + "y": [ + 20.437457029249448, + 20.437457029249448, + 21.49254449673861, + 21.49254449673861, + 20.437457029249448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.47, + 5.4799999999999995, + 5.4799999999999995, + 5.47, + 5.47 + ], + "y": [ + 20.447455503259384, + 20.447455503259384, + 21.502546009058193, + 21.502546009058193, + 20.447455503259384 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.4799999999999995, + 5.49, + 5.49, + 5.4799999999999995, + 5.4799999999999995 + ], + "y": [ + 20.457453990939797, + 20.457453990939797, + 21.51254750782988, + 21.51254750782988, + 20.457453990939797 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.49, + 5.5, + 5.5, + 5.49, + 5.49 + ], + "y": [ + 20.467452492168107, + 20.467452492168107, + 21.522548993175143, + 21.522548993175143, + 20.467452492168107 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.5, + 5.51, + 5.51, + 5.5, + 5.5 + ], + "y": [ + 20.47745100682284, + 20.47745100682284, + 21.532550465214243, + 21.532550465214243, + 20.47745100682284 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.51, + 5.52, + 5.52, + 5.51, + 5.51 + ], + "y": [ + 20.487449534783735, + 20.487449534783735, + 21.54255192406655, + 21.54255192406655, + 20.487449534783735 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.52, + 5.529999999999999, + 5.529999999999999, + 5.52, + 5.52 + ], + "y": [ + 20.497448075931423, + 20.497448075931423, + 21.552553369850237, + 21.552553369850237, + 20.497448075931423 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.529999999999999, + 5.54, + 5.54, + 5.529999999999999, + 5.529999999999999 + ], + "y": [ + 20.507446630147733, + 20.507446630147733, + 21.56255480268251, + 21.56255480268251, + 20.507446630147733 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.54, + 5.55, + 5.55, + 5.54, + 5.54 + ], + "y": [ + 20.517445197315457, + 20.517445197315457, + 21.572556222679413, + 21.572556222679413, + 20.517445197315457 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.55, + 5.56, + 5.56, + 5.55, + 5.55 + ], + "y": [ + 20.52744377731855, + 20.52744377731855, + 21.58255762995607, + 21.58255762995607, + 20.52744377731855 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.56, + 5.569999999999999, + 5.569999999999999, + 5.56, + 5.56 + ], + "y": [ + 20.537442370041887, + 20.537442370041887, + 21.59255902462643, + 21.59255902462643, + 20.537442370041887 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.569999999999999, + 5.58, + 5.58, + 5.569999999999999, + 5.569999999999999 + ], + "y": [ + 20.547440975371526, + 20.547440975371526, + 21.602560406803576, + 21.602560406803576, + 20.547440975371526 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.58, + 5.59, + 5.59, + 5.58, + 5.58 + ], + "y": [ + 20.557439593194374, + 20.557439593194374, + 21.61256177659938, + 21.61256177659938, + 20.557439593194374 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.59, + 5.6, + 5.6, + 5.59, + 5.59 + ], + "y": [ + 20.567438223398565, + 20.567438223398565, + 21.622563134124952, + 21.622563134124952, + 20.567438223398565 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6, + 5.609999999999999, + 5.609999999999999, + 5.6, + 5.6 + ], + "y": [ + 20.57743686587299, + 20.57743686587299, + 21.63256447949023, + 21.63256447949023, + 20.57743686587299 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.609999999999999, + 5.62, + 5.62, + 5.609999999999999, + 5.609999999999999 + ], + "y": [ + 20.587435520507707, + 20.587435520507707, + 21.642565812804182, + 21.642565812804182, + 20.587435520507707 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.62, + 5.63, + 5.63, + 5.62, + 5.62 + ], + "y": [ + 20.597434187193752, + 20.597434187193752, + 21.652567134174905, + 21.652567134174905, + 20.597434187193752 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.63, + 5.64, + 5.64, + 5.63, + 5.63 + ], + "y": [ + 20.607432865823025, + 20.607432865823025, + 21.662568443709404, + 21.662568443709404, + 20.607432865823025 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.64, + 5.6499999999999995, + 5.6499999999999995, + 5.64, + 5.64 + ], + "y": [ + 20.617431556288523, + 20.617431556288523, + 21.672569741513794, + 21.672569741513794, + 20.617431556288523 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6499999999999995, + 5.66, + 5.66, + 5.6499999999999995, + 5.6499999999999995 + ], + "y": [ + 20.62743025848413, + 20.62743025848413, + 21.682571027693236, + 21.682571027693236, + 20.62743025848413 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.66, + 5.67, + 5.67, + 5.66, + 5.66 + ], + "y": [ + 20.637428972304683, + 20.637428972304683, + 21.692572302351863, + 21.692572302351863, + 20.637428972304683 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.67, + 5.68, + 5.68, + 5.67, + 5.67 + ], + "y": [ + 20.64742769764605, + 20.64742769764605, + 21.70257356559308, + 21.70257356559308, + 20.64742769764605 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.68, + 5.6899999999999995, + 5.6899999999999995, + 5.68, + 5.68 + ], + "y": [ + 20.65742643440483, + 20.65742643440483, + 21.712574817519112, + 21.712574817519112, + 20.65742643440483 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.6899999999999995, + 5.7, + 5.7, + 5.6899999999999995, + 5.6899999999999995 + ], + "y": [ + 20.667425182478794, + 20.667425182478794, + 21.722576058231482, + 21.722576058231482, + 20.667425182478794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.7, + 5.71, + 5.71, + 5.7, + 5.7 + ], + "y": [ + 20.67742394176642, + 20.67742394176642, + 21.73257728783062, + 21.73257728783062, + 20.67742394176642 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.71, + 5.72, + 5.72, + 5.71, + 5.71 + ], + "y": [ + 20.68742271216728, + 20.68742271216728, + 21.742578506416162, + 21.742578506416162, + 20.68742271216728 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.72, + 5.7299999999999995, + 5.7299999999999995, + 5.72, + 5.72 + ], + "y": [ + 20.697421493581732, + 20.697421493581732, + 21.752579714086856, + 21.752579714086856, + 20.697421493581732 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.7299999999999995, + 5.74, + 5.74, + 5.7299999999999995, + 5.7299999999999995 + ], + "y": [ + 20.707420285911034, + 20.707420285911034, + 21.762580910940525, + 21.762580910940525, + 20.707420285911034 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.74, + 5.75, + 5.75, + 5.74, + 5.74 + ], + "y": [ + 20.717419089057362, + 20.717419089057362, + 21.772582097074174, + 21.772582097074174, + 20.717419089057362 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.75, + 5.76, + 5.76, + 5.75, + 5.75 + ], + "y": [ + 20.72741790292371, + 20.72741790292371, + 21.78258327258378, + 21.78258327258378, + 20.72741790292371 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.76, + 5.77, + 5.77, + 5.76, + 5.76 + ], + "y": [ + 20.7374167274141, + 20.7374167274141, + 21.79258443756465, + 21.79258443756465, + 20.7374167274141 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.77, + 5.779999999999999, + 5.779999999999999, + 5.77, + 5.77 + ], + "y": [ + 20.747415562433225, + 20.747415562433225, + 21.8025855921111, + 21.8025855921111, + 20.747415562433225 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.779999999999999, + 5.79, + 5.79, + 5.779999999999999, + 5.779999999999999 + ], + "y": [ + 20.75741440788677, + 20.75741440788677, + 21.812586736316725, + 21.812586736316725, + 20.75741440788677 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.79, + 5.8, + 5.8, + 5.79, + 5.79 + ], + "y": [ + 20.767413263681142, + 20.767413263681142, + 21.822587870274134, + 21.822587870274134, + 20.767413263681142 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.8, + 5.81, + 5.81, + 5.8, + 5.8 + ], + "y": [ + 20.77741212972373, + 20.77741212972373, + 21.832588994075284, + 21.832588994075284, + 20.77741212972373 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.81, + 5.819999999999999, + 5.819999999999999, + 5.81, + 5.81 + ], + "y": [ + 20.787411005922575, + 20.787411005922575, + 21.84259010781119, + 21.84259010781119, + 20.787411005922575 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.819999999999999, + 5.83, + 5.83, + 5.819999999999999, + 5.819999999999999 + ], + "y": [ + 20.797409892186664, + 20.797409892186664, + 21.852591211572044, + 21.852591211572044, + 20.797409892186664 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.83, + 5.84, + 5.84, + 5.83, + 5.83 + ], + "y": [ + 20.807408788425807, + 20.807408788425807, + 21.8625923054472, + 21.8625923054472, + 20.807408788425807 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.84, + 5.85, + 5.85, + 5.84, + 5.84 + ], + "y": [ + 20.817407694550646, + 20.817407694550646, + 21.872593389525356, + 21.872593389525356, + 20.817407694550646 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.85, + 5.859999999999999, + 5.859999999999999, + 5.85, + 5.85 + ], + "y": [ + 20.827406610472487, + 20.827406610472487, + 21.88259446389425, + 21.88259446389425, + 20.827406610472487 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.859999999999999, + 5.87, + 5.87, + 5.859999999999999, + 5.859999999999999 + ], + "y": [ + 20.83740553610359, + 20.83740553610359, + 21.892595528640975, + 21.892595528640975, + 20.83740553610359 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.87, + 5.88, + 5.88, + 5.87, + 5.87 + ], + "y": [ + 20.84740447135686, + 20.84740447135686, + 21.902596583851732, + 21.902596583851732, + 20.84740447135686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.88, + 5.89, + 5.89, + 5.88, + 5.88 + ], + "y": [ + 20.8574034161461, + 20.8574034161461, + 21.912597629611977, + 21.912597629611977, + 20.8574034161461 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.89, + 5.8999999999999995, + 5.8999999999999995, + 5.89, + 5.89 + ], + "y": [ + 20.86740237038585, + 20.86740237038585, + 21.922598666006433, + 21.922598666006433, + 20.86740237038585 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.8999999999999995, + 5.91, + 5.91, + 5.8999999999999995, + 5.8999999999999995 + ], + "y": [ + 20.87740133399139, + 20.87740133399139, + 21.932599693119084, + 21.932599693119084, + 20.87740133399139 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.91, + 5.92, + 5.92, + 5.91, + 5.91 + ], + "y": [ + 20.887400306878735, + 20.887400306878735, + 21.942600711033087, + 21.942600711033087, + 20.887400306878735 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.92, + 5.93, + 5.93, + 5.92, + 5.92 + ], + "y": [ + 20.897399288964728, + 20.897399288964728, + 21.95260171983087, + 21.95260171983087, + 20.897399288964728 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.93, + 5.9399999999999995, + 5.9399999999999995, + 5.93, + 5.93 + ], + "y": [ + 20.90739828016694, + 20.90739828016694, + 21.9626027195941, + 21.9626027195941, + 20.90739828016694 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.9399999999999995, + 5.95, + 5.95, + 5.9399999999999995, + 5.9399999999999995 + ], + "y": [ + 20.91739728040371, + 20.91739728040371, + 21.972603710403835, + 21.972603710403835, + 20.91739728040371 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.95, + 5.96, + 5.96, + 5.95, + 5.95 + ], + "y": [ + 20.92739628959397, + 20.92739628959397, + 21.982604692340274, + 21.982604692340274, + 20.92739628959397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.96, + 5.97, + 5.97, + 5.96, + 5.96 + ], + "y": [ + 20.937395307657525, + 20.937395307657525, + 21.992605665483, + 21.992605665483, + 20.937395307657525 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.97, + 5.9799999999999995, + 5.9799999999999995, + 5.97, + 5.97 + ], + "y": [ + 20.947394334514794, + 20.947394334514794, + 22.00260662991075, + 22.00260662991075, + 20.947394334514794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.9799999999999995, + 5.99, + 5.99, + 5.9799999999999995, + 5.9799999999999995 + ], + "y": [ + 20.95739337008704, + 20.95739337008704, + 22.012607585701677, + 22.012607585701677, + 20.95739337008704 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.99, + 6, + 6, + 5.99, + 5.99 + ], + "y": [ + 20.96739241429611, + 20.96739241429611, + 22.022608532933173, + 22.022608532933173, + 20.96739241429611 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6, + 6.01, + 6.01, + 6, + 6 + ], + "y": [ + 20.97739146706461, + 20.97739146706461, + 22.032609471681976, + 22.032609471681976, + 20.97739146706461 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.01, + 6.02, + 6.02, + 6.01, + 6.01 + ], + "y": [ + 20.987390528315803, + 20.987390528315803, + 22.042610402024007, + 22.042610402024007, + 20.987390528315803 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.02, + 6.029999999999999, + 6.029999999999999, + 6.02, + 6.02 + ], + "y": [ + 20.99738959797377, + 20.99738959797377, + 22.052611324034807, + 22.052611324034807, + 20.99738959797377 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.029999999999999, + 6.04, + 6.04, + 6.029999999999999, + 6.029999999999999 + ], + "y": [ + 21.007388675962964, + 21.007388675962964, + 22.06261223778888, + 22.06261223778888, + 21.007388675962964 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.04, + 6.05, + 6.05, + 6.04, + 6.04 + ], + "y": [ + 21.017387762208887, + 21.017387762208887, + 22.07261314336023, + 22.07261314336023, + 21.017387762208887 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.05, + 6.06, + 6.06, + 6.05, + 6.05 + ], + "y": [ + 21.027386856637534, + 21.027386856637534, + 22.082614040822225, + 22.082614040822225, + 21.027386856637534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.06, + 6.069999999999999, + 6.069999999999999, + 6.06, + 6.06 + ], + "y": [ + 21.037385959175534, + 21.037385959175534, + 22.092614930247617, + 22.092614930247617, + 21.037385959175534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.069999999999999, + 6.08, + 6.08, + 6.069999999999999, + 6.069999999999999 + ], + "y": [ + 21.04738506975014, + 21.04738506975014, + 22.10261581170834, + 22.10261581170834, + 21.04738506975014 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.08, + 6.09, + 6.09, + 6.08, + 6.08 + ], + "y": [ + 21.05738418828941, + 21.05738418828941, + 22.112616685275803, + 22.112616685275803, + 21.05738418828941 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.09, + 6.1, + 6.1, + 6.09, + 6.09 + ], + "y": [ + 21.067383314721944, + 21.067383314721944, + 22.122617551020756, + 22.122617551020756, + 21.067383314721944 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1, + 6.109999999999999, + 6.109999999999999, + 6.1, + 6.1 + ], + "y": [ + 21.077382448976987, + 21.077382448976987, + 22.132618409013247, + 22.132618409013247, + 21.077382448976987 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.109999999999999, + 6.12, + 6.12, + 6.109999999999999, + 6.109999999999999 + ], + "y": [ + 21.087381590984492, + 21.087381590984492, + 22.142619259322807, + 22.142619259322807, + 21.087381590984492 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.12, + 6.13, + 6.13, + 6.12, + 6.12 + ], + "y": [ + 21.09738074067493, + 21.09738074067493, + 22.152620102018233, + 22.152620102018233, + 21.09738074067493 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.13, + 6.14, + 6.14, + 6.13, + 6.13 + ], + "y": [ + 21.1073798979795, + 21.1073798979795, + 22.162620937167805, + 22.162620937167805, + 21.1073798979795 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.14, + 6.1499999999999995, + 6.1499999999999995, + 6.14, + 6.14 + ], + "y": [ + 21.117379062829922, + 21.117379062829922, + 22.17262176483919, + 22.17262176483919, + 21.117379062829922 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1499999999999995, + 6.16, + 6.16, + 6.1499999999999995, + 6.1499999999999995 + ], + "y": [ + 21.127378235158535, + 21.127378235158535, + 22.182622585099363, + 22.182622585099363, + 21.127378235158535 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.16, + 6.17, + 6.17, + 6.16, + 6.16 + ], + "y": [ + 21.137377414898356, + 21.137377414898356, + 22.192623398014756, + 22.192623398014756, + 21.137377414898356 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.17, + 6.18, + 6.18, + 6.17, + 6.17 + ], + "y": [ + 21.14737660198296, + 21.14737660198296, + 22.20262420365116, + 22.20262420365116, + 21.14737660198296 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.18, + 6.1899999999999995, + 6.1899999999999995, + 6.18, + 6.18 + ], + "y": [ + 21.157375796346553, + 21.157375796346553, + 22.21262500207379, + 22.21262500207379, + 21.157375796346553 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1899999999999995, + 6.2, + 6.2, + 6.1899999999999995, + 6.1899999999999995 + ], + "y": [ + 21.16737499792392, + 21.16737499792392, + 22.222625793347294, + 22.222625793347294, + 21.16737499792392 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2, + 6.21, + 6.21, + 6.2, + 6.2 + ], + "y": [ + 21.17737420665041, + 21.17737420665041, + 22.232626577535765, + 22.232626577535765, + 21.17737420665041 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.21, + 6.22, + 6.22, + 6.21, + 6.21 + ], + "y": [ + 21.187373422461935, + 21.187373422461935, + 22.24262735470272, + 22.24262735470272, + 21.187373422461935 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.22, + 6.2299999999999995, + 6.2299999999999995, + 6.22, + 6.22 + ], + "y": [ + 21.197372645294976, + 21.197372645294976, + 22.252628124911006, + 22.252628124911006, + 21.197372645294976 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2299999999999995, + 6.24, + 6.24, + 6.2299999999999995, + 6.2299999999999995 + ], + "y": [ + 21.207371875086686, + 21.207371875086686, + 22.262628888223013, + 22.262628888223013, + 21.207371875086686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.24, + 6.25, + 6.25, + 6.24, + 6.24 + ], + "y": [ + 21.217371111774675, + 21.217371111774675, + 22.27262964470056, + 22.27262964470056, + 21.217371111774675 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.25, + 6.26, + 6.26, + 6.25, + 6.25 + ], + "y": [ + 21.227370355297122, + 21.227370355297122, + 22.282630394404897, + 22.282630394404897, + 21.227370355297122 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.26, + 6.27, + 6.27, + 6.26, + 6.26 + ], + "y": [ + 21.237369605592782, + 21.237369605592782, + 22.292631137396672, + 22.292631137396672, + 21.237369605592782 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.27, + 6.279999999999999, + 6.279999999999999, + 6.27, + 6.27 + ], + "y": [ + 21.247368862601004, + 21.247368862601004, + 22.302631873736082, + 22.302631873736082, + 21.247368862601004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.279999999999999, + 6.29, + 6.29, + 6.279999999999999, + 6.279999999999999 + ], + "y": [ + 21.25736812626159, + 21.25736812626159, + 22.312632603482722, + 22.312632603482722, + 21.25736812626159 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.29, + 6.3, + 6.3, + 6.29, + 6.29 + ], + "y": [ + 21.267367396514945, + 21.267367396514945, + 22.32263332669568, + 22.32263332669568, + 21.267367396514945 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3, + 6.31, + 6.31, + 6.3, + 6.3 + ], + "y": [ + 21.277366673301984, + 21.277366673301984, + 22.332634043433497, + 22.332634043433497, + 21.277366673301984 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.31, + 6.319999999999999, + 6.319999999999999, + 6.31, + 6.31 + ], + "y": [ + 21.287365956564162, + 21.287365956564162, + 22.342634753754147, + 22.342634753754147, + 21.287365956564162 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.319999999999999, + 6.33, + 6.33, + 6.319999999999999, + 6.319999999999999 + ], + "y": [ + 21.29736524624351, + 21.29736524624351, + 22.3526354577152, + 22.3526354577152, + 21.29736524624351 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.33, + 6.34, + 6.34, + 6.33, + 6.33 + ], + "y": [ + 21.307364542282453, + 21.307364542282453, + 22.362636155373593, + 22.362636155373593, + 21.307364542282453 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.34, + 6.35, + 6.35, + 6.34, + 6.34 + ], + "y": [ + 21.317363844624055, + 21.317363844624055, + 22.372636846785852, + 22.372636846785852, + 21.317363844624055 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.35, + 6.359999999999999, + 6.359999999999999, + 6.35, + 6.35 + ], + "y": [ + 21.32736315321179, + 21.32736315321179, + 22.382637532007884, + 22.382637532007884, + 21.32736315321179 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.359999999999999, + 6.37, + 6.37, + 6.359999999999999, + 6.359999999999999 + ], + "y": [ + 21.337362467989756, + 21.337362467989756, + 22.392638211095193, + 22.392638211095193, + 21.337362467989756 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.37, + 6.38, + 6.38, + 6.37, + 6.37 + ], + "y": [ + 21.347361788902443, + 21.347361788902443, + 22.40263888410272, + 22.40263888410272, + 21.347361788902443 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.38, + 6.39, + 6.39, + 6.38, + 6.38 + ], + "y": [ + 21.35736111589491, + 21.35736111589491, + 22.412639551085, + 22.412639551085, + 21.35736111589491 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.39, + 6.3999999999999995, + 6.3999999999999995, + 6.39, + 6.39 + ], + "y": [ + 21.367360448912628, + 21.367360448912628, + 22.422640212095978, + 22.422640212095978, + 21.367360448912628 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3999999999999995, + 6.41, + 6.41, + 6.3999999999999995, + 6.3999999999999995 + ], + "y": [ + 21.377359787901646, + 21.377359787901646, + 22.432640867189157, + 22.432640867189157, + 21.377359787901646 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.41, + 6.42, + 6.42, + 6.41, + 6.41 + ], + "y": [ + 21.387359132808463, + 21.387359132808463, + 22.442641516417577, + 22.442641516417577, + 21.387359132808463 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.42, + 6.43, + 6.43, + 6.42, + 6.42 + ], + "y": [ + 21.39735848358004, + 21.39735848358004, + 22.452642159833786, + 22.452642159833786, + 21.39735848358004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.43, + 6.4399999999999995, + 6.4399999999999995, + 6.43, + 6.43 + ], + "y": [ + 21.407357840163826, + 21.407357840163826, + 22.46264279748981, + 22.46264279748981, + 21.407357840163826 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4399999999999995, + 6.45, + 6.45, + 6.4399999999999995, + 6.4399999999999995 + ], + "y": [ + 21.417357202507798, + 21.417357202507798, + 22.47264342943733, + 22.47264342943733, + 21.417357202507798 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.45, + 6.46, + 6.46, + 6.45, + 6.45 + ], + "y": [ + 21.427356570560274, + 21.427356570560274, + 22.48264405572748, + 22.48264405572748, + 21.427356570560274 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.46, + 6.47, + 6.47, + 6.46, + 6.46 + ], + "y": [ + 21.43735594427012, + 21.43735594427012, + 22.49264467641091, + 22.49264467641091, + 21.43735594427012 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.47, + 6.4799999999999995, + 6.4799999999999995, + 6.47, + 6.47 + ], + "y": [ + 21.447355323586685, + 21.447355323586685, + 22.502645291537906, + 22.502645291537906, + 21.447355323586685 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4799999999999995, + 6.49, + 6.49, + 6.4799999999999995, + 6.4799999999999995 + ], + "y": [ + 21.457354708459686, + 21.457354708459686, + 22.512645901158187, + 22.512645901158187, + 21.457354708459686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.49, + 6.5, + 6.5, + 6.49, + 6.49 + ], + "y": [ + 21.4673540988394, + 21.4673540988394, + 22.522646505321145, + 22.522646505321145, + 21.4673540988394 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5, + 6.51, + 6.51, + 6.5, + 6.5 + ], + "y": [ + 21.47735349467644, + 21.47735349467644, + 22.532647104075668, + 22.532647104075668, + 21.47735349467644 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.51, + 6.52, + 6.52, + 6.51, + 6.51 + ], + "y": [ + 21.487352895921912, + 21.487352895921912, + 22.542647697470144, + 22.542647697470144, + 21.487352895921912 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.52, + 6.529999999999999, + 6.529999999999999, + 6.52, + 6.52 + ], + "y": [ + 21.497352302527432, + 21.497352302527432, + 22.552648285552706, + 22.552648285552706, + 21.497352302527432 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.529999999999999, + 6.54, + 6.54, + 6.529999999999999, + 6.529999999999999 + ], + "y": [ + 21.507351714444866, + 21.507351714444866, + 22.56264886837087, + 22.56264886837087, + 21.507351714444866 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.54, + 6.55, + 6.55, + 6.54, + 6.54 + ], + "y": [ + 21.517351131626697, + 21.517351131626697, + 22.57264944597181, + 22.57264944597181, + 21.517351131626697 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.55, + 6.56, + 6.56, + 6.55, + 6.55 + ], + "y": [ + 21.527350554025755, + 21.527350554025755, + 22.582650018402283, + 22.582650018402283, + 21.527350554025755 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.56, + 6.569999999999999, + 6.569999999999999, + 6.56, + 6.56 + ], + "y": [ + 21.537349981595277, + 21.537349981595277, + 22.592650585708608, + 22.592650585708608, + 21.537349981595277 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.569999999999999, + 6.58, + 6.58, + 6.569999999999999, + 6.569999999999999 + ], + "y": [ + 21.54734941428895, + 21.54734941428895, + 22.602651147936744, + 22.602651147936744, + 21.54734941428895 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.58, + 6.59, + 6.59, + 6.58, + 6.58 + ], + "y": [ + 21.55734885206081, + 21.55734885206081, + 22.612651705132095, + 22.612651705132095, + 21.55734885206081 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.59, + 6.6, + 6.6, + 6.59, + 6.59 + ], + "y": [ + 21.567348294865454, + 21.567348294865454, + 22.622652257339865, + 22.622652257339865, + 21.567348294865454 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6, + 6.609999999999999, + 6.609999999999999, + 6.6, + 6.6 + ], + "y": [ + 21.57734774265768, + 21.57734774265768, + 22.63265280460468, + 22.63265280460468, + 21.57734774265768 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.609999999999999, + 6.62, + 6.62, + 6.609999999999999, + 6.609999999999999 + ], + "y": [ + 21.58734719539286, + 21.58734719539286, + 22.642653346970814, + 22.642653346970814, + 21.58734719539286 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.62, + 6.63, + 6.63, + 6.62, + 6.62 + ], + "y": [ + 21.597346653026722, + 21.597346653026722, + 22.65265388448209, + 22.65265388448209, + 21.597346653026722 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.63, + 6.64, + 6.64, + 6.63, + 6.63 + ], + "y": [ + 21.607346115515444, + 21.607346115515444, + 22.66265441718206, + 22.66265441718206, + 21.607346115515444 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.64, + 6.6499999999999995, + 6.6499999999999995, + 6.64, + 6.64 + ], + "y": [ + 21.617345582815467, + 21.617345582815467, + 22.672654945113845, + 22.672654945113845, + 21.617345582815467 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6499999999999995, + 6.66, + 6.66, + 6.6499999999999995, + 6.6499999999999995 + ], + "y": [ + 21.62734505488368, + 21.62734505488368, + 22.68265546832016, + 22.68265546832016, + 21.62734505488368 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.66, + 6.67, + 6.67, + 6.66, + 6.66 + ], + "y": [ + 21.63734453167736, + 21.63734453167736, + 22.6926559868433, + 22.6926559868433, + 21.63734453167736 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.67, + 6.68, + 6.68, + 6.67, + 6.67 + ], + "y": [ + 21.647344013154218, + 21.647344013154218, + 22.70265650072523, + 22.70265650072523, + 21.647344013154218 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.68, + 6.6899999999999995, + 6.6899999999999995, + 6.68, + 6.68 + ], + "y": [ + 21.657343499272283, + 21.657343499272283, + 22.712657010007497, + 22.712657010007497, + 21.657343499272283 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6899999999999995, + 6.7, + 6.7, + 6.6899999999999995, + 6.6899999999999995 + ], + "y": [ + 21.66734298999001, + 21.66734298999001, + 22.722657514731356, + 22.722657514731356, + 21.66734298999001 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7, + 6.71, + 6.71, + 6.7, + 6.7 + ], + "y": [ + 21.67734248526615, + 21.67734248526615, + 22.732658014937627, + 22.732658014937627, + 21.67734248526615 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.71, + 6.72, + 6.72, + 6.71, + 6.71 + ], + "y": [ + 21.687341985059874, + 21.687341985059874, + 22.742658510666814, + 22.742658510666814, + 21.687341985059874 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.72, + 6.7299999999999995, + 6.7299999999999995, + 6.72, + 6.72 + ], + "y": [ + 21.697341489330682, + 21.697341489330682, + 22.75265900195903, + 22.75265900195903, + 21.697341489330682 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7299999999999995, + 6.74, + 6.74, + 6.7299999999999995, + 6.7299999999999995 + ], + "y": [ + 21.70734099803846, + 21.70734099803846, + 22.76265948885396, + 22.76265948885396, + 21.70734099803846 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.74, + 6.75, + 6.75, + 6.74, + 6.74 + ], + "y": [ + 21.71734051114353, + 21.71734051114353, + 22.772659971391015, + 22.772659971391015, + 21.71734051114353 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.75, + 6.76, + 6.76, + 6.75, + 6.75 + ], + "y": [ + 21.72734002860647, + 21.72734002860647, + 22.782660449609168, + 22.782660449609168, + 21.72734002860647 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.76, + 6.77, + 6.77, + 6.76, + 6.76 + ], + "y": [ + 21.737339550388313, + 21.737339550388313, + 22.792660923547256, + 22.792660923547256, + 21.737339550388313 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.77, + 6.779999999999999, + 6.779999999999999, + 6.77, + 6.77 + ], + "y": [ + 21.74733907645022, + 21.74733907645022, + 22.80266139324354, + 22.80266139324354, + 21.74733907645022 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.779999999999999, + 6.79, + 6.79, + 6.779999999999999, + 6.779999999999999 + ], + "y": [ + 21.757338606753933, + 21.757338606753933, + 22.812661858736064, + 22.812661858736064, + 21.757338606753933 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.79, + 6.8, + 6.8, + 6.79, + 6.79 + ], + "y": [ + 21.767338141261405, + 21.767338141261405, + 22.822662320062364, + 22.822662320062364, + 21.767338141261405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8, + 6.81, + 6.81, + 6.8, + 6.8 + ], + "y": [ + 21.7773376799351, + 21.7773376799351, + 22.832662777259838, + 22.832662777259838, + 21.7773376799351 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.81, + 6.819999999999999, + 6.819999999999999, + 6.81, + 6.81 + ], + "y": [ + 21.787337222737623, + 21.787337222737623, + 22.842663230365492, + 22.842663230365492, + 21.787337222737623 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.819999999999999, + 6.83, + 6.83, + 6.819999999999999, + 6.819999999999999 + ], + "y": [ + 21.797336769631965, + 21.797336769631965, + 22.852663679415937, + 22.852663679415937, + 21.797336769631965 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.83, + 6.84, + 6.84, + 6.83, + 6.83 + ], + "y": [ + 21.807336320581516, + 21.807336320581516, + 22.862664124447512, + 22.862664124447512, + 21.807336320581516 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.84, + 6.85, + 6.85, + 6.84, + 6.84 + ], + "y": [ + 21.817335875549936, + 21.817335875549936, + 22.872664565496237, + 22.872664565496237, + 21.817335875549936 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.85, + 6.859999999999999, + 6.859999999999999, + 6.85, + 6.85 + ], + "y": [ + 21.827335434501208, + 21.827335434501208, + 22.882665002597744, + 22.882665002597744, + 21.827335434501208 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.859999999999999, + 6.87, + 6.87, + 6.859999999999999, + 6.859999999999999 + ], + "y": [ + 21.837334997399697, + 21.837334997399697, + 22.892665435787407, + 22.892665435787407, + 21.837334997399697 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.87, + 6.88, + 6.88, + 6.87, + 6.87 + ], + "y": [ + 21.84733456421003, + 21.84733456421003, + 22.902665865100253, + 22.902665865100253, + 21.84733456421003 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.88, + 6.89, + 6.89, + 6.88, + 6.88 + ], + "y": [ + 21.85733413489718, + 21.85733413489718, + 22.91266629057103, + 22.91266629057103, + 21.85733413489718 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.89, + 6.8999999999999995, + 6.8999999999999995, + 6.89, + 6.89 + ], + "y": [ + 21.8673337094264, + 21.8673337094264, + 22.92266671223411, + 22.92266671223411, + 21.8673337094264 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8999999999999995, + 6.91, + 6.91, + 6.8999999999999995, + 6.8999999999999995 + ], + "y": [ + 21.877333287763314, + 21.877333287763314, + 22.93266713012362, + 22.93266713012362, + 21.877333287763314 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.91, + 6.92, + 6.92, + 6.91, + 6.91 + ], + "y": [ + 21.887332869873802, + 21.887332869873802, + 22.9426675442734, + 22.9426675442734, + 21.887332869873802 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.92, + 6.93, + 6.93, + 6.92, + 6.92 + ], + "y": [ + 21.897332455724015, + 21.897332455724015, + 22.95266795471685, + 22.95266795471685, + 21.897332455724015 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.93, + 6.9399999999999995, + 6.9399999999999995, + 6.93, + 6.93 + ], + "y": [ + 21.90733204528056, + 21.90733204528056, + 22.962668361487296, + 22.962668361487296, + 21.90733204528056 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9399999999999995, + 6.95, + 6.95, + 6.9399999999999995, + 6.9399999999999995 + ], + "y": [ + 21.917331638510113, + 21.917331638510113, + 22.972668764617577, + 22.972668764617577, + 21.917331638510113 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.95, + 6.96, + 6.96, + 6.95, + 6.95 + ], + "y": [ + 21.927331235379828, + 21.927331235379828, + 22.982669164140333, + 22.982669164140333, + 21.927331235379828 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.96, + 6.97, + 6.97, + 6.96, + 6.96 + ], + "y": [ + 21.937330835857068, + 21.937330835857068, + 22.99266956008778, + 22.99266956008778, + 21.937330835857068 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.97, + 6.9799999999999995, + 6.9799999999999995, + 6.97, + 6.97 + ], + "y": [ + 21.947330439909617, + 21.947330439909617, + 23.00266995249203, + 23.00266995249203, + 21.947330439909617 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9799999999999995, + 6.99, + 6.99, + 6.9799999999999995, + 6.9799999999999995 + ], + "y": [ + 21.957330047505362, + 21.957330047505362, + 23.012670341384734, + 23.012670341384734, + 21.957330047505362 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.99, + 7, + 7, + 6.99, + 6.99 + ], + "y": [ + 21.967329658612655, + 21.967329658612655, + 23.022670726797394, + 23.022670726797394, + 21.967329658612655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7, + 7.01, + 7.01, + 7, + 7 + ], + "y": [ + 21.97732927319999, + 21.97732927319999, + 23.0326711087612, + 23.0326711087612, + 21.97732927319999 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.01, + 7.02, + 7.02, + 7.01, + 7.01 + ], + "y": [ + 21.98732889123618, + 21.98732889123618, + 23.042671487306983, + 23.042671487306983, + 21.98732889123618 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.02, + 7.029999999999999, + 7.029999999999999, + 7.02, + 7.02 + ], + "y": [ + 21.997328512690395, + 21.997328512690395, + 23.052671862465402, + 23.052671862465402, + 21.997328512690395 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.029999999999999, + 7.04, + 7.04, + 7.029999999999999, + 7.029999999999999 + ], + "y": [ + 22.00732813753197, + 22.00732813753197, + 23.06267223426673, + 23.06267223426673, + 22.00732813753197 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.04, + 7.05, + 7.05, + 7.04, + 7.04 + ], + "y": [ + 22.017327765730638, + 22.017327765730638, + 23.07267260274114, + 23.07267260274114, + 22.017327765730638 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.05, + 7.06, + 7.06, + 7.05, + 7.05 + ], + "y": [ + 22.027327397256226, + 22.027327397256226, + 23.082672967918374, + 23.082672967918374, + 22.027327397256226 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.06, + 7.069999999999999, + 7.069999999999999, + 7.06, + 7.06 + ], + "y": [ + 22.037327032078988, + 22.037327032078988, + 23.09267332982794, + 23.09267332982794, + 22.037327032078988 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.069999999999999, + 7.08, + 7.08, + 7.069999999999999, + 7.069999999999999 + ], + "y": [ + 22.04732667016942, + 22.04732667016942, + 23.10267368849911, + 23.10267368849911, + 22.04732667016942 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.08, + 7.09, + 7.09, + 7.08, + 7.08 + ], + "y": [ + 22.057326311498244, + 22.057326311498244, + 23.11267404396093, + 23.11267404396093, + 22.057326311498244 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.09, + 7.1, + 7.1, + 7.09, + 7.09 + ], + "y": [ + 22.06732595603642, + 22.06732595603642, + 23.12267439624201, + 23.12267439624201, + 22.06732595603642 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1, + 7.109999999999999, + 7.109999999999999, + 7.1, + 7.1 + ], + "y": [ + 22.077325603755334, + 22.077325603755334, + 23.132674745370988, + 23.132674745370988, + 22.077325603755334 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.109999999999999, + 7.12, + 7.12, + 7.109999999999999, + 7.109999999999999 + ], + "y": [ + 22.087325254626354, + 22.087325254626354, + 23.142675091376002, + 23.142675091376002, + 22.087325254626354 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.12, + 7.13, + 7.13, + 7.12, + 7.12 + ], + "y": [ + 22.097324908621335, + 22.097324908621335, + 23.152675434285083, + 23.152675434285083, + 22.097324908621335 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.13, + 7.14, + 7.14, + 7.13, + 7.13 + ], + "y": [ + 22.10732456571225, + 22.10732456571225, + 23.162675774125933, + 23.162675774125933, + 22.10732456571225 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.14, + 7.1499999999999995, + 7.1499999999999995, + 7.14, + 7.14 + ], + "y": [ + 22.117324225871396, + 22.117324225871396, + 23.172676110926055, + 23.172676110926055, + 22.117324225871396 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1499999999999995, + 7.16, + 7.16, + 7.1499999999999995, + 7.1499999999999995 + ], + "y": [ + 22.12732388907127, + 22.12732388907127, + 23.182676444712598, + 23.182676444712598, + 22.12732388907127 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.16, + 7.17, + 7.17, + 7.16, + 7.16 + ], + "y": [ + 22.137323555284723, + 22.137323555284723, + 23.192676775512663, + 23.192676775512663, + 22.137323555284723 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.17, + 7.18, + 7.18, + 7.17, + 7.17 + ], + "y": [ + 22.147323224484655, + 22.147323224484655, + 23.202677103352897, + 23.202677103352897, + 22.147323224484655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.18, + 7.1899999999999995, + 7.1899999999999995, + 7.18, + 7.18 + ], + "y": [ + 22.157322896644416, + 22.157322896644416, + 23.212677428259852, + 23.212677428259852, + 22.157322896644416 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1899999999999995, + 7.2, + 7.2, + 7.1899999999999995, + 7.1899999999999995 + ], + "y": [ + 22.167322571737458, + 22.167322571737458, + 23.22267775025977, + 23.22267775025977, + 22.167322571737458 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2, + 7.21, + 7.21, + 7.2, + 7.2 + ], + "y": [ + 22.177322249737536, + 22.177322249737536, + 23.232678069378757, + 23.232678069378757, + 22.177322249737536 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.21, + 7.22, + 7.22, + 7.21, + 7.21 + ], + "y": [ + 22.187321930618545, + 22.187321930618545, + 23.24267838564255, + 23.24267838564255, + 22.187321930618545 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.22, + 7.2299999999999995, + 7.2299999999999995, + 7.22, + 7.22 + ], + "y": [ + 22.19732161435475, + 22.19732161435475, + 23.252678699076686, + 23.252678699076686, + 22.19732161435475 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2299999999999995, + 7.24, + 7.24, + 7.2299999999999995, + 7.2299999999999995 + ], + "y": [ + 22.207321300920608, + 22.207321300920608, + 23.262679009706503, + 23.262679009706503, + 22.207321300920608 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.24, + 7.25, + 7.25, + 7.24, + 7.24 + ], + "y": [ + 22.217320990290787, + 22.217320990290787, + 23.27267931755721, + 23.27267931755721, + 22.217320990290787 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.25, + 7.26, + 7.26, + 7.25, + 7.25 + ], + "y": [ + 22.227320682440077, + 22.227320682440077, + 23.282679622653596, + 23.282679622653596, + 22.227320682440077 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.26, + 7.27, + 7.27, + 7.26, + 7.26 + ], + "y": [ + 22.237320377343686, + 22.237320377343686, + 23.292679925020373, + 23.292679925020373, + 22.237320377343686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.27, + 7.279999999999999, + 7.279999999999999, + 7.27, + 7.27 + ], + "y": [ + 22.247320074976905, + 22.247320074976905, + 23.302680224681943, + 23.302680224681943, + 22.247320074976905 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.279999999999999, + 7.29, + 7.29, + 7.279999999999999, + 7.279999999999999 + ], + "y": [ + 22.25731977531533, + 22.25731977531533, + 23.312680521662546, + 23.312680521662546, + 22.25731977531533 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.29, + 7.3, + 7.3, + 7.29, + 7.29 + ], + "y": [ + 22.267319478334723, + 22.267319478334723, + 23.322680815986182, + 23.322680815986182, + 22.267319478334723 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3, + 7.31, + 7.31, + 7.3, + 7.3 + ], + "y": [ + 22.277319184011084, + 22.277319184011084, + 23.332681107676645, + 23.332681107676645, + 22.277319184011084 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.31, + 7.319999999999999, + 7.319999999999999, + 7.31, + 7.31 + ], + "y": [ + 22.287318892320616, + 22.287318892320616, + 23.342681396757516, + 23.342681396757516, + 22.287318892320616 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.319999999999999, + 7.33, + 7.33, + 7.319999999999999, + 7.319999999999999 + ], + "y": [ + 22.29731860323974, + 22.29731860323974, + 23.3526816832522, + 23.3526816832522, + 22.29731860323974 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.33, + 7.34, + 7.34, + 7.33, + 7.33 + ], + "y": [ + 22.307318316745054, + 22.307318316745054, + 23.362681967183853, + 23.362681967183853, + 22.307318316745054 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.34, + 7.35, + 7.35, + 7.34, + 7.34 + ], + "y": [ + 22.317318032813397, + 22.317318032813397, + 23.372682248575376, + 23.372682248575376, + 22.317318032813397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.35, + 7.359999999999999, + 7.359999999999999, + 7.35, + 7.35 + ], + "y": [ + 22.32731775142187, + 22.32731775142187, + 23.382682527449518, + 23.382682527449518, + 22.32731775142187 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.359999999999999, + 7.37, + 7.37, + 7.359999999999999, + 7.359999999999999 + ], + "y": [ + 22.337317472547724, + 22.337317472547724, + 23.392682803828794, + 23.392682803828794, + 22.337317472547724 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.37, + 7.38, + 7.38, + 7.37, + 7.37 + ], + "y": [ + 22.347317196168444, + 22.347317196168444, + 23.402683077735613, + 23.402683077735613, + 22.347317196168444 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.38, + 7.39, + 7.39, + 7.38, + 7.38 + ], + "y": [ + 22.35731692226162, + 22.35731692226162, + 23.41268334919209, + 23.41268334919209, + 22.35731692226162 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.39, + 7.3999999999999995, + 7.3999999999999995, + 7.39, + 7.39 + ], + "y": [ + 22.36731665080514, + 22.36731665080514, + 23.422683618220116, + 23.422683618220116, + 22.36731665080514 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3999999999999995, + 7.41, + 7.41, + 7.3999999999999995, + 7.3999999999999995 + ], + "y": [ + 22.37731638177711, + 22.37731638177711, + 23.432683884841467, + 23.432683884841467, + 22.37731638177711 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.41, + 7.42, + 7.42, + 7.41, + 7.41 + ], + "y": [ + 22.387316115155755, + 22.387316115155755, + 23.44268414907773, + 23.44268414907773, + 22.387316115155755 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.42, + 7.43, + 7.43, + 7.42, + 7.42 + ], + "y": [ + 22.397315850919487, + 22.397315850919487, + 23.452684410950184, + 23.452684410950184, + 22.397315850919487 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.43, + 7.4399999999999995, + 7.4399999999999995, + 7.43, + 7.43 + ], + "y": [ + 22.40731558904703, + 22.40731558904703, + 23.46268467048004, + 23.46268467048004, + 22.40731558904703 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4399999999999995, + 7.45, + 7.45, + 7.4399999999999995, + 7.4399999999999995 + ], + "y": [ + 22.41731532951717, + 22.41731532951717, + 23.472684927688295, + 23.472684927688295, + 22.41731532951717 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.45, + 7.46, + 7.46, + 7.45, + 7.45 + ], + "y": [ + 22.42731507230891, + 22.42731507230891, + 23.482685182595645, + 23.482685182595645, + 22.42731507230891 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.46, + 7.47, + 7.47, + 7.46, + 7.46 + ], + "y": [ + 22.437314817401557, + 22.437314817401557, + 23.492685435222747, + 23.492685435222747, + 22.437314817401557 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.47, + 7.4799999999999995, + 7.4799999999999995, + 7.47, + 7.47 + ], + "y": [ + 22.44731456477445, + 22.44731456477445, + 23.502685685590084, + 23.502685685590084, + 22.44731456477445 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4799999999999995, + 7.49, + 7.49, + 7.4799999999999995, + 7.4799999999999995 + ], + "y": [ + 22.45731431440711, + 22.45731431440711, + 23.51268593371777, + 23.51268593371777, + 22.45731431440711 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.49, + 7.5, + 7.5, + 7.49, + 7.49 + ], + "y": [ + 22.46731406627942, + 22.46731406627942, + 23.522686179625936, + 23.522686179625936, + 22.46731406627942 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5, + 7.51, + 7.51, + 7.5, + 7.5 + ], + "y": [ + 22.47731382037125, + 22.47731382037125, + 23.532686423334393, + 23.532686423334393, + 22.47731382037125 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.51, + 7.52, + 7.52, + 7.51, + 7.51 + ], + "y": [ + 22.48731357666279, + 22.48731357666279, + 23.54268666486289, + 23.54268666486289, + 22.48731357666279 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.52, + 7.529999999999999, + 7.529999999999999, + 7.52, + 7.52 + ], + "y": [ + 22.497313335134287, + 22.497313335134287, + 23.55268690423088, + 23.55268690423088, + 22.497313335134287 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.529999999999999, + 7.54, + 7.54, + 7.529999999999999, + 7.529999999999999 + ], + "y": [ + 22.507313095766293, + 22.507313095766293, + 23.562687141457722, + 23.562687141457722, + 22.507313095766293 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.54, + 7.55, + 7.55, + 7.54, + 7.54 + ], + "y": [ + 22.517312858539448, + 22.517312858539448, + 23.57268737656258, + 23.57268737656258, + 22.517312858539448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.55, + 7.56, + 7.56, + 7.55, + 7.55 + ], + "y": [ + 22.527312623434586, + 22.527312623434586, + 23.582687609564516, + 23.582687609564516, + 22.527312623434586 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.56, + 7.569999999999999, + 7.569999999999999, + 7.56, + 7.56 + ], + "y": [ + 22.537312390432646, + 22.537312390432646, + 23.592687840482267, + 23.592687840482267, + 22.537312390432646 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.569999999999999, + 7.58, + 7.58, + 7.569999999999999, + 7.569999999999999 + ], + "y": [ + 22.54731215951489, + 22.54731215951489, + 23.602688069334572, + 23.602688069334572, + 22.54731215951489 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.58, + 7.59, + 7.59, + 7.58, + 7.58 + ], + "y": [ + 22.557311930662582, + 22.557311930662582, + 23.612688296139886, + 23.612688296139886, + 22.557311930662582 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.59, + 7.6, + 7.6, + 7.59, + 7.59 + ], + "y": [ + 22.567311703857264, + 22.567311703857264, + 23.622688520916522, + 23.622688520916522, + 22.567311703857264 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6, + 7.609999999999999, + 7.609999999999999, + 7.6, + 7.6 + ], + "y": [ + 22.577311479080624, + 22.577311479080624, + 23.63268874368269, + 23.63268874368269, + 22.577311479080624 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.609999999999999, + 7.62, + 7.62, + 7.609999999999999, + 7.609999999999999 + ], + "y": [ + 22.587311256314454, + 22.587311256314454, + 23.64268896445634, + 23.64268896445634, + 22.587311256314454 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.62, + 7.63, + 7.63, + 7.62, + 7.62 + ], + "y": [ + 22.5973110355408, + 22.5973110355408, + 23.65268918325534, + 23.65268918325534, + 22.5973110355408 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.63, + 7.64, + 7.64, + 7.63, + 7.63 + ], + "y": [ + 22.607310816741794, + 22.607310816741794, + 23.662689400097296, + 23.662689400097296, + 22.607310816741794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.64, + 7.6499999999999995, + 7.6499999999999995, + 7.64, + 7.64 + ], + "y": [ + 22.617310599899835, + 22.617310599899835, + 23.672689614999793, + 23.672689614999793, + 22.617310599899835 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6499999999999995, + 7.66, + 7.66, + 7.6499999999999995, + 7.6499999999999995 + ], + "y": [ + 22.627310384997333, + 22.627310384997333, + 23.68268982798015, + 23.68268982798015, + 22.627310384997333 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.66, + 7.67, + 7.67, + 7.66, + 7.66 + ], + "y": [ + 22.637310172016974, + 22.637310172016974, + 23.692690039055666, + 23.692690039055666, + 22.637310172016974 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.67, + 7.68, + 7.68, + 7.67, + 7.67 + ], + "y": [ + 22.647309960941453, + 22.647309960941453, + 23.702690248243282, + 23.702690248243282, + 22.647309960941453 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.68, + 7.6899999999999995, + 7.6899999999999995, + 7.68, + 7.68 + ], + "y": [ + 22.657309751753832, + 22.657309751753832, + 23.712690455559958, + 23.712690455559958, + 22.657309751753832 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6899999999999995, + 7.7, + 7.7, + 7.6899999999999995, + 7.6899999999999995 + ], + "y": [ + 22.667309544437153, + 22.667309544437153, + 23.722690661022423, + 23.722690661022423, + 22.667309544437153 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7, + 7.71, + 7.71, + 7.7, + 7.7 + ], + "y": [ + 22.677309338974684, + 22.677309338974684, + 23.73269086464725, + 23.73269086464725, + 22.677309338974684 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.71, + 7.72, + 7.72, + 7.71, + 7.71 + ], + "y": [ + 22.687309135349853, + 22.687309135349853, + 23.742691066450956, + 23.742691066450956, + 22.687309135349853 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.72, + 7.7299999999999995, + 7.7299999999999995, + 7.72, + 7.72 + ], + "y": [ + 22.697308933546143, + 22.697308933546143, + 23.752691266449784, + 23.752691266449784, + 22.697308933546143 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7299999999999995, + 7.74, + 7.74, + 7.7299999999999995, + 7.7299999999999995 + ], + "y": [ + 22.70730873354731, + 22.70730873354731, + 23.762691464659905, + 23.762691464659905, + 22.70730873354731 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.74, + 7.75, + 7.75, + 7.74, + 7.74 + ], + "y": [ + 22.717308535337185, + 22.717308535337185, + 23.772691661097305, + 23.772691661097305, + 22.717308535337185 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.75, + 7.76, + 7.76, + 7.75, + 7.75 + ], + "y": [ + 22.727308338899782, + 22.727308338899782, + 23.78269185577789, + 23.78269185577789, + 22.727308338899782 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.76, + 7.77, + 7.77, + 7.76, + 7.76 + ], + "y": [ + 22.73730814421919, + 22.73730814421919, + 23.792692048717342, + 23.792692048717342, + 22.73730814421919 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.77, + 7.779999999999999, + 7.779999999999999, + 7.77, + 7.77 + ], + "y": [ + 22.747307951279737, + 22.747307951279737, + 23.802692239931325, + 23.802692239931325, + 22.747307951279737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.779999999999999, + 7.79, + 7.79, + 7.779999999999999, + 7.779999999999999 + ], + "y": [ + 22.75730776006575, + 22.75730776006575, + 23.81269242943517, + 23.81269242943517, + 22.75730776006575 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.79, + 7.8, + 7.8, + 7.79, + 7.79 + ], + "y": [ + 22.7673075705619, + 22.7673075705619, + 23.822692617244265, + 23.822692617244265, + 22.7673075705619 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8, + 7.81, + 7.81, + 7.8, + 7.8 + ], + "y": [ + 22.777307382752802, + 22.777307382752802, + 23.832692803373778, + 23.832692803373778, + 22.777307382752802 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.81, + 7.819999999999999, + 7.819999999999999, + 7.81, + 7.81 + ], + "y": [ + 22.787307196623285, + 22.787307196623285, + 23.84269298783873, + 23.84269298783873, + 22.787307196623285 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.819999999999999, + 7.83, + 7.83, + 7.819999999999999, + 7.819999999999999 + ], + "y": [ + 22.797307012158328, + 22.797307012158328, + 23.852693170653996, + 23.852693170653996, + 22.797307012158328 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.83, + 7.84, + 7.84, + 7.83, + 7.83 + ], + "y": [ + 22.80730682934306, + 22.80730682934306, + 23.8626933518344, + 23.8626933518344, + 22.80730682934306 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.84, + 7.85, + 7.85, + 7.84, + 7.84 + ], + "y": [ + 22.81730664816265, + 22.81730664816265, + 23.872693531394496, + 23.872693531394496, + 22.81730664816265 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.85, + 7.859999999999999, + 7.859999999999999, + 7.85, + 7.85 + ], + "y": [ + 22.82730646860255, + 22.82730646860255, + 23.882693709348857, + 23.882693709348857, + 22.82730646860255 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.859999999999999, + 7.87, + 7.87, + 7.859999999999999, + 7.859999999999999 + ], + "y": [ + 22.837306290648186, + 22.837306290648186, + 23.892693885711843, + 23.892693885711843, + 22.837306290648186 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.87, + 7.88, + 7.88, + 7.87, + 7.87 + ], + "y": [ + 22.847306114285196, + 22.847306114285196, + 23.902694060497602, + 23.902694060497602, + 22.847306114285196 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.88, + 7.89, + 7.89, + 7.88, + 7.88 + ], + "y": [ + 22.857305939499433, + 22.857305939499433, + 23.912694233720362, + 23.912694233720362, + 22.857305939499433 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.89, + 7.8999999999999995, + 7.8999999999999995, + 7.89, + 7.89 + ], + "y": [ + 22.86730576627667, + 22.86730576627667, + 23.92269440539404, + 23.92269440539404, + 22.86730576627667 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8999999999999995, + 7.91, + 7.91, + 7.8999999999999995, + 7.8999999999999995 + ], + "y": [ + 22.877305594602987, + 22.877305594602987, + 23.932694575532544, + 23.932694575532544, + 22.877305594602987 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.91, + 7.92, + 7.92, + 7.91, + 7.91 + ], + "y": [ + 22.88730542446448, + 22.88730542446448, + 23.942694744149648, + 23.942694744149648, + 22.88730542446448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.92, + 7.93, + 7.93, + 7.92, + 7.92 + ], + "y": [ + 22.89730525584737, + 22.89730525584737, + 23.95269491125885, + 23.95269491125885, + 22.89730525584737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.93, + 7.9399999999999995, + 7.9399999999999995, + 7.93, + 7.93 + ], + "y": [ + 22.907305088738166, + 22.907305088738166, + 23.96269507687379, + 23.96269507687379, + 22.907305088738166 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9399999999999995, + 7.95, + 7.95, + 7.9399999999999995, + 7.9399999999999995 + ], + "y": [ + 22.917304923123222, + 22.917304923123222, + 23.972695241007724, + 23.972695241007724, + 22.917304923123222 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.95, + 7.96, + 7.96, + 7.95, + 7.95 + ], + "y": [ + 22.927304758989283, + 22.927304758989283, + 23.982695403673965, + 23.982695403673965, + 22.927304758989283 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.96, + 7.97, + 7.97, + 7.96, + 7.96 + ], + "y": [ + 22.937304596323038, + 22.937304596323038, + 23.992695564885626, + 23.992695564885626, + 22.937304596323038 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.97, + 7.9799999999999995, + 7.9799999999999995, + 7.97, + 7.97 + ], + "y": [ + 22.947304435111374, + 22.947304435111374, + 24.002695724655716, + 24.002695724655716, + 22.947304435111374 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9799999999999995, + 7.99, + 7.99, + 7.9799999999999995, + 7.9799999999999995 + ], + "y": [ + 22.95730427534128, + 22.95730427534128, + 24.01269588299723, + 24.01269588299723, + 22.95730427534128 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.99, + 8, + 8, + 7.99, + 7.99 + ], + "y": [ + 22.96730411699976, + 22.96730411699976, + 24.022696039922753, + 24.022696039922753, + 22.96730411699976 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8, + 8.01, + 8.01, + 8, + 8 + ], + "y": [ + 22.977303960074234, + 22.977303960074234, + 24.032696195445155, + 24.032696195445155, + 22.977303960074234 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.01, + 8.02, + 8.02, + 8.01, + 8.01 + ], + "y": [ + 22.98730380455183, + 22.98730380455183, + 24.042696349576918, + 24.042696349576918, + 22.98730380455183 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.02, + 8.03, + 8.03, + 8.02, + 8.02 + ], + "y": [ + 22.99730365042006, + 22.99730365042006, + 24.05269650233047, + 24.05269650233047, + 22.99730365042006 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.03, + 8.04, + 8.04, + 8.03, + 8.03 + ], + "y": [ + 23.007303497666506, + 23.007303497666506, + 24.062696653718152, + 24.062696653718152, + 23.007303497666506 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.04, + 8.049999999999999, + 8.049999999999999, + 8.04, + 8.04 + ], + "y": [ + 23.01730334627882, + 23.01730334627882, + 24.072696803752233, + 24.072696803752233, + 23.01730334627882 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.049999999999999, + 8.06, + 8.06, + 8.049999999999999, + 8.049999999999999 + ], + "y": [ + 23.027303196244734, + 23.027303196244734, + 24.082696952444785, + 24.082696952444785, + 23.027303196244734 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.95, + 5.96, + 5.96, + 5.95, + 5.95 + ], + "y": [ + 20.92739628959397, + 20.92739628959397, + 21.982604692340274, + 21.982604692340274, + 20.92739628959397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.96, + 5.97, + 5.97, + 5.96, + 5.96 + ], + "y": [ + 20.937395307657525, + 20.937395307657525, + 21.992605665483, + 21.992605665483, + 20.937395307657525 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.97, + 5.9799999999999995, + 5.9799999999999995, + 5.97, + 5.97 + ], + "y": [ + 20.947394334514794, + 20.947394334514794, + 22.00260662991075, + 22.00260662991075, + 20.947394334514794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.9799999999999995, + 5.99, + 5.99, + 5.9799999999999995, + 5.9799999999999995 + ], + "y": [ + 20.95739337008704, + 20.95739337008704, + 22.012607585701677, + 22.012607585701677, + 20.95739337008704 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 5.99, + 6, + 6, + 5.99, + 5.99 + ], + "y": [ + 20.96739241429611, + 20.96739241429611, + 22.022608532933173, + 22.022608532933173, + 20.96739241429611 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6, + 6.01, + 6.01, + 6, + 6 + ], + "y": [ + 20.97739146706461, + 20.97739146706461, + 22.032609471681976, + 22.032609471681976, + 20.97739146706461 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.01, + 6.02, + 6.02, + 6.01, + 6.01 + ], + "y": [ + 20.987390528315803, + 20.987390528315803, + 22.042610402024007, + 22.042610402024007, + 20.987390528315803 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.02, + 6.029999999999999, + 6.029999999999999, + 6.02, + 6.02 + ], + "y": [ + 20.99738959797377, + 20.99738959797377, + 22.052611324034807, + 22.052611324034807, + 20.99738959797377 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.029999999999999, + 6.04, + 6.04, + 6.029999999999999, + 6.029999999999999 + ], + "y": [ + 21.007388675962964, + 21.007388675962964, + 22.06261223778888, + 22.06261223778888, + 21.007388675962964 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.04, + 6.05, + 6.05, + 6.04, + 6.04 + ], + "y": [ + 21.017387762208887, + 21.017387762208887, + 22.07261314336023, + 22.07261314336023, + 21.017387762208887 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.05, + 6.06, + 6.06, + 6.05, + 6.05 + ], + "y": [ + 21.027386856637534, + 21.027386856637534, + 22.082614040822225, + 22.082614040822225, + 21.027386856637534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.06, + 6.069999999999999, + 6.069999999999999, + 6.06, + 6.06 + ], + "y": [ + 21.037385959175534, + 21.037385959175534, + 22.092614930247617, + 22.092614930247617, + 21.037385959175534 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.069999999999999, + 6.08, + 6.08, + 6.069999999999999, + 6.069999999999999 + ], + "y": [ + 21.04738506975014, + 21.04738506975014, + 22.10261581170834, + 22.10261581170834, + 21.04738506975014 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.08, + 6.09, + 6.09, + 6.08, + 6.08 + ], + "y": [ + 21.05738418828941, + 21.05738418828941, + 22.112616685275803, + 22.112616685275803, + 21.05738418828941 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.09, + 6.1, + 6.1, + 6.09, + 6.09 + ], + "y": [ + 21.067383314721944, + 21.067383314721944, + 22.122617551020756, + 22.122617551020756, + 21.067383314721944 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1, + 6.109999999999999, + 6.109999999999999, + 6.1, + 6.1 + ], + "y": [ + 21.077382448976987, + 21.077382448976987, + 22.132618409013247, + 22.132618409013247, + 21.077382448976987 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.109999999999999, + 6.12, + 6.12, + 6.109999999999999, + 6.109999999999999 + ], + "y": [ + 21.087381590984492, + 21.087381590984492, + 22.142619259322807, + 22.142619259322807, + 21.087381590984492 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.12, + 6.13, + 6.13, + 6.12, + 6.12 + ], + "y": [ + 21.09738074067493, + 21.09738074067493, + 22.152620102018233, + 22.152620102018233, + 21.09738074067493 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.13, + 6.14, + 6.14, + 6.13, + 6.13 + ], + "y": [ + 21.1073798979795, + 21.1073798979795, + 22.162620937167805, + 22.162620937167805, + 21.1073798979795 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.14, + 6.1499999999999995, + 6.1499999999999995, + 6.14, + 6.14 + ], + "y": [ + 21.117379062829922, + 21.117379062829922, + 22.17262176483919, + 22.17262176483919, + 21.117379062829922 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1499999999999995, + 6.16, + 6.16, + 6.1499999999999995, + 6.1499999999999995 + ], + "y": [ + 21.127378235158535, + 21.127378235158535, + 22.182622585099363, + 22.182622585099363, + 21.127378235158535 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.16, + 6.17, + 6.17, + 6.16, + 6.16 + ], + "y": [ + 21.137377414898356, + 21.137377414898356, + 22.192623398014756, + 22.192623398014756, + 21.137377414898356 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.17, + 6.18, + 6.18, + 6.17, + 6.17 + ], + "y": [ + 21.14737660198296, + 21.14737660198296, + 22.20262420365116, + 22.20262420365116, + 21.14737660198296 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.18, + 6.1899999999999995, + 6.1899999999999995, + 6.18, + 6.18 + ], + "y": [ + 21.157375796346553, + 21.157375796346553, + 22.21262500207379, + 22.21262500207379, + 21.157375796346553 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.1899999999999995, + 6.2, + 6.2, + 6.1899999999999995, + 6.1899999999999995 + ], + "y": [ + 21.16737499792392, + 21.16737499792392, + 22.222625793347294, + 22.222625793347294, + 21.16737499792392 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2, + 6.21, + 6.21, + 6.2, + 6.2 + ], + "y": [ + 21.17737420665041, + 21.17737420665041, + 22.232626577535765, + 22.232626577535765, + 21.17737420665041 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.21, + 6.22, + 6.22, + 6.21, + 6.21 + ], + "y": [ + 21.187373422461935, + 21.187373422461935, + 22.24262735470272, + 22.24262735470272, + 21.187373422461935 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.22, + 6.2299999999999995, + 6.2299999999999995, + 6.22, + 6.22 + ], + "y": [ + 21.197372645294976, + 21.197372645294976, + 22.252628124911006, + 22.252628124911006, + 21.197372645294976 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.2299999999999995, + 6.24, + 6.24, + 6.2299999999999995, + 6.2299999999999995 + ], + "y": [ + 21.207371875086686, + 21.207371875086686, + 22.262628888223013, + 22.262628888223013, + 21.207371875086686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.24, + 6.25, + 6.25, + 6.24, + 6.24 + ], + "y": [ + 21.217371111774675, + 21.217371111774675, + 22.27262964470056, + 22.27262964470056, + 21.217371111774675 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.25, + 6.26, + 6.26, + 6.25, + 6.25 + ], + "y": [ + 21.227370355297122, + 21.227370355297122, + 22.282630394404897, + 22.282630394404897, + 21.227370355297122 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.26, + 6.27, + 6.27, + 6.26, + 6.26 + ], + "y": [ + 21.237369605592782, + 21.237369605592782, + 22.292631137396672, + 22.292631137396672, + 21.237369605592782 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.27, + 6.279999999999999, + 6.279999999999999, + 6.27, + 6.27 + ], + "y": [ + 21.247368862601004, + 21.247368862601004, + 22.302631873736082, + 22.302631873736082, + 21.247368862601004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.279999999999999, + 6.29, + 6.29, + 6.279999999999999, + 6.279999999999999 + ], + "y": [ + 21.25736812626159, + 21.25736812626159, + 22.312632603482722, + 22.312632603482722, + 21.25736812626159 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.29, + 6.3, + 6.3, + 6.29, + 6.29 + ], + "y": [ + 21.267367396514945, + 21.267367396514945, + 22.32263332669568, + 22.32263332669568, + 21.267367396514945 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3, + 6.31, + 6.31, + 6.3, + 6.3 + ], + "y": [ + 21.277366673301984, + 21.277366673301984, + 22.332634043433497, + 22.332634043433497, + 21.277366673301984 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.31, + 6.319999999999999, + 6.319999999999999, + 6.31, + 6.31 + ], + "y": [ + 21.287365956564162, + 21.287365956564162, + 22.342634753754147, + 22.342634753754147, + 21.287365956564162 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.319999999999999, + 6.33, + 6.33, + 6.319999999999999, + 6.319999999999999 + ], + "y": [ + 21.29736524624351, + 21.29736524624351, + 22.3526354577152, + 22.3526354577152, + 21.29736524624351 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.33, + 6.34, + 6.34, + 6.33, + 6.33 + ], + "y": [ + 21.307364542282453, + 21.307364542282453, + 22.362636155373593, + 22.362636155373593, + 21.307364542282453 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.34, + 6.35, + 6.35, + 6.34, + 6.34 + ], + "y": [ + 21.317363844624055, + 21.317363844624055, + 22.372636846785852, + 22.372636846785852, + 21.317363844624055 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.35, + 6.359999999999999, + 6.359999999999999, + 6.35, + 6.35 + ], + "y": [ + 21.32736315321179, + 21.32736315321179, + 22.382637532007884, + 22.382637532007884, + 21.32736315321179 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.359999999999999, + 6.37, + 6.37, + 6.359999999999999, + 6.359999999999999 + ], + "y": [ + 21.337362467989756, + 21.337362467989756, + 22.392638211095193, + 22.392638211095193, + 21.337362467989756 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.37, + 6.38, + 6.38, + 6.37, + 6.37 + ], + "y": [ + 21.347361788902443, + 21.347361788902443, + 22.40263888410272, + 22.40263888410272, + 21.347361788902443 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.38, + 6.39, + 6.39, + 6.38, + 6.38 + ], + "y": [ + 21.35736111589491, + 21.35736111589491, + 22.412639551085, + 22.412639551085, + 21.35736111589491 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.39, + 6.3999999999999995, + 6.3999999999999995, + 6.39, + 6.39 + ], + "y": [ + 21.367360448912628, + 21.367360448912628, + 22.422640212095978, + 22.422640212095978, + 21.367360448912628 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.3999999999999995, + 6.41, + 6.41, + 6.3999999999999995, + 6.3999999999999995 + ], + "y": [ + 21.377359787901646, + 21.377359787901646, + 22.432640867189157, + 22.432640867189157, + 21.377359787901646 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.41, + 6.42, + 6.42, + 6.41, + 6.41 + ], + "y": [ + 21.387359132808463, + 21.387359132808463, + 22.442641516417577, + 22.442641516417577, + 21.387359132808463 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.42, + 6.43, + 6.43, + 6.42, + 6.42 + ], + "y": [ + 21.39735848358004, + 21.39735848358004, + 22.452642159833786, + 22.452642159833786, + 21.39735848358004 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.43, + 6.4399999999999995, + 6.4399999999999995, + 6.43, + 6.43 + ], + "y": [ + 21.407357840163826, + 21.407357840163826, + 22.46264279748981, + 22.46264279748981, + 21.407357840163826 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4399999999999995, + 6.45, + 6.45, + 6.4399999999999995, + 6.4399999999999995 + ], + "y": [ + 21.417357202507798, + 21.417357202507798, + 22.47264342943733, + 22.47264342943733, + 21.417357202507798 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.45, + 6.46, + 6.46, + 6.45, + 6.45 + ], + "y": [ + 21.427356570560274, + 21.427356570560274, + 22.48264405572748, + 22.48264405572748, + 21.427356570560274 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.46, + 6.47, + 6.47, + 6.46, + 6.46 + ], + "y": [ + 21.43735594427012, + 21.43735594427012, + 22.49264467641091, + 22.49264467641091, + 21.43735594427012 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.47, + 6.4799999999999995, + 6.4799999999999995, + 6.47, + 6.47 + ], + "y": [ + 21.447355323586685, + 21.447355323586685, + 22.502645291537906, + 22.502645291537906, + 21.447355323586685 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.4799999999999995, + 6.49, + 6.49, + 6.4799999999999995, + 6.4799999999999995 + ], + "y": [ + 21.457354708459686, + 21.457354708459686, + 22.512645901158187, + 22.512645901158187, + 21.457354708459686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.49, + 6.5, + 6.5, + 6.49, + 6.49 + ], + "y": [ + 21.4673540988394, + 21.4673540988394, + 22.522646505321145, + 22.522646505321145, + 21.4673540988394 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.5, + 6.51, + 6.51, + 6.5, + 6.5 + ], + "y": [ + 21.47735349467644, + 21.47735349467644, + 22.532647104075668, + 22.532647104075668, + 21.47735349467644 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.51, + 6.52, + 6.52, + 6.51, + 6.51 + ], + "y": [ + 21.487352895921912, + 21.487352895921912, + 22.542647697470144, + 22.542647697470144, + 21.487352895921912 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.52, + 6.529999999999999, + 6.529999999999999, + 6.52, + 6.52 + ], + "y": [ + 21.497352302527432, + 21.497352302527432, + 22.552648285552706, + 22.552648285552706, + 21.497352302527432 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.529999999999999, + 6.54, + 6.54, + 6.529999999999999, + 6.529999999999999 + ], + "y": [ + 21.507351714444866, + 21.507351714444866, + 22.56264886837087, + 22.56264886837087, + 21.507351714444866 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.54, + 6.55, + 6.55, + 6.54, + 6.54 + ], + "y": [ + 21.517351131626697, + 21.517351131626697, + 22.57264944597181, + 22.57264944597181, + 21.517351131626697 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.55, + 6.56, + 6.56, + 6.55, + 6.55 + ], + "y": [ + 21.527350554025755, + 21.527350554025755, + 22.582650018402283, + 22.582650018402283, + 21.527350554025755 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.56, + 6.569999999999999, + 6.569999999999999, + 6.56, + 6.56 + ], + "y": [ + 21.537349981595277, + 21.537349981595277, + 22.592650585708608, + 22.592650585708608, + 21.537349981595277 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.569999999999999, + 6.58, + 6.58, + 6.569999999999999, + 6.569999999999999 + ], + "y": [ + 21.54734941428895, + 21.54734941428895, + 22.602651147936744, + 22.602651147936744, + 21.54734941428895 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.58, + 6.59, + 6.59, + 6.58, + 6.58 + ], + "y": [ + 21.55734885206081, + 21.55734885206081, + 22.612651705132095, + 22.612651705132095, + 21.55734885206081 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.59, + 6.6, + 6.6, + 6.59, + 6.59 + ], + "y": [ + 21.567348294865454, + 21.567348294865454, + 22.622652257339865, + 22.622652257339865, + 21.567348294865454 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6, + 6.609999999999999, + 6.609999999999999, + 6.6, + 6.6 + ], + "y": [ + 21.57734774265768, + 21.57734774265768, + 22.63265280460468, + 22.63265280460468, + 21.57734774265768 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.609999999999999, + 6.62, + 6.62, + 6.609999999999999, + 6.609999999999999 + ], + "y": [ + 21.58734719539286, + 21.58734719539286, + 22.642653346970814, + 22.642653346970814, + 21.58734719539286 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.62, + 6.63, + 6.63, + 6.62, + 6.62 + ], + "y": [ + 21.597346653026722, + 21.597346653026722, + 22.65265388448209, + 22.65265388448209, + 21.597346653026722 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.63, + 6.64, + 6.64, + 6.63, + 6.63 + ], + "y": [ + 21.607346115515444, + 21.607346115515444, + 22.66265441718206, + 22.66265441718206, + 21.607346115515444 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.64, + 6.6499999999999995, + 6.6499999999999995, + 6.64, + 6.64 + ], + "y": [ + 21.617345582815467, + 21.617345582815467, + 22.672654945113845, + 22.672654945113845, + 21.617345582815467 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6499999999999995, + 6.66, + 6.66, + 6.6499999999999995, + 6.6499999999999995 + ], + "y": [ + 21.62734505488368, + 21.62734505488368, + 22.68265546832016, + 22.68265546832016, + 21.62734505488368 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.66, + 6.67, + 6.67, + 6.66, + 6.66 + ], + "y": [ + 21.63734453167736, + 21.63734453167736, + 22.6926559868433, + 22.6926559868433, + 21.63734453167736 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.67, + 6.68, + 6.68, + 6.67, + 6.67 + ], + "y": [ + 21.647344013154218, + 21.647344013154218, + 22.70265650072523, + 22.70265650072523, + 21.647344013154218 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.68, + 6.6899999999999995, + 6.6899999999999995, + 6.68, + 6.68 + ], + "y": [ + 21.657343499272283, + 21.657343499272283, + 22.712657010007497, + 22.712657010007497, + 21.657343499272283 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.6899999999999995, + 6.7, + 6.7, + 6.6899999999999995, + 6.6899999999999995 + ], + "y": [ + 21.66734298999001, + 21.66734298999001, + 22.722657514731356, + 22.722657514731356, + 21.66734298999001 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7, + 6.71, + 6.71, + 6.7, + 6.7 + ], + "y": [ + 21.67734248526615, + 21.67734248526615, + 22.732658014937627, + 22.732658014937627, + 21.67734248526615 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.71, + 6.72, + 6.72, + 6.71, + 6.71 + ], + "y": [ + 21.687341985059874, + 21.687341985059874, + 22.742658510666814, + 22.742658510666814, + 21.687341985059874 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.72, + 6.7299999999999995, + 6.7299999999999995, + 6.72, + 6.72 + ], + "y": [ + 21.697341489330682, + 21.697341489330682, + 22.75265900195903, + 22.75265900195903, + 21.697341489330682 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.7299999999999995, + 6.74, + 6.74, + 6.7299999999999995, + 6.7299999999999995 + ], + "y": [ + 21.70734099803846, + 21.70734099803846, + 22.76265948885396, + 22.76265948885396, + 21.70734099803846 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.74, + 6.75, + 6.75, + 6.74, + 6.74 + ], + "y": [ + 21.71734051114353, + 21.71734051114353, + 22.772659971391015, + 22.772659971391015, + 21.71734051114353 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.75, + 6.76, + 6.76, + 6.75, + 6.75 + ], + "y": [ + 21.72734002860647, + 21.72734002860647, + 22.782660449609168, + 22.782660449609168, + 21.72734002860647 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.76, + 6.77, + 6.77, + 6.76, + 6.76 + ], + "y": [ + 21.737339550388313, + 21.737339550388313, + 22.792660923547256, + 22.792660923547256, + 21.737339550388313 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.77, + 6.779999999999999, + 6.779999999999999, + 6.77, + 6.77 + ], + "y": [ + 21.74733907645022, + 21.74733907645022, + 22.80266139324354, + 22.80266139324354, + 21.74733907645022 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.779999999999999, + 6.79, + 6.79, + 6.779999999999999, + 6.779999999999999 + ], + "y": [ + 21.757338606753933, + 21.757338606753933, + 22.812661858736064, + 22.812661858736064, + 21.757338606753933 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.79, + 6.8, + 6.8, + 6.79, + 6.79 + ], + "y": [ + 21.767338141261405, + 21.767338141261405, + 22.822662320062364, + 22.822662320062364, + 21.767338141261405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8, + 6.81, + 6.81, + 6.8, + 6.8 + ], + "y": [ + 21.7773376799351, + 21.7773376799351, + 22.832662777259838, + 22.832662777259838, + 21.7773376799351 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.81, + 6.819999999999999, + 6.819999999999999, + 6.81, + 6.81 + ], + "y": [ + 21.787337222737623, + 21.787337222737623, + 22.842663230365492, + 22.842663230365492, + 21.787337222737623 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.819999999999999, + 6.83, + 6.83, + 6.819999999999999, + 6.819999999999999 + ], + "y": [ + 21.797336769631965, + 21.797336769631965, + 22.852663679415937, + 22.852663679415937, + 21.797336769631965 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.83, + 6.84, + 6.84, + 6.83, + 6.83 + ], + "y": [ + 21.807336320581516, + 21.807336320581516, + 22.862664124447512, + 22.862664124447512, + 21.807336320581516 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.84, + 6.85, + 6.85, + 6.84, + 6.84 + ], + "y": [ + 21.817335875549936, + 21.817335875549936, + 22.872664565496237, + 22.872664565496237, + 21.817335875549936 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.85, + 6.859999999999999, + 6.859999999999999, + 6.85, + 6.85 + ], + "y": [ + 21.827335434501208, + 21.827335434501208, + 22.882665002597744, + 22.882665002597744, + 21.827335434501208 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.859999999999999, + 6.87, + 6.87, + 6.859999999999999, + 6.859999999999999 + ], + "y": [ + 21.837334997399697, + 21.837334997399697, + 22.892665435787407, + 22.892665435787407, + 21.837334997399697 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.87, + 6.88, + 6.88, + 6.87, + 6.87 + ], + "y": [ + 21.84733456421003, + 21.84733456421003, + 22.902665865100253, + 22.902665865100253, + 21.84733456421003 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.88, + 6.89, + 6.89, + 6.88, + 6.88 + ], + "y": [ + 21.85733413489718, + 21.85733413489718, + 22.91266629057103, + 22.91266629057103, + 21.85733413489718 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.89, + 6.8999999999999995, + 6.8999999999999995, + 6.89, + 6.89 + ], + "y": [ + 21.8673337094264, + 21.8673337094264, + 22.92266671223411, + 22.92266671223411, + 21.8673337094264 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.8999999999999995, + 6.91, + 6.91, + 6.8999999999999995, + 6.8999999999999995 + ], + "y": [ + 21.877333287763314, + 21.877333287763314, + 22.93266713012362, + 22.93266713012362, + 21.877333287763314 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.91, + 6.92, + 6.92, + 6.91, + 6.91 + ], + "y": [ + 21.887332869873802, + 21.887332869873802, + 22.9426675442734, + 22.9426675442734, + 21.887332869873802 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.92, + 6.93, + 6.93, + 6.92, + 6.92 + ], + "y": [ + 21.897332455724015, + 21.897332455724015, + 22.95266795471685, + 22.95266795471685, + 21.897332455724015 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.93, + 6.9399999999999995, + 6.9399999999999995, + 6.93, + 6.93 + ], + "y": [ + 21.90733204528056, + 21.90733204528056, + 22.962668361487296, + 22.962668361487296, + 21.90733204528056 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9399999999999995, + 6.95, + 6.95, + 6.9399999999999995, + 6.9399999999999995 + ], + "y": [ + 21.917331638510113, + 21.917331638510113, + 22.972668764617577, + 22.972668764617577, + 21.917331638510113 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.95, + 6.96, + 6.96, + 6.95, + 6.95 + ], + "y": [ + 21.927331235379828, + 21.927331235379828, + 22.982669164140333, + 22.982669164140333, + 21.927331235379828 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.96, + 6.97, + 6.97, + 6.96, + 6.96 + ], + "y": [ + 21.937330835857068, + 21.937330835857068, + 22.99266956008778, + 22.99266956008778, + 21.937330835857068 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.97, + 6.9799999999999995, + 6.9799999999999995, + 6.97, + 6.97 + ], + "y": [ + 21.947330439909617, + 21.947330439909617, + 23.00266995249203, + 23.00266995249203, + 21.947330439909617 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.9799999999999995, + 6.99, + 6.99, + 6.9799999999999995, + 6.9799999999999995 + ], + "y": [ + 21.957330047505362, + 21.957330047505362, + 23.012670341384734, + 23.012670341384734, + 21.957330047505362 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 6.99, + 7, + 7, + 6.99, + 6.99 + ], + "y": [ + 21.967329658612655, + 21.967329658612655, + 23.022670726797394, + 23.022670726797394, + 21.967329658612655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7, + 7.01, + 7.01, + 7, + 7 + ], + "y": [ + 21.97732927319999, + 21.97732927319999, + 23.0326711087612, + 23.0326711087612, + 21.97732927319999 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.01, + 7.02, + 7.02, + 7.01, + 7.01 + ], + "y": [ + 21.98732889123618, + 21.98732889123618, + 23.042671487306983, + 23.042671487306983, + 21.98732889123618 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.02, + 7.029999999999999, + 7.029999999999999, + 7.02, + 7.02 + ], + "y": [ + 21.997328512690395, + 21.997328512690395, + 23.052671862465402, + 23.052671862465402, + 21.997328512690395 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.029999999999999, + 7.04, + 7.04, + 7.029999999999999, + 7.029999999999999 + ], + "y": [ + 22.00732813753197, + 22.00732813753197, + 23.06267223426673, + 23.06267223426673, + 22.00732813753197 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.04, + 7.05, + 7.05, + 7.04, + 7.04 + ], + "y": [ + 22.017327765730638, + 22.017327765730638, + 23.07267260274114, + 23.07267260274114, + 22.017327765730638 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.05, + 7.06, + 7.06, + 7.05, + 7.05 + ], + "y": [ + 22.027327397256226, + 22.027327397256226, + 23.082672967918374, + 23.082672967918374, + 22.027327397256226 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.06, + 7.069999999999999, + 7.069999999999999, + 7.06, + 7.06 + ], + "y": [ + 22.037327032078988, + 22.037327032078988, + 23.09267332982794, + 23.09267332982794, + 22.037327032078988 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.069999999999999, + 7.08, + 7.08, + 7.069999999999999, + 7.069999999999999 + ], + "y": [ + 22.04732667016942, + 22.04732667016942, + 23.10267368849911, + 23.10267368849911, + 22.04732667016942 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.08, + 7.09, + 7.09, + 7.08, + 7.08 + ], + "y": [ + 22.057326311498244, + 22.057326311498244, + 23.11267404396093, + 23.11267404396093, + 22.057326311498244 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.09, + 7.1, + 7.1, + 7.09, + 7.09 + ], + "y": [ + 22.06732595603642, + 22.06732595603642, + 23.12267439624201, + 23.12267439624201, + 22.06732595603642 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1, + 7.109999999999999, + 7.109999999999999, + 7.1, + 7.1 + ], + "y": [ + 22.077325603755334, + 22.077325603755334, + 23.132674745370988, + 23.132674745370988, + 22.077325603755334 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.109999999999999, + 7.12, + 7.12, + 7.109999999999999, + 7.109999999999999 + ], + "y": [ + 22.087325254626354, + 22.087325254626354, + 23.142675091376002, + 23.142675091376002, + 22.087325254626354 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.12, + 7.13, + 7.13, + 7.12, + 7.12 + ], + "y": [ + 22.097324908621335, + 22.097324908621335, + 23.152675434285083, + 23.152675434285083, + 22.097324908621335 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.13, + 7.14, + 7.14, + 7.13, + 7.13 + ], + "y": [ + 22.10732456571225, + 22.10732456571225, + 23.162675774125933, + 23.162675774125933, + 22.10732456571225 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.14, + 7.1499999999999995, + 7.1499999999999995, + 7.14, + 7.14 + ], + "y": [ + 22.117324225871396, + 22.117324225871396, + 23.172676110926055, + 23.172676110926055, + 22.117324225871396 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1499999999999995, + 7.16, + 7.16, + 7.1499999999999995, + 7.1499999999999995 + ], + "y": [ + 22.12732388907127, + 22.12732388907127, + 23.182676444712598, + 23.182676444712598, + 22.12732388907127 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.16, + 7.17, + 7.17, + 7.16, + 7.16 + ], + "y": [ + 22.137323555284723, + 22.137323555284723, + 23.192676775512663, + 23.192676775512663, + 22.137323555284723 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.17, + 7.18, + 7.18, + 7.17, + 7.17 + ], + "y": [ + 22.147323224484655, + 22.147323224484655, + 23.202677103352897, + 23.202677103352897, + 22.147323224484655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.18, + 7.1899999999999995, + 7.1899999999999995, + 7.18, + 7.18 + ], + "y": [ + 22.157322896644416, + 22.157322896644416, + 23.212677428259852, + 23.212677428259852, + 22.157322896644416 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.1899999999999995, + 7.2, + 7.2, + 7.1899999999999995, + 7.1899999999999995 + ], + "y": [ + 22.167322571737458, + 22.167322571737458, + 23.22267775025977, + 23.22267775025977, + 22.167322571737458 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2, + 7.21, + 7.21, + 7.2, + 7.2 + ], + "y": [ + 22.177322249737536, + 22.177322249737536, + 23.232678069378757, + 23.232678069378757, + 22.177322249737536 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.21, + 7.22, + 7.22, + 7.21, + 7.21 + ], + "y": [ + 22.187321930618545, + 22.187321930618545, + 23.24267838564255, + 23.24267838564255, + 22.187321930618545 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.22, + 7.2299999999999995, + 7.2299999999999995, + 7.22, + 7.22 + ], + "y": [ + 22.19732161435475, + 22.19732161435475, + 23.252678699076686, + 23.252678699076686, + 22.19732161435475 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.2299999999999995, + 7.24, + 7.24, + 7.2299999999999995, + 7.2299999999999995 + ], + "y": [ + 22.207321300920608, + 22.207321300920608, + 23.262679009706503, + 23.262679009706503, + 22.207321300920608 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.24, + 7.25, + 7.25, + 7.24, + 7.24 + ], + "y": [ + 22.217320990290787, + 22.217320990290787, + 23.27267931755721, + 23.27267931755721, + 22.217320990290787 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.25, + 7.26, + 7.26, + 7.25, + 7.25 + ], + "y": [ + 22.227320682440077, + 22.227320682440077, + 23.282679622653596, + 23.282679622653596, + 22.227320682440077 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.26, + 7.27, + 7.27, + 7.26, + 7.26 + ], + "y": [ + 22.237320377343686, + 22.237320377343686, + 23.292679925020373, + 23.292679925020373, + 22.237320377343686 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.27, + 7.279999999999999, + 7.279999999999999, + 7.27, + 7.27 + ], + "y": [ + 22.247320074976905, + 22.247320074976905, + 23.302680224681943, + 23.302680224681943, + 22.247320074976905 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.279999999999999, + 7.29, + 7.29, + 7.279999999999999, + 7.279999999999999 + ], + "y": [ + 22.25731977531533, + 22.25731977531533, + 23.312680521662546, + 23.312680521662546, + 22.25731977531533 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.29, + 7.3, + 7.3, + 7.29, + 7.29 + ], + "y": [ + 22.267319478334723, + 22.267319478334723, + 23.322680815986182, + 23.322680815986182, + 22.267319478334723 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3, + 7.31, + 7.31, + 7.3, + 7.3 + ], + "y": [ + 22.277319184011084, + 22.277319184011084, + 23.332681107676645, + 23.332681107676645, + 22.277319184011084 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.31, + 7.319999999999999, + 7.319999999999999, + 7.31, + 7.31 + ], + "y": [ + 22.287318892320616, + 22.287318892320616, + 23.342681396757516, + 23.342681396757516, + 22.287318892320616 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.319999999999999, + 7.33, + 7.33, + 7.319999999999999, + 7.319999999999999 + ], + "y": [ + 22.29731860323974, + 22.29731860323974, + 23.3526816832522, + 23.3526816832522, + 22.29731860323974 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.33, + 7.34, + 7.34, + 7.33, + 7.33 + ], + "y": [ + 22.307318316745054, + 22.307318316745054, + 23.362681967183853, + 23.362681967183853, + 22.307318316745054 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.34, + 7.35, + 7.35, + 7.34, + 7.34 + ], + "y": [ + 22.317318032813397, + 22.317318032813397, + 23.372682248575376, + 23.372682248575376, + 22.317318032813397 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.35, + 7.359999999999999, + 7.359999999999999, + 7.35, + 7.35 + ], + "y": [ + 22.32731775142187, + 22.32731775142187, + 23.382682527449518, + 23.382682527449518, + 22.32731775142187 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.359999999999999, + 7.37, + 7.37, + 7.359999999999999, + 7.359999999999999 + ], + "y": [ + 22.337317472547724, + 22.337317472547724, + 23.392682803828794, + 23.392682803828794, + 22.337317472547724 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.37, + 7.38, + 7.38, + 7.37, + 7.37 + ], + "y": [ + 22.347317196168444, + 22.347317196168444, + 23.402683077735613, + 23.402683077735613, + 22.347317196168444 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.38, + 7.39, + 7.39, + 7.38, + 7.38 + ], + "y": [ + 22.35731692226162, + 22.35731692226162, + 23.41268334919209, + 23.41268334919209, + 22.35731692226162 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.39, + 7.3999999999999995, + 7.3999999999999995, + 7.39, + 7.39 + ], + "y": [ + 22.36731665080514, + 22.36731665080514, + 23.422683618220116, + 23.422683618220116, + 22.36731665080514 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.3999999999999995, + 7.41, + 7.41, + 7.3999999999999995, + 7.3999999999999995 + ], + "y": [ + 22.37731638177711, + 22.37731638177711, + 23.432683884841467, + 23.432683884841467, + 22.37731638177711 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.41, + 7.42, + 7.42, + 7.41, + 7.41 + ], + "y": [ + 22.387316115155755, + 22.387316115155755, + 23.44268414907773, + 23.44268414907773, + 22.387316115155755 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.42, + 7.43, + 7.43, + 7.42, + 7.42 + ], + "y": [ + 22.397315850919487, + 22.397315850919487, + 23.452684410950184, + 23.452684410950184, + 22.397315850919487 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.43, + 7.4399999999999995, + 7.4399999999999995, + 7.43, + 7.43 + ], + "y": [ + 22.40731558904703, + 22.40731558904703, + 23.46268467048004, + 23.46268467048004, + 22.40731558904703 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4399999999999995, + 7.45, + 7.45, + 7.4399999999999995, + 7.4399999999999995 + ], + "y": [ + 22.41731532951717, + 22.41731532951717, + 23.472684927688295, + 23.472684927688295, + 22.41731532951717 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.45, + 7.46, + 7.46, + 7.45, + 7.45 + ], + "y": [ + 22.42731507230891, + 22.42731507230891, + 23.482685182595645, + 23.482685182595645, + 22.42731507230891 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.46, + 7.47, + 7.47, + 7.46, + 7.46 + ], + "y": [ + 22.437314817401557, + 22.437314817401557, + 23.492685435222747, + 23.492685435222747, + 22.437314817401557 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.47, + 7.4799999999999995, + 7.4799999999999995, + 7.47, + 7.47 + ], + "y": [ + 22.44731456477445, + 22.44731456477445, + 23.502685685590084, + 23.502685685590084, + 22.44731456477445 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.4799999999999995, + 7.49, + 7.49, + 7.4799999999999995, + 7.4799999999999995 + ], + "y": [ + 22.45731431440711, + 22.45731431440711, + 23.51268593371777, + 23.51268593371777, + 22.45731431440711 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.49, + 7.5, + 7.5, + 7.49, + 7.49 + ], + "y": [ + 22.46731406627942, + 22.46731406627942, + 23.522686179625936, + 23.522686179625936, + 22.46731406627942 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.5, + 7.51, + 7.51, + 7.5, + 7.5 + ], + "y": [ + 22.47731382037125, + 22.47731382037125, + 23.532686423334393, + 23.532686423334393, + 22.47731382037125 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.51, + 7.52, + 7.52, + 7.51, + 7.51 + ], + "y": [ + 22.48731357666279, + 22.48731357666279, + 23.54268666486289, + 23.54268666486289, + 22.48731357666279 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.52, + 7.529999999999999, + 7.529999999999999, + 7.52, + 7.52 + ], + "y": [ + 22.497313335134287, + 22.497313335134287, + 23.55268690423088, + 23.55268690423088, + 22.497313335134287 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.529999999999999, + 7.54, + 7.54, + 7.529999999999999, + 7.529999999999999 + ], + "y": [ + 22.507313095766293, + 22.507313095766293, + 23.562687141457722, + 23.562687141457722, + 22.507313095766293 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.54, + 7.55, + 7.55, + 7.54, + 7.54 + ], + "y": [ + 22.517312858539448, + 22.517312858539448, + 23.57268737656258, + 23.57268737656258, + 22.517312858539448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.55, + 7.56, + 7.56, + 7.55, + 7.55 + ], + "y": [ + 22.527312623434586, + 22.527312623434586, + 23.582687609564516, + 23.582687609564516, + 22.527312623434586 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.56, + 7.569999999999999, + 7.569999999999999, + 7.56, + 7.56 + ], + "y": [ + 22.537312390432646, + 22.537312390432646, + 23.592687840482267, + 23.592687840482267, + 22.537312390432646 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.569999999999999, + 7.58, + 7.58, + 7.569999999999999, + 7.569999999999999 + ], + "y": [ + 22.54731215951489, + 22.54731215951489, + 23.602688069334572, + 23.602688069334572, + 22.54731215951489 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.58, + 7.59, + 7.59, + 7.58, + 7.58 + ], + "y": [ + 22.557311930662582, + 22.557311930662582, + 23.612688296139886, + 23.612688296139886, + 22.557311930662582 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.59, + 7.6, + 7.6, + 7.59, + 7.59 + ], + "y": [ + 22.567311703857264, + 22.567311703857264, + 23.622688520916522, + 23.622688520916522, + 22.567311703857264 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6, + 7.609999999999999, + 7.609999999999999, + 7.6, + 7.6 + ], + "y": [ + 22.577311479080624, + 22.577311479080624, + 23.63268874368269, + 23.63268874368269, + 22.577311479080624 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.609999999999999, + 7.62, + 7.62, + 7.609999999999999, + 7.609999999999999 + ], + "y": [ + 22.587311256314454, + 22.587311256314454, + 23.64268896445634, + 23.64268896445634, + 22.587311256314454 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.62, + 7.63, + 7.63, + 7.62, + 7.62 + ], + "y": [ + 22.5973110355408, + 22.5973110355408, + 23.65268918325534, + 23.65268918325534, + 22.5973110355408 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.63, + 7.64, + 7.64, + 7.63, + 7.63 + ], + "y": [ + 22.607310816741794, + 22.607310816741794, + 23.662689400097296, + 23.662689400097296, + 22.607310816741794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.64, + 7.6499999999999995, + 7.6499999999999995, + 7.64, + 7.64 + ], + "y": [ + 22.617310599899835, + 22.617310599899835, + 23.672689614999793, + 23.672689614999793, + 22.617310599899835 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6499999999999995, + 7.66, + 7.66, + 7.6499999999999995, + 7.6499999999999995 + ], + "y": [ + 22.627310384997333, + 22.627310384997333, + 23.68268982798015, + 23.68268982798015, + 22.627310384997333 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.66, + 7.67, + 7.67, + 7.66, + 7.66 + ], + "y": [ + 22.637310172016974, + 22.637310172016974, + 23.692690039055666, + 23.692690039055666, + 22.637310172016974 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.67, + 7.68, + 7.68, + 7.67, + 7.67 + ], + "y": [ + 22.647309960941453, + 22.647309960941453, + 23.702690248243282, + 23.702690248243282, + 22.647309960941453 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.68, + 7.6899999999999995, + 7.6899999999999995, + 7.68, + 7.68 + ], + "y": [ + 22.657309751753832, + 22.657309751753832, + 23.712690455559958, + 23.712690455559958, + 22.657309751753832 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.6899999999999995, + 7.7, + 7.7, + 7.6899999999999995, + 7.6899999999999995 + ], + "y": [ + 22.667309544437153, + 22.667309544437153, + 23.722690661022423, + 23.722690661022423, + 22.667309544437153 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7, + 7.71, + 7.71, + 7.7, + 7.7 + ], + "y": [ + 22.677309338974684, + 22.677309338974684, + 23.73269086464725, + 23.73269086464725, + 22.677309338974684 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.71, + 7.72, + 7.72, + 7.71, + 7.71 + ], + "y": [ + 22.687309135349853, + 22.687309135349853, + 23.742691066450956, + 23.742691066450956, + 22.687309135349853 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.72, + 7.7299999999999995, + 7.7299999999999995, + 7.72, + 7.72 + ], + "y": [ + 22.697308933546143, + 22.697308933546143, + 23.752691266449784, + 23.752691266449784, + 22.697308933546143 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.7299999999999995, + 7.74, + 7.74, + 7.7299999999999995, + 7.7299999999999995 + ], + "y": [ + 22.70730873354731, + 22.70730873354731, + 23.762691464659905, + 23.762691464659905, + 22.70730873354731 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.74, + 7.75, + 7.75, + 7.74, + 7.74 + ], + "y": [ + 22.717308535337185, + 22.717308535337185, + 23.772691661097305, + 23.772691661097305, + 22.717308535337185 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.75, + 7.76, + 7.76, + 7.75, + 7.75 + ], + "y": [ + 22.727308338899782, + 22.727308338899782, + 23.78269185577789, + 23.78269185577789, + 22.727308338899782 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.76, + 7.77, + 7.77, + 7.76, + 7.76 + ], + "y": [ + 22.73730814421919, + 22.73730814421919, + 23.792692048717342, + 23.792692048717342, + 22.73730814421919 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.77, + 7.779999999999999, + 7.779999999999999, + 7.77, + 7.77 + ], + "y": [ + 22.747307951279737, + 22.747307951279737, + 23.802692239931325, + 23.802692239931325, + 22.747307951279737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.779999999999999, + 7.79, + 7.79, + 7.779999999999999, + 7.779999999999999 + ], + "y": [ + 22.75730776006575, + 22.75730776006575, + 23.81269242943517, + 23.81269242943517, + 22.75730776006575 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.79, + 7.8, + 7.8, + 7.79, + 7.79 + ], + "y": [ + 22.7673075705619, + 22.7673075705619, + 23.822692617244265, + 23.822692617244265, + 22.7673075705619 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8, + 7.81, + 7.81, + 7.8, + 7.8 + ], + "y": [ + 22.777307382752802, + 22.777307382752802, + 23.832692803373778, + 23.832692803373778, + 22.777307382752802 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.81, + 7.819999999999999, + 7.819999999999999, + 7.81, + 7.81 + ], + "y": [ + 22.787307196623285, + 22.787307196623285, + 23.84269298783873, + 23.84269298783873, + 22.787307196623285 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.819999999999999, + 7.83, + 7.83, + 7.819999999999999, + 7.819999999999999 + ], + "y": [ + 22.797307012158328, + 22.797307012158328, + 23.852693170653996, + 23.852693170653996, + 22.797307012158328 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.83, + 7.84, + 7.84, + 7.83, + 7.83 + ], + "y": [ + 22.80730682934306, + 22.80730682934306, + 23.8626933518344, + 23.8626933518344, + 22.80730682934306 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.84, + 7.85, + 7.85, + 7.84, + 7.84 + ], + "y": [ + 22.81730664816265, + 22.81730664816265, + 23.872693531394496, + 23.872693531394496, + 22.81730664816265 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.85, + 7.859999999999999, + 7.859999999999999, + 7.85, + 7.85 + ], + "y": [ + 22.82730646860255, + 22.82730646860255, + 23.882693709348857, + 23.882693709348857, + 22.82730646860255 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.859999999999999, + 7.87, + 7.87, + 7.859999999999999, + 7.859999999999999 + ], + "y": [ + 22.837306290648186, + 22.837306290648186, + 23.892693885711843, + 23.892693885711843, + 22.837306290648186 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.87, + 7.88, + 7.88, + 7.87, + 7.87 + ], + "y": [ + 22.847306114285196, + 22.847306114285196, + 23.902694060497602, + 23.902694060497602, + 22.847306114285196 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.88, + 7.89, + 7.89, + 7.88, + 7.88 + ], + "y": [ + 22.857305939499433, + 22.857305939499433, + 23.912694233720362, + 23.912694233720362, + 22.857305939499433 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.89, + 7.8999999999999995, + 7.8999999999999995, + 7.89, + 7.89 + ], + "y": [ + 22.86730576627667, + 22.86730576627667, + 23.92269440539404, + 23.92269440539404, + 22.86730576627667 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.8999999999999995, + 7.91, + 7.91, + 7.8999999999999995, + 7.8999999999999995 + ], + "y": [ + 22.877305594602987, + 22.877305594602987, + 23.932694575532544, + 23.932694575532544, + 22.877305594602987 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.91, + 7.92, + 7.92, + 7.91, + 7.91 + ], + "y": [ + 22.88730542446448, + 22.88730542446448, + 23.942694744149648, + 23.942694744149648, + 22.88730542446448 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.92, + 7.93, + 7.93, + 7.92, + 7.92 + ], + "y": [ + 22.89730525584737, + 22.89730525584737, + 23.95269491125885, + 23.95269491125885, + 22.89730525584737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.93, + 7.9399999999999995, + 7.9399999999999995, + 7.93, + 7.93 + ], + "y": [ + 22.907305088738166, + 22.907305088738166, + 23.96269507687379, + 23.96269507687379, + 22.907305088738166 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9399999999999995, + 7.95, + 7.95, + 7.9399999999999995, + 7.9399999999999995 + ], + "y": [ + 22.917304923123222, + 22.917304923123222, + 23.972695241007724, + 23.972695241007724, + 22.917304923123222 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.95, + 7.96, + 7.96, + 7.95, + 7.95 + ], + "y": [ + 22.927304758989283, + 22.927304758989283, + 23.982695403673965, + 23.982695403673965, + 22.927304758989283 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.96, + 7.97, + 7.97, + 7.96, + 7.96 + ], + "y": [ + 22.937304596323038, + 22.937304596323038, + 23.992695564885626, + 23.992695564885626, + 22.937304596323038 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.97, + 7.9799999999999995, + 7.9799999999999995, + 7.97, + 7.97 + ], + "y": [ + 22.947304435111374, + 22.947304435111374, + 24.002695724655716, + 24.002695724655716, + 22.947304435111374 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.9799999999999995, + 7.99, + 7.99, + 7.9799999999999995, + 7.9799999999999995 + ], + "y": [ + 22.95730427534128, + 22.95730427534128, + 24.01269588299723, + 24.01269588299723, + 22.95730427534128 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 7.99, + 8, + 8, + 7.99, + 7.99 + ], + "y": [ + 22.96730411699976, + 22.96730411699976, + 24.022696039922753, + 24.022696039922753, + 22.96730411699976 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8, + 8.01, + 8.01, + 8, + 8 + ], + "y": [ + 22.977303960074234, + 22.977303960074234, + 24.032696195445155, + 24.032696195445155, + 22.977303960074234 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.01, + 8.02, + 8.02, + 8.01, + 8.01 + ], + "y": [ + 22.98730380455183, + 22.98730380455183, + 24.042696349576918, + 24.042696349576918, + 22.98730380455183 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.02, + 8.03, + 8.03, + 8.02, + 8.02 + ], + "y": [ + 22.99730365042006, + 22.99730365042006, + 24.05269650233047, + 24.05269650233047, + 22.99730365042006 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.03, + 8.04, + 8.04, + 8.03, + 8.03 + ], + "y": [ + 23.007303497666506, + 23.007303497666506, + 24.062696653718152, + 24.062696653718152, + 23.007303497666506 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.04, + 8.049999999999999, + 8.049999999999999, + 8.04, + 8.04 + ], + "y": [ + 23.01730334627882, + 23.01730334627882, + 24.072696803752233, + 24.072696803752233, + 23.01730334627882 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.049999999999999, + 8.06, + 8.06, + 8.049999999999999, + 8.049999999999999 + ], + "y": [ + 23.027303196244734, + 23.027303196244734, + 24.082696952444785, + 24.082696952444785, + 23.027303196244734 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.06, + 8.07, + 8.07, + 8.06, + 8.06 + ], + "y": [ + 23.03730304755218, + 23.03730304755218, + 24.092697099807772, + 24.092697099807772, + 23.03730304755218 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.07, + 8.08, + 8.08, + 8.07, + 8.07 + ], + "y": [ + 23.047302900189187, + 23.047302900189187, + 24.102697245853193, + 24.102697245853193, + 23.047302900189187 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.08, + 8.09, + 8.09, + 8.08, + 8.08 + ], + "y": [ + 23.057302754143763, + 23.057302754143763, + 24.1126973905927, + 24.1126973905927, + 23.057302754143763 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.09, + 8.1, + 8.1, + 8.09, + 8.09 + ], + "y": [ + 23.06730260940425, + 23.06730260940425, + 24.12269753403808, + 24.12269753403808, + 23.06730260940425 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.1, + 8.11, + 8.11, + 8.1, + 8.1 + ], + "y": [ + 23.07730246595887, + 23.07730246595887, + 24.132697676200955, + 24.132697676200955, + 23.07730246595887 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.11, + 8.12, + 8.12, + 8.11, + 8.11 + ], + "y": [ + 23.08730232379599, + 23.08730232379599, + 24.142697817092685, + 24.142697817092685, + 23.08730232379599 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.12, + 8.129999999999999, + 8.129999999999999, + 8.12, + 8.12 + ], + "y": [ + 23.097302182904254, + 23.097302182904254, + 24.1526979567247, + 24.1526979567247, + 23.097302182904254 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.129999999999999, + 8.14, + 8.14, + 8.129999999999999, + 8.129999999999999 + ], + "y": [ + 23.107302043272234, + 23.107302043272234, + 24.162698095108254, + 24.162698095108254, + 23.107302043272234 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.14, + 8.15, + 8.15, + 8.14, + 8.14 + ], + "y": [ + 23.117301904888677, + 23.117301904888677, + 24.172698232254536, + 24.172698232254536, + 23.117301904888677 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.15, + 8.16, + 8.16, + 8.15, + 8.15 + ], + "y": [ + 23.12730176774239, + 23.12730176774239, + 24.182698368174677, + 24.182698368174677, + 23.12730176774239 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.16, + 8.17, + 8.17, + 8.16, + 8.16 + ], + "y": [ + 23.137301631822247, + 23.137301631822247, + 24.192698502879598, + 24.192698502879598, + 23.137301631822247 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.17, + 8.18, + 8.18, + 8.17, + 8.17 + ], + "y": [ + 23.147301497117322, + 23.147301497117322, + 24.202698636380113, + 24.202698636380113, + 23.147301497117322 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.18, + 8.19, + 8.19, + 8.18, + 8.18 + ], + "y": [ + 23.157301363616803, + 23.157301363616803, + 24.21269876868706, + 24.21269876868706, + 23.157301363616803 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.19, + 8.2, + 8.2, + 8.19, + 8.19 + ], + "y": [ + 23.167301231309853, + 23.167301231309853, + 24.22269889981111, + 24.22269889981111, + 23.167301231309853 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.2, + 8.209999999999999, + 8.209999999999999, + 8.2, + 8.2 + ], + "y": [ + 23.177301100185797, + 23.177301100185797, + 24.23269902976288, + 24.23269902976288, + 23.177301100185797 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.209999999999999, + 8.22, + 8.22, + 8.209999999999999, + 8.209999999999999 + ], + "y": [ + 23.187300970234023, + 23.187300970234023, + 24.242699158552778, + 24.242699158552778, + 23.187300970234023 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.22, + 8.23, + 8.23, + 8.22, + 8.22 + ], + "y": [ + 23.19730084144412, + 23.19730084144412, + 24.25269928619124, + 24.25269928619124, + 23.19730084144412 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.23, + 8.24, + 8.24, + 8.23, + 8.23 + ], + "y": [ + 23.207300713805655, + 23.207300713805655, + 24.262699412688548, + 24.262699412688548, + 23.207300713805655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.24, + 8.25, + 8.25, + 8.24, + 8.24 + ], + "y": [ + 23.217300587308344, + 23.217300587308344, + 24.272699538055022, + 24.272699538055022, + 23.217300587308344 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.25, + 8.26, + 8.26, + 8.25, + 8.25 + ], + "y": [ + 23.227300461941866, + 23.227300461941866, + 24.2826996623007, + 24.2826996623007, + 23.227300461941866 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.26, + 8.27, + 8.27, + 8.26, + 8.26 + ], + "y": [ + 23.237300337696183, + 23.237300337696183, + 24.292699785435556, + 24.292699785435556, + 23.237300337696183 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.27, + 8.28, + 8.28, + 8.27, + 8.27 + ], + "y": [ + 23.247300214561324, + 23.247300214561324, + 24.302699907469623, + 24.302699907469623, + 23.247300214561324 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.28, + 8.29, + 8.29, + 8.28, + 8.28 + ], + "y": [ + 23.257300092527252, + 23.257300092527252, + 24.312700028412703, + 24.312700028412703, + 23.257300092527252 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.29, + 8.299999999999999, + 8.299999999999999, + 8.29, + 8.29 + ], + "y": [ + 23.26729997158417, + 23.26729997158417, + 24.322700148274546, + 24.322700148274546, + 23.26729997158417 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.299999999999999, + 8.31, + 8.31, + 8.299999999999999, + 8.299999999999999 + ], + "y": [ + 23.277299851722322, + 23.277299851722322, + 24.3327002670648, + 24.3327002670648, + 23.277299851722322 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.31, + 8.32, + 8.32, + 8.31, + 8.31 + ], + "y": [ + 23.287299732932063, + 23.287299732932063, + 24.342700384793105, + 24.342700384793105, + 23.287299732932063 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.32, + 8.33, + 8.33, + 8.32, + 8.32 + ], + "y": [ + 23.297299615203755, + 23.297299615203755, + 24.352700501468966, + 24.352700501468966, + 23.297299615203755 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.33, + 8.34, + 8.34, + 8.33, + 8.33 + ], + "y": [ + 23.30729949852789, + 23.30729949852789, + 24.362700617101815, + 24.362700617101815, + 23.30729949852789 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.34, + 8.35, + 8.35, + 8.34, + 8.34 + ], + "y": [ + 23.317299382895037, + 23.317299382895037, + 24.3727007317009, + 24.3727007317009, + 23.317299382895037 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.35, + 8.36, + 8.36, + 8.35, + 8.35 + ], + "y": [ + 23.32729926829595, + 23.32729926829595, + 24.382700845275544, + 24.382700845275544, + 23.32729926829595 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.36, + 8.37, + 8.37, + 8.36, + 8.36 + ], + "y": [ + 23.3372991547213, + 23.3372991547213, + 24.39270095783486, + 24.39270095783486, + 23.3372991547213 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.37, + 8.379999999999999, + 8.379999999999999, + 8.37, + 8.37 + ], + "y": [ + 23.34729904216198, + 23.34729904216198, + 24.40270106938799, + 24.40270106938799, + 23.34729904216198 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.379999999999999, + 8.39, + 8.39, + 8.379999999999999, + 8.379999999999999 + ], + "y": [ + 23.357298930608845, + 23.357298930608845, + 24.4127011799439, + 24.4127011799439, + 23.357298930608845 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.39, + 8.4, + 8.4, + 8.39, + 8.39 + ], + "y": [ + 23.36729882005293, + 23.36729882005293, + 24.42270128951152, + 24.42270128951152, + 23.36729882005293 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.4, + 8.41, + 8.41, + 8.4, + 8.4 + ], + "y": [ + 23.37729871048531, + 23.37729871048531, + 24.43270139809968, + 24.43270139809968, + 23.37729871048531 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.41, + 8.42, + 8.42, + 8.41, + 8.41 + ], + "y": [ + 23.387298601897143, + 23.387298601897143, + 24.44270150571721, + 24.44270150571721, + 23.387298601897143 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.42, + 8.43, + 8.43, + 8.42, + 8.42 + ], + "y": [ + 23.39729849427961, + 23.39729849427961, + 24.45270161237267, + 24.45270161237267, + 23.39729849427961 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.43, + 8.44, + 8.44, + 8.43, + 8.43 + ], + "y": [ + 23.407298387624145, + 23.407298387624145, + 24.46270171807478, + 24.46270171807478, + 23.407298387624145 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.44, + 8.45, + 8.45, + 8.44, + 8.44 + ], + "y": [ + 23.417298281922033, + 23.417298281922033, + 24.472701822831958, + 24.472701822831958, + 23.417298281922033 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.45, + 8.459999999999999, + 8.459999999999999, + 8.45, + 8.45 + ], + "y": [ + 23.42729817716485, + 23.42729817716485, + 24.482701926652783, + 24.482701926652783, + 23.42729817716485 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.459999999999999, + 8.47, + 8.47, + 8.459999999999999, + 8.459999999999999 + ], + "y": [ + 23.43729807334402, + 23.43729807334402, + 24.492702029545516, + 24.492702029545516, + 23.43729807334402 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.47, + 8.48, + 8.48, + 8.47, + 8.47 + ], + "y": [ + 23.447297970451284, + 23.447297970451284, + 24.502702131518568, + 24.502702131518568, + 23.447297970451284 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.48, + 8.49, + 8.49, + 8.48, + 8.48 + ], + "y": [ + 23.45729786847823, + 23.45729786847823, + 24.512702232580075, + 24.512702232580075, + 23.45729786847823 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.49, + 8.5, + 8.5, + 8.49, + 8.49 + ], + "y": [ + 23.467297767416717, + 23.467297767416717, + 24.522702332738213, + 24.522702332738213, + 23.467297767416717 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.5, + 8.51, + 8.51, + 8.5, + 8.5 + ], + "y": [ + 23.477297667258576, + 23.477297667258576, + 24.532702432001102, + 24.532702432001102, + 23.477297667258576 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.51, + 8.52, + 8.52, + 8.51, + 8.51 + ], + "y": [ + 23.487297567995682, + 23.487297567995682, + 24.542702530376765, + 24.542702530376765, + 23.487297567995682 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.52, + 8.53, + 8.53, + 8.52, + 8.52 + ], + "y": [ + 23.497297469620015, + 23.497297469620015, + 24.55270262787308, + 24.55270262787308, + 23.497297469620015 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.53, + 8.54, + 8.54, + 8.53, + 8.53 + ], + "y": [ + 23.507297372123695, + 23.507297372123695, + 24.56270272449792, + 24.56270272449792, + 23.507297372123695 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.54, + 8.549999999999999, + 8.549999999999999, + 8.54, + 8.54 + ], + "y": [ + 23.51729727549885, + 23.51729727549885, + 24.572702820259114, + 24.572702820259114, + 23.51729727549885 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.549999999999999, + 8.56, + 8.56, + 8.549999999999999, + 8.549999999999999 + ], + "y": [ + 23.527297179737655, + 23.527297179737655, + 24.582702915164372, + 24.582702915164372, + 23.527297179737655 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.56, + 8.57, + 8.57, + 8.56, + 8.56 + ], + "y": [ + 23.537297084832392, + 23.537297084832392, + 24.5927030092213, + 24.5927030092213, + 23.537297084832392 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.57, + 8.58, + 8.58, + 8.57, + 8.57 + ], + "y": [ + 23.54729699077546, + 23.54729699077546, + 24.602703102437548, + 24.602703102437548, + 23.54729699077546 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.58, + 8.59, + 8.59, + 8.58, + 8.58 + ], + "y": [ + 23.55729689755921, + 23.55729689755921, + 24.612703194820586, + 24.612703194820586, + 23.55729689755921 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.59, + 8.6, + 8.6, + 8.59, + 8.59 + ], + "y": [ + 23.567296805176166, + 23.567296805176166, + 24.622703286377895, + 24.622703286377895, + 23.567296805176166 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.6, + 8.61, + 8.61, + 8.6, + 8.6 + ], + "y": [ + 23.577296713618853, + 23.577296713618853, + 24.63270337711689, + 24.63270337711689, + 23.577296713618853 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.61, + 8.62, + 8.62, + 8.61, + 8.61 + ], + "y": [ + 23.587296622879855, + 23.587296622879855, + 24.642703467044868, + 24.642703467044868, + 23.587296622879855 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.62, + 8.629999999999999, + 8.629999999999999, + 8.62, + 8.62 + ], + "y": [ + 23.597296532951873, + 23.597296532951873, + 24.652703556169097, + 24.652703556169097, + 23.597296532951873 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.629999999999999, + 8.64, + 8.64, + 8.629999999999999, + 8.629999999999999 + ], + "y": [ + 23.60729644382764, + 23.60729644382764, + 24.66270364449682, + 24.66270364449682, + 23.60729644382764 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.64, + 8.65, + 8.65, + 8.64, + 8.64 + ], + "y": [ + 23.617296355499914, + 23.617296355499914, + 24.672703732035018, + 24.672703732035018, + 23.617296355499914 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.65, + 8.66, + 8.66, + 8.65, + 8.65 + ], + "y": [ + 23.62729626796171, + 23.62729626796171, + 24.682703818790838, + 24.682703818790838, + 23.62729626796171 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.66, + 8.67, + 8.67, + 8.66, + 8.66 + ], + "y": [ + 23.637296181205887, + 23.637296181205887, + 24.692703904771278, + 24.692703904771278, + 23.637296181205887 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.67, + 8.68, + 8.68, + 8.67, + 8.67 + ], + "y": [ + 23.647296095225443, + 23.647296095225443, + 24.702703989983316, + 24.702703989983316, + 23.647296095225443 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.68, + 8.69, + 8.69, + 8.68, + 8.68 + ], + "y": [ + 23.6572960100134, + 23.6572960100134, + 24.712704074433717, + 24.712704074433717, + 23.6572960100134 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.69, + 8.7, + 8.7, + 8.69, + 8.69 + ], + "y": [ + 23.667295925562996, + 23.667295925562996, + 24.72270415812934, + 24.72270415812934, + 23.667295925562996 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.7, + 8.709999999999999, + 8.709999999999999, + 8.7, + 8.7 + ], + "y": [ + 23.67729584186737, + 23.67729584186737, + 24.73270424107698, + 24.73270424107698, + 23.67729584186737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.709999999999999, + 8.72, + 8.72, + 8.709999999999999, + 8.709999999999999 + ], + "y": [ + 23.687295758919724, + 23.687295758919724, + 24.742704323283277, + 24.742704323283277, + 23.687295758919724 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.72, + 8.73, + 8.73, + 8.72, + 8.72 + ], + "y": [ + 23.697295676713424, + 23.697295676713424, + 24.75270440475491, + 24.75270440475491, + 23.697295676713424 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.73, + 8.74, + 8.74, + 8.73, + 8.73 + ], + "y": [ + 23.70729559524179, + 23.70729559524179, + 24.762704485498325, + 24.762704485498325, + 23.70729559524179 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.74, + 8.75, + 8.75, + 8.74, + 8.74 + ], + "y": [ + 23.717295514498367, + 23.717295514498367, + 24.77270456552015, + 24.77270456552015, + 23.717295514498367 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.75, + 8.76, + 8.76, + 8.75, + 8.75 + ], + "y": [ + 23.727295434476538, + 23.727295434476538, + 24.782704644826797, + 24.782704644826797, + 23.727295434476538 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.76, + 8.77, + 8.77, + 8.76, + 8.76 + ], + "y": [ + 23.737295355169888, + 23.737295355169888, + 24.79270472342474, + 24.79270472342474, + 23.737295355169888 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.77, + 8.78, + 8.78, + 8.77, + 8.77 + ], + "y": [ + 23.74729527657194, + 23.74729527657194, + 24.802704801320253, + 24.802704801320253, + 23.74729527657194 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.78, + 8.79, + 8.79, + 8.78, + 8.78 + ], + "y": [ + 23.757295198676424, + 23.757295198676424, + 24.812704878519607, + 24.812704878519607, + 23.757295198676424 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.79, + 8.799999999999999, + 8.799999999999999, + 8.79, + 8.79 + ], + "y": [ + 23.767295121477066, + 23.767295121477066, + 24.822704955029057, + 24.822704955029057, + 23.767295121477066 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.799999999999999, + 8.81, + 8.81, + 8.799999999999999, + 8.799999999999999 + ], + "y": [ + 23.777295044967612, + 23.777295044967612, + 24.83270503085477, + 24.83270503085477, + 23.777295044967612 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.81, + 8.82, + 8.82, + 8.81, + 8.81 + ], + "y": [ + 23.787294969141897, + 23.787294969141897, + 24.842705106002843, + 24.842705106002843, + 23.787294969141897 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.82, + 8.83, + 8.83, + 8.82, + 8.82 + ], + "y": [ + 23.79729489399382, + 23.79729489399382, + 24.852705180479322, + 24.852705180479322, + 23.79729489399382 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.83, + 8.84, + 8.84, + 8.83, + 8.83 + ], + "y": [ + 23.807294819517335, + 23.807294819517335, + 24.86270525429024, + 24.86270525429024, + 23.807294819517335 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.84, + 8.85, + 8.85, + 8.84, + 8.84 + ], + "y": [ + 23.817294745706413, + 23.817294745706413, + 24.872705327441565, + 24.872705327441565, + 23.817294745706413 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.85, + 8.86, + 8.86, + 8.85, + 8.85 + ], + "y": [ + 23.827294672555084, + 23.827294672555084, + 24.882705399939166, + 24.882705399939166, + 23.827294672555084 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.86, + 8.87, + 8.87, + 8.86, + 8.86 + ], + "y": [ + 23.83729460005748, + 23.83729460005748, + 24.89270547178889, + 24.89270547178889, + 23.83729460005748 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.87, + 8.879999999999999, + 8.879999999999999, + 8.87, + 8.87 + ], + "y": [ + 23.84729452820775, + 23.84729452820775, + 24.902705542996586, + 24.902705542996586, + 23.84729452820775 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.879999999999999, + 8.89, + 8.89, + 8.879999999999999, + 8.879999999999999 + ], + "y": [ + 23.85729445700005, + 23.85729445700005, + 24.91270561356794, + 24.91270561356794, + 23.85729445700005 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.89, + 8.9, + 8.9, + 8.89, + 8.89 + ], + "y": [ + 23.867294386428693, + 23.867294386428693, + 24.92270568350866, + 24.92270568350866, + 23.867294386428693 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.9, + 8.91, + 8.91, + 8.9, + 8.9 + ], + "y": [ + 23.87729431648797, + 23.87729431648797, + 24.932705752824326, + 24.932705752824326, + 23.87729431648797 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.91, + 8.92, + 8.92, + 8.91, + 8.91 + ], + "y": [ + 23.8872942471723, + 23.8872942471723, + 24.94270582152063, + 24.94270582152063, + 23.8872942471723 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.92, + 8.93, + 8.93, + 8.92, + 8.92 + ], + "y": [ + 23.897294178475992, + 23.897294178475992, + 24.952705889603052, + 24.952705889603052, + 23.897294178475992 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.93, + 8.94, + 8.94, + 8.93, + 8.93 + ], + "y": [ + 23.907294110393565, + 23.907294110393565, + 24.962705957077116, + 24.962705957077116, + 23.907294110393565 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.94, + 8.95, + 8.95, + 8.94, + 8.94 + ], + "y": [ + 23.917294042919497, + 23.917294042919497, + 24.972706023948206, + 24.972706023948206, + 23.917294042919497 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.95, + 8.959999999999999, + 8.959999999999999, + 8.95, + 8.95 + ], + "y": [ + 23.927293976048404, + 23.927293976048404, + 24.982706090221726, + 24.982706090221726, + 23.927293976048404 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.959999999999999, + 8.97, + 8.97, + 8.959999999999999, + 8.959999999999999 + ], + "y": [ + 23.93729390977488, + 23.93729390977488, + 24.992706155903036, + 24.992706155903036, + 23.93729390977488 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.97, + 8.98, + 8.98, + 8.97, + 8.97 + ], + "y": [ + 23.947293844093565, + 23.947293844093565, + 25.00270622099748, + 25.00270622099748, + 23.947293844093565 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.98, + 8.99, + 8.99, + 8.98, + 8.98 + ], + "y": [ + 23.957293778999116, + 23.957293778999116, + 25.01270628551026, + 25.01270628551026, + 23.957293778999116 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 8.99, + 9, + 9, + 8.99, + 8.99 + ], + "y": [ + 23.967293714486335, + 23.967293714486335, + 25.02270634944653, + 25.02270634944653, + 23.967293714486335 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9, + 9.01, + 9.01, + 9, + 9 + ], + "y": [ + 23.97729365055006, + 23.97729365055006, + 25.03270641281154, + 25.03270641281154, + 23.97729365055006 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.01, + 9.02, + 9.02, + 9.01, + 9.01 + ], + "y": [ + 23.987293587185047, + 23.987293587185047, + 25.04270647561038, + 25.04270647561038, + 23.987293587185047 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.02, + 9.03, + 9.03, + 9.02, + 9.02 + ], + "y": [ + 23.9972935243862, + 23.9972935243862, + 25.052706537848053, + 25.052706537848053, + 23.9972935243862 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.03, + 9.04, + 9.04, + 9.03, + 9.03 + ], + "y": [ + 24.007293462148525, + 24.007293462148525, + 25.062706599529594, + 25.062706599529594, + 24.007293462148525 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.04, + 9.049999999999999, + 9.049999999999999, + 9.04, + 9.04 + ], + "y": [ + 24.01729340046698, + 24.01729340046698, + 25.07270666065999, + 25.07270666065999, + 24.01729340046698 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.049999999999999, + 9.06, + 9.06, + 9.049999999999999, + 9.049999999999999 + ], + "y": [ + 24.02729333933658, + 24.02729333933658, + 25.082706721244207, + 25.082706721244207, + 24.02729333933658 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.06, + 9.07, + 9.07, + 9.06, + 9.06 + ], + "y": [ + 24.037293278752358, + 24.037293278752358, + 25.09270678128709, + 25.09270678128709, + 24.037293278752358 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.07, + 9.08, + 9.08, + 9.07, + 9.07 + ], + "y": [ + 24.04729321870947, + 24.04729321870947, + 25.102706840793473, + 25.102706840793473, + 24.04729321870947 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.08, + 9.09, + 9.09, + 9.08, + 9.08 + ], + "y": [ + 24.057293159203084, + 24.057293159203084, + 25.11270689976815, + 25.11270689976815, + 24.057293159203084 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.09, + 9.1, + 9.1, + 9.09, + 9.09 + ], + "y": [ + 24.067293100228405, + 24.067293100228405, + 25.122706958215897, + 25.122706958215897, + 24.067293100228405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.1, + 9.11, + 9.11, + 9.1, + 9.1 + ], + "y": [ + 24.077293041780653, + 24.077293041780653, + 25.132707016141406, + 25.132707016141406, + 24.077293041780653 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.11, + 9.12, + 9.12, + 9.11, + 9.11 + ], + "y": [ + 24.08729298385514, + 24.08729298385514, + 25.1427070735494, + 25.1427070735494, + 24.08729298385514 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.12, + 9.129999999999999, + 9.129999999999999, + 9.12, + 9.12 + ], + "y": [ + 24.097292926447142, + 24.097292926447142, + 25.152707130444444, + 25.152707130444444, + 24.097292926447142 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.129999999999999, + 9.14, + 9.14, + 9.129999999999999, + 9.129999999999999 + ], + "y": [ + 24.107292869552094, + 24.107292869552094, + 25.162707186831117, + 25.162707186831117, + 24.107292869552094 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.14, + 9.15, + 9.15, + 9.14, + 9.14 + ], + "y": [ + 24.117292813165417, + 24.117292813165417, + 25.172707242714008, + 25.172707242714008, + 24.117292813165417 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.15, + 9.16, + 9.16, + 9.15, + 9.15 + ], + "y": [ + 24.12729275728252, + 24.12729275728252, + 25.182707298097593, + 25.182707298097593, + 24.12729275728252 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.16, + 9.17, + 9.17, + 9.16, + 9.16 + ], + "y": [ + 24.137292701898932, + 24.137292701898932, + 25.19270735298636, + 25.19270735298636, + 24.137292701898932 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.17, + 9.18, + 9.18, + 9.17, + 9.17 + ], + "y": [ + 24.14729264701016, + 24.14729264701016, + 25.202707407384683, + 25.202707407384683, + 24.14729264701016 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.18, + 9.19, + 9.19, + 9.18, + 9.18 + ], + "y": [ + 24.157292592611835, + 24.157292592611835, + 25.212707461297033, + 25.212707461297033, + 24.157292592611835 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.19, + 9.2, + 9.2, + 9.19, + 9.19 + ], + "y": [ + 24.16729253869948, + 24.16729253869948, + 25.222707514727716, + 25.222707514727716, + 24.16729253869948 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.2, + 9.209999999999999, + 9.209999999999999, + 9.2, + 9.2 + ], + "y": [ + 24.177292485268794, + 24.177292485268794, + 25.23270756768097, + 25.23270756768097, + 24.177292485268794 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.209999999999999, + 9.22, + 9.22, + 9.209999999999999, + 9.209999999999999 + ], + "y": [ + 24.187292432315537, + 24.187292432315537, + 25.24270762016116, + 25.24270762016116, + 24.187292432315537 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.22, + 9.23, + 9.23, + 9.22, + 9.22 + ], + "y": [ + 24.197292379835343, + 24.197292379835343, + 25.252707672172537, + 25.252707672172537, + 24.197292379835343 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.23, + 9.24, + 9.24, + 9.23, + 9.23 + ], + "y": [ + 24.20729232782396, + 24.20729232782396, + 25.262707723719206, + 25.262707723719206, + 24.20729232782396 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.24, + 9.25, + 9.25, + 9.24, + 9.24 + ], + "y": [ + 24.217292276277288, + 24.217292276277288, + 25.27270777480534, + 25.27270777480534, + 24.217292276277288 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.25, + 9.26, + 9.26, + 9.25, + 9.25 + ], + "y": [ + 24.22729222519115, + 24.22729222519115, + 25.282707825435025, + 25.282707825435025, + 24.22729222519115 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.26, + 9.27, + 9.27, + 9.26, + 9.26 + ], + "y": [ + 24.23729217456146, + 24.23729217456146, + 25.29270787561243, + 25.29270787561243, + 24.23729217456146 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.27, + 9.28, + 9.28, + 9.27, + 9.27 + ], + "y": [ + 24.247292124384053, + 24.247292124384053, + 25.302707925341558, + 25.302707925341558, + 24.247292124384053 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.28, + 9.29, + 9.29, + 9.28, + 9.28 + ], + "y": [ + 24.25729207465492, + 24.25729207465492, + 25.312707974626356, + 25.312707974626356, + 24.25729207465492 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.29, + 9.299999999999999, + 9.299999999999999, + 9.29, + 9.29 + ], + "y": [ + 24.267292025370118, + 24.267292025370118, + 25.322708023470895, + 25.322708023470895, + 24.267292025370118 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.299999999999999, + 9.31, + 9.31, + 9.299999999999999, + 9.299999999999999 + ], + "y": [ + 24.277291976525575, + 24.277291976525575, + 25.332708071879075, + 25.332708071879075, + 24.277291976525575 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.31, + 9.32, + 9.32, + 9.31, + 9.31 + ], + "y": [ + 24.28729192811739, + 24.28729192811739, + 25.34270811985475, + 25.34270811985475, + 24.28729192811739 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.32, + 9.33, + 9.33, + 9.32, + 9.32 + ], + "y": [ + 24.297291880141714, + 24.297291880141714, + 25.352708167401833, + 25.352708167401833, + 24.297291880141714 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.33, + 9.34, + 9.34, + 9.33, + 9.33 + ], + "y": [ + 24.307291832594625, + 24.307291832594625, + 25.362708214524158, + 25.362708214524158, + 24.307291832594625 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.34, + 9.35, + 9.35, + 9.34, + 9.34 + ], + "y": [ + 24.317291785472296, + 24.317291785472296, + 25.372708261225547, + 25.372708261225547, + 24.317291785472296 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.35, + 9.36, + 9.36, + 9.35, + 9.35 + ], + "y": [ + 24.327291738770903, + 24.327291738770903, + 25.38270830750968, + 25.38270830750968, + 24.327291738770903 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.36, + 9.37, + 9.37, + 9.36, + 9.36 + ], + "y": [ + 24.337291692486765, + 24.337291692486765, + 25.39270835338039, + 25.39270835338039, + 24.337291692486765 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.37, + 9.379999999999999, + 9.379999999999999, + 9.37, + 9.37 + ], + "y": [ + 24.347291646616053, + 24.347291646616053, + 25.402708398841288, + 25.402708398841288, + 24.347291646616053 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.379999999999999, + 9.39, + 9.39, + 9.379999999999999, + 9.379999999999999 + ], + "y": [ + 24.35729160115515, + 24.35729160115515, + 25.41270844389606, + 25.41270844389606, + 24.35729160115515 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.39, + 9.4, + 9.4, + 9.39, + 9.39 + ], + "y": [ + 24.367291556100373, + 24.367291556100373, + 25.422708488548334, + 25.422708488548334, + 24.367291556100373 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.4, + 9.41, + 9.41, + 9.4, + 9.4 + ], + "y": [ + 24.377291511448096, + 24.377291511448096, + 25.432708532801744, + 25.432708532801744, + 24.377291511448096 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.41, + 9.42, + 9.42, + 9.41, + 9.41 + ], + "y": [ + 24.387291467194682, + 24.387291467194682, + 25.44270857665986, + 25.44270857665986, + 24.387291467194682 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.42, + 9.43, + 9.43, + 9.42, + 9.42 + ], + "y": [ + 24.39729142333656, + 24.39729142333656, + 25.452708620126195, + 25.452708620126195, + 24.39729142333656 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.43, + 9.44, + 9.44, + 9.43, + 9.43 + ], + "y": [ + 24.407291379870223, + 24.407291379870223, + 25.462708663204175, + 25.462708663204175, + 24.407291379870223 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.44, + 9.45, + 9.45, + 9.44, + 9.44 + ], + "y": [ + 24.41729133679224, + 24.41729133679224, + 25.47270870589738, + 25.47270870589738, + 24.41729133679224 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.45, + 9.459999999999999, + 9.459999999999999, + 9.45, + 9.45 + ], + "y": [ + 24.42729129409903, + 24.42729129409903, + 25.482708748209205, + 25.482708748209205, + 24.42729129409903 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.459999999999999, + 9.47, + 9.47, + 9.459999999999999, + 9.459999999999999 + ], + "y": [ + 24.4372912517872, + 24.4372912517872, + 25.492708790143055, + 25.492708790143055, + 24.4372912517872 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.47, + 9.48, + 9.48, + 9.47, + 9.47 + ], + "y": [ + 24.447291209853347, + 24.447291209853347, + 25.50270883170235, + 25.50270883170235, + 24.447291209853347 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.48, + 9.49, + 9.49, + 9.48, + 9.48 + ], + "y": [ + 24.45729116829405, + 24.45729116829405, + 25.512708872890386, + 25.512708872890386, + 24.45729116829405 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.49, + 9.5, + 9.5, + 9.49, + 9.49 + ], + "y": [ + 24.46729112710601, + 24.46729112710601, + 25.52270891371048, + 25.52270891371048, + 24.46729112710601 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.5, + 9.51, + 9.51, + 9.5, + 9.5 + ], + "y": [ + 24.47729108628591, + 24.47729108628591, + 25.532708954166033, + 25.532708954166033, + 24.47729108628591 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.51, + 9.52, + 9.52, + 9.51, + 9.51 + ], + "y": [ + 24.487291045830354, + 24.487291045830354, + 25.542708994260124, + 25.542708994260124, + 24.487291045830354 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.52, + 9.53, + 9.53, + 9.52, + 9.52 + ], + "y": [ + 24.49729100573626, + 24.49729100573626, + 25.552709033996088, + 25.552709033996088, + 24.49729100573626 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.53, + 9.54, + 9.54, + 9.53, + 9.53 + ], + "y": [ + 24.50729096600029, + 24.50729096600029, + 25.5627090733771, + 25.5627090733771, + 24.50729096600029 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.54, + 9.549999999999999, + 9.549999999999999, + 9.54, + 9.54 + ], + "y": [ + 24.517290926619275, + 24.517290926619275, + 25.572709112406365, + 25.572709112406365, + 24.517290926619275 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.549999999999999, + 9.56, + 9.56, + 9.549999999999999, + 9.549999999999999 + ], + "y": [ + 24.527290887590006, + 24.527290887590006, + 25.58270915108693, + 25.58270915108693, + 24.527290887590006 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.56, + 9.57, + 9.57, + 9.56, + 9.56 + ], + "y": [ + 24.537290848909436, + 24.537290848909436, + 25.59270918942206, + 25.59270918942206, + 24.537290848909436 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.57, + 9.58, + 9.58, + 9.57, + 9.57 + ], + "y": [ + 24.547290810574303, + 24.547290810574303, + 25.602709227414763, + 25.602709227414763, + 24.547290810574303 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.58, + 9.59, + 9.59, + 9.58, + 9.58 + ], + "y": [ + 24.557290772581595, + 24.557290772581595, + 25.612709265068144, + 25.612709265068144, + 24.557290772581595 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.59, + 9.6, + 9.6, + 9.59, + 9.59 + ], + "y": [ + 24.56729073492821, + 24.56729073492821, + 25.62270930238521, + 25.62270930238521, + 24.56729073492821 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.6, + 9.61, + 9.61, + 9.6, + 9.6 + ], + "y": [ + 24.57729069761114, + 24.57729069761114, + 25.632709339368898, + 25.632709339368898, + 24.57729069761114 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.61, + 9.62, + 9.62, + 9.61, + 9.61 + ], + "y": [ + 24.58729066062745, + 24.58729066062745, + 25.642709376022303, + 25.642709376022303, + 24.58729066062745 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.62, + 9.629999999999999, + 9.629999999999999, + 9.62, + 9.62 + ], + "y": [ + 24.59729062397404, + 24.59729062397404, + 25.65270941234826, + 25.65270941234826, + 24.59729062397404 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.629999999999999, + 9.64, + 9.64, + 9.629999999999999, + 9.629999999999999 + ], + "y": [ + 24.60729058764808, + 24.60729058764808, + 25.662709448349744, + 25.662709448349744, + 24.60729058764808 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.64, + 9.65, + 9.65, + 9.64, + 9.64 + ], + "y": [ + 24.61729055164659, + 24.61729055164659, + 25.672709484029664, + 25.672709484029664, + 24.61729055164659 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.65, + 9.66, + 9.66, + 9.65, + 9.65 + ], + "y": [ + 24.627290515966667, + 24.627290515966667, + 25.68270951939096, + 25.68270951939096, + 24.627290515966667 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.66, + 9.67, + 9.67, + 9.66, + 9.66 + ], + "y": [ + 24.637290480605365, + 24.637290480605365, + 25.69270955443638, + 25.69270955443638, + 24.637290480605365 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.67, + 9.68, + 9.68, + 9.67, + 9.67 + ], + "y": [ + 24.647290445559943, + 24.647290445559943, + 25.702709589168823, + 25.702709589168823, + 24.647290445559943 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.68, + 9.69, + 9.69, + 9.68, + 9.68 + ], + "y": [ + 24.657290410827496, + 24.657290410827496, + 25.712709623591074, + 25.712709623591074, + 24.657290410827496 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.69, + 9.7, + 9.7, + 9.69, + 9.69 + ], + "y": [ + 24.66729037640524, + 24.66729037640524, + 25.72270965770587, + 25.72270965770587, + 24.66729037640524 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.7, + 9.709999999999999, + 9.709999999999999, + 9.7, + 9.7 + ], + "y": [ + 24.67729034229044, + 24.67729034229044, + 25.732709691515943, + 25.732709691515943, + 24.67729034229044 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.709999999999999, + 9.72, + 9.72, + 9.709999999999999, + 9.709999999999999 + ], + "y": [ + 24.687290308480364, + 24.687290308480364, + 25.74270972502404, + 25.74270972502404, + 24.687290308480364 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.72, + 9.73, + 9.73, + 9.72, + 9.72 + ], + "y": [ + 24.697290274972264, + 24.697290274972264, + 25.75270975823288, + 25.75270975823288, + 24.697290274972264 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.73, + 9.74, + 9.74, + 9.73, + 9.73 + ], + "y": [ + 24.70729024176342, + 24.70729024176342, + 25.762709791145085, + 25.762709791145085, + 24.70729024176342 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.74, + 9.75, + 9.75, + 9.74, + 9.74 + ], + "y": [ + 24.71729020885121, + 24.71729020885121, + 25.77270982376335, + 25.77270982376335, + 24.71729020885121 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.75, + 9.76, + 9.76, + 9.75, + 9.75 + ], + "y": [ + 24.72729017623294, + 24.72729017623294, + 25.78270985609035, + 25.78270985609035, + 24.72729017623294 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.76, + 9.77, + 9.77, + 9.76, + 9.76 + ], + "y": [ + 24.737290143905938, + 24.737290143905938, + 25.792709888128613, + 25.792709888128613, + 24.737290143905938 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.77, + 9.78, + 9.78, + 9.77, + 9.77 + ], + "y": [ + 24.74729011186767, + 24.74729011186767, + 25.802709919880723, + 25.802709919880723, + 24.74729011186767 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.78, + 9.79, + 9.79, + 9.78, + 9.78 + ], + "y": [ + 24.757290080115556, + 24.757290080115556, + 25.812709951349216, + 25.812709951349216, + 24.757290080115556 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.79, + 9.799999999999999, + 9.799999999999999, + 9.79, + 9.79 + ], + "y": [ + 24.76729004864706, + 24.76729004864706, + 25.82270998253668, + 25.82270998253668, + 24.76729004864706 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.799999999999999, + 9.81, + 9.81, + 9.799999999999999, + 9.799999999999999 + ], + "y": [ + 24.777290017459592, + 24.777290017459592, + 25.832710013445666, + 25.832710013445666, + 24.777290017459592 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.81, + 9.82, + 9.82, + 9.81, + 9.81 + ], + "y": [ + 24.7872899865506, + 24.7872899865506, + 25.842710044078558, + 25.842710044078558, + 24.7872899865506 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.82, + 9.83, + 9.83, + 9.82, + 9.82 + ], + "y": [ + 24.797289955917705, + 24.797289955917705, + 25.852710074437848, + 25.852710074437848, + 24.797289955917705 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.83, + 9.84, + 9.84, + 9.83, + 9.83 + ], + "y": [ + 24.80728992555841, + 24.80728992555841, + 25.862710104526066, + 25.862710104526066, + 24.80728992555841 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.84, + 9.85, + 9.85, + 9.84, + 9.84 + ], + "y": [ + 24.81728989547019, + 24.81728989547019, + 25.872710134345514, + 25.872710134345514, + 24.81728989547019 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.85, + 9.86, + 9.86, + 9.85, + 9.85 + ], + "y": [ + 24.827289865650737, + 24.827289865650737, + 25.882710163898707, + 25.882710163898707, + 24.827289865650737 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.86, + 9.87, + 9.87, + 9.86, + 9.86 + ], + "y": [ + 24.83728983609754, + 24.83728983609754, + 25.89271019318793, + 25.89271019318793, + 24.83728983609754 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.87, + 9.879999999999999, + 9.879999999999999, + 9.87, + 9.87 + ], + "y": [ + 24.847289806808313, + 24.847289806808313, + 25.90271022221561, + 25.90271022221561, + 24.847289806808313 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.879999999999999, + 9.89, + 9.89, + 9.879999999999999, + 9.879999999999999 + ], + "y": [ + 24.85728977778063, + 24.85728977778063, + 25.912710250984038, + 25.912710250984038, + 24.85728977778063 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.89, + 9.9, + 9.9, + 9.89, + 9.89 + ], + "y": [ + 24.867289749012198, + 24.867289749012198, + 25.92271027949551, + 25.92271027949551, + 24.867289749012198 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.9, + 9.91, + 9.91, + 9.9, + 9.9 + ], + "y": [ + 24.87728972050072, + 24.87728972050072, + 25.932710307752387, + 25.932710307752387, + 24.87728972050072 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.91, + 9.92, + 9.92, + 9.91, + 9.91 + ], + "y": [ + 24.88728969224384, + 24.88728969224384, + 25.942710335756903, + 25.942710335756903, + 24.88728969224384 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.92, + 9.93, + 9.93, + 9.92, + 9.92 + ], + "y": [ + 24.89728966423932, + 24.89728966423932, + 25.952710363511315, + 25.952710363511315, + 24.89728966423932 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.93, + 9.94, + 9.94, + 9.93, + 9.93 + ], + "y": [ + 24.907289636484904, + 24.907289636484904, + 25.96271039101794, + 25.96271039101794, + 24.907289636484904 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.94, + 9.95, + 9.95, + 9.94, + 9.94 + ], + "y": [ + 24.917289608978276, + 24.917289608978276, + 25.97271041827887, + 25.97271041827887, + 24.917289608978276 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.95, + 9.959999999999999, + 9.959999999999999, + 9.95, + 9.95 + ], + "y": [ + 24.927289581717343, + 24.927289581717343, + 25.982710445296405, + 25.982710445296405, + 24.927289581717343 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.959999999999999, + 9.97, + 9.97, + 9.959999999999999, + 9.959999999999999 + ], + "y": [ + 24.937289554699802, + 24.937289554699802, + 25.992710472072638, + 25.992710472072638, + 24.937289554699802 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.97, + 9.98, + 9.98, + 9.97, + 9.97 + ], + "y": [ + 24.947289527923566, + 24.947289527923566, + 26.002710498609726, + 26.002710498609726, + 24.947289527923566 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.98, + 9.99, + 9.99, + 9.98, + 9.98 + ], + "y": [ + 24.957289501386473, + 24.957289501386473, + 26.0127105249099, + 26.0127105249099, + 24.957289501386473 + ] + }, + { + "fill": "toself", + "fillcolor": "#0000FF", + "line": { + "color": "#0000CC", + "width": 3 + }, + "marker": { + "size": 1 + }, + "mode": "markers+lines", + "showlegend": false, + "type": "scatter", + "x": [ + 9.99, + 10, + 10, + 9.99, + 9.99 + ], + "y": [ + 24.967289475086297, + 24.967289475086297, + 26.02271055097518, + 26.02271055097518, + 24.967289475086297 + ] + } + ], + "layout": { + "font": { + "size": 32 + }, + "plot_bgcolor": "rgba(0,0,0,0)", + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "gridcolor": "LightGrey", + "gridwidth": 2, + "linecolor": "Gray", + "linewidth": 4, + "range": [ + -2.5, + 12.5 + ], + "showgrid": true, + "showline": true + }, + "yaxis": { + "gridcolor": "LightGrey", + "gridwidth": 2, + "linecolor": "Gray", + "linewidth": 4, + "range": [ + -6.505677637743795, + 32.52838818871898 + ], + "showgrid": true, + "showline": true + } + } + } + }, + "metadata": {}, + "output_type": "display_data" } ], "source": [ - "from verse.parser.parser import ControllerIR\n", + "from enum import Enum, auto\n", "\n", - "class AgentCar:\n", - " def __init__(self, id, code = None, file_name = None):\n", - " self.id = id \n", - " self.controller = ControllerIR.parse(code, file_name)\n", - " self.TC_simulate = TC_simulate\n" + "class AgentMode(Enum):\n", + " Normal = auto()\n", + " Brake = auto()\n", + "\n", + "class TrackMode(Enum):\n", + " T0 = auto()\n", + "\n", + "from verse.scenario import Scenario\n", + "from tutorial_map import M1\n", + "scenario = Scenario()\n", + "scenario.set_map(M1())\n", + "\n", + "\n", + "car1 = CarAgent('car1', file_name=\"dl_sec4.py\")\n", + "car1.set_initial([[0,-0.5,0,2],[1,0.5,0,2]], (AgentMode.Normal, TrackMode.T0))\n", + "car2 = CarAgent('car2', file_name=\"dl_sec4.py\")\n", + "car2.set_initial([[15,-0.5,0,1],[16,0.5,0,1]], (AgentMode.Normal, TrackMode.T0))\n", + "scenario.add_agent(car1)\n", + "scenario.add_agent(car2)\n", + "\n", + "traces_simu = scenario.simulate(10, 0.01)\n", + "traces_veri = scenario.verify(10, 0.01)\n", + "\n", + "import plotly.graph_objects as go\n", + "from verse.plotter.plotter2D import *\n", + "\n", + "fig = go.Figure()\n", + "fig = simulation_tree(traces_simu, None, fig, 0, 1, [0, 1], 'lines', 'trace')\n", + "fig.show()\n", + "\n", + "fig = go.Figure()\n", + "fig = reachtube_tree(traces_veri, None, fig, 0, 1, [0, 1], 'lines', 'trace')\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 5. Creating map (work in progress)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this section, we will look at how to create a map for Verse by extending the map we used in the previous section from 1 lane to 2 lanes. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The map will contain a set of tracks, that the agent's continuous dynamics roughly follows. In addition, we also assume that an agent's decision logic does not depend on exactly which of the infinitely many tracks it is following, but instead, it depends only on which type of track it is following, or the track mode. In this example, as shown in the figure below, each of the lanes will have a track mode <code>T0</code> and <code>T1</code>. In Verse, we can create the two types of tracks <code>T0</code> and <code>T1</code> using the <code>Lane</code> object, with each of them having one straight segment constructed by <code>StraightLane</code> as shown below. \n" ] }, { "cell_type": "code", "execution_count": null, - "id": "2a233433", "metadata": {}, "outputs": [], - "source": [] + "source": [ + "from verse.map.lane_segment import StraightLane\n", + "from verse.map.lane import Lane\n", + "\n", + "segment0 = StraightLane('seg0', [0,0], [500,0], 3)\n", + "lane0 = Lane('T0')\n", + "segment1 = StraightLane('seg1', [0,3], [500,3], 3)\n", + "lane1 = Lane('T1')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Verse currently implments <code>StraightLane</code> and <code>CircularLane</code>, which corresponding to straight line and circular curves. In addition, we allow each <code>Lane</code> to have multiple concatenated <code>StraightLane</code> or <code>CircularLane</code>." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In addition, we also define the transition between tracks. For example, every track for transitioning from point on <code>T0</code> to a corresponding point on <code>T1</code> has track mode <code>M01</code>. Therefore, in this example, our map will have a total of 4 track modes <code>T0</code>, <code>T1</code>, <code>M01</code>, and <code>M10</code>. The map will have a mapping function <code>g</code>, which can provide the track that the agent is following given a track mode and the agent's current position. \n", + "\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, a Verse agent's decision logic can change its interal or tactical mode (E.g. <code>Normal</code> to <code>SwitchLeft</code>). When an agent changes its tactical mode, it may also update the track it's following and this is encoded in another function <code>h</code>, which takes the current track mode, the current and the next tactical mode, and generates the new track mode the agent should follow. In this example, the agents have tacical mode <code>Normal</code>, <code>SwitchLeft</code> and <code>SwitchRight</code>. Therefore, an example <code>h</code> function looks like following. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "h_dict = {\n", + " ('T0','Normal','SwitchLeft'): 'M01',\n", + " ('T1','Normal','SwitchRight'): 'M10',\n", + " ('M01','SwitchLeft','Normal'): 'T1',\n", + " ('M10','SwitchRight','Normal'): 'T0',\n", + "}\n", + "\n", + "def h(lane_idx, agent_mode_src, agent_mode_dest):\n", + " return self.h_dict[(lane_idx, agent_mode_src, agent_mode_dest)]\n", + "\n", + "def h_exist(lane_idx, agent_mode_src, agent_mode_dest):\n", + " return (lane_idx, agent_mode_src, agent_mode_dest) in h_dict" + ] } ], "metadata": { diff --git a/tutorial/dl_sec4.py b/tutorial/dl_sec4.py new file mode 100644 index 00000000..72803069 --- /dev/null +++ b/tutorial/dl_sec4.py @@ -0,0 +1,28 @@ +from enum import Enum, auto + +class AgentMode(Enum): + Normal = auto() + Brake = auto() + +class TrackMode(Enum): + T0 = auto() + +class State: + x:float + y:float + theta:float + v:float + agent_mode:AgentMode + track_mode:TrackMode + + def __init__(self, x, y, theta, v, agent_mode: AgentMode, track_mode: TrackMode): + pass + +from typing import List +import copy +def decisionLogic(ego:State, others: List[State], track_map): + output = copy.deepcopy(ego) + if ego.agent_mode == AgentMode.Normal: + if any( other.x-ego.x< 8 and other.x-ego.x>0 for other in others): + output.agent_mode = AgentMode.Brake + return output \ No newline at end of file diff --git a/tutorial/dl_sec5.py b/tutorial/dl_sec5.py new file mode 100644 index 00000000..31742f3c --- /dev/null +++ b/tutorial/dl_sec5.py @@ -0,0 +1,61 @@ +from enum import Enum, auto + +class AgentMode(Enum): + Normal = auto() + SwitchLeft = auto() + SwitchRight = auto() + +class TrackMode(Enum): + T0 = auto() + T1 = auto() + M01 = auto() + M10 = auto() + +class State: + x:float + y:float + theta:float + v:float + agent_mode:AgentMode + track_mode:TrackMode + + def __init__(self, x, y, theta, v, agent_mode: AgentMode, track_mode: TrackMode): + pass + +def vehicle_front(ego, others, track_map): + res = any((track_map.get_longitudinal_position(other.track_mode, [other.x,other.y]) - track_map.get_longitudinal_position(ego.track_mode, [ego.x,ego.y]) > 3 \ + and track_map.get_longitudinal_position(other.track_mode, [other.x,other.y]) - track_map.get_longitudinal_position(ego.track_mode, [ego.x,ego.y]) < 5 \ + and ego.track_mode == other.track_mode) for other in others) + return res + +def vehicle_close(ego, others): + res = any(ego.x-other.x<1.0 and ego.x-other.x>-1.0 and ego.y-other.y<1.0 and ego.y-other.y>-1.0 for other in others) + return res + +from typing import List +import copy + +def decisionLogic(ego:State, others:List[State], track_map): + output = copy.deepcopy(ego) + if ego.agent_mode == AgentMode.Normal: + if vehicle_front(ego, others, track_map): + if track_map.h_exist(ego.track_mode, ego.agent_mode, AgentMode.SwitchLeft): + output.agent_mode = AgentMode.SwitchLeft + output.track_mode = track_map.h(ego.track_mode, ego.agent_mode, AgentMode.SwitchLeft) + if vehicle_front(ego, others, track_map): + if track_map.h_exist(ego.track_mode, ego.agent_mode, AgentMode.SwitchRight): + output.agent_mode = AgentMode.SwitchRight + output.track_mode = track_map.h(ego.track_mode, ego.agent_mode, AgentMode.SwitchRight) + lat_dist = track_map.get_lateral_distance(ego.track_mode, [ego.x, ego.y]) + if ego.agent_mode == AgentMode.SwitchLeft: + if lat_dist >= 2.5: + output.agent_mode = AgentMode.Normal + output.track_mode = track_map.h(ego.track_mode, ego.agent_mode, AgentMode.Normal) + if ego.agent_mode == AgentMode.SwitchRight: + if lat_dist <= -2.5: + output.agent_mode = AgentMode.Normal + output.track_mode = track_map.h(ego.track_mode, ego.agent_mode, AgentMode.Normal) + + assert not vehicle_close(ego, others) + return output + diff --git a/tutorial/map_2lanes_lab.png b/tutorial/map_2lanes_lab.png new file mode 100644 index 0000000000000000000000000000000000000000..78a01123dcfd1c9f1b0370cc2cac0111bc7c2264 GIT binary patch literal 144826 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 H=E465p~%*| literal 0 HcmV?d00001 diff --git a/tutorial/test.py b/tutorial/test.py index ad7d435b..e4d30c7a 100644 --- a/tutorial/test.py +++ b/tutorial/test.py @@ -1,71 +1,65 @@ -from verse.scenario import Scenario -from tutorial_map import M4 -scenario = Scenario() -scenario.set_map(M4()) +import numpy as np +def car_dynamics(t, state, u): + x, y, theta, v = state + delta, a = u + x_dot = v*np.cos(theta+delta) + y_dot = v*np.sin(theta+delta) + theta_dot = v/1.75*np.tan(delta) + v_dot = a + return [x_dot, y_dot, theta_dot, v_dot] -from enum import Enum, auto +from tutorial_utils import car_action_handler +from typing import List +import numpy as np +from scipy.integrate import ode -class CraftMode(Enum): - Normal = auto() - MoveUp = auto() - MoveDown = auto() +def TC_simulate(mode: List[str], initialCondition, time_bound, time_step, track_map=None)->np.ndarray: + time_bound = float(time_bound) + number_points = int(np.ceil(time_bound/time_step)) + t = [round(i*time_step,10) for i in range(0,number_points)] -class TrackMode(Enum): - T0 = auto() - T1 = auto() - T2 = auto() - M01 = auto() - M10 = auto() - M12 = auto() - M21 = auto() + init = initialCondition + trace = [[0]+init] + for i in range(len(t)): + steering, a = car_action_handler(mode, init, track_map) + r = ode(car_dynamics) + r.set_initial_value(init).set_f_params([steering, a]) + res:np.ndarray = r.integrate(r.t + time_step) + init = res.flatten().tolist() + trace.append([t[i] + time_step] + init) -class State: - x: float - y: float - z: float - vx: float - vy: float - vz: float - craft_mode: CraftMode - track_mode: TrackMode + return np.array(trace) - def __init__(self, x, y, z, vx, vy, vz, craft_mode, track_mode): - pass +from verse.parser.parser import ControllerIR +from verse.agents import BaseAgent -from tutorial_agent import DroneAgent -drone1 = DroneAgent( - 'drone1', file_name="dl_sec2.py", t_v_pair=(1, 1), box_side=[0.4]*3) -drone1.set_initial( - [[1.5, -0.5, -0.5, 0, 0, 0], [2.5, 0.5, 0.5, 0, 0, 0]], - (CraftMode.Normal, TrackMode.T1) -) -scenario.add_agent(drone1) +class CarAgent(BaseAgent): + def __init__(self, id, code = None, file_name = None): + self.id = id + self.decision_logic = ControllerIR.parse(code, file_name) + self.TC_simulate = TC_simulate -drone2 = DroneAgent( - 'drone2', file_name="dl_sec2.py", t_v_pair=(1, 0.5), box_side=[0.4]*3) -drone2.set_initial( - [[19.5, -0.5, -0.5, 0, 0, 0], [20.5, 0.5, 0.5, 0, 0, 0]], - (CraftMode.Normal, TrackMode.T1) -) -scenario.add_agent(drone2) +from enum import Enum, auto -scenario.add_agent(drone1) -scenario.add_agent(drone2) +class AgentMode(Enum): + Normal = auto() + Brake = auto() + +class TrackMode(Enum): + T0 = auto() -from tutorial_sensor import DefaultSensor -scenario.set_sensor(DefaultSensor()) +from verse.scenario import Scenario +from tutorial_map import M1 +scenario = Scenario() +scenario.set_map(M1()) -traces_simu = scenario.simulate(60, 0.2) -traces_veri = scenario.verify(60, 0.2) -from verse.plotter.plotter3D import * -import pyvista as pv -import warnings -warnings.filterwarnings("ignore") +car1 = CarAgent('car1', file_name="./tutorial/dl_sec4.py") +car1.set_initial([[0,-0.5,0,2],[1,0.5,0,2]], (AgentMode.Normal, TrackMode.T0)) +car2 = CarAgent('car2', file_name="./tutorial/dl_sec4.py") +car2.set_initial([[15,-0.5,0,1],[16,0.5,0,1]], (AgentMode.Normal, TrackMode.T0)) +scenario.add_agent(car1) +scenario.add_agent(car2) -fig = pv.Plotter() -fig = plot3dMap(M4(), ax=fig) -fig = plot3dReachtube(traces_veri, 'drone1', 1, 2, 3, color = 'r', ax=fig) -fig = plot3dReachtube(traces_veri, 'drone2', 1, 2, 3, color = 'b', ax=fig) -fig.set_background('#e0e0e0') -fig.show() \ No newline at end of file +traces_simu = scenario.simulate(10, 0.01) +traces_veri = scenario.verify(10, 0.01) \ No newline at end of file diff --git a/tutorial/tutorial_agent.py b/tutorial/tutorial_agent.py index 335722bb..aaa8c66a 100644 --- a/tutorial/tutorial_agent.py +++ b/tutorial/tutorial_agent.py @@ -10,7 +10,7 @@ from verse import BaseAgent from verse import LaneMap from verse.map.lane_map_3d import LaneMap_3d -class AgentCar(BaseAgent): +class CarAgent(BaseAgent): def __init__(self, id, code = None, file_name = None, initial_state = None, initial_mode = None): super().__init__(id, code, file_name, initial_state=initial_state, initial_mode=initial_mode) self.switch_duration = 0 @@ -25,33 +25,34 @@ class AgentCar(BaseAgent): v_dot = a return [x_dot, y_dot, theta_dot, v_dot] - def action_handler(self, mode: List[str], state, track_map:LaneMap)->Tuple[float, float]: + def action_handler(self, mode: List[str], state, lane_map)->Tuple[float, float]: x,y,theta,v = state vehicle_mode = mode[0] vehicle_lane = mode[1] vehicle_pos = np.array([x,y]) a = 0 if vehicle_mode == "Normal": - d = -track_map.get_lateral_distance(vehicle_lane, vehicle_pos) - self.switch_duration = 0 + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + elif vehicle_mode == "SwitchLeft": + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + lane_map.get_lane_width(vehicle_lane) + elif vehicle_mode == "SwitchRight": + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) - lane_map.get_lane_width(vehicle_lane) elif vehicle_mode == "Brake": - d = -track_map.get_lateral_distance(vehicle_lane, vehicle_pos) - if v>0: - a = -1 - if v<0.01: - a=0 - else: - a = 1 - if v>-0.01: - a=0 - self.switch_duration = 0 + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + a = -1 + elif vehicle_mode == "Accel": + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + a = 1 + elif vehicle_mode == 'Stop': + d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + a = 0 else: raise ValueError(f'Invalid mode: {vehicle_mode}') - psi = track_map.get_lane_heading(vehicle_lane, vehicle_pos)-theta + psi = lane_map.get_lane_heading(vehicle_lane, vehicle_pos)-theta steering = psi + np.arctan2(0.45*d, v) steering = np.clip(steering, -0.61, 0.61) - return steering, a + return steering, a def TC_simulate(self, mode: List[str], initialCondition, time_bound, time_step, track_map:LaneMap=None)->np.ndarray: time_bound = float(time_bound) diff --git a/tutorial/tutorial_map.py b/tutorial/tutorial_map.py index c098eef6..cc1408e2 100644 --- a/tutorial/tutorial_map.py +++ b/tutorial/tutorial_map.py @@ -142,4 +142,31 @@ class M4(LaneMap_3d): lane = 'T1' elif lane_idx[-1] == '2': lane = 'T2' - return lane \ No newline at end of file + return lane + +class M5(LaneMap): + def __init__(self): + super().__init__() + segment0 = StraightLane( + 'Seg0', + [0,0], + [500,0], + 3 + ) + lane0 = Lane('T0', [segment0]) + segment0 = StraightLane( + 'Seg0', + [0,3], + [500,3], + 3 + ) + lane1 = Lane('T1', [segment0]) + # segment2 = LaneSegment('Lane1', 3) + # self.add_lanes([segment1,segment2]) + self.add_lanes([lane0, lane1]) + self.h_dict = { + ("T0","Normal","SwitchLeft"):"M01", + ("T1","Normal","SwitchRight"):"M10", + ("M01","SwitchLeft","Normal"):"T1", + ("M10","SwitchRight","Normal"):"T0", + } \ No newline at end of file diff --git a/tutorial/tutorial_sensor.py b/tutorial/tutorial_sensor.py index 426326ec..733e5a64 100644 --- a/tutorial/tutorial_sensor.py +++ b/tutorial/tutorial_sensor.py @@ -59,7 +59,7 @@ class DefaultSensor(): for agent_id in state_dict: if agent_id == agent.id: # Get type of ego - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None for arg in controller_args: if arg.name == 'ego': @@ -68,13 +68,13 @@ class DefaultSensor(): if arg_type is None: continue raise ValueError(f"Invalid arg for ego") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static set_states_2d( cont, disc, 'ego', state_dict[agent_id], cont_var, disc_var, stat_var) else: - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None arg_name = None for arg in controller_args: @@ -85,9 +85,9 @@ class DefaultSensor(): if arg_type is None: continue raise ValueError(f"Invalid arg for others") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static add_states_2d( cont, disc, arg_name, state_dict[agent_id], cont_var, disc_var, stat_var) @@ -95,7 +95,7 @@ class DefaultSensor(): for agent_id in state_dict: if agent_id == agent.id: # Get type of ego - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None for arg in controller_args: if arg.name == 'ego': @@ -103,13 +103,13 @@ class DefaultSensor(): break if arg_type is None: raise ValueError(f"Invalid arg for ego") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static set_states_3d( cont, disc, 'ego', state_dict[agent_id], cont_var, disc_var, stat_var) else: - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None arg_name = None for arg in controller_args: @@ -119,9 +119,9 @@ class DefaultSensor(): break if arg_type is None: raise ValueError(f"Invalid arg for others") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static add_states_3d(cont, disc, arg_name, state_dict[agent_id], cont_var, disc_var, stat_var) return cont, disc, len_dict diff --git a/tutorial/tutorial_utils.py b/tutorial/tutorial_utils.py index 78d419aa..a2a8421a 100644 --- a/tutorial/tutorial_utils.py +++ b/tutorial/tutorial_utils.py @@ -10,7 +10,7 @@ def car_dynamics(t, state, u): v_dot = a return [x_dot, y_dot, theta_dot, v_dot] -def car_action_handler(self, mode: List[str], state, lane_map)->Tuple[float, float]: +def car_action_handler(mode: List[str], state, lane_map)->Tuple[float, float]: x,y,theta,v = state vehicle_mode = mode[0] vehicle_lane = mode[1] @@ -18,25 +18,19 @@ def car_action_handler(self, mode: List[str], state, lane_map)->Tuple[float, flo a = 0 if vehicle_mode == "Normal": d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) - self.switch_duration = 0 elif vehicle_mode == "SwitchLeft": d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) + lane_map.get_lane_width(vehicle_lane) - self.switch_duration += 0.1 elif vehicle_mode == "SwitchRight": d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) - lane_map.get_lane_width(vehicle_lane) - self.switch_duration += 0.1 elif vehicle_mode == "Brake": d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) a = -1 - self.switch_duration = 0 elif vehicle_mode == "Accel": d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) a = 1 - self.switch_duration = 0 elif vehicle_mode == 'Stop': d = -lane_map.get_lateral_distance(vehicle_lane, vehicle_pos) a = 0 - self.switch_duration = 0 else: raise ValueError(f'Invalid mode: {vehicle_mode}') diff --git a/verse/agents/base_agent.py b/verse/agents/base_agent.py index 097dd9cc..e073abc4 100644 --- a/verse/agents/base_agent.py +++ b/verse/agents/base_agent.py @@ -24,7 +24,7 @@ class BaseAgent: file_name: str file name to the python controller """ - self.controller: ControllerIR = ControllerIR.parse(code, file_name) + self.decision_logic: ControllerIR = ControllerIR.parse(code, file_name) self.id = id self.init_cont = copy.deepcopy(initial_state) self.init_disc = copy.deepcopy(initial_mode) diff --git a/verse/agents/example_agent/car_agent.py b/verse/agents/example_agent/car_agent.py index 3aff631f..cf587e6e 100644 --- a/verse/agents/example_agent/car_agent.py +++ b/verse/agents/example_agent/car_agent.py @@ -11,7 +11,7 @@ from verse.parser import ControllerIR class NPCAgent(BaseAgent): def __init__(self, id, initial_state=None, initial_mode=None): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() self.set_initial_state(initial_state) self.set_initial_mode(initial_mode) self.set_static_parameter(None) diff --git a/verse/agents/example_agent/sign_agent.py b/verse/agents/example_agent/sign_agent.py index 132e3a91..089609c6 100644 --- a/verse/agents/example_agent/sign_agent.py +++ b/verse/agents/example_agent/sign_agent.py @@ -6,7 +6,7 @@ from verse.parser import ControllerIR class SignAgent(BaseAgent): def __init__(self, id): self.id = id - self.controller = ControllerIR.empty() + self.decision_logic = ControllerIR.empty() def TC_simulate(self, mode, init, time_horizon, time_step, map=None): number_points = int(np.ceil(float(time_horizon)/time_step)) diff --git a/verse/analysis/analysis_tree.py b/verse/analysis/analysis_tree.py index a541de59..dd04efb9 100644 --- a/verse/analysis/analysis_tree.py +++ b/verse/analysis/analysis_tree.py @@ -59,21 +59,21 @@ class AnalysisTreeNode: return rst_dict def get_track(self, agent_id, D): - if 'TrackMode' not in self.agent[agent_id].controller.mode_defs: + if 'TrackMode' not in self.agent[agent_id].decision_logic.mode_defs: return "" for d in D: - if d in self.agent[agent_id].controller.mode_defs['TrackMode'].modes: + if d in self.agent[agent_id].decision_logic.mode_defs['TrackMode'].modes: return d return "" def get_mode(self, agent_id, D): res = [] - if 'TrackMode' not in self.agent[agent_id].controller.mode_defs: + if 'TrackMode' not in self.agent[agent_id].decision_logic.mode_defs: if len(D)==1: return D[0] return D for d in D: - if d not in self.agent[agent_id].controller.mode_defs['TrackMode'].modes: + if d not in self.agent[agent_id].decision_logic.mode_defs['TrackMode'].modes: res.append(d) if len(res) == 1: return res[0] diff --git a/verse/analysis/incremental.py b/verse/analysis/incremental.py index 52d9dd05..505ae7d9 100644 --- a/verse/analysis/incremental.py +++ b/verse/analysis/incremental.py @@ -51,7 +51,7 @@ def to_simulate(old_agents: Dict[str, BaseAgent], new_agents: Dict[str, BaseAgen removed_paths, added_paths, reset_changed_paths = [], [], [] for agent_id, old_agent in old_agents.items(): new_agent = new_agents[agent_id] - old_ctlr, new_ctlr = old_agent.controller, new_agent.controller + old_ctlr, new_ctlr = old_agent.decision_logic, new_agent.decision_logic assert old_ctlr.args == new_ctlr.args def group_by_var(ctlr: ControllerIR) -> Dict[str, List[ModePath]]: grouped = defaultdict(list) @@ -149,7 +149,7 @@ class SimTraceCache: for i, val in enumerate(init): if i == len(init) - 1: transitions = convert_sim_trans(agent_id, transit_agents, node.init, transition, trans_ind) - entry = CachedSegment(trace, assert_hits.get(agent_id), transitions, node.agent[agent_id].controller, run_num, node.id) + entry = CachedSegment(trace, assert_hits.get(agent_id), transitions, node.agent[agent_id].decision_logic, run_num, node.id) tree[val - _EPSILON:val + _EPSILON] = entry return entry else: @@ -247,7 +247,7 @@ class ReachTubeCache: for i, (low, high) in enumerate(init): if i == len(init) - 1: transitions = convert_reach_trans(agent_id, transit_agents, node.init, transition, trans_ind) - entry = CachedRTTrans(assert_hits.get(agent_id), transitions, node.agent[agent_id].controller, run_num, node.id) + entry = CachedRTTrans(assert_hits.get(agent_id), transitions, node.agent[agent_id].decision_logic, run_num, node.id) tree[low:high + _EPSILON] = entry return entry else: diff --git a/verse/automaton/guard.py b/verse/automaton/guard.py index d51fa68b..7c1d15c4 100644 --- a/verse/automaton/guard.py +++ b/verse/automaton/guard.py @@ -577,9 +577,9 @@ class GuardExpressionAst: root = ast.parse('False').body[0].value else: # # TODO-PARSER: Handle This - # for mode_name in agent.controller.mode_defs: + # for mode_name in agent.decision_logic.mode_defs: # # TODO-PARSER: Handle This - # if res in agent.controller.mode_defs[mode_name].modes: + # if res in agent.decision_logic.mode_defs[mode_name].modes: # res = mode_name+'.'+res # break root = ast.parse(str(res)).body[0].value @@ -592,14 +592,14 @@ class GuardExpressionAst: if expr in disc_var_dict: val = disc_var_dict[expr] # TODO-PARSER: Handle This - # for mode_name in agent.controller.mode_defs: + # for mode_name in agent.decision_logic.mode_defs: # # TODO-PARSER: Handle This - # if val in agent.controller.mode_defs[mode_name].modes: + # if val in agent.decision_logic.mode_defs[mode_name].modes: # val = mode_name+'.'+val # break return val, root # TODO-PARSER: Handle This - elif root.value.id in agent.controller.mode_defs: + elif root.value.id in agent.decision_logic.mode_defs: return expr, root else: return True, root @@ -621,9 +621,9 @@ class GuardExpressionAst: if expr in disc_var_dict: val = disc_var_dict[expr] # # TODO-PARSER: Handle This - # for mode_name in agent.controller.mode_defs: + # for mode_name in agent.decision_logic.mode_defs: # # TODO-PARSER: Handle This - # if val in agent.controller.mode_defs[mode_name].modes: + # if val in agent.decision_logic.mode_defs[mode_name].modes: # val = mode_name + '.' + val # break return val, root @@ -704,9 +704,9 @@ class GuardExpressionAst: expr = expr.replace(arg, str(cnts_var_dict[arg])) res = eval(expr) # TODO-PARSER: Handle This - for mode_name in agent.controller.mode_defs: + for mode_name in agent.decision_logic.mode_defs: # TODO-PARSER: Handle This - if res in agent.controller.mode_defs[mode_name].modes: + if res in agent.decision_logic.mode_defs[mode_name].modes: res = mode_name+'.'+res break return res @@ -716,9 +716,9 @@ class GuardExpressionAst: if expr in disc_var_dict: val = disc_var_dict[expr] # TODO-PARSER: Handle This - for mode_name in agent.controller.mode_defs: + for mode_name in agent.decision_logic.mode_defs: # TODO-PARSER: Handle This - if val in agent.controller.mode_defs[mode_name].modes: + if val in agent.decision_logic.mode_defs[mode_name].modes: val = mode_name+'.'+val break return val @@ -727,7 +727,7 @@ class GuardExpressionAst: return val # TODO-PARSER: Handle This - elif root.value.id in agent.controller.mode_defs: + elif root.value.id in agent.decision_logic.mode_defs: return expr elif isinstance(root, ast.Constant): return root.value @@ -747,9 +747,9 @@ class GuardExpressionAst: elif variable in disc_var_dict: val = disc_var_dict[variable] # TODO-PARSER: Handle This - for mode_name in agent.controller.mode_defs: + for mode_name in agent.decision_logic.mode_defs: # TODO-PARSER: Handle This - if val in agent.controller.mode_defs[mode_name].modes: + if val in agent.decision_logic.mode_defs[mode_name].modes: val = mode_name+'.'+val break return val diff --git a/verse/automaton/reset.py b/verse/automaton/reset.py index efc5541b..5b9e6fde 100644 --- a/verse/automaton/reset.py +++ b/verse/automaton/reset.py @@ -31,18 +31,18 @@ class ResetExpression(): # agent_state_upper = [] # # TODO-PARSER: Handle This -# for var in agent.controller.vars_dict['ego'].cont: +# for var in agent.decision_logic.vars_dict['ego'].cont: # agent_state_lower.append(continuous_variable_dict['ego.'+var][0]) # agent_state_upper.append(continuous_variable_dict['ego.'+var][1]) # # TODO-PARSER: Handle This -# assert len(agent_state_lower) == len(agent_state_upper) == len(agent.controller.vars_dict['ego'].cont) +# assert len(agent_state_lower) == len(agent_state_upper) == len(agent.decision_logic.vars_dict['ego'].cont) # for expr in self.expr_list: # if 'mode' not in expr: # tmp = expr.split('=') # lhs, rhs = tmp[0], tmp[1] # # TODO-PARSER: Handle This -# for lhs_idx, cts_variable in enumerate(agent.controller.vars_dict['ego'].cont): +# for lhs_idx, cts_variable in enumerate(agent.decision_logic.vars_dict['ego'].cont): # if "output."+cts_variable == lhs: # break @@ -84,7 +84,7 @@ class ResetExpression(): # for reset in self.expr_list: # if "mode" in reset: # # TODO-PARSER: Handle This -# for i, discrete_variable_ego in enumerate(agent.controller.vars_dict['ego'].disc): +# for i, discrete_variable_ego in enumerate(agent.decision_logic.vars_dict['ego'].disc): # if discrete_variable_ego in reset: # break # tmp = reset.split('=') @@ -99,7 +99,7 @@ class ResetExpression(): # else: # tmp = tmp[1].split('.') # # TODO-PARSER: Handle This -# if tmp[0].strip(' ') in agent.controller.modes: +# if tmp[0].strip(' ') in agent.decision_logic.modes: # possible_dest[i] = [tmp[1]] # all_dest = itertools.product(*possible_dest) # res = [] diff --git a/verse/parser/parser.py b/verse/parser/parser.py index 9a6b8aba..7373e5da 100644 --- a/verse/parser/parser.py +++ b/verse/parser/parser.py @@ -788,6 +788,6 @@ if __name__ == "__main__": e = Env.parse(fn=fn) e.dump() ir = e.to_ir() - print(ControllerIR.dump(ir.controller.body, False)) + print(ControllerIR.dump(ir.decision_logic.body, False)) for a in ir.asserts: print(f"assert {ControllerIR.dump(a.cond, False)}, '{a.label}'") diff --git a/verse/scenario/scenario.py b/verse/scenario/scenario.py index 252e061b..21928f9c 100644 --- a/verse/scenario/scenario.py +++ b/verse/scenario/scenario.py @@ -27,7 +27,7 @@ def red(s): return "\x1b[31m" + s + "\x1b[0m" def pack_env(agent: BaseAgent, ego_ty_name: str, cont: Dict[str, float], disc: Dict[str, str], track_map): - state_ty = None #namedtuple(ego_ty_name, agent.controller.state_defs[ego_ty_name].all_vars()) + state_ty = None #namedtuple(ego_ty_name, agent.decision_logic.state_defs[ego_ty_name].all_vars()) packed: DefaultDict[str, Any] = defaultdict(dict) # packed = {} for e in [cont, disc]: @@ -36,7 +36,7 @@ def pack_env(agent: BaseAgent, ego_ty_name: str, cont: Dict[str, float], disc: D packed[k1][k2] = v ego_keys, ego_vals = tuple(map(list, zip(*packed[EGO].items()))) state_ty = namedtuple(ego_ty_name, ego_keys) - for arg in agent.controller.args: + for arg in agent.decision_logic.args: if "map" in arg.name: packed[arg.name] = track_map elif arg.name != EGO: @@ -61,11 +61,11 @@ def check_sim_transitions(agent: BaseAgent, guards: List[Tuple], cont, disc, map satisfied_guard = [] agent_id = agent.id # Unsafety checking - ego_ty_name = find(agent.controller.args, lambda a: a.name == EGO).typ + ego_ty_name = find(agent.decision_logic.args, lambda a: a.name == EGO).typ packed_env = pack_env(agent, ego_ty_name, cont, disc, map) # Check safety conditions - for assertion in agent.controller.asserts: + for assertion in agent.decision_logic.asserts: if eval(assertion.pre, packed_env): if not eval(assertion.cond, packed_env): del packed_env["__builtins__"] @@ -97,7 +97,7 @@ def check_sim_transitions(agent: BaseAgent, guards: List[Tuple], cont, disc, map for j, (reset_idx, path) in enumerate(pos): reset_variable = list(all_resets.keys())[j] res = eval(all_resets[reset_variable][reset_idx][0], packed_env) - ego_type = agent.controller.state_defs[ego_ty_name] + ego_type = agent.decision_logic.state_defs[ego_ty_name] if "mode" in reset_variable: var_loc = ego_type.disc.index(reset_variable) assert not isinstance(res, list), res @@ -161,16 +161,16 @@ class Scenario: # Update the lane mode field in the agent self.update_agent_lane_mode(agent, self.map) self.agent_dict[agent.id] = agent - if agent.init_cont is not None: + if hasattr(agent, 'init_cont') and agent.init_cont is not None: self.init_dict[agent.id] = copy.deepcopy(agent.init_cont) - if agent.init_disc is not None: + if hasattr(agent, 'init_disc') and agent.init_disc is not None: self.init_mode_dict[agent.id] = copy.deepcopy(agent.init_disc) - if agent.static_parameters is not None: + if hasattr(agent, 'static_parameters') and agent.static_parameters is not None: self.static_dict[agent.id] = copy.deepcopy(agent.static_parameters) else: self.static_dict[agent.id] = [] - if agent.uncertain_parameters is not None: + if hasattr(agent, 'uncertain_parameters') and agent.uncertain_parameters is not None: self.uncertain_param_dict[agent.id] = copy.deepcopy(agent.uncertain_parameters) else: self.uncertain_param_dict[agent.id] = [] @@ -179,25 +179,25 @@ class Scenario: # TODO-PARSER: update this function def update_agent_lane_mode(self, agent: BaseAgent, track_map: LaneMap): for lane_id in track_map.lane_dict: - if 'TrackMode' in agent.controller.mode_defs and lane_id not in agent.controller.mode_defs['TrackMode'].modes: - agent.controller.mode_defs['TrackMode'].modes.append(lane_id) - # mode_vals = list(agent.controller.modes.values()) - # agent.controller.vertices = list(itertools.product(*mode_vals)) - # agent.controller.vertexStrings = [','.join(elem) for elem in agent.controller.vertices] + if 'TrackMode' in agent.decision_logic.mode_defs and lane_id not in agent.decision_logic.mode_defs['TrackMode'].modes: + agent.decision_logic.mode_defs['TrackMode'].modes.append(lane_id) + # mode_vals = list(agent.decision_logic.modes.values()) + # agent.decision_logic.vertices = list(itertools.product(*mode_vals)) + # agent.decision_logic.vertexStrings = [','.join(elem) for elem in agent.decision_logic.vertices] def set_init_single(self, agent_id, init: list, init_mode: tuple, static=[], uncertain_param=[]): assert agent_id in self.agent_dict, 'agent_id not found' agent = self.agent_dict[agent_id] assert len(init) == 1 or len( init) == 2, 'the length of init should be 1 or 2' - # print(agent.controller.state_defs.values()) - if agent.controller != agent.controller.empty(): + # print(agent.decision_logic.state_defs.values()) + if agent.decision_logic != agent.decision_logic.empty(): for i in init: assert len(i) == len( - list(agent.controller.state_defs.values())[0].cont), 'the length of element in init not fit the number of continuous variables' - # print(agent.controller.mode_defs) + list(agent.decision_logic.state_defs.values())[0].cont), 'the length of element in init not fit the number of continuous variables' + # print(agent.decision_logic.mode_defs) assert len(init_mode) == len( - list(agent.controller.state_defs.values())[0].disc), 'the length of element in init_mode not fit the number of discrete variables' + list(agent.decision_logic.state_defs.values())[0].disc), 'the length of element in init_mode not fit the number of discrete variables' if len(init) == 1: init = init+init self.init_dict[agent_id] = copy.deepcopy(init) @@ -305,7 +305,7 @@ class Scenario: dest = copy.deepcopy(agent_mode) possible_dest = [[elem] for elem in dest] - ego_type = find(agent.controller.args, lambda a: a.name == EGO).typ + ego_type = find(agent.decision_logic.args, lambda a: a.name == EGO).typ rect = copy.deepcopy([agent_state[0][1:], agent_state[1][1:]]) # The reset_list here are all the resets for a single transition. Need to evaluate each of them @@ -317,7 +317,7 @@ class Scenario: # First get the transition destinations if "mode" in reset_variable: found = False - for var_loc, discrete_variable_ego in enumerate(agent.controller.state_defs[ego_type].disc): + for var_loc, discrete_variable_ego in enumerate(agent.decision_logic.state_defs[ego_type].disc): if discrete_variable_ego == reset_variable: found = True break @@ -338,7 +338,7 @@ class Scenario: possible_dest[var_loc] = res else: expr = tmp - if expr[0].strip(' ') in agent.controller.mode_defs: + if expr[0].strip(' ') in agent.decision_logic.mode_defs: possible_dest[var_loc] = [expr[1]] # Assume linear function for continuous variables @@ -346,7 +346,7 @@ class Scenario: lhs = reset_variable rhs = expr found = False - for lhs_idx, cts_variable in enumerate(agent.controller.state_defs[ego_type].cont): + for lhs_idx, cts_variable in enumerate(agent.decision_logic.state_defs[ego_type].cont): if cts_variable == lhs: found = True break @@ -416,7 +416,7 @@ class Scenario: cached_trans = defaultdict(list) if not cache: - paths = [(agent, p) for agent in node.agent.values() for p in agent.controller.paths] + paths = [(agent, p) for agent in node.agent.values() for p in agent.decision_logic.paths] else: _transitions = [(aid, trans) for aid, seg in cache.items() for trans in seg.transitions if sim_trans_suit(trans.inits, node.init)] # pp(("cached trans", _transitions)) @@ -441,7 +441,7 @@ class Scenario: path_transitions[p.cond] = max(path_transitions[p.cond], tran.transition) for agent_id, segment in cache.items(): agent = node.agent[agent_id] - if len(agent.controller.args) == 0: + if len(agent.decision_logic.args) == 0: continue state_dict = {aid: (node.trace[aid][0], node.mode[aid], node.static[aid]) for aid in node.agent} agent_paths = dedup([p for tran in segment.transitions for p in tran.paths], lambda i: (i.var, i.cond, i.val)) @@ -451,7 +451,7 @@ class Scenario: for agent, path in paths: # Get guard - if len(agent.controller.args) == 0: + if len(agent.decision_logic.args) == 0: continue agent_id = agent.id agent_mode = node.mode[agent_id] @@ -508,7 +508,7 @@ class Scenario: cached_trans = defaultdict(list) if not cache: - paths = [(agent, p) for agent in node.agent.values() for p in agent.controller.paths] + paths = [(agent, p) for agent in node.agent.values() for p in agent.decision_logic.paths] else: # _transitions = [trans.transition for seg in cache.values() for trans in seg.transitions] @@ -529,7 +529,7 @@ class Scenario: path_transitions[p.cond] = max(path_transitions[p.cond], tran.transition) for agent_id, segment in cache.items(): agent = node.agent[agent_id] - if len(agent.controller.args) == 0: + if len(agent.decision_logic.args) == 0: continue state_dict = {aid: (node.trace[aid][0], node.mode[aid], node.static[aid]) for aid in node.agent} @@ -554,7 +554,7 @@ class Scenario: # if len(trace) < 2: # pp(("weird state", aid, trace)) for agent, path in paths: - if len(agent.controller.args) == 0: + if len(agent.decision_logic.args) == 0: continue agent_id = agent.id state_dict = {aid: (node.trace[aid][0:2], node.mode[aid], node.static[aid]) for aid in node.agent} @@ -589,7 +589,7 @@ class Scenario: asserts = defaultdict(list) for agent_id in self.agent_dict.keys(): agent: BaseAgent = self.agent_dict[agent_id] - if len(agent.controller.args) == 0: + if len(agent.decision_logic.args) == 0: continue agent_state, agent_mode, agent_static = state_dict[agent_id] # if np.array(agent_state).ndim != 2: @@ -598,7 +598,7 @@ class Scenario: cont_vars, disc_vars, len_dict = self.sensor.sense(self, agent, state_dict, self.map) resets = defaultdict(list) # Check safety conditions - for i, a in enumerate(agent.controller.asserts_veri): + for i, a in enumerate(agent.decision_logic.asserts_veri): pre_expr = a.pre def eval_expr(expr): diff --git a/verse/sensor/base_sensor.py b/verse/sensor/base_sensor.py index c7272703..c97942f8 100644 --- a/verse/sensor/base_sensor.py +++ b/verse/sensor/base_sensor.py @@ -59,7 +59,7 @@ class BaseSensor(): for agent_id in state_dict: if agent_id == agent.id: # Get type of ego - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None for arg in controller_args: if arg.name == 'ego': @@ -68,13 +68,13 @@ class BaseSensor(): if arg_type is None: continue raise ValueError(f"Invalid arg for ego") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static set_states_2d( cont, disc, 'ego', state_dict[agent_id], cont_var, disc_var, stat_var) else: - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None arg_name = None for arg in controller_args: @@ -85,9 +85,9 @@ class BaseSensor(): if arg_type is None: continue raise ValueError(f"Invalid arg for others") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static add_states_2d( cont, disc, arg_name, state_dict[agent_id], cont_var, disc_var, stat_var) @@ -95,7 +95,7 @@ class BaseSensor(): for agent_id in state_dict: if agent_id == agent.id: # Get type of ego - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None for arg in controller_args: if arg.name == 'ego': @@ -103,13 +103,13 @@ class BaseSensor(): break if arg_type is None: raise ValueError(f"Invalid arg for ego") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static set_states_3d( cont, disc, 'ego', state_dict[agent_id], cont_var, disc_var, stat_var) else: - controller_args = agent.controller.args + controller_args = agent.decision_logic.args arg_type = None arg_name = None for arg in controller_args: @@ -119,9 +119,9 @@ class BaseSensor(): break if arg_type is None: raise ValueError(f"Invalid arg for others") - cont_var = agent.controller.state_defs[arg_type].cont - disc_var = agent.controller.state_defs[arg_type].disc - stat_var = agent.controller.state_defs[arg_type].static + cont_var = agent.decision_logic.state_defs[arg_type].cont + disc_var = agent.decision_logic.state_defs[arg_type].disc + stat_var = agent.decision_logic.state_defs[arg_type].static add_states_3d(cont, disc, arg_name, state_dict[agent_id], cont_var, disc_var, stat_var) return cont, disc, len_dict -- GitLab