Skip to content

Instantly share code, notes, and snippets.

@ashutoshnanda
Created February 1, 2016 13:48
Show Gist options
  • Save ashutoshnanda/4ff6131337c9d83f6cff to your computer and use it in GitHub Desktop.
Save ashutoshnanda/4ff6131337c9d83f6cff to your computer and use it in GitHub Desktop.
Introduction to Bokeh
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Level 5: Interactive Visualizations\n",
"\n",
"Welcome to the last level of this data science tutorial! So far, we have gathered, explored, and modeled weather data. However, one key part is left: visualizing and interacting with data. In this level, we will generate interactive visualizations using the `bokeh` module in Python. The best part of `bokeh` is that we can integrate it easily with web apps that are powered by Python.\n",
"\n",
"First, let's import our data from previous levels."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"index int64\n",
"month int64\n",
"day int64\n",
"year int64\n",
"mean_temperature int64\n",
"max_temperature int64\n",
"min_temperature int64\n",
"dew_point int64\n",
"average_humidity int64\n",
"maximum_humidity int64\n",
"minimum_humidity int64\n",
"precipitation float64\n",
"wind_speed float64\n",
"max_wind_speed float64\n",
"max_gust_speed float64\n",
"dtype: object\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>index</th>\n",
" <th>month</th>\n",
" <th>day</th>\n",
" <th>year</th>\n",
" <th>mean_temperature</th>\n",
" <th>max_temperature</th>\n",
" <th>min_temperature</th>\n",
" <th>dew_point</th>\n",
" <th>average_humidity</th>\n",
" <th>maximum_humidity</th>\n",
" <th>minimum_humidity</th>\n",
" <th>precipitation</th>\n",
" <th>wind_speed</th>\n",
" <th>max_wind_speed</th>\n",
" <th>max_gust_speed</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>2013</td>\n",
" <td>33</td>\n",
" <td>40</td>\n",
" <td>26</td>\n",
" <td>22</td>\n",
" <td>54</td>\n",
" <td>64</td>\n",
" <td>44</td>\n",
" <td>0</td>\n",
" <td>7</td>\n",
" <td>15</td>\n",
" <td>26</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>2</td>\n",
" <td>2013</td>\n",
" <td>28</td>\n",
" <td>33</td>\n",
" <td>22</td>\n",
" <td>11</td>\n",
" <td>48</td>\n",
" <td>57</td>\n",
" <td>39</td>\n",
" <td>0</td>\n",
" <td>6</td>\n",
" <td>15</td>\n",
" <td>22</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>2</td>\n",
" <td>1</td>\n",
" <td>3</td>\n",
" <td>2013</td>\n",
" <td>28</td>\n",
" <td>32</td>\n",
" <td>24</td>\n",
" <td>14</td>\n",
" <td>56</td>\n",
" <td>68</td>\n",
" <td>43</td>\n",
" <td>0</td>\n",
" <td>5</td>\n",
" <td>13</td>\n",
" <td>20</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>3</td>\n",
" <td>1</td>\n",
" <td>4</td>\n",
" <td>2013</td>\n",
" <td>34</td>\n",
" <td>37</td>\n",
" <td>30</td>\n",
" <td>19</td>\n",
" <td>56</td>\n",
" <td>63</td>\n",
" <td>48</td>\n",
" <td>0</td>\n",
" <td>8</td>\n",
" <td>18</td>\n",
" <td>28</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>4</td>\n",
" <td>1</td>\n",
" <td>5</td>\n",
" <td>2013</td>\n",
" <td>37</td>\n",
" <td>42</td>\n",
" <td>32</td>\n",
" <td>19</td>\n",
" <td>48</td>\n",
" <td>56</td>\n",
" <td>39</td>\n",
" <td>0</td>\n",
" <td>7</td>\n",
" <td>17</td>\n",
" <td>26</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" index month day year mean_temperature max_temperature \\\n",
"0 0 1 1 2013 33 40 \n",
"1 1 1 2 2013 28 33 \n",
"2 2 1 3 2013 28 32 \n",
"3 3 1 4 2013 34 37 \n",
"4 4 1 5 2013 37 42 \n",
"\n",
" min_temperature dew_point average_humidity maximum_humidity \\\n",
"0 26 22 54 64 \n",
"1 22 11 48 57 \n",
"2 24 14 56 68 \n",
"3 30 19 56 63 \n",
"4 32 19 48 56 \n",
"\n",
" minimum_humidity precipitation wind_speed max_wind_speed max_gust_speed \n",
"0 44 0 7 15 26 \n",
"1 39 0 6 15 22 \n",
"2 43 0 5 13 20 \n",
"3 48 0 8 18 28 \n",
"4 39 0 7 17 26 "
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"\n",
"data = pd.read_csv('clean_weather_data.csv')\n",
"print(data.dtypes)\n",
"data[:5]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Cool, let's start using `bokeh`."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.11.0.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.11.0.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-compiler-0.11.0.min.js'];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
" function(Bokeh) {\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.11.0.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.11.0.min.css\");\n",
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.11.0.min.css\");\n",
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.11.0.min.css\");\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
" </script>\n",
" <div>\n",
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
" <span>BokehJS successfully loaded.</span>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import bokeh.io, bokeh.plotting, bokeh.models\n",
"bokeh.io.output_notebook()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The above code gets the necessary modules loaded and tells `bokeh` that we want output directly in the notebook. (Feel free to ignore that line if not running as a notebook.)\n",
"\n",
"Now, let's get a basic plot set up with `bokeh`."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"4e261b12-431c-4a5a-ac91-a6383ddb0278\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"4e261b12-431c-4a5a-ac91-a6383ddb0278\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '4e261b12-431c-4a5a-ac91-a6383ddb0278' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"535a943d-658f-4acd-a35d-30579a13ff02\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\"], \"references\": [{\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"535a943d-658f-4acd-a35d-30579a13ff02\", \"elementid\": \"4e261b12-431c-4a5a-ac91-a6383ddb0278\", \"notebook_comms_target\": \"87bf0055-290d-4c5d-b701-eb0b53f5e63b\", \"modelid\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x10b38ea58>"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"p = bokeh.plotting.figure()\n",
"p.circle(data.mean_temperature, data.dew_point)\n",
"bokeh.plotting.show(p)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"What an interesting interactive plot! Let's add some titles and axis labels."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"b0640c28-481f-4ef9-841d-a4514d0b330e\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"b0640c28-481f-4ef9-841d-a4514d0b330e\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'b0640c28-481f-4ef9-841d-a4514d0b330e' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"c8b9fba2-0ded-4bbc-a7f6-3e763b9f9c8c\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"], \"references\": [{\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {\"glyph\": {\"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {\"title\": \"My Interactive Visualization\", \"below\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"84b08934-191b-43d6-8723-88a624f481e4\", \"type\": \"PanTool\"}, {\"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\", \"type\": \"BoxZoomTool\"}, {\"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\", \"type\": \"ResizeTool\"}, {\"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\", \"type\": \"ResetTool\"}, {\"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}, {\"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\", \"type\": \"Grid\"}, {\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}, {\"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\", \"type\": \"Grid\"}, {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}, {\"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"84b08934-191b-43d6-8723-88a624f481e4\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Dew Point\", \"formatter\": {\"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"c8b9fba2-0ded-4bbc-a7f6-3e763b9f9c8c\", \"elementid\": \"b0640c28-481f-4ef9-841d-a4514d0b330e\", \"notebook_comms_target\": \"ea46eadc-1952-45a7-8157-70114241e191\", \"modelid\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x10b397c18>"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"q = bokeh.plotting.figure()\n",
"q.circle(data.mean_temperature, data.dew_point)\n",
"q.title = 'My Interactive Visualization'\n",
"q.xaxis.axis_label = 'Average Temperature'\n",
"q.yaxis.axis_label = 'Dew Point'\n",
"bokeh.plotting.show(q)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The great thing about `bokeh` is that most of the interactive functionality comes out of the box; all you have to do is specify the kind of plot that you want. Now, let's try a histogram."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"1fff7d3b-ad4c-4f6a-9c0a-be3609b37fc1\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"1fff7d3b-ad4c-4f6a-9c0a-be3609b37fc1\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '1fff7d3b-ad4c-4f6a-9c0a-be3609b37fc1' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"fe40f46c-4625-488e-ab99-ab3ec7487b5d\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"65e6522a-4490-424e-a998-024b2cb9b3de\"], \"references\": [{\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\"}, {\"attributes\": {\"glyph\": {\"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\"}, {\"attributes\": {\"glyph\": {\"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\", \"type\": \"Quad\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"e254871b-b306-4543-96fc-593037b4de52\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\", \"type\": \"Quad\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {\"title\": \"My Interactive Visualization\", \"below\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"84b08934-191b-43d6-8723-88a624f481e4\", \"type\": \"PanTool\"}, {\"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\", \"type\": \"BoxZoomTool\"}, {\"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\", \"type\": \"ResizeTool\"}, {\"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\", \"type\": \"ResetTool\"}, {\"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}, {\"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\", \"type\": \"Grid\"}, {\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}, {\"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\", \"type\": \"Grid\"}, {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}, {\"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\"}, {\"attributes\": {\"callback\": null, \"data\": {\"top\": [5, 8, 10, 9, 24, 40, 40, 45, 39, 43, 45, 53, 61, 43, 40, 60, 55, 55, 67, 67, 74, 67, 39, 10, 9], \"right\": [14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84, 90.0], \"left\": [11.0, 14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84]}, \"column_names\": [\"top\", \"right\", \"left\"]}, \"type\": \"ColumnDataSource\", \"id\": \"e254871b-b306-4543-96fc-593037b4de52\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Dew Point\", \"formatter\": {\"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"title\": \"Histogram of Average Temperature\", \"below\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\", \"type\": \"PanTool\"}, {\"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\", \"type\": \"WheelZoomTool\"}, {\"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\", \"type\": \"ResizeTool\"}, {\"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\", \"type\": \"ResetTool\"}, {\"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}, {\"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\", \"type\": \"Grid\"}, {\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}, {\"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\", \"type\": \"Grid\"}, {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"35701018-1afe-47ba-80ea-c5370534df55\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"line_color\": {\"value\": \"#000000\"}, \"bottom\": {\"value\": 0}, \"top\": {\"field\": \"top\"}}, \"type\": \"Quad\", \"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"top\": {\"field\": \"top\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"bottom\": {\"value\": 0}, \"line_alpha\": {\"value\": 0.1}}, \"type\": \"Quad\", \"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Frequency\", \"formatter\": {\"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"9705552a-5318-4e55-9c94-bc806733a654\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"84b08934-191b-43d6-8723-88a624f481e4\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"fe40f46c-4625-488e-ab99-ab3ec7487b5d\", \"elementid\": \"1fff7d3b-ad4c-4f6a-9c0a-be3609b37fc1\", \"notebook_comms_target\": \"93154aa8-16bb-4c8a-9871-2b3e1ab1cba8\", \"modelid\": \"65e6522a-4490-424e-a998-024b2cb9b3de\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x10b3adc88>"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hist_plot = bokeh.plotting.figure(title = 'Histogram of Average Temperature')\n",
"hist, edges = np.histogram(data.mean_temperature, bins = 25)\n",
"hist_plot.quad(top = hist, bottom = 0, left = edges[:-1], right = edges[1:], line_color = \"#000000\")\n",
"hist_plot.xaxis.axis_label = \"Average Temperature\"\n",
"hist_plot.yaxis.axis_label = \"Frequency\"\n",
"bokeh.plotting.show(hist_plot)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To compare with our previous plotting tool, Seaborn, it takes a little bit more work to get `bokeh` plots together, but the upside is that we get interactivity for free, letting us explore which parts of the plot are most interesting to us. Another interesting bit of functionality is the ability to \"tab\" your plots, let's check it out."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"115037c4-aa77-468e-8502-28648ffbbf00\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"115037c4-aa77-468e-8502-28648ffbbf00\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '115037c4-aa77-468e-8502-28648ffbbf00' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"ac32ba38-72af-4c15-afbb-4faac89b0e63\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"402c0408-09dc-45df-9392-3327ad6216d8\"], \"references\": [{\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"68ab62af-a39b-4b95-b452-327af84702df\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\"}, {\"attributes\": {\"glyph\": {\"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\"}, {\"attributes\": {\"glyph\": {\"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"598f060c-f931-4d34-af6c-ff5107236491\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\"}, {\"attributes\": {\"title\": \"First Plot\", \"child\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"Panel\", \"id\": \"405b0856-8501-4feb-bd21-4f2622235e52\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"top\": {\"field\": \"top\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"bottom\": {\"value\": 0}, \"line_alpha\": {\"value\": 0.1}}, \"type\": \"Quad\", \"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {\"glyph\": {\"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\"}, {\"attributes\": {\"callback\": null, \"tabs\": [{\"id\": \"405b0856-8501-4feb-bd21-4f2622235e52\", \"type\": \"Panel\"}, {\"id\": \"01539978-832e-40d6-a40c-c0d7d0b5ccff\", \"type\": \"Panel\"}]}, \"type\": \"Tabs\", \"id\": \"402c0408-09dc-45df-9392-3327ad6216d8\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"62395804-d44b-439e-8a6a-57559cfff496\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"glyph\": {\"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3df7635b-e31a-4950-8549-612583ee4559\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\"}, {\"attributes\": {\"callback\": null, \"data\": {\"top\": [5, 8, 10, 9, 24, 40, 40, 45, 39, 43, 45, 53, 61, 43, 40, 60, 55, 55, 67, 67, 74, 67, 39, 10, 9], \"right\": [14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84, 90.0], \"left\": [11.0, 14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84]}, \"column_names\": [\"top\", \"right\", \"left\"]}, \"type\": \"ColumnDataSource\", \"id\": \"e254871b-b306-4543-96fc-593037b4de52\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"579545ef-f828-4e2e-8765-0eed23793089\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}, {\"attributes\": {\"glyph\": {\"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3281f94a-6514-46de-b5be-920bb0582404\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\"}, {\"attributes\": {\"title\": \"My Interactive Visualization\", \"below\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"84b08934-191b-43d6-8723-88a624f481e4\", \"type\": \"PanTool\"}, {\"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\", \"type\": \"BoxZoomTool\"}, {\"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\", \"type\": \"ResizeTool\"}, {\"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\", \"type\": \"ResetTool\"}, {\"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}, {\"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\", \"type\": \"Grid\"}, {\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}, {\"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\", \"type\": \"Grid\"}, {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}, {\"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"598f060c-f931-4d34-af6c-ff5107236491\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"84b08934-191b-43d6-8723-88a624f481e4\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\"}, {\"attributes\": {\"glyph\": {\"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\", \"type\": \"Quad\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"e254871b-b306-4543-96fc-593037b4de52\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\", \"type\": \"Quad\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\"}, {\"attributes\": {\"title\": \"Second Plot\", \"child\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"Panel\", \"id\": \"01539978-832e-40d6-a40c-c0d7d0b5ccff\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Dew Point\", \"formatter\": {\"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {\"x_range\": {\"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}, {\"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\", \"type\": \"Grid\"}, {\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}, {\"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\", \"type\": \"Grid\"}, {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3281f94a-6514-46de-b5be-920bb0582404\", \"type\": \"GlyphRenderer\"}, {\"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\", \"type\": \"PanTool\"}, {\"id\": \"55ec8fcc-2484-493b-b30f-106543559054\", \"type\": \"WheelZoomTool\"}, {\"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\", \"type\": \"BoxZoomTool\"}, {\"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\", \"type\": \"ResizeTool\"}, {\"id\": \"579545ef-f828-4e2e-8765-0eed23793089\", \"type\": \"ResetTool\"}, {\"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\"}, {\"attributes\": {\"x_range\": {\"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}, {\"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\", \"type\": \"Grid\"}, {\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}, {\"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\", \"type\": \"Grid\"}, {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\", \"type\": \"GlyphRenderer\"}, {\"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\", \"type\": \"PanTool\"}, {\"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\", \"type\": \"WheelZoomTool\"}, {\"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\", \"type\": \"BoxZoomTool\"}, {\"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"9bac4841-076a-42b8-981b-9992f6405647\", \"type\": \"ResizeTool\"}, {\"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\", \"type\": \"ResetTool\"}, {\"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"35701018-1afe-47ba-80ea-c5370534df55\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [26, 22, 24, 30, 32, 37, 35, 39, 40, 37, 42, 43, 38, 35, 32, 35, 25, 30, 30, 26, 11, 12, 13, 15, 19, 29, 36, 39, 30, 24, 19, 24, 23, 28, 29, 26, 27, 21, 18, 34, 36, 33, 37, 31, 18, 17, 33, 25, 24, 25, 36, 34, 32, 35, 36, 36, 27, 31, 38, 33, 31, 35, 36, 40, 43, 38, 29, 30, 32, 29, 28, 33, 28, 32, 33, 36, 37, 36, 40, 40, 44, 33, 33, 33, 41, 35, 40, 51, 55, 41, 41, 46, 44, 47, 55, 51, 55, 43, 37, 41, 41, 44, 46, 50, 48, 51, 52, 47, 49, 49, 48, 46, 46, 52, 55, 54, 59, 61, 45, 42, 54, 62, 58, 56, 55, 58, 68, 59, 64, 45, 45, 48, 51, 56, 58, 72, 75, 73, 69, 66, 57, 58, 59, 59, 57, 63, 62, 64, 65, 55, 53, 61, 65, 69, 64, 59, 62, 64, 65, 70, 74, 74, 73, 71, 72, 72, 73, 75, 76, 78, 78, 73, 74, 68, 67, 74, 78, 77, 79, 81, 83, 81, 76, 75, 73, 68, 64, 65, 70, 70, 69, 67, 67, 66, 67, 68, 66, 62, 64, 70, 74, 70, 65, 70, 68, 61, 59, 64, 64, 68, 72, 71, 71, 65, 64, 68, 71, 71, 70, 73, 75, 74, 68, 65, 64, 57, 59, 57, 68, 77, 70, 59, 54, 51, 56, 50, 51, 55, 60, 61, 54, 50, 47, 52, 58, 57, 56, 57, 56, 59, 64, 63, 64, 60, 54, 53, 60, 60, 56, 52, 53, 56, 61, 55, 52, 50, 50, 51, 45, 41, 40, 41, 46, 43, 44, 47, 53, 59, 55, 37, 35, 41, 49, 44, 40, 38, 43, 31, 29, 33, 44, 45, 51, 51, 36, 32, 35, 51, 23, 23, 33, 35, 30, 29, 25, 36, 41, 38, 41, 48, 37, 32, 29, 31, 30, 27, 23, 23, 22, 30, 25, 24, 23, 30, 41, 51, 42, 19, 31, 36, 41, 23, 24, 18, 9, 8, 27, 19, 4, 9, 22, 30, 37, 38, 37, 44, 19, 21, 12, 14, 16, 25, 36, 32, 29, 21, 24, 21, 21, 21, 16, 13, 24, 31, 27, 21, 18, 26, 34, 37, 36, 40, 27, 24, 20, 14, 9, 20, 17, 13, 26, 16, 26, 35, 36, 45, 32, 19, 22, 42, 30, 23, 28, 32, 40, 39, 41, 27, 21, 24, 22, 37, 43, 39, 36, 39, 42, 46, 40, 40, 36, 43, 46, 45, 42, 56, 50, 54, 59, 33, 31, 36, 35, 41, 45, 41, 51, 44, 42, 44, 46, 47, 45, 43, 41, 51, 54, 54, 50, 52, 50, 55, 57, 60, 64, 53, 52, 58, 58, 53, 51, 49, 53, 63, 59, 56, 57, 55, 66, 54, 51, 57, 55, 59, 65, 63, 61, 61, 60, 66, 63, 65, 61, 60, 65, 60, 59, 63, 71, 76, 68, 64, 62, 64, 65, 68, 70, 70, 67, 66, 68, 69, 72, 72, 69, 65, 63, 66, 72, 71, 71, 72, 71, 71, 72, 72, 72, 67, 67, 71, 72, 70, 66, 69, 71, 68, 64, 63, 68, 71, 63, 66, 70, 71, 70, 66, 65, 66, 68, 71, 70, 68, 63, 61, 63, 66, 63, 63, 70, 65, 65, 67, 64, 64, 70, 70, 66, 61, 65, 73, 75, 77, 72, 69, 72, 67, 65, 65, 63, 63, 69, 62, 58, 53, 55, 58, 55, 57, 54, 57, 67, 52, 58, 57, 58, 60, 64, 67, 61, 61, 56, 52, 46, 50, 63, 62, 55, 50, 48, 52, 63, 69, 61, 59, 56, 44, 42, 55, 50, 50, 51, 50, 48, 53, 47, 45, 42, 41, 39, 53, 56, 48, 40, 36, 46, 44, 49, 47, 36, 35, 33, 35, 40, 24, 22, 31, 28, 28, 43, 53, 51, 34, 34, 29, 27, 45, 42, 35, 41, 37, 34, 39, 30, 24, 36, 32, 31, 32, 34, 38, 37, 38, 42, 37, 31, 30, 35, 43, 44, 44, 40, 44, 43, 34, 28, 27, 27, 35, 33, 41, 21, 19, 9, 8, 19, 16, 18, 35, 17, 16, 25, 20, 17, 31, 36, 32, 25, 31, 28, 33, 31, 22, 20, 16, 19, 19, 13, 20, 14, 13, 24, 14, 12, 25, 29, 25, 26, 22, 8, 16, 3, 14, 8, 2, 13, 32, 8, 4, 20, 21, 18, 13, 24, 27, 22, 35, 19, 12, 18, 37, 40, 39, 44, 36, 31, 40, 36, 35, 34, 29, 29, 29, 28, 23, 26, 34, 42, 39, 25, 35, 32, 41, 59, 42, 42, 42, 42, 37, 37, 39, 44, 43, 50, 55, 51, 52, 55, 59, 48, 46, 52, 48, 41, 39, 38, 46, 49, 50, 50, 48, 49, 48, 51, 57, 66, 56, 56, 57, 61, 64, 53, 50, 55, 57, 64, 60, 54, 52, 55, 49, 56, 64, 67, 70, 70, 65, 67, 57, 51, 50, 52, 54, 55, 60, 55, 63, 68, 65, 72, 73, 72, 66, 64, 65, 64, 68, 71, 70, 75, 68, 65, 69, 58, 62, 63, 68, 69, 69, 66, 68, 72, 75, 68, 72, 69, 72, 73, 73, 72, 64, 67, 71, 78, 82, 69, 68, 70, 69, 71, 75, 78, 76, 72, 75, 71, 75, 69, 72, 67, 69, 68, 68, 70, 71, 71, 67, 67, 73, 76, 78, 73, 77, 77, 71, 69, 70, 73, 73, 67, 67, 63, 67, 72, 76, 76, 74, 74, 72, 67, 65, 70, 76, 70, 66, 69, 62, 59, 62, 66, 68, 68, 68, 64, 59, 62, 59, 60, 63, 61, 56, 65, 72, 59, 56, 48, 49, 53, 52, 52, 58, 59, 61, 50, 53, 56, 61, 57, 51, 53, 42, 38, 35, 48, 57, 58, 45, 40, 48, 46, 45, 53, 57, 48, 42, 54, 54, 48, 56, 56, 66, 53, 46, 43, 51, 49, 51, 46, 42, 39, 51, 40, 46, 57, 46, 42, 42, 33, 32, 36, 41, 51, 34, 44, 46, 42, 40, 39, 42, 41, 40, 50, 55, 53, 53, 46, 50, 35, 34, 39, 53, 52, 63, 57, 46, 34, 34, 38, 42], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\"}, {\"attributes\": {\"title\": \"Histogram of Average Temperature\", \"below\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\", \"type\": \"PanTool\"}, {\"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\", \"type\": \"WheelZoomTool\"}, {\"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\", \"type\": \"ResizeTool\"}, {\"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\", \"type\": \"ResetTool\"}, {\"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}, {\"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\", \"type\": \"Grid\"}, {\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}, {\"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\", \"type\": \"Grid\"}, {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"line_color\": {\"value\": \"#000000\"}, \"bottom\": {\"value\": 0}, \"top\": {\"field\": \"top\"}}, \"type\": \"Quad\", \"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"9bac4841-076a-42b8-981b-9992f6405647\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Frequency\", \"formatter\": {\"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"9705552a-5318-4e55-9c94-bc806733a654\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"55ec8fcc-2484-493b-b30f-106543559054\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [40, 33, 32, 37, 42, 45, 48, 49, 47, 46, 47, 50, 56, 38, 37, 43, 35, 51, 53, 32, 20, 22, 24, 27, 34, 36, 49, 59, 61, 31, 29, 30, 30, 32, 39, 32, 34, 32, 36, 45, 44, 44, 55, 41, 32, 35, 49, 38, 34, 38, 42, 47, 45, 44, 47, 45, 42, 49, 42, 38, 42, 55, 50, 54, 57, 52, 41, 47, 41, 38, 35, 43, 41, 46, 47, 40, 53, 53, 55, 59, 54, 43, 46, 53, 64, 52, 55, 73, 74, 47, 58, 57, 59, 63, 71, 59, 71, 60, 55, 55, 53, 69, 66, 67, 71, 69, 57, 69, 72, 66, 69, 64, 69, 74, 63, 68, 79, 70, 58, 61, 69, 79, 72, 65, 59, 79, 86, 78, 80, 65, 54, 66, 73, 68, 82, 90, 90, 90, 88, 78, 75, 74, 70, 63, 77, 80, 70, 80, 76, 69, 72, 80, 80, 84, 84, 77, 80, 82, 84, 88, 92, 85, 86, 83, 77, 82, 83, 87, 90, 92, 92, 89, 88, 77, 81, 90, 94, 94, 97, 98, 96, 93, 89, 86, 87, 83, 68, 83, 82, 78, 85, 83, 83, 76, 83, 78, 80, 78, 82, 81, 85, 83, 81, 82, 77, 74, 78, 82, 84, 88, 90, 78, 82, 80, 83, 84, 87, 86, 85, 86, 84, 82, 82, 82, 80, 72, 80, 73, 87, 96, 87, 77, 67, 73, 73, 65, 72, 78, 79, 77, 69, 66, 73, 73, 71, 69, 73, 72, 75, 82, 83, 78, 76, 76, 67, 62, 68, 72, 65, 66, 72, 67, 73, 68, 64, 63, 66, 67, 55, 54, 53, 55, 58, 61, 56, 60, 66, 70, 68, 55, 46, 55, 61, 64, 50, 50, 53, 52, 39, 52, 57, 60, 60, 65, 51, 44, 52, 57, 30, 35, 47, 62, 35, 39, 39, 49, 49, 53, 52, 60, 62, 41, 33, 39, 37, 33, 30, 35, 34, 40, 33, 32, 37, 47, 53, 65, 64, 31, 40, 55, 48, 45, 33, 33, 18, 29, 40, 55, 19, 22, 32, 37, 58, 54, 51, 52, 28, 44, 21, 23, 30, 39, 45, 43, 34, 32, 32, 29, 31, 29, 26, 25, 36, 40, 37, 30, 32, 39, 45, 51, 49, 54, 44, 33, 31, 34, 24, 37, 32, 29, 39, 31, 37, 57, 44, 66, 56, 32, 46, 58, 42, 35, 43, 46, 54, 51, 63, 42, 35, 36, 44, 62, 59, 49, 56, 60, 54, 67, 47, 54, 61, 53, 64, 61, 58, 75, 73, 77, 75, 63, 49, 48, 49, 68, 60, 67, 71, 61, 62, 63, 67, 59, 67, 52, 52, 78, 71, 65, 70, 71, 69, 63, 83, 82, 85, 73, 71, 71, 68, 70, 67, 72, 78, 74, 67, 71, 70, 80, 86, 64, 66, 73, 77, 80, 87, 82, 76, 76, 82, 86, 73, 77, 70, 73, 79, 74, 80, 81, 89, 89, 77, 79, 78, 79, 81, 81, 85, 85, 83, 87, 83, 84, 89, 91, 87, 74, 81, 84, 90, 91, 88, 83, 86, 85, 83, 84, 86, 81, 85, 86, 88, 80, 82, 81, 85, 82, 76, 80, 82, 84, 74, 76, 84, 90, 83, 83, 83, 87, 88, 87, 79, 82, 77, 73, 78, 82, 81, 83, 84, 83, 79, 77, 80, 88, 89, 90, 82, 80, 80, 90, 88, 92, 86, 87, 87, 91, 81, 75, 73, 80, 83, 78, 69, 71, 71, 70, 73, 76, 66, 75, 75, 71, 71, 64, 77, 83, 84, 79, 65, 70, 71, 69, 61, 69, 71, 73, 68, 60, 63, 65, 76, 77, 71, 71, 70, 56, 60, 67, 58, 53, 63, 67, 63, 72, 59, 55, 47, 48, 61, 68, 64, 57, 53, 48, 57, 61, 64, 65, 48, 42, 42, 45, 52, 45, 36, 45, 37, 44, 57, 69, 68, 51, 38, 37, 45, 55, 65, 43, 46, 45, 44, 50, 42, 37, 42, 40, 38, 38, 44, 46, 48, 49, 54, 42, 38, 33, 44, 46, 58, 62, 50, 55, 54, 44, 34, 32, 39, 42, 42, 56, 49, 22, 23, 21, 33, 23, 37, 39, 36, 32, 35, 43, 32, 42, 42, 40, 36, 40, 39, 39, 42, 31, 30, 34, 36, 38, 26, 36, 34, 26, 43, 42, 27, 40, 37, 29, 40, 34, 21, 32, 21, 27, 27, 19, 32, 43, 38, 24, 37, 32, 30, 29, 31, 39, 37, 45, 40, 27, 38, 49, 54, 53, 59, 47, 43, 51, 44, 52, 57, 39, 43, 38, 43, 38, 45, 49, 62, 46, 46, 47, 51, 67, 64, 60, 61, 63, 62, 45, 43, 56, 57, 66, 68, 65, 72, 64, 71, 80, 64, 57, 65, 69, 52, 52, 62, 64, 62, 71, 78, 67, 63, 74, 80, 85, 85, 80, 82, 70, 83, 86, 70, 73, 75, 75, 83, 75, 67, 62, 74, 70, 81, 85, 88, 85, 85, 85, 85, 87, 58, 55, 70, 65, 70, 76, 74, 79, 83, 82, 89, 88, 86, 88, 83, 79, 71, 87, 88, 87, 90, 84, 83, 81, 71, 73, 76, 82, 82, 80, 82, 83, 83, 88, 79, 84, 88, 89, 88, 82, 81, 80, 81, 85, 93, 94, 85, 86, 87, 88, 86, 95, 96, 87, 89, 89, 89, 90, 89, 87, 83, 84, 82, 85, 84, 81, 85, 83, 88, 92, 93, 95, 90, 87, 86, 87, 86, 85, 87, 90, 85, 82, 82, 87, 90, 91, 90, 91, 93, 85, 83, 87, 92, 97, 79, 81, 79, 80, 77, 84, 88, 89, 87, 83, 79, 73, 71, 80, 82, 76, 72, 71, 78, 83, 79, 64, 57, 55, 63, 67, 73, 73, 72, 78, 65, 69, 77, 72, 69, 64, 64, 56, 50, 53, 70, 76, 75, 65, 57, 68, 58, 59, 69, 73, 61, 56, 65, 63, 72, 70, 71, 74, 72, 56, 59, 57, 58, 61, 58, 49, 58, 67, 52, 58, 64, 64, 53, 55, 44, 46, 50, 60, 64, 45, 51, 57, 51, 51, 53, 54, 49, 55, 61, 67, 67, 68, 53, 59, 40, 43, 56, 62, 64, 72, 66, 61, 46, 46, 48, 48], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"ac32ba38-72af-4c15-afbb-4faac89b0e63\", \"elementid\": \"115037c4-aa77-468e-8502-28648ffbbf00\", \"notebook_comms_target\": \"db4d54e4-9037-4c0c-9798-99fa1ee6c8cf\", \"modelid\": \"402c0408-09dc-45df-9392-3327ad6216d8\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x10b3de7b8>"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"line_data = np.linspace(data.mean_temperature.min(), data.mean_temperature.max())\n",
"\n",
"first = bokeh.plotting.figure()\n",
"first.circle(data.mean_temperature, data.max_temperature)\n",
"first.line(line_data, line_data)\n",
"tab1 = bokeh.models.Panel(child = first, title = 'First Plot')\n",
"\n",
"second = bokeh.plotting.figure()\n",
"second.circle(data.mean_temperature, data.min_temperature)\n",
"second.line(line_data, line_data)\n",
"tab2 = bokeh.models.Panel(child = second, title = 'Second Plot')\n",
"\n",
"tabs = bokeh.models.Tabs(tabs = [tab1, tab2])\n",
"bokeh.plotting.show(tabs)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Another cool aspect of `bokeh` is the ability to include widgets. Let's use a widget to interactively change the size of the points in our scatterplot.\n",
"\n",
"Instead of specifying the data directly, we'll use the name of the column in a data source we create."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"18acb36a-c7fb-4b65-b0e9-761f0a6278df\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"18acb36a-c7fb-4b65-b0e9-761f0a6278df\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '18acb36a-c7fb-4b65-b0e9-761f0a6278df' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"5fa8964d-f49a-4835-b3fb-99570426f8fc\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"c71e8111-1b66-416e-bb23-d6e6262873e3\", \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"c99a645a-b4f4-4a67-88f2-79295e2f9a20\", \"96b355dc-3777-4dc2-a6b7-701790901452\", \"6e3bc8f4-b876-48db-8286-3d3274c659e7\", \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"1930638d-1851-45da-8642-a550c7b47866\"], \"references\": [{\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\"}, {\"attributes\": {\"glyph\": {\"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"6de5b649-6212-42b0-8703-58c5c600a93e\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"319ffabb-ea1a-4a6d-ab1a-04cd525ecdad\"}, {\"attributes\": {\"glyph\": {\"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"865e0e03-59ab-40fb-8db8-f84d752bd2b2\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"ea39496b-fa2e-468d-9ea6-cddec3aaec40\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"91f11d28-3a57-42d5-81b3-fc76bb9f74a3\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b6bb6479-4846-435c-ae26-9d0271432751\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3134975c-2a2a-49e3-91c3-f8df643dccb5\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"fcd018bb-6cd4-40f7-9978-e1f145d8a05d\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"942da444-16d0-4254-b8ab-470957a4888d\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b6bb6479-4846-435c-ae26-9d0271432751\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"f206bf38-70fd-4d06-8a66-f75cf1d8bdb5\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"6dc4725d-6940-402e-aff3-75e0bf2c0398\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"af0e5595-905c-4e9a-a49f-cc77be75bec4\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"children\": [{\"id\": \"34efee33-252e-4218-8556-389e60300d94\", \"type\": \"Slider\"}, {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"1930638d-1851-45da-8642-a550c7b47866\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"34a81269-33e5-4019-9c99-ed89e06a324c\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"133c63ac-0306-4906-b07b-22d4dc8b5b2f\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"f3656cdf-144f-4d85-aa51-5354439f9d27\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b69f2701-c2d4-4eeb-84e7-e8af304f9dcd\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3df7635b-e31a-4950-8549-612583ee4559\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"b67601c2-c15e-47df-b7a7-c891ff0a40d2\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"441975b3-9947-41fb-b6de-cedff34ad9bc\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"75aec211-f6c2-4051-9806-d8447d45db86\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\"}, {\"attributes\": {\"glyph\": {\"id\": \"7e3a566f-5eff-4a55-8e92-17e18bf2030b\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"133c63ac-0306-4906-b07b-22d4dc8b5b2f\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"b4f8bc60-0afa-4b52-af0d-0980c2ec1272\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"90fd7192-75b0-436a-aa31-9d8ef06f7f0d\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"579545ef-f828-4e2e-8765-0eed23793089\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"dc6bac97-3b76-4482-afaf-7102acdabf24\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"748d0a2d-ec1b-4806-a41f-7546910057e1\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\"}, {\"attributes\": {\"children\": [{\"id\": \"dc12fb35-f120-430b-b12c-55bbd9e5e9ce\", \"type\": \"Slider\"}, {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"c99a645a-b4f4-4a67-88f2-79295e2f9a20\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\"}, {\"attributes\": {\"glyph\": {\"id\": \"92d684b0-f1eb-42d2-a2c5-0897ab6017ea\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"865e0e03-59ab-40fb-8db8-f84d752bd2b2\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8882df15-dfa5-4ec8-974c-bb80baa0fc73\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"89545452-e447-4294-9d2b-2e33b2749f32\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"1e57a445-c12c-4554-970b-8fec4d1d1c6f\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"ae31f862-4dda-4562-b886-2d8d5f3f7819\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"413d3acf-7e83-48c9-b2fd-e8ff0e13176e\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"8d5d7228-9364-47d6-b8fa-c78dc46d6420\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3134975c-2a2a-49e3-91c3-f8df643dccb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\"}, {\"attributes\": {\"glyph\": {\"id\": \"1921a8bb-76c6-4e27-a42d-44ee1015617c\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"33f3b48d-8b1e-4022-9d59-fcde30fd5b8b\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"b7fe099a-4ce6-4620-9351-beb668a740da\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"57b79ae6-c4f9-4a7f-84c8-28af56a90d45\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"33e2d1c0-c267-4195-a9f7-e20ff4429c7a\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.05}, \"type\": \"Slider\", \"id\": \"7704dc1f-556c-427e-83b9-d52c110085ef\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"61ebc5e8-debb-4f83-989e-7f3d499b1bf4\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"49000335-2686-4a9a-a0b1-362b15576da5\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"8f1e36b3-c2bc-4205-b8fb-1b60d34a13e7\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"a1fc7977-7c2b-4b59-8afe-042dfc20334b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"4f8b077f-9759-4308-9835-5ad86b9d4670\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a1d75757-d8f0-48d2-a8ee-5be4bd1db206\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [26, 22, 24, 30, 32, 37, 35, 39, 40, 37, 42, 43, 38, 35, 32, 35, 25, 30, 30, 26, 11, 12, 13, 15, 19, 29, 36, 39, 30, 24, 19, 24, 23, 28, 29, 26, 27, 21, 18, 34, 36, 33, 37, 31, 18, 17, 33, 25, 24, 25, 36, 34, 32, 35, 36, 36, 27, 31, 38, 33, 31, 35, 36, 40, 43, 38, 29, 30, 32, 29, 28, 33, 28, 32, 33, 36, 37, 36, 40, 40, 44, 33, 33, 33, 41, 35, 40, 51, 55, 41, 41, 46, 44, 47, 55, 51, 55, 43, 37, 41, 41, 44, 46, 50, 48, 51, 52, 47, 49, 49, 48, 46, 46, 52, 55, 54, 59, 61, 45, 42, 54, 62, 58, 56, 55, 58, 68, 59, 64, 45, 45, 48, 51, 56, 58, 72, 75, 73, 69, 66, 57, 58, 59, 59, 57, 63, 62, 64, 65, 55, 53, 61, 65, 69, 64, 59, 62, 64, 65, 70, 74, 74, 73, 71, 72, 72, 73, 75, 76, 78, 78, 73, 74, 68, 67, 74, 78, 77, 79, 81, 83, 81, 76, 75, 73, 68, 64, 65, 70, 70, 69, 67, 67, 66, 67, 68, 66, 62, 64, 70, 74, 70, 65, 70, 68, 61, 59, 64, 64, 68, 72, 71, 71, 65, 64, 68, 71, 71, 70, 73, 75, 74, 68, 65, 64, 57, 59, 57, 68, 77, 70, 59, 54, 51, 56, 50, 51, 55, 60, 61, 54, 50, 47, 52, 58, 57, 56, 57, 56, 59, 64, 63, 64, 60, 54, 53, 60, 60, 56, 52, 53, 56, 61, 55, 52, 50, 50, 51, 45, 41, 40, 41, 46, 43, 44, 47, 53, 59, 55, 37, 35, 41, 49, 44, 40, 38, 43, 31, 29, 33, 44, 45, 51, 51, 36, 32, 35, 51, 23, 23, 33, 35, 30, 29, 25, 36, 41, 38, 41, 48, 37, 32, 29, 31, 30, 27, 23, 23, 22, 30, 25, 24, 23, 30, 41, 51, 42, 19, 31, 36, 41, 23, 24, 18, 9, 8, 27, 19, 4, 9, 22, 30, 37, 38, 37, 44, 19, 21, 12, 14, 16, 25, 36, 32, 29, 21, 24, 21, 21, 21, 16, 13, 24, 31, 27, 21, 18, 26, 34, 37, 36, 40, 27, 24, 20, 14, 9, 20, 17, 13, 26, 16, 26, 35, 36, 45, 32, 19, 22, 42, 30, 23, 28, 32, 40, 39, 41, 27, 21, 24, 22, 37, 43, 39, 36, 39, 42, 46, 40, 40, 36, 43, 46, 45, 42, 56, 50, 54, 59, 33, 31, 36, 35, 41, 45, 41, 51, 44, 42, 44, 46, 47, 45, 43, 41, 51, 54, 54, 50, 52, 50, 55, 57, 60, 64, 53, 52, 58, 58, 53, 51, 49, 53, 63, 59, 56, 57, 55, 66, 54, 51, 57, 55, 59, 65, 63, 61, 61, 60, 66, 63, 65, 61, 60, 65, 60, 59, 63, 71, 76, 68, 64, 62, 64, 65, 68, 70, 70, 67, 66, 68, 69, 72, 72, 69, 65, 63, 66, 72, 71, 71, 72, 71, 71, 72, 72, 72, 67, 67, 71, 72, 70, 66, 69, 71, 68, 64, 63, 68, 71, 63, 66, 70, 71, 70, 66, 65, 66, 68, 71, 70, 68, 63, 61, 63, 66, 63, 63, 70, 65, 65, 67, 64, 64, 70, 70, 66, 61, 65, 73, 75, 77, 72, 69, 72, 67, 65, 65, 63, 63, 69, 62, 58, 53, 55, 58, 55, 57, 54, 57, 67, 52, 58, 57, 58, 60, 64, 67, 61, 61, 56, 52, 46, 50, 63, 62, 55, 50, 48, 52, 63, 69, 61, 59, 56, 44, 42, 55, 50, 50, 51, 50, 48, 53, 47, 45, 42, 41, 39, 53, 56, 48, 40, 36, 46, 44, 49, 47, 36, 35, 33, 35, 40, 24, 22, 31, 28, 28, 43, 53, 51, 34, 34, 29, 27, 45, 42, 35, 41, 37, 34, 39, 30, 24, 36, 32, 31, 32, 34, 38, 37, 38, 42, 37, 31, 30, 35, 43, 44, 44, 40, 44, 43, 34, 28, 27, 27, 35, 33, 41, 21, 19, 9, 8, 19, 16, 18, 35, 17, 16, 25, 20, 17, 31, 36, 32, 25, 31, 28, 33, 31, 22, 20, 16, 19, 19, 13, 20, 14, 13, 24, 14, 12, 25, 29, 25, 26, 22, 8, 16, 3, 14, 8, 2, 13, 32, 8, 4, 20, 21, 18, 13, 24, 27, 22, 35, 19, 12, 18, 37, 40, 39, 44, 36, 31, 40, 36, 35, 34, 29, 29, 29, 28, 23, 26, 34, 42, 39, 25, 35, 32, 41, 59, 42, 42, 42, 42, 37, 37, 39, 44, 43, 50, 55, 51, 52, 55, 59, 48, 46, 52, 48, 41, 39, 38, 46, 49, 50, 50, 48, 49, 48, 51, 57, 66, 56, 56, 57, 61, 64, 53, 50, 55, 57, 64, 60, 54, 52, 55, 49, 56, 64, 67, 70, 70, 65, 67, 57, 51, 50, 52, 54, 55, 60, 55, 63, 68, 65, 72, 73, 72, 66, 64, 65, 64, 68, 71, 70, 75, 68, 65, 69, 58, 62, 63, 68, 69, 69, 66, 68, 72, 75, 68, 72, 69, 72, 73, 73, 72, 64, 67, 71, 78, 82, 69, 68, 70, 69, 71, 75, 78, 76, 72, 75, 71, 75, 69, 72, 67, 69, 68, 68, 70, 71, 71, 67, 67, 73, 76, 78, 73, 77, 77, 71, 69, 70, 73, 73, 67, 67, 63, 67, 72, 76, 76, 74, 74, 72, 67, 65, 70, 76, 70, 66, 69, 62, 59, 62, 66, 68, 68, 68, 64, 59, 62, 59, 60, 63, 61, 56, 65, 72, 59, 56, 48, 49, 53, 52, 52, 58, 59, 61, 50, 53, 56, 61, 57, 51, 53, 42, 38, 35, 48, 57, 58, 45, 40, 48, 46, 45, 53, 57, 48, 42, 54, 54, 48, 56, 56, 66, 53, 46, 43, 51, 49, 51, 46, 42, 39, 51, 40, 46, 57, 46, 42, 42, 33, 32, 36, 41, 51, 34, 44, 46, 42, 40, 39, 42, 41, 40, 50, 55, 53, 53, 46, 50, 35, 34, 39, 53, 52, 63, 57, 46, 34, 34, 38, 42], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"617df45d-a847-47e0-b9cf-a8282b54cc5b\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"aecdee0b-6117-4f29-84ed-03d4c751a401\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"598f060c-f931-4d34-af6c-ff5107236491\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\"}, {\"attributes\": {\"glyph\": {\"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\", \"type\": \"Quad\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"e254871b-b306-4543-96fc-593037b4de52\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\", \"type\": \"Quad\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"5f7097a9-12ba-4c3c-8e1f-e88857bd6121\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"33f3b48d-8b1e-4022-9d59-fcde30fd5b8b\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"36b1c2b7-eebb-4f82-87aa-bd0dab9c635a\"}, {\"attributes\": {\"glyph\": {\"id\": \"1273cc4b-668a-426d-9dde-12d067c3a0ea\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"709869f1-3a74-473b-a8ab-961525e255c1\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"ebc84dc6-aeab-4350-9629-925f8b94bba0\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"404b79c2-2db5-43fb-8e78-9beae9382f70\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"48d42808-e44c-45cb-a137-26edf2d39afb\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"487281c3-31e3-4521-88f8-09aa3d3b0a02\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"290c621d-8f51-42f5-9258-2fe6eebd0b7b\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"179d4135-3800-4b1e-8b09-88d7f0fdbcf3\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.5}, \"type\": \"Slider\", \"id\": \"17b2fa99-b6a9-4daa-8d88-f5f21bef3611\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"59245691-6a7f-46de-9e70-f04ccb383e6e\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\"}, {\"attributes\": {\"children\": [{\"id\": \"7704dc1f-556c-427e-83b9-d52c110085ef\", \"type\": \"Slider\"}, {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"6e3bc8f4-b876-48db-8286-3d3274c659e7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"1921a8bb-76c6-4e27-a42d-44ee1015617c\"}, {\"attributes\": {\"title\": \"Histogram of Average Temperature\", \"below\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\", \"type\": \"PanTool\"}, {\"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\", \"type\": \"WheelZoomTool\"}, {\"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\", \"type\": \"ResizeTool\"}, {\"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\", \"type\": \"ResetTool\"}, {\"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}, {\"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\", \"type\": \"Grid\"}, {\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}, {\"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\", \"type\": \"Grid\"}, {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"9d02ba7b-c686-4427-ad9f-f024b583100d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"9f8c68d0-b080-4229-be12-55e35a821f93\"}, {\"attributes\": {\"x_range\": {\"id\": \"441975b3-9947-41fb-b6de-cedff34ad9bc\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\", \"type\": \"LinearAxis\"}, {\"id\": \"179f675d-e9d7-4bae-8167-5eb4245bb1b7\", \"type\": \"Grid\"}, {\"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\", \"type\": \"LinearAxis\"}, {\"id\": \"e9247aad-d664-4a47-b187-9b0464d0b25f\", \"type\": \"Grid\"}, {\"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8882df15-dfa5-4ec8-974c-bb80baa0fc73\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"57b79ae6-c4f9-4a7f-84c8-28af56a90d45\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"75aec211-f6c2-4051-9806-d8447d45db86\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"617df45d-a847-47e0-b9cf-a8282b54cc5b\", \"type\": \"PanTool\"}, {\"id\": \"290c621d-8f51-42f5-9258-2fe6eebd0b7b\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a1d75757-d8f0-48d2-a8ee-5be4bd1db206\", \"type\": \"BoxZoomTool\"}, {\"id\": \"8d5d7228-9364-47d6-b8fa-c78dc46d6420\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"a1fc7977-7c2b-4b59-8afe-042dfc20334b\", \"type\": \"ResizeTool\"}, {\"id\": \"b67601c2-c15e-47df-b7a7-c891ff0a40d2\", \"type\": \"ResetTool\"}, {\"id\": \"7d21c49b-eaf7-4e43-b1f1-3d6fe532a20e\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"adcedef0-d224-486a-8b5b-bc5af6e9cceb\"}, {\"attributes\": {\"x_range\": {\"id\": \"52a9844c-4233-44f7-a3a0-76e0e8c9597b\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\", \"type\": \"LinearAxis\"}, {\"id\": \"a5824b9f-a54b-47c2-ba29-c0af06878ddf\", \"type\": \"Grid\"}, {\"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\", \"type\": \"LinearAxis\"}, {\"id\": \"2a4f7fbe-9f83-47f0-ba97-01beb289c1b8\", \"type\": \"Grid\"}, {\"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\", \"type\": \"BoxAnnotation\"}, {\"id\": \"b4f8bc60-0afa-4b52-af0d-0980c2ec1272\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"36b1c2b7-eebb-4f82-87aa-bd0dab9c635a\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"9d02ba7b-c686-4427-ad9f-f024b583100d\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"c1f01812-2155-4bd5-b3ad-946cc8725b8e\", \"type\": \"PanTool\"}, {\"id\": \"49000335-2686-4a9a-a0b1-362b15576da5\", \"type\": \"WheelZoomTool\"}, {\"id\": \"283918f5-9f85-49f9-983b-1d5f00466c3a\", \"type\": \"BoxZoomTool\"}, {\"id\": \"ec4cb71c-d520-4029-bec7-7b6dd5b55751\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"dc6bac97-3b76-4482-afaf-7102acdabf24\", \"type\": \"ResizeTool\"}, {\"id\": \"91f11d28-3a57-42d5-81b3-fc76bb9f74a3\", \"type\": \"ResetTool\"}, {\"id\": \"b83441e8-1ca2-4fea-9156-b10295543268\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b69f2701-c2d4-4eeb-84e7-e8af304f9dcd\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Frequency\", \"formatter\": {\"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"9705552a-5318-4e55-9c94-bc806733a654\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"93d63f5d-e311-406b-afe9-dad87becc657\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"line_color\": {\"value\": \"#000000\"}, \"bottom\": {\"value\": 0}, \"top\": {\"field\": \"top\"}}, \"type\": \"Quad\", \"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\"}, {\"attributes\": {\"x_range\": {\"id\": \"413d3acf-7e83-48c9-b2fd-e8ff0e13176e\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\", \"type\": \"LinearAxis\"}, {\"id\": \"6dc4725d-6940-402e-aff3-75e0bf2c0398\", \"type\": \"Grid\"}, {\"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\", \"type\": \"LinearAxis\"}, {\"id\": \"b359f15b-29c2-4bf7-919f-ef74a09d744c\", \"type\": \"Grid\"}, {\"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"b7fe099a-4ce6-4620-9351-beb668a740da\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"c60efbc3-cbc7-45dc-8e36-15ba015e7465\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"48d42808-e44c-45cb-a137-26edf2d39afb\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"5f7097a9-12ba-4c3c-8e1f-e88857bd6121\", \"type\": \"PanTool\"}, {\"id\": \"fcd018bb-6cd4-40f7-9978-e1f145d8a05d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"61ebc5e8-debb-4f83-989e-7f3d499b1bf4\", \"type\": \"BoxZoomTool\"}, {\"id\": \"6ac955df-dfe3-443e-bf32-38f5cbc50937\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"90fd7192-75b0-436a-aa31-9d8ef06f7f0d\", \"type\": \"ResizeTool\"}, {\"id\": \"9428e2de-8504-40fb-833d-26bd6ca5f8cc\", \"type\": \"ResetTool\"}, {\"id\": \"487281c3-31e3-4521-88f8-09aa3d3b0a02\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"68ab62af-a39b-4b95-b452-327af84702df\"}, {\"attributes\": {\"glyph\": {\"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3281f94a-6514-46de-b5be-920bb0582404\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"b359f15b-29c2-4bf7-919f-ef74a09d744c\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"6fc44235-afec-434f-804d-201a0de960a9\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"33e2d1c0-c267-4195-a9f7-e20ff4429c7a\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"b4ecd022-102d-4595-8df5-48bf86706eea\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"52a9844c-4233-44f7-a3a0-76e0e8c9597b\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"5dcbd54d-58ee-4df7-b5ae-681b7a4cab4f\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"f206bf38-70fd-4d06-8a66-f75cf1d8bdb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"c60efbc3-cbc7-45dc-8e36-15ba015e7465\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"top\": {\"field\": \"top\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"bottom\": {\"value\": 0}, \"line_alpha\": {\"value\": 0.1}}, \"type\": \"Quad\", \"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"6ac955df-dfe3-443e-bf32-38f5cbc50937\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"1273cc4b-668a-426d-9dde-12d067c3a0ea\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"d26a8f69-2bbb-4504-b8e3-80af652a86e4\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"62395804-d44b-439e-8a6a-57559cfff496\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\"}, {\"attributes\": {\"glyph\": {\"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\"}, {\"attributes\": {\"x_range\": {\"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}, {\"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\", \"type\": \"Grid\"}, {\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}, {\"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\", \"type\": \"Grid\"}, {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3281f94a-6514-46de-b5be-920bb0582404\", \"type\": \"GlyphRenderer\"}, {\"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\", \"type\": \"PanTool\"}, {\"id\": \"55ec8fcc-2484-493b-b30f-106543559054\", \"type\": \"WheelZoomTool\"}, {\"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\", \"type\": \"BoxZoomTool\"}, {\"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\", \"type\": \"ResizeTool\"}, {\"id\": \"579545ef-f828-4e2e-8765-0eed23793089\", \"type\": \"ResetTool\"}, {\"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\"}, {\"attributes\": {\"x_range\": {\"id\": \"f3969a2e-7ac3-47d8-b88c-c0d213ff8ca5\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\", \"type\": \"LinearAxis\"}, {\"id\": \"35ade122-5097-45b2-beb9-ff5d03b55426\", \"type\": \"Grid\"}, {\"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\", \"type\": \"LinearAxis\"}, {\"id\": \"34a81269-33e5-4019-9c99-ed89e06a324c\", \"type\": \"Grid\"}, {\"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\", \"type\": \"BoxAnnotation\"}, {\"id\": \"aeeee24a-8979-4038-8f0e-733b22fcaa5d\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"6de5b649-6212-42b0-8703-58c5c600a93e\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"4f8b077f-9759-4308-9835-5ad86b9d4670\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"9f8c68d0-b080-4229-be12-55e35a821f93\", \"type\": \"PanTool\"}, {\"id\": \"5dec921d-f364-4ea6-8058-b7d53300fe03\", \"type\": \"WheelZoomTool\"}, {\"id\": \"29808dc7-c817-4a6d-90c9-1b266910d406\", \"type\": \"BoxZoomTool\"}, {\"id\": \"d26a8f69-2bbb-4504-b8e3-80af652a86e4\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"ddda9672-1b1a-4c51-ab81-f20318625d42\", \"type\": \"ResizeTool\"}, {\"id\": \"89545452-e447-4294-9d2b-2e33b2749f32\", \"type\": \"ResetTool\"}, {\"id\": \"748d0a2d-ec1b-4806-a41f-7546910057e1\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\"}, {\"attributes\": {\"callback\": null, \"data\": {\"top\": [5, 8, 10, 9, 24, 40, 40, 45, 39, 43, 45, 53, 61, 43, 40, 60, 55, 55, 67, 67, 74, 67, 39, 10, 9], \"right\": [14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84, 90.0], \"left\": [11.0, 14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84]}, \"column_names\": [\"top\", \"right\", \"left\"]}, \"type\": \"ColumnDataSource\", \"id\": \"e254871b-b306-4543-96fc-593037b4de52\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"283918f5-9f85-49f9-983b-1d5f00466c3a\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"982f4c71-b46f-4c76-b62a-9fbf8e63f0a3\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"aecdee0b-6117-4f29-84ed-03d4c751a401\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"3e2b7dd4-5533-465d-9720-4c3ef3264645\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Dew Point\", \"formatter\": {\"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"glyph\": {\"id\": \"5dcbd54d-58ee-4df7-b5ae-681b7a4cab4f\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"ea39496b-fa2e-468d-9ea6-cddec3aaec40\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"aeeee24a-8979-4038-8f0e-733b22fcaa5d\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"18c63fa6-1806-48a1-ab64-586dbf430ca7\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e05c6bae-0726-4f94-aab9-077e51018af3\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"ae31f862-4dda-4562-b886-2d8d5f3f7819\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"7e3a566f-5eff-4a55-8e92-17e18bf2030b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b3e820d2-3028-4daf-a040-771c935a733a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"92d684b0-f1eb-42d2-a2c5-0897ab6017ea\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"8f1e36b3-c2bc-4205-b8fb-1b60d34a13e7\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.5}, \"type\": \"Slider\", \"id\": \"dc12fb35-f120-430b-b12c-55bbd9e5e9ce\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"6fc44235-afec-434f-804d-201a0de960a9\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"a5824b9f-a54b-47c2-ba29-c0af06878ddf\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\"}, {\"attributes\": {\"title\": \"My Interactive Visualization\", \"below\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"84b08934-191b-43d6-8723-88a624f481e4\", \"type\": \"PanTool\"}, {\"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\", \"type\": \"BoxZoomTool\"}, {\"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\", \"type\": \"ResizeTool\"}, {\"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\", \"type\": \"ResetTool\"}, {\"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}, {\"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\", \"type\": \"Grid\"}, {\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}, {\"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\", \"type\": \"Grid\"}, {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}, {\"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"598f060c-f931-4d34-af6c-ff5107236491\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"709869f1-3a74-473b-a8ab-961525e255c1\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"84b08934-191b-43d6-8723-88a624f481e4\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"5dec921d-f364-4ea6-8058-b7d53300fe03\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b3e820d2-3028-4daf-a040-771c935a733a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"29808dc7-c817-4a6d-90c9-1b266910d406\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"9428e2de-8504-40fb-833d-26bd6ca5f8cc\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"2a4f7fbe-9f83-47f0-ba97-01beb289c1b8\"}, {\"attributes\": {\"children\": [{\"id\": \"17b2fa99-b6a9-4daa-8d88-f5f21bef3611\", \"type\": \"Slider\"}, {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"c71e8111-1b66-416e-bb23-d6e6262873e3\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"9e24b71e-dbb7-4cc2-8b87-10b9df175949\"}, {\"attributes\": {\"x_range\": {\"id\": \"59245691-6a7f-46de-9e70-f04ccb383e6e\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\", \"type\": \"LinearAxis\"}, {\"id\": \"f10cd2c7-7283-4701-ae4a-3d79ca92fd28\", \"type\": \"Grid\"}, {\"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\", \"type\": \"LinearAxis\"}, {\"id\": \"1e57a445-c12c-4554-970b-8fec4d1d1c6f\", \"type\": \"Grid\"}, {\"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\", \"type\": \"BoxAnnotation\"}, {\"id\": \"404b79c2-2db5-43fb-8e78-9beae9382f70\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"adcedef0-d224-486a-8b5b-bc5af6e9cceb\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"3e2b7dd4-5533-465d-9720-4c3ef3264645\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"942da444-16d0-4254-b8ab-470957a4888d\", \"type\": \"PanTool\"}, {\"id\": \"f3656cdf-144f-4d85-aa51-5354439f9d27\", \"type\": \"WheelZoomTool\"}, {\"id\": \"af0e5595-905c-4e9a-a49f-cc77be75bec4\", \"type\": \"BoxZoomTool\"}, {\"id\": \"319ffabb-ea1a-4a6d-ab1a-04cd525ecdad\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"93d63f5d-e311-406b-afe9-dad87becc657\", \"type\": \"ResizeTool\"}, {\"id\": \"18c63fa6-1806-48a1-ab64-586dbf430ca7\", \"type\": \"ResetTool\"}, {\"id\": \"e05c6bae-0726-4f94-aab9-077e51018af3\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"b4ecd022-102d-4595-8df5-48bf86706eea\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.05}, \"type\": \"Slider\", \"id\": \"34efee33-252e-4218-8556-389e60300d94\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"f19e00da-164a-435c-bb84-987b5875eeb5\"}, {\"attributes\": {\"x_range\": {\"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}, {\"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\", \"type\": \"Grid\"}, {\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}, {\"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\", \"type\": \"Grid\"}, {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\", \"type\": \"GlyphRenderer\"}, {\"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\", \"type\": \"PanTool\"}, {\"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\", \"type\": \"WheelZoomTool\"}, {\"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\", \"type\": \"BoxZoomTool\"}, {\"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"9bac4841-076a-42b8-981b-9992f6405647\", \"type\": \"ResizeTool\"}, {\"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\", \"type\": \"ResetTool\"}, {\"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"e9247aad-d664-4a47-b187-9b0464d0b25f\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"ec4cb71c-d520-4029-bec7-7b6dd5b55751\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"35701018-1afe-47ba-80ea-c5370534df55\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"179f675d-e9d7-4bae-8167-5eb4245bb1b7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"b83441e8-1ca2-4fea-9156-b10295543268\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"9e24b71e-dbb7-4cc2-8b87-10b9df175949\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"6fc44235-afec-434f-804d-201a0de960a9\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f3969a2e-7ac3-47d8-b88c-c0d213ff8ca5\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"7d21c49b-eaf7-4e43-b1f1-3d6fe532a20e\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"c1f01812-2155-4bd5-b3ad-946cc8725b8e\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"ddda9672-1b1a-4c51-ab81-f20318625d42\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"f19e00da-164a-435c-bb84-987b5875eeb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"9bac4841-076a-42b8-981b-9992f6405647\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"ebc84dc6-aeab-4350-9629-925f8b94bba0\"}, {\"attributes\": {\"glyph\": {\"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [40, 33, 32, 37, 42, 45, 48, 49, 47, 46, 47, 50, 56, 38, 37, 43, 35, 51, 53, 32, 20, 22, 24, 27, 34, 36, 49, 59, 61, 31, 29, 30, 30, 32, 39, 32, 34, 32, 36, 45, 44, 44, 55, 41, 32, 35, 49, 38, 34, 38, 42, 47, 45, 44, 47, 45, 42, 49, 42, 38, 42, 55, 50, 54, 57, 52, 41, 47, 41, 38, 35, 43, 41, 46, 47, 40, 53, 53, 55, 59, 54, 43, 46, 53, 64, 52, 55, 73, 74, 47, 58, 57, 59, 63, 71, 59, 71, 60, 55, 55, 53, 69, 66, 67, 71, 69, 57, 69, 72, 66, 69, 64, 69, 74, 63, 68, 79, 70, 58, 61, 69, 79, 72, 65, 59, 79, 86, 78, 80, 65, 54, 66, 73, 68, 82, 90, 90, 90, 88, 78, 75, 74, 70, 63, 77, 80, 70, 80, 76, 69, 72, 80, 80, 84, 84, 77, 80, 82, 84, 88, 92, 85, 86, 83, 77, 82, 83, 87, 90, 92, 92, 89, 88, 77, 81, 90, 94, 94, 97, 98, 96, 93, 89, 86, 87, 83, 68, 83, 82, 78, 85, 83, 83, 76, 83, 78, 80, 78, 82, 81, 85, 83, 81, 82, 77, 74, 78, 82, 84, 88, 90, 78, 82, 80, 83, 84, 87, 86, 85, 86, 84, 82, 82, 82, 80, 72, 80, 73, 87, 96, 87, 77, 67, 73, 73, 65, 72, 78, 79, 77, 69, 66, 73, 73, 71, 69, 73, 72, 75, 82, 83, 78, 76, 76, 67, 62, 68, 72, 65, 66, 72, 67, 73, 68, 64, 63, 66, 67, 55, 54, 53, 55, 58, 61, 56, 60, 66, 70, 68, 55, 46, 55, 61, 64, 50, 50, 53, 52, 39, 52, 57, 60, 60, 65, 51, 44, 52, 57, 30, 35, 47, 62, 35, 39, 39, 49, 49, 53, 52, 60, 62, 41, 33, 39, 37, 33, 30, 35, 34, 40, 33, 32, 37, 47, 53, 65, 64, 31, 40, 55, 48, 45, 33, 33, 18, 29, 40, 55, 19, 22, 32, 37, 58, 54, 51, 52, 28, 44, 21, 23, 30, 39, 45, 43, 34, 32, 32, 29, 31, 29, 26, 25, 36, 40, 37, 30, 32, 39, 45, 51, 49, 54, 44, 33, 31, 34, 24, 37, 32, 29, 39, 31, 37, 57, 44, 66, 56, 32, 46, 58, 42, 35, 43, 46, 54, 51, 63, 42, 35, 36, 44, 62, 59, 49, 56, 60, 54, 67, 47, 54, 61, 53, 64, 61, 58, 75, 73, 77, 75, 63, 49, 48, 49, 68, 60, 67, 71, 61, 62, 63, 67, 59, 67, 52, 52, 78, 71, 65, 70, 71, 69, 63, 83, 82, 85, 73, 71, 71, 68, 70, 67, 72, 78, 74, 67, 71, 70, 80, 86, 64, 66, 73, 77, 80, 87, 82, 76, 76, 82, 86, 73, 77, 70, 73, 79, 74, 80, 81, 89, 89, 77, 79, 78, 79, 81, 81, 85, 85, 83, 87, 83, 84, 89, 91, 87, 74, 81, 84, 90, 91, 88, 83, 86, 85, 83, 84, 86, 81, 85, 86, 88, 80, 82, 81, 85, 82, 76, 80, 82, 84, 74, 76, 84, 90, 83, 83, 83, 87, 88, 87, 79, 82, 77, 73, 78, 82, 81, 83, 84, 83, 79, 77, 80, 88, 89, 90, 82, 80, 80, 90, 88, 92, 86, 87, 87, 91, 81, 75, 73, 80, 83, 78, 69, 71, 71, 70, 73, 76, 66, 75, 75, 71, 71, 64, 77, 83, 84, 79, 65, 70, 71, 69, 61, 69, 71, 73, 68, 60, 63, 65, 76, 77, 71, 71, 70, 56, 60, 67, 58, 53, 63, 67, 63, 72, 59, 55, 47, 48, 61, 68, 64, 57, 53, 48, 57, 61, 64, 65, 48, 42, 42, 45, 52, 45, 36, 45, 37, 44, 57, 69, 68, 51, 38, 37, 45, 55, 65, 43, 46, 45, 44, 50, 42, 37, 42, 40, 38, 38, 44, 46, 48, 49, 54, 42, 38, 33, 44, 46, 58, 62, 50, 55, 54, 44, 34, 32, 39, 42, 42, 56, 49, 22, 23, 21, 33, 23, 37, 39, 36, 32, 35, 43, 32, 42, 42, 40, 36, 40, 39, 39, 42, 31, 30, 34, 36, 38, 26, 36, 34, 26, 43, 42, 27, 40, 37, 29, 40, 34, 21, 32, 21, 27, 27, 19, 32, 43, 38, 24, 37, 32, 30, 29, 31, 39, 37, 45, 40, 27, 38, 49, 54, 53, 59, 47, 43, 51, 44, 52, 57, 39, 43, 38, 43, 38, 45, 49, 62, 46, 46, 47, 51, 67, 64, 60, 61, 63, 62, 45, 43, 56, 57, 66, 68, 65, 72, 64, 71, 80, 64, 57, 65, 69, 52, 52, 62, 64, 62, 71, 78, 67, 63, 74, 80, 85, 85, 80, 82, 70, 83, 86, 70, 73, 75, 75, 83, 75, 67, 62, 74, 70, 81, 85, 88, 85, 85, 85, 85, 87, 58, 55, 70, 65, 70, 76, 74, 79, 83, 82, 89, 88, 86, 88, 83, 79, 71, 87, 88, 87, 90, 84, 83, 81, 71, 73, 76, 82, 82, 80, 82, 83, 83, 88, 79, 84, 88, 89, 88, 82, 81, 80, 81, 85, 93, 94, 85, 86, 87, 88, 86, 95, 96, 87, 89, 89, 89, 90, 89, 87, 83, 84, 82, 85, 84, 81, 85, 83, 88, 92, 93, 95, 90, 87, 86, 87, 86, 85, 87, 90, 85, 82, 82, 87, 90, 91, 90, 91, 93, 85, 83, 87, 92, 97, 79, 81, 79, 80, 77, 84, 88, 89, 87, 83, 79, 73, 71, 80, 82, 76, 72, 71, 78, 83, 79, 64, 57, 55, 63, 67, 73, 73, 72, 78, 65, 69, 77, 72, 69, 64, 64, 56, 50, 53, 70, 76, 75, 65, 57, 68, 58, 59, 69, 73, 61, 56, 65, 63, 72, 70, 71, 74, 72, 56, 59, 57, 58, 61, 58, 49, 58, 67, 52, 58, 64, 64, 53, 55, 44, 46, 50, 60, 64, 45, 51, 57, 51, 51, 53, 54, 49, 55, 61, 67, 67, 68, 53, 59, 40, 43, 56, 62, 64, 72, 66, 61, 46, 46, 48, 48], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"982f4c71-b46f-4c76-b62a-9fbf8e63f0a3\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f10cd2c7-7283-4701-ae4a-3d79ca92fd28\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"55ec8fcc-2484-493b-b30f-106543559054\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"35ade122-5097-45b2-beb9-ff5d03b55426\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = 10;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"179d4135-3800-4b1e-8b09-88d7f0fdbcf3\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"5fa8964d-f49a-4835-b3fb-99570426f8fc\", \"elementid\": \"18acb36a-c7fb-4b65-b0e9-761f0a6278df\", \"notebook_comms_target\": \"d0e1ec95-ca95-4979-a411-c510207887ea\", \"modelid\": \"1930638d-1851-45da-8642-a550c7b47866\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x109bdc5f8>"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"start_value = 5\n",
"point_size = [start_value for i in range(len(data))]\n",
"\n",
"source = bokeh.models.ColumnDataSource(data = dict(x = data.mean_temperature, y = data.dew_point, s = point_size))\n",
"\n",
"plot = bokeh.plotting.figure()\n",
"plot.circle('x', 'y', size = 's', source = source)\n",
"\n",
"callback = bokeh.models.CustomJS(args = dict(source = source), code=\"\"\"\n",
" var data = source.get('data');\n",
" var size = cb_obj.get('value');\n",
" x = data['x'];\n",
" y = data['y'];\n",
" s = data['s'];\n",
" for (i = 0; i < x.length; i++) {\n",
" s[i] = size;\n",
" }\n",
" source.trigger('change');\n",
" \"\"\")\n",
"\n",
"size = bokeh.models.Slider(start = 1, end = 10, value = start_value, step = .05, title = \"Size\", callback = callback)\n",
"\n",
"layout = bokeh.io.vform(size, plot)\n",
"\n",
"bokeh.plotting.show(layout)"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"We can leverage the above functionality to create cool interactions with our users.\n",
"\n",
"One last flashy bit of `bokeh` is the tool tip option, which allows us to display more information about the point when someone hovers over the point. Let's try using it on our scatterplot."
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
" <div class=\"plotdiv\" id=\"0990ac5d-6d26-4edb-b55d-7c0aa355a8d3\"></div>\n",
"<script type=\"text/javascript\">\n",
" \n",
" (function(global) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
" \n",
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\") {\n",
" window._bokeh_onload_callbacks = [];\n",
" }\n",
" \n",
" function run_callbacks() {\n",
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n",
" delete window._bokeh_onload_callbacks\n",
" console.info(\"Bokeh: all callbacks have finished\");\n",
" }\n",
" \n",
" function load_libs(js_urls, callback) {\n",
" window._bokeh_onload_callbacks.push(callback);\n",
" if (window._bokeh_is_loading > 0) {\n",
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" window._bokeh_is_loading = js_urls.length;\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var s = document.createElement('script');\n",
" s.src = url;\n",
" s.async = false;\n",
" s.onreadystatechange = s.onload = function() {\n",
" window._bokeh_is_loading--;\n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n",
" run_callbacks()\n",
" }\n",
" };\n",
" s.onerror = function() {\n",
" console.warn(\"failed to load library \" + url);\n",
" };\n",
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
" }\n",
" };var element = document.getElementById(\"0990ac5d-6d26-4edb-b55d-7c0aa355a8d3\");\n",
" if (element == null) {\n",
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '0990ac5d-6d26-4edb-b55d-7c0aa355a8d3' but no matching script tag was found. \")\n",
" return false;\n",
" }var js_urls = [];\n",
" \n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.$(function() {\n",
" var docs_json = {\"d4769322-5af4-46b2-94d0-c7f7a84ea4c7\": {\"title\": \"Bokeh Application\", \"roots\": {\"root_ids\": [\"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"c71e8111-1b66-416e-bb23-d6e6262873e3\", \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"c99a645a-b4f4-4a67-88f2-79295e2f9a20\", \"96b355dc-3777-4dc2-a6b7-701790901452\", \"6e3bc8f4-b876-48db-8286-3d3274c659e7\", \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"1930638d-1851-45da-8642-a550c7b47866\", \"14969063-1ecd-42b8-a229-c0749a938181\", \"0925eeee-5501-40fd-8220-5aad9b768389\", \"dd936462-c172-417e-8eab-5552574c1876\", \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"86f7429b-369b-4942-a300-5da5ff68e264\", \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\"], \"references\": [{\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"fe16ad95-1cca-4c8c-b706-5d0c651207c8\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"ca690b17-9ea6-4207-8336-6a25f7fb4af1\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\"}, {\"attributes\": {\"glyph\": {\"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"6de5b649-6212-42b0-8703-58c5c600a93e\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"319ffabb-ea1a-4a6d-ab1a-04cd525ecdad\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"b72db0c4-aff7-4137-a72f-7dc14005e4ee\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"c37ea55c-a89e-4f22-b8a6-42e92dff3791\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"787b55a0-4b3d-4f24-90b4-5ae15c54f754\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"bbb88f03-f9b3-4bdd-9414-2c2582989741\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"b72db0c4-aff7-4137-a72f-7dc14005e4ee\", \"type\": \"LinearAxis\"}, {\"id\": \"493355f4-9ea0-439f-9a6b-af9532017b86\", \"type\": \"Grid\"}, {\"id\": \"bd42e549-7155-45b1-ab39-9165e675905f\", \"type\": \"LinearAxis\"}, {\"id\": \"0e870ca2-ea53-4a96-b2c9-f4afead73ce7\", \"type\": \"Grid\"}, {\"id\": \"5c8b3fa3-eb27-483e-a3d8-784439cfc095\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"bd42e549-7155-45b1-ab39-9165e675905f\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"a5ff126c-dfe2-4a61-b5b7-5a2700189287\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"0742392c-ed53-46b8-b754-538db6758297\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"d751fc48-c7e3-4234-a752-57ed9687a7ba\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"69a17161-782f-4275-bb39-836bf3f64e8a\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"2cdfc5ed-66f4-43dc-a4ce-893cca963d02\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0742392c-ed53-46b8-b754-538db6758297\", \"type\": \"LinearAxis\"}, {\"id\": \"913703c7-dcd7-49e4-b049-7abb9961ab04\", \"type\": \"Grid\"}, {\"id\": \"6bb43f2c-f9a9-42b0-836f-b962c7b106a7\", \"type\": \"LinearAxis\"}, {\"id\": \"8e99040b-cd30-4c6d-b4d3-88e835681cdc\", \"type\": \"Grid\"}, {\"id\": \"81b47d09-423e-4f06-aa82-fed5e82d5957\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"6bb43f2c-f9a9-42b0-836f-b962c7b106a7\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"71702183-2f1c-4c99-abe2-363b670b17ea\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"91f11d28-3a57-42d5-81b3-fc76bb9f74a3\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"1f1efca4-6555-4857-be1d-8d51171b4b77\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"ebffe822-c69e-44c7-9e84-a83d79164fd2\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"d99b903b-cd23-4750-8411-5c355db5490c\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"a0e69587-487f-4c1e-a871-2609a6bab7ba\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"f1129ad8-ef6e-4cda-9252-ef1494fc0a71\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"8f9a5f8d-9091-43e6-a8eb-e4cbffb44810\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"d99b903b-cd23-4750-8411-5c355db5490c\", \"type\": \"LinearAxis\"}, {\"id\": \"ae43868a-5f4b-4d43-b775-a98650537ddd\", \"type\": \"Grid\"}, {\"id\": \"b6b03dfd-2231-4e93-a2eb-9e0d7a8d8a41\", \"type\": \"LinearAxis\"}, {\"id\": \"0e4185e4-6a1a-4ba0-9ae1-8ae7cce3dc94\", \"type\": \"Grid\"}, {\"id\": \"7fab16d1-29c2-4b7e-976d-09c6e5ecf186\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"b6b03dfd-2231-4e93-a2eb-9e0d7a8d8a41\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"afc0baa2-c788-4a0f-90c8-def43fea3e9b\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\"}, {\"attributes\": {\"plot\": {\"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"052d6b31-a06e-4107-a1ef-7ac94e63223b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"fd47e7c1-7deb-4c05-abb4-5580475386e9\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"880dcb8d-7a03-4fff-9fe1-271f1ce52c2b\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"942da444-16d0-4254-b8ab-470957a4888d\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"5300cc42-9325-4f81-82c5-bc005c8b793f\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"af0e5595-905c-4e9a-a49f-cc77be75bec4\"}, {\"attributes\": {\"glyph\": {\"id\": \"9bdbf539-191c-4a78-9ad2-384252af7abc\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"e115b03e-011d-44ff-b6c0-3fb7c9ddac7e\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"95c48f49-1fc2-4773-8bb7-718ef6ca54d9\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"fc84f81d-f277-4bab-a745-1d8c354e5f16\"}, {\"attributes\": {\"children\": [{\"id\": \"34efee33-252e-4218-8556-389e60300d94\", \"type\": \"Slider\"}, {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"1930638d-1851-45da-8642-a550c7b47866\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"34a81269-33e5-4019-9c99-ed89e06a324c\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"133c63ac-0306-4906-b07b-22d4dc8b5b2f\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b69f2701-c2d4-4eeb-84e7-e8af304f9dcd\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\"}, {\"attributes\": {\"plot\": {\"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"cfa0fc97-9cd9-4482-bdf7-8d68bd65de03\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"2bdfd409-40f6-48bc-af2d-cc585e6ca06e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"6bb43f2c-f9a9-42b0-836f-b962c7b106a7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"97c41284-48de-4d8e-bc8b-c26df7b051b0\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"b67601c2-c15e-47df-b7a7-c891ff0a40d2\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b6bb6479-4846-435c-ae26-9d0271432751\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"6b833f8c-08ec-4d84-8346-02f5acd80d01\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"75aec211-f6c2-4051-9806-d8447d45db86\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"15f071a7-6524-4bc8-a7e3-c577ef11b390\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"052d6b31-a06e-4107-a1ef-7ac94e63223b\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"579545ef-f828-4e2e-8765-0eed23793089\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"aecdee0b-6117-4f29-84ed-03d4c751a401\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"748d0a2d-ec1b-4806-a41f-7546910057e1\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3759218c-b7a6-42db-a7c5-9c9a2438c82b\"}, {\"attributes\": {\"children\": [{\"id\": \"dc12fb35-f120-430b-b12c-55bbd9e5e9ce\", \"type\": \"Slider\"}, {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"c99a645a-b4f4-4a67-88f2-79295e2f9a20\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\"}, {\"attributes\": {\"plot\": {\"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"9353ae16-837f-439a-b670-4e736358653b\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"a7899a83-726f-4690-9d01-66f8bdd578d7\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"b6b03dfd-2231-4e93-a2eb-9e0d7a8d8a41\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3134975c-2a2a-49e3-91c3-f8df643dccb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"61ebc5e8-debb-4f83-989e-7f3d499b1bf4\"}, {\"attributes\": {\"x_range\": {\"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}, {\"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\", \"type\": \"Grid\"}, {\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}, {\"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\", \"type\": \"Grid\"}, {\"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"d265e0c9-a650-4f85-97ea-13a7df8ca574\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\", \"type\": \"PanTool\"}, {\"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\", \"type\": \"WheelZoomTool\"}, {\"id\": \"86242c60-5487-49fd-a3a2-1fec0362a866\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\", \"type\": \"ResizeTool\"}, {\"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\", \"type\": \"ResetTool\"}, {\"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"71ac2632-095d-4dc7-877a-c09029eaffdc\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"61531cae-7c81-499e-8b7c-b7f3f1939988\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"c7643f40-bc22-43a6-8b54-03b93299e1f9\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"ca690b17-9ea6-4207-8336-6a25f7fb4af1\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"b9d361ce-485b-4962-9d6e-0fa5e6823492\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"61531cae-7c81-499e-8b7c-b7f3f1939988\", \"type\": \"LinearAxis\"}, {\"id\": \"fd47e7c1-7deb-4c05-abb4-5580475386e9\", \"type\": \"Grid\"}, {\"id\": \"edd6c3fa-7498-459c-8ac3-133ef9531e8d\", \"type\": \"LinearAxis\"}, {\"id\": \"697db4f6-1292-4d4a-89e4-cadcd996c938\", \"type\": \"Grid\"}, {\"id\": \"33f07cf4-2fee-42e8-b192-44363717a2e2\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"edd6c3fa-7498-459c-8ac3-133ef9531e8d\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"15f071a7-6524-4bc8-a7e3-c577ef11b390\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"day\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"month\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]}, \"column_names\": [\"month\", \"day\", \"y\", \"x\", \"year\"]}, \"type\": \"ColumnDataSource\", \"id\": \"b07058d5-6d33-4703-820c-a00fb51ebec6\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"a1fc7977-7c2b-4b59-8afe-042dfc20334b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"b2c59395-2bc9-4973-91d1-12a558a5b9c2\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"f3fe784d-9e24-4350-a6ee-897bf31619e7\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"aecdee0b-6117-4f29-84ed-03d4c751a401\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"598f060c-f931-4d34-af6c-ff5107236491\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\"}, {\"attributes\": {\"plot\": {\"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$year\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"a0e69587-487f-4c1e-a871-2609a6bab7ba\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"b998098e-920f-47c1-907d-5ae2997abf64\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"2b56c149-4aa2-4570-9886-ee0be3e375ee\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"33f3b48d-8b1e-4022-9d59-fcde30fd5b8b\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"36b1c2b7-eebb-4f82-87aa-bd0dab9c635a\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"a85dfdc9-2930-4322-a0b6-2919ab66fd1b\"}, {\"attributes\": {\"glyph\": {\"id\": \"1273cc4b-668a-426d-9dde-12d067c3a0ea\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"709869f1-3a74-473b-a8ab-961525e255c1\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"ebc84dc6-aeab-4350-9629-925f8b94bba0\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"404b79c2-2db5-43fb-8e78-9beae9382f70\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"48d42808-e44c-45cb-a137-26edf2d39afb\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"179d4135-3800-4b1e-8b09-88d7f0fdbcf3\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.5}, \"type\": \"Slider\", \"id\": \"17b2fa99-b6a9-4daa-8d88-f5f21bef3611\"}, {\"attributes\": {\"plot\": {\"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"a7899a83-726f-4690-9d01-66f8bdd578d7\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e4185e4-6a1a-4ba0-9ae1-8ae7cce3dc94\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"53e573c9-3240-4837-a3a0-f16939e3e0b0\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"a7899a83-726f-4690-9d01-66f8bdd578d7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"8d874a43-9060-4ed8-acd5-8658e5d15b67\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"011dff46-4876-4412-ba93-7845e495c917\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"7b51928b-400d-477c-8470-6d34eecd2c9e\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"line_color\": {\"value\": \"#000000\"}, \"bottom\": {\"value\": 0}, \"top\": {\"field\": \"top\"}}, \"type\": \"Quad\", \"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\"}, {\"attributes\": {\"glyph\": {\"id\": \"c6b32243-1e7f-4737-a0e5-4f1f09dad5e4\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"2e71acd5-3e28-4165-9b8a-03d7013668d3\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"7b51928b-400d-477c-8470-6d34eecd2c9e\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"7fab16d1-29c2-4b7e-976d-09c6e5ecf186\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"b3c3b1b5-8cb6-4a67-bfde-c5ad0125e72d\"}, {\"attributes\": {\"x_range\": {\"id\": \"441975b3-9947-41fb-b6de-cedff34ad9bc\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\", \"type\": \"LinearAxis\"}, {\"id\": \"179f675d-e9d7-4bae-8167-5eb4245bb1b7\", \"type\": \"Grid\"}, {\"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\", \"type\": \"LinearAxis\"}, {\"id\": \"e9247aad-d664-4a47-b187-9b0464d0b25f\", \"type\": \"Grid\"}, {\"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8882df15-dfa5-4ec8-974c-bb80baa0fc73\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"8711ecbc-a73f-4d8e-ba4c-7a8d4f5d4f85\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"57b79ae6-c4f9-4a7f-84c8-28af56a90d45\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"75aec211-f6c2-4051-9806-d8447d45db86\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"617df45d-a847-47e0-b9cf-a8282b54cc5b\", \"type\": \"PanTool\"}, {\"id\": \"290c621d-8f51-42f5-9258-2fe6eebd0b7b\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a1d75757-d8f0-48d2-a8ee-5be4bd1db206\", \"type\": \"BoxZoomTool\"}, {\"id\": \"8d5d7228-9364-47d6-b8fa-c78dc46d6420\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"a1fc7977-7c2b-4b59-8afe-042dfc20334b\", \"type\": \"ResizeTool\"}, {\"id\": \"b67601c2-c15e-47df-b7a7-c891ff0a40d2\", \"type\": \"ResetTool\"}, {\"id\": \"7d21c49b-eaf7-4e43-b1f1-3d6fe532a20e\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"874d3567-d1d5-4f18-879d-f7ea5c5b1f81\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"e115b03e-011d-44ff-b6c0-3fb7c9ddac7e\"}, {\"attributes\": {\"plot\": {\"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"d8203be1-21c6-4095-9b8c-3352ea18f9bd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"988bf234-1705-4528-8eaa-66d78ed44843\"}, {\"attributes\": {\"plot\": {\"id\": \"dd936462-c172-417e-8eab-5552574c1876\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"33122b67-616f-4bd2-8545-2f0068cb2a9c\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"2b56c149-4aa2-4570-9886-ee0be3e375ee\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"858d86a7-a05a-4d49-83cb-182597f0aa27\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b69f2701-c2d4-4eeb-84e7-e8af304f9dcd\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"20e0d38b-7976-4840-8168-9e8b4462a9e0\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Frequency\", \"formatter\": {\"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"9705552a-5318-4e55-9c94-bc806733a654\"}, {\"attributes\": {\"plot\": {\"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"b2c59395-2bc9-4973-91d1-12a558a5b9c2\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"bb2858d2-b9c2-45fd-b411-3f7c54a570b0\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\"}, {\"attributes\": {\"plot\": {\"id\": \"dd936462-c172-417e-8eab-5552574c1876\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"2b56c149-4aa2-4570-9886-ee0be3e375ee\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"7e6740f6-732d-4b8c-80ef-5a07c4306d5a\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\"}, {\"attributes\": {\"x_range\": {\"id\": \"413d3acf-7e83-48c9-b2fd-e8ff0e13176e\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\", \"type\": \"LinearAxis\"}, {\"id\": \"6dc4725d-6940-402e-aff3-75e0bf2c0398\", \"type\": \"Grid\"}, {\"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\", \"type\": \"LinearAxis\"}, {\"id\": \"b359f15b-29c2-4bf7-919f-ef74a09d744c\", \"type\": \"Grid\"}, {\"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\", \"type\": \"BoxAnnotation\"}, {\"id\": \"b7fe099a-4ce6-4620-9351-beb668a740da\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"c60efbc3-cbc7-45dc-8e36-15ba015e7465\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"48d42808-e44c-45cb-a137-26edf2d39afb\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"5f7097a9-12ba-4c3c-8e1f-e88857bd6121\", \"type\": \"PanTool\"}, {\"id\": \"fcd018bb-6cd4-40f7-9978-e1f145d8a05d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"61ebc5e8-debb-4f83-989e-7f3d499b1bf4\", \"type\": \"BoxZoomTool\"}, {\"id\": \"6ac955df-dfe3-443e-bf32-38f5cbc50937\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"90fd7192-75b0-436a-aa31-9d8ef06f7f0d\", \"type\": \"ResizeTool\"}, {\"id\": \"9428e2de-8504-40fb-833d-26bd6ca5f8cc\", \"type\": \"ResetTool\"}, {\"id\": \"487281c3-31e3-4521-88f8-09aa3d3b0a02\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"5f7097a9-12ba-4c3c-8e1f-e88857bd6121\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"9bae9964-8e91-43e3-a1ed-6b8a976d1881\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"f1a2e53d-2d3c-4a9f-83cc-04d95f80e530\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3134975c-2a2a-49e3-91c3-f8df643dccb5\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"fcd018bb-6cd4-40f7-9978-e1f145d8a05d\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"787b55a0-4b3d-4f24-90b4-5ae15c54f754\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"b359f15b-29c2-4bf7-919f-ef74a09d744c\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\"}, {\"attributes\": {\"plot\": {\"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"aa1cf97c-535a-43cc-82f0-369271cb7606\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"fbadb342-72bd-468f-aac2-7effdffa04cb\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"6fc44235-afec-434f-804d-201a0de960a9\"}, {\"attributes\": {\"plot\": {\"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$y\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"d751fc48-c7e3-4234-a752-57ed9687a7ba\"}, {\"attributes\": {\"plot\": {\"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$y\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"c7643f40-bc22-43a6-8b54-03b93299e1f9\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"afc0baa2-c788-4a0f-90c8-def43fea3e9b\"}, {\"attributes\": {\"plot\": {\"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"ddf161d4-dd39-4043-88e0-be162df0e826\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"b2c59395-2bc9-4973-91d1-12a558a5b9c2\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"f8f25b1e-e11f-451e-8a81-ef18e3b92673\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"598f060c-f931-4d34-af6c-ff5107236491\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"5dcbd54d-58ee-4df7-b5ae-681b7a4cab4f\"}, {\"attributes\": {\"plot\": {\"id\": \"14969063-1ecd-42b8-a229-c0749a938181\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"78f736fc-2a21-4b41-a733-cf02bfc17534\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f78ffe0b-1a65-4123-bd56-30dea0536eb0\"}, {\"attributes\": {\"plot\": {\"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"76c9a418-872f-47bf-a992-995faf88b62f\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"a208b8cb-f645-42ac-9006-5e5dfab7cee6\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"f206bf38-70fd-4d06-8a66-f75cf1d8bdb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"c60efbc3-cbc7-45dc-8e36-15ba015e7465\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"642b16c9-47f7-4768-a44e-4bf94ff3feee\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"8f1e36b3-c2bc-4205-b8fb-1b60d34a13e7\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"290c621d-8f51-42f5-9258-2fe6eebd0b7b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"33122b67-616f-4bd2-8545-2f0068cb2a9c\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8abb52e8-e896-4255-a533-ea4a02719274\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"8f9a5f8d-9091-43e6-a8eb-e4cbffb44810\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"aa1cf97c-535a-43cc-82f0-369271cb7606\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"a1a06c96-e248-47e2-9ffb-dcb8305a8116\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"4035eecb-2a19-4941-9d80-b7db8150e47c\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\"}, {\"attributes\": {\"plot\": {\"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"@month-@day-@year\"], [\"Average Temperature\", \"@x\"], [\"Dew Point\", \"@y\"]]}, \"type\": \"HoverTool\", \"id\": \"c440580b-45b5-40b4-8397-0d61d9a55d39\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"0b9532f6-f275-4670-b3d1-f7a40d58c79f\"}, {\"attributes\": {\"glyph\": {\"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"5cbaf851-a3b6-41f7-a914-874690a16e96\"}, {\"attributes\": {\"plot\": {\"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"@month-@day-@year\"], [\"Average Temperature\", \"@x\"], [\"Dew Point\", \"@y\"]]}, \"type\": \"HoverTool\", \"id\": \"06ba0e97-3e90-4dd9-8c9a-7acbd98abc46\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"019c9e74-1279-43ab-b82d-2687d828705d\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"f206bf38-70fd-4d06-8a66-f75cf1d8bdb5\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"15d94729-33ec-4a9e-9715-ed08e05a811f\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"3e2b7dd4-5533-465d-9720-4c3ef3264645\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"858d86a7-a05a-4d49-83cb-182597f0aa27\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"b86d8865-d5c7-43e3-a2a3-ce60984b4e04\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"8d874a43-9060-4ed8-acd5-8658e5d15b67\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"123fdc3f-f46f-4be0-b7bb-d211d33101e6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"858d86a7-a05a-4d49-83cb-182597f0aa27\", \"type\": \"LinearAxis\"}, {\"id\": \"7e6740f6-732d-4b8c-80ef-5a07c4306d5a\", \"type\": \"Grid\"}, {\"id\": \"aab5c69b-fded-42a3-ad78-f0a37521c745\", \"type\": \"LinearAxis\"}, {\"id\": \"50038d3e-682c-4150-9e77-1d7ea2b58336\", \"type\": \"Grid\"}, {\"id\": \"001f2deb-2636-45bc-b310-3e3d8eff307d\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"aab5c69b-fded-42a3-ad78-f0a37521c745\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"9ac7b084-b56a-4910-a73c-7a6085fe9197\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"dd936462-c172-417e-8eab-5552574c1876\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"f8729961-3981-4698-91b8-7e914b07123c\"}, {\"attributes\": {\"plot\": {\"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"460da6b4-c3be-4bb6-ac05-dc9bdca8669d\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"8703714f-1dfb-4a42-bc2c-6cef17018ec7\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\"}, {\"attributes\": {\"plot\": {\"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"f3fe784d-9e24-4350-a6ee-897bf31619e7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3759218c-b7a6-42db-a7c5-9c9a2438c82b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"edd6c3fa-7498-459c-8ac3-133ef9531e8d\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e05c6bae-0726-4f94-aab9-077e51018af3\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\"}, {\"attributes\": {\"plot\": {\"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"32dbdf1b-5566-4baa-a0f6-09b1ac18505e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"b6299452-f941-4806-ada4-43017630f60b\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"2bdfd409-40f6-48bc-af2d-cc585e6ca06e\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5da86ef2-4842-4de8-9760-048de8a48417\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3df7635b-e31a-4950-8549-612583ee4559\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"9e24b71e-dbb7-4cc2-8b87-10b9df175949\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"97852a0e-cbe9-48ad-9510-1d5d85027583\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"612224a1-f777-4233-97b3-1735e4ba3cb7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"ddf161d4-dd39-4043-88e0-be162df0e826\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"b4ecd022-102d-4595-8df5-48bf86706eea\"}, {\"attributes\": {\"plot\": {\"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"2440d434-6949-41f9-ba2b-5be477cc1b3a\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"ae43868a-5f4b-4d43-b775-a98650537ddd\"}, {\"attributes\": {\"plot\": {\"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"2dfd7f21-c39d-40b3-bd6c-91eb1bea53fb\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"aa1cf97c-535a-43cc-82f0-369271cb7606\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"6d7944e2-bb25-40b2-b139-f75b75b82e63\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b3e820d2-3028-4daf-a040-771c935a733a\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"92d684b0-f1eb-42d2-a2c5-0897ab6017ea\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"8f1e36b3-c2bc-4205-b8fb-1b60d34a13e7\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.5}, \"type\": \"Slider\", \"id\": \"dc12fb35-f120-430b-b12c-55bbd9e5e9ce\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e250e7c6-9e16-4d78-8595-c50c2b77a55c\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"6fc44235-afec-434f-804d-201a0de960a9\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"a5824b9f-a54b-47c2-ba29-c0af06878ddf\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"709869f1-3a74-473b-a8ab-961525e255c1\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"84b08934-191b-43d6-8723-88a624f481e4\"}, {\"attributes\": {\"plot\": {\"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"34efdb75-a9cf-4afd-8beb-3c6b17f6ec8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"a85dfdc9-2930-4322-a0b6-2919ab66fd1b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"b72db0c4-aff7-4137-a72f-7dc14005e4ee\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"5dec921d-f364-4ea6-8058-b7d53300fe03\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b3e820d2-3028-4daf-a040-771c935a733a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"a5ab8b6d-8b83-422f-bdef-37bfa2d8726e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"dc0bdd8a-ede6-4d63-894f-185803ea2d8e\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"6059780b-b279-466b-841b-f4e6a593c6ce\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a1d75757-d8f0-48d2-a8ee-5be4bd1db206\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"2e71acd5-3e28-4165-9b8a-03d7013668d3\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"69a17161-782f-4275-bb39-836bf3f64e8a\"}, {\"attributes\": {\"plot\": {\"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$year\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"40925ee8-a542-476d-a7a6-6325a4011ac1\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"95c48f49-1fc2-4773-8bb7-718ef6ca54d9\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"e48fe083-ad75-4b63-a88a-15dc25e38f32\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"ec4cb71c-d520-4029-bec7-7b6dd5b55751\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"bbb88f03-f9b3-4bdd-9414-2c2582989741\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"35701018-1afe-47ba-80ea-c5370534df55\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"65644b5b-cb20-4d36-b390-96dd830311a7\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"179f675d-e9d7-4bae-8167-5eb4245bb1b7\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"b83441e8-1ca2-4fea-9156-b10295543268\"}, {\"attributes\": {\"title\": \"My Interactive Visualization\", \"below\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"84b08934-191b-43d6-8723-88a624f481e4\", \"type\": \"PanTool\"}, {\"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\", \"type\": \"WheelZoomTool\"}, {\"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\", \"type\": \"BoxZoomTool\"}, {\"id\": \"cea7c413-2650-43a4-90a0-dc28be29d9f6\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"bd805bfd-94a6-48c7-892b-7698c278237c\", \"type\": \"ResizeTool\"}, {\"id\": \"1fd5d3c2-8ec6-4ed3-b09f-d2ec8ba61d95\", \"type\": \"ResetTool\"}, {\"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"39ce923a-7656-44a1-8324-a047be1da18f\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ec026316-2a41-4624-ad4d-b1cec6f8e8b6\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\", \"type\": \"LinearAxis\"}, {\"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\", \"type\": \"Grid\"}, {\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}, {\"id\": \"0e6f9f8b-64c6-4ac6-b332-c49eaa3a25f2\", \"type\": \"Grid\"}, {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}, {\"id\": \"5d6242c0-570f-4ca7-b180-df8ec995056b\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"3ad4ecae-8801-4823-afda-8c3eaf83a32a\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"9e24b71e-dbb7-4cc2-8b87-10b9df175949\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"6fc44235-afec-434f-804d-201a0de960a9\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\"}, {\"attributes\": {\"plot\": {\"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3a55e1b8-b21e-4de9-bd52-8ccbf1c1df98\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"71ac2632-095d-4dc7-877a-c09029eaffdc\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"bd42e549-7155-45b1-ab39-9165e675905f\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"c6b32243-1e7f-4737-a0e5-4f1f09dad5e4\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"0504fa3f-8e83-4b30-8988-4127d0794df8\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"7db5f16c-52ba-423a-a1da-e87f97e9ac95\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"e279b8af-3da9-4a80-a47d-c51c597d8022\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"53e573c9-3240-4837-a3a0-f16939e3e0b0\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"0504fa3f-8e83-4b30-8988-4127d0794df8\", \"type\": \"LinearAxis\"}, {\"id\": \"f78ffe0b-1a65-4123-bd56-30dea0536eb0\", \"type\": \"Grid\"}, {\"id\": \"038c6def-283d-41b5-9e80-ad4455396e6e\", \"type\": \"LinearAxis\"}, {\"id\": \"aa6e027c-ea42-4550-8fdf-cf805734b856\", \"type\": \"Grid\"}, {\"id\": \"ca650fff-e441-4fa7-a9a5-00957098d0c1\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"038c6def-283d-41b5-9e80-ad4455396e6e\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"fe977e76-6589-4acb-b164-d4bd2ba46af3\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"14969063-1ecd-42b8-a229-c0749a938181\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"ddda9672-1b1a-4c51-ab81-f20318625d42\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"db9e9ce9-01d6-4499-9e27-63712f441ad9\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"9bac4841-076a-42b8-981b-9992f6405647\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"ebc84dc6-aeab-4350-9629-925f8b94bba0\"}, {\"attributes\": {\"glyph\": {\"id\": \"43428e26-93ff-43b0-ad1a-1924c9d75c10\", \"type\": \"Line\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\", \"type\": \"Line\"}}, \"type\": \"GlyphRenderer\", \"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\"}, {\"attributes\": {\"plot\": {\"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"2bdfd409-40f6-48bc-af2d-cc585e6ca06e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"8e99040b-cd30-4c6d-b4d3-88e835681cdc\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"982f4c71-b46f-4c76-b62a-9fbf8e63f0a3\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f10cd2c7-7283-4701-ae4a-3d79ca92fd28\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\"}, {\"attributes\": {\"plot\": {\"id\": \"dd936462-c172-417e-8eab-5552574c1876\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$year\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"b86d8865-d5c7-43e3-a2a3-ce60984b4e04\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"ef93d241-9f9a-4142-972f-2dc4cb21a18d\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"35ade122-5097-45b2-beb9-ff5d03b55426\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [40, 33, 32, 37, 42, 45, 48, 49, 47, 46, 47, 50, 56, 38, 37, 43, 35, 51, 53, 32, 20, 22, 24, 27, 34, 36, 49, 59, 61, 31, 29, 30, 30, 32, 39, 32, 34, 32, 36, 45, 44, 44, 55, 41, 32, 35, 49, 38, 34, 38, 42, 47, 45, 44, 47, 45, 42, 49, 42, 38, 42, 55, 50, 54, 57, 52, 41, 47, 41, 38, 35, 43, 41, 46, 47, 40, 53, 53, 55, 59, 54, 43, 46, 53, 64, 52, 55, 73, 74, 47, 58, 57, 59, 63, 71, 59, 71, 60, 55, 55, 53, 69, 66, 67, 71, 69, 57, 69, 72, 66, 69, 64, 69, 74, 63, 68, 79, 70, 58, 61, 69, 79, 72, 65, 59, 79, 86, 78, 80, 65, 54, 66, 73, 68, 82, 90, 90, 90, 88, 78, 75, 74, 70, 63, 77, 80, 70, 80, 76, 69, 72, 80, 80, 84, 84, 77, 80, 82, 84, 88, 92, 85, 86, 83, 77, 82, 83, 87, 90, 92, 92, 89, 88, 77, 81, 90, 94, 94, 97, 98, 96, 93, 89, 86, 87, 83, 68, 83, 82, 78, 85, 83, 83, 76, 83, 78, 80, 78, 82, 81, 85, 83, 81, 82, 77, 74, 78, 82, 84, 88, 90, 78, 82, 80, 83, 84, 87, 86, 85, 86, 84, 82, 82, 82, 80, 72, 80, 73, 87, 96, 87, 77, 67, 73, 73, 65, 72, 78, 79, 77, 69, 66, 73, 73, 71, 69, 73, 72, 75, 82, 83, 78, 76, 76, 67, 62, 68, 72, 65, 66, 72, 67, 73, 68, 64, 63, 66, 67, 55, 54, 53, 55, 58, 61, 56, 60, 66, 70, 68, 55, 46, 55, 61, 64, 50, 50, 53, 52, 39, 52, 57, 60, 60, 65, 51, 44, 52, 57, 30, 35, 47, 62, 35, 39, 39, 49, 49, 53, 52, 60, 62, 41, 33, 39, 37, 33, 30, 35, 34, 40, 33, 32, 37, 47, 53, 65, 64, 31, 40, 55, 48, 45, 33, 33, 18, 29, 40, 55, 19, 22, 32, 37, 58, 54, 51, 52, 28, 44, 21, 23, 30, 39, 45, 43, 34, 32, 32, 29, 31, 29, 26, 25, 36, 40, 37, 30, 32, 39, 45, 51, 49, 54, 44, 33, 31, 34, 24, 37, 32, 29, 39, 31, 37, 57, 44, 66, 56, 32, 46, 58, 42, 35, 43, 46, 54, 51, 63, 42, 35, 36, 44, 62, 59, 49, 56, 60, 54, 67, 47, 54, 61, 53, 64, 61, 58, 75, 73, 77, 75, 63, 49, 48, 49, 68, 60, 67, 71, 61, 62, 63, 67, 59, 67, 52, 52, 78, 71, 65, 70, 71, 69, 63, 83, 82, 85, 73, 71, 71, 68, 70, 67, 72, 78, 74, 67, 71, 70, 80, 86, 64, 66, 73, 77, 80, 87, 82, 76, 76, 82, 86, 73, 77, 70, 73, 79, 74, 80, 81, 89, 89, 77, 79, 78, 79, 81, 81, 85, 85, 83, 87, 83, 84, 89, 91, 87, 74, 81, 84, 90, 91, 88, 83, 86, 85, 83, 84, 86, 81, 85, 86, 88, 80, 82, 81, 85, 82, 76, 80, 82, 84, 74, 76, 84, 90, 83, 83, 83, 87, 88, 87, 79, 82, 77, 73, 78, 82, 81, 83, 84, 83, 79, 77, 80, 88, 89, 90, 82, 80, 80, 90, 88, 92, 86, 87, 87, 91, 81, 75, 73, 80, 83, 78, 69, 71, 71, 70, 73, 76, 66, 75, 75, 71, 71, 64, 77, 83, 84, 79, 65, 70, 71, 69, 61, 69, 71, 73, 68, 60, 63, 65, 76, 77, 71, 71, 70, 56, 60, 67, 58, 53, 63, 67, 63, 72, 59, 55, 47, 48, 61, 68, 64, 57, 53, 48, 57, 61, 64, 65, 48, 42, 42, 45, 52, 45, 36, 45, 37, 44, 57, 69, 68, 51, 38, 37, 45, 55, 65, 43, 46, 45, 44, 50, 42, 37, 42, 40, 38, 38, 44, 46, 48, 49, 54, 42, 38, 33, 44, 46, 58, 62, 50, 55, 54, 44, 34, 32, 39, 42, 42, 56, 49, 22, 23, 21, 33, 23, 37, 39, 36, 32, 35, 43, 32, 42, 42, 40, 36, 40, 39, 39, 42, 31, 30, 34, 36, 38, 26, 36, 34, 26, 43, 42, 27, 40, 37, 29, 40, 34, 21, 32, 21, 27, 27, 19, 32, 43, 38, 24, 37, 32, 30, 29, 31, 39, 37, 45, 40, 27, 38, 49, 54, 53, 59, 47, 43, 51, 44, 52, 57, 39, 43, 38, 43, 38, 45, 49, 62, 46, 46, 47, 51, 67, 64, 60, 61, 63, 62, 45, 43, 56, 57, 66, 68, 65, 72, 64, 71, 80, 64, 57, 65, 69, 52, 52, 62, 64, 62, 71, 78, 67, 63, 74, 80, 85, 85, 80, 82, 70, 83, 86, 70, 73, 75, 75, 83, 75, 67, 62, 74, 70, 81, 85, 88, 85, 85, 85, 85, 87, 58, 55, 70, 65, 70, 76, 74, 79, 83, 82, 89, 88, 86, 88, 83, 79, 71, 87, 88, 87, 90, 84, 83, 81, 71, 73, 76, 82, 82, 80, 82, 83, 83, 88, 79, 84, 88, 89, 88, 82, 81, 80, 81, 85, 93, 94, 85, 86, 87, 88, 86, 95, 96, 87, 89, 89, 89, 90, 89, 87, 83, 84, 82, 85, 84, 81, 85, 83, 88, 92, 93, 95, 90, 87, 86, 87, 86, 85, 87, 90, 85, 82, 82, 87, 90, 91, 90, 91, 93, 85, 83, 87, 92, 97, 79, 81, 79, 80, 77, 84, 88, 89, 87, 83, 79, 73, 71, 80, 82, 76, 72, 71, 78, 83, 79, 64, 57, 55, 63, 67, 73, 73, 72, 78, 65, 69, 77, 72, 69, 64, 64, 56, 50, 53, 70, 76, 75, 65, 57, 68, 58, 59, 69, 73, 61, 56, 65, 63, 72, 70, 71, 74, 72, 56, 59, 57, 58, 61, 58, 49, 58, 67, 52, 58, 64, 64, 53, 55, 44, 46, 50, 60, 64, 45, 51, 57, 51, 51, 53, 54, 49, 55, 61, 67, 67, 68, 53, 59, 40, 43, 56, 62, 64, 72, 66, 61, 46, 46, 48, 48], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"a05637ee-4312-4979-847e-78384aefa70d\"}, {\"attributes\": {\"glyph\": {\"id\": \"e250e7c6-9e16-4d78-8595-c50c2b77a55c\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"f740ad3d-6667-407f-a900-b80993875ca3\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"6b833f8c-08ec-4d84-8346-02f5acd80d01\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"2ed29d7e-0b6e-4b11-a83e-d9b97bd25072\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"0680c5b3-cd8c-4fb3-9d57-0fb021afdfba\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9b749e3a-f180-4cfb-b74c-f766561e8ed1\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"day\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"month\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]}, \"column_names\": [\"month\", \"day\", \"y\", \"x\", \"year\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5645af34-e982-4463-b53e-d45ecb0fc02f\"}, {\"attributes\": {\"plot\": {\"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3492563a-267c-4f64-9d25-33d5ebd3eed4\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"78e94dc7-9fb9-4a44-87d6-15b577cd7809\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0742392c-ed53-46b8-b754-538db6758297\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"865e0e03-59ab-40fb-8db8-f84d752bd2b2\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}}, \"type\": \"Circle\", \"id\": \"ea39496b-fa2e-468d-9ea6-cddec3aaec40\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"4139e8c2-7ebd-442d-b812-5f4c68279ef6\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"06ba0e97-3e90-4dd9-8c9a-7acbd98abc46\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"5cbaf851-a3b6-41f7-a914-874690a16e96\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ed6e416f-de8b-4188-bfb8-ba6fbf3cd951\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"4139e8c2-7ebd-442d-b812-5f4c68279ef6\", \"type\": \"LinearAxis\"}, {\"id\": \"988bf234-1705-4528-8eaa-66d78ed44843\", \"type\": \"Grid\"}, {\"id\": \"a5dad8cd-1fcb-4621-beef-f4222e5eb49f\", \"type\": \"LinearAxis\"}, {\"id\": \"8703714f-1dfb-4a42-bc2c-6cef17018ec7\", \"type\": \"Grid\"}, {\"id\": \"2ed29d7e-0b6e-4b11-a83e-d9b97bd25072\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"a5dad8cd-1fcb-4621-beef-f4222e5eb49f\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"97c41284-48de-4d8e-bc8b-c26df7b051b0\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3a55e1b8-b21e-4de9-bd52-8ccbf1c1df98\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"64e50211-01c8-407c-bfe7-64308bf13261\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f119439f-63c0-4dd1-b7d3-5c0d65d15480\"}, {\"attributes\": {\"plot\": {\"id\": \"dd936462-c172-417e-8eab-5552574c1876\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"e48fe083-ad75-4b63-a88a-15dc25e38f32\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"b3c3b1b5-8cb6-4a67-bfde-c5ad0125e72d\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"aab5c69b-fded-42a3-ad78-f0a37521c745\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b5ae1cda-dd5e-4274-8907-56448e6b07d0\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"a6d0d573-f970-4b4c-83f0-79205c110cbd\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"d8203be1-21c6-4095-9b8c-3352ea18f9bd\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"78f736fc-2a21-4b41-a733-cf02bfc17534\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"0af73f0d-b062-4d44-a102-f47b14a4eaa5\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"441975b3-9947-41fb-b6de-cedff34ad9bc\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"76c9a418-872f-47bf-a992-995faf88b62f\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"4df58e1e-2f23-42e1-bb9c-9752b829851c\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"cf6a5a90-9f46-4c1b-93b0-b6d71e15a626\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"40925ee8-a542-476d-a7a6-6325a4011ac1\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"45c107cf-2c7d-4c79-82f0-0e6d53714c30\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"90c3ab14-31af-4a0f-b13c-7b06cbfffb3f\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"cf6a5a90-9f46-4c1b-93b0-b6d71e15a626\", \"type\": \"LinearAxis\"}, {\"id\": \"ef8eb990-e10a-4a22-9aab-a9efe1b9d255\", \"type\": \"Grid\"}, {\"id\": \"073818a5-b6c3-4030-be1d-1843312ae9e9\", \"type\": \"LinearAxis\"}, {\"id\": \"531295f2-7ca0-4859-9a64-f641b80041ae\", \"type\": \"Grid\"}, {\"id\": \"fc84f81d-f277-4bab-a745-1d8c354e5f16\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"073818a5-b6c3-4030-be1d-1843312ae9e9\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"db9e9ce9-01d6-4499-9e27-63712f441ad9\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"45c107cf-2c7d-4c79-82f0-0e6d53714c30\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"bc138715-6f56-4b06-8ef3-ed50c1078435\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"6dc4725d-6940-402e-aff3-75e0bf2c0398\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\"}, {\"attributes\": {\"plot\": {\"id\": \"93849272-94b3-47e6-8cf6-d89d32053da2\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"9bae9964-8e91-43e3-a1ed-6b8a976d1881\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"2440d434-6949-41f9-ba2b-5be477cc1b3a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"d99b903b-cd23-4750-8411-5c355db5490c\"}, {\"attributes\": {\"glyph\": {\"id\": \"fe16ad95-1cca-4c8c-b706-5d0c651207c8\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"b07058d5-6d33-4703-820c-a00fb51ebec6\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"f1a2e53d-2d3c-4a9f-83cc-04d95f80e530\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5659e0d2-64de-4818-aec7-7943192a8c43\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"4ffc9342-e9be-423e-9b63-16d01b24406f\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"93664c7f-756e-4c34-a6a8-78f458f2c430\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"79503027-81d2-467f-93bc-4bdc89054beb\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"9bdbf539-191c-4a78-9ad2-384252af7abc\"}, {\"attributes\": {\"glyph\": {\"id\": \"e821772e-bf89-4f40-9be8-996ca8eab3e8\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3d15fe34-3a37-4b8e-9db8-3c9010e68e62\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"4add8709-db08-4ab7-b16f-284529c6b6fd\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"d0076f72-10ee-426f-9c8b-16a895c9d1e7\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"42eaf7e2-ec41-4db8-a640-7e5d41388b77\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0238722b-9cda-469a-960b-1a79f2c9e33a\"}, {\"attributes\": {\"glyph\": {\"id\": \"7e3a566f-5eff-4a55-8e92-17e18bf2030b\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9c6a2e71-4cf0-414e-99a8-2aaa86f31d19\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"133c63ac-0306-4906-b07b-22d4dc8b5b2f\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"b4f8bc60-0afa-4b52-af0d-0980c2ec1272\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"90fd7192-75b0-436a-aa31-9d8ef06f7f0d\"}, {\"attributes\": {\"plot\": {\"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"ebffe822-c69e-44c7-9e84-a83d79164fd2\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"32dbdf1b-5566-4baa-a0f6-09b1ac18505e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"ab54dac8-98ec-48ba-a7a6-4b68b601407d\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\"}, {\"attributes\": {\"plot\": {\"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"642b16c9-47f7-4768-a44e-4bf94ff3feee\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"531295f2-7ca0-4859-9a64-f641b80041ae\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"e279b8af-3da9-4a80-a47d-c51c597d8022\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"91ec281a-1fe8-4baf-8670-3b7d6ab40309\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\"}, {\"attributes\": {\"plot\": {\"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3759218c-b7a6-42db-a7c5-9c9a2438c82b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"697db4f6-1292-4d4a-89e4-cadcd996c938\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ed6e416f-de8b-4188-bfb8-ba6fbf3cd951\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"0eafc724-5f70-429c-b2d3-0928899506a9\"}, {\"attributes\": {\"glyph\": {\"id\": \"92d684b0-f1eb-42d2-a2c5-0897ab6017ea\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"8dda0631-c88a-4453-aad8-c7cdc428aaaa\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"865e0e03-59ab-40fb-8db8-f84d752bd2b2\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8882df15-dfa5-4ec8-974c-bb80baa0fc73\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\"}, {\"attributes\": {\"plot\": {\"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$m-$d-$year\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"c37ea55c-a89e-4f22-b8a6-42e92dff3791\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"89545452-e447-4294-9d2b-2e33b2749f32\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"3df7635b-e31a-4950-8549-612583ee4559\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"6d7944e2-bb25-40b2-b139-f75b75b82e63\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"c440580b-45b5-40b4-8397-0d61d9a55d39\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"1f1efca4-6555-4857-be1d-8d51171b4b77\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"9fae09b8-d10f-4f3d-97ee-670deb7f9216\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"6d7944e2-bb25-40b2-b139-f75b75b82e63\", \"type\": \"LinearAxis\"}, {\"id\": \"fbadb342-72bd-468f-aac2-7effdffa04cb\", \"type\": \"Grid\"}, {\"id\": \"09318a91-18e1-49f5-b98a-ca933e39c7af\", \"type\": \"LinearAxis\"}, {\"id\": \"a208b8cb-f645-42ac-9006-5e5dfab7cee6\", \"type\": \"Grid\"}, {\"id\": \"5659e0d2-64de-4818-aec7-7943192a8c43\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"09318a91-18e1-49f5-b98a-ca933e39c7af\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"b998098e-920f-47c1-907d-5ae2997abf64\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"f9062303-97a5-4cc4-a3aa-861d9ff2e2b9\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"1402db3d-aa97-4120-b528-2aecca981b24\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"57b79ae6-c4f9-4a7f-84c8-28af56a90d45\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"33e2d1c0-c267-4195-a9f7-e20ff4429c7a\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.05}, \"type\": \"Slider\", \"id\": \"7704dc1f-556c-427e-83b9-d52c110085ef\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"f19e00da-164a-435c-bb84-987b5875eeb5\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"49000335-2686-4a9a-a0b1-362b15576da5\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"29808dc7-c817-4a6d-90c9-1b266910d406\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"b9d361ce-485b-4962-9d6e-0fa5e6823492\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"4f8b077f-9759-4308-9835-5ad86b9d4670\"}, {\"attributes\": {\"glyph\": {\"id\": \"880dcb8d-7a03-4fff-9fe1-271f1ce52c2b\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"95465252-8543-48f8-a4be-44d8db7f6a69\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"a1a06c96-e248-47e2-9ffb-dcb8305a8116\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"ca650fff-e441-4fa7-a9a5-00957098d0c1\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"5bd2800f-e08c-447d-a364-0d6cb64a5d16\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [26, 22, 24, 30, 32, 37, 35, 39, 40, 37, 42, 43, 38, 35, 32, 35, 25, 30, 30, 26, 11, 12, 13, 15, 19, 29, 36, 39, 30, 24, 19, 24, 23, 28, 29, 26, 27, 21, 18, 34, 36, 33, 37, 31, 18, 17, 33, 25, 24, 25, 36, 34, 32, 35, 36, 36, 27, 31, 38, 33, 31, 35, 36, 40, 43, 38, 29, 30, 32, 29, 28, 33, 28, 32, 33, 36, 37, 36, 40, 40, 44, 33, 33, 33, 41, 35, 40, 51, 55, 41, 41, 46, 44, 47, 55, 51, 55, 43, 37, 41, 41, 44, 46, 50, 48, 51, 52, 47, 49, 49, 48, 46, 46, 52, 55, 54, 59, 61, 45, 42, 54, 62, 58, 56, 55, 58, 68, 59, 64, 45, 45, 48, 51, 56, 58, 72, 75, 73, 69, 66, 57, 58, 59, 59, 57, 63, 62, 64, 65, 55, 53, 61, 65, 69, 64, 59, 62, 64, 65, 70, 74, 74, 73, 71, 72, 72, 73, 75, 76, 78, 78, 73, 74, 68, 67, 74, 78, 77, 79, 81, 83, 81, 76, 75, 73, 68, 64, 65, 70, 70, 69, 67, 67, 66, 67, 68, 66, 62, 64, 70, 74, 70, 65, 70, 68, 61, 59, 64, 64, 68, 72, 71, 71, 65, 64, 68, 71, 71, 70, 73, 75, 74, 68, 65, 64, 57, 59, 57, 68, 77, 70, 59, 54, 51, 56, 50, 51, 55, 60, 61, 54, 50, 47, 52, 58, 57, 56, 57, 56, 59, 64, 63, 64, 60, 54, 53, 60, 60, 56, 52, 53, 56, 61, 55, 52, 50, 50, 51, 45, 41, 40, 41, 46, 43, 44, 47, 53, 59, 55, 37, 35, 41, 49, 44, 40, 38, 43, 31, 29, 33, 44, 45, 51, 51, 36, 32, 35, 51, 23, 23, 33, 35, 30, 29, 25, 36, 41, 38, 41, 48, 37, 32, 29, 31, 30, 27, 23, 23, 22, 30, 25, 24, 23, 30, 41, 51, 42, 19, 31, 36, 41, 23, 24, 18, 9, 8, 27, 19, 4, 9, 22, 30, 37, 38, 37, 44, 19, 21, 12, 14, 16, 25, 36, 32, 29, 21, 24, 21, 21, 21, 16, 13, 24, 31, 27, 21, 18, 26, 34, 37, 36, 40, 27, 24, 20, 14, 9, 20, 17, 13, 26, 16, 26, 35, 36, 45, 32, 19, 22, 42, 30, 23, 28, 32, 40, 39, 41, 27, 21, 24, 22, 37, 43, 39, 36, 39, 42, 46, 40, 40, 36, 43, 46, 45, 42, 56, 50, 54, 59, 33, 31, 36, 35, 41, 45, 41, 51, 44, 42, 44, 46, 47, 45, 43, 41, 51, 54, 54, 50, 52, 50, 55, 57, 60, 64, 53, 52, 58, 58, 53, 51, 49, 53, 63, 59, 56, 57, 55, 66, 54, 51, 57, 55, 59, 65, 63, 61, 61, 60, 66, 63, 65, 61, 60, 65, 60, 59, 63, 71, 76, 68, 64, 62, 64, 65, 68, 70, 70, 67, 66, 68, 69, 72, 72, 69, 65, 63, 66, 72, 71, 71, 72, 71, 71, 72, 72, 72, 67, 67, 71, 72, 70, 66, 69, 71, 68, 64, 63, 68, 71, 63, 66, 70, 71, 70, 66, 65, 66, 68, 71, 70, 68, 63, 61, 63, 66, 63, 63, 70, 65, 65, 67, 64, 64, 70, 70, 66, 61, 65, 73, 75, 77, 72, 69, 72, 67, 65, 65, 63, 63, 69, 62, 58, 53, 55, 58, 55, 57, 54, 57, 67, 52, 58, 57, 58, 60, 64, 67, 61, 61, 56, 52, 46, 50, 63, 62, 55, 50, 48, 52, 63, 69, 61, 59, 56, 44, 42, 55, 50, 50, 51, 50, 48, 53, 47, 45, 42, 41, 39, 53, 56, 48, 40, 36, 46, 44, 49, 47, 36, 35, 33, 35, 40, 24, 22, 31, 28, 28, 43, 53, 51, 34, 34, 29, 27, 45, 42, 35, 41, 37, 34, 39, 30, 24, 36, 32, 31, 32, 34, 38, 37, 38, 42, 37, 31, 30, 35, 43, 44, 44, 40, 44, 43, 34, 28, 27, 27, 35, 33, 41, 21, 19, 9, 8, 19, 16, 18, 35, 17, 16, 25, 20, 17, 31, 36, 32, 25, 31, 28, 33, 31, 22, 20, 16, 19, 19, 13, 20, 14, 13, 24, 14, 12, 25, 29, 25, 26, 22, 8, 16, 3, 14, 8, 2, 13, 32, 8, 4, 20, 21, 18, 13, 24, 27, 22, 35, 19, 12, 18, 37, 40, 39, 44, 36, 31, 40, 36, 35, 34, 29, 29, 29, 28, 23, 26, 34, 42, 39, 25, 35, 32, 41, 59, 42, 42, 42, 42, 37, 37, 39, 44, 43, 50, 55, 51, 52, 55, 59, 48, 46, 52, 48, 41, 39, 38, 46, 49, 50, 50, 48, 49, 48, 51, 57, 66, 56, 56, 57, 61, 64, 53, 50, 55, 57, 64, 60, 54, 52, 55, 49, 56, 64, 67, 70, 70, 65, 67, 57, 51, 50, 52, 54, 55, 60, 55, 63, 68, 65, 72, 73, 72, 66, 64, 65, 64, 68, 71, 70, 75, 68, 65, 69, 58, 62, 63, 68, 69, 69, 66, 68, 72, 75, 68, 72, 69, 72, 73, 73, 72, 64, 67, 71, 78, 82, 69, 68, 70, 69, 71, 75, 78, 76, 72, 75, 71, 75, 69, 72, 67, 69, 68, 68, 70, 71, 71, 67, 67, 73, 76, 78, 73, 77, 77, 71, 69, 70, 73, 73, 67, 67, 63, 67, 72, 76, 76, 74, 74, 72, 67, 65, 70, 76, 70, 66, 69, 62, 59, 62, 66, 68, 68, 68, 64, 59, 62, 59, 60, 63, 61, 56, 65, 72, 59, 56, 48, 49, 53, 52, 52, 58, 59, 61, 50, 53, 56, 61, 57, 51, 53, 42, 38, 35, 48, 57, 58, 45, 40, 48, 46, 45, 53, 57, 48, 42, 54, 54, 48, 56, 56, 66, 53, 46, 43, 51, 49, 51, 46, 42, 39, 51, 40, 46, 57, 46, 42, 42, 33, 32, 36, 41, 51, 34, 44, 46, 42, 40, 39, 42, 41, 40, 50, 55, 53, 53, 46, 50, 35, 34, 39, 53, 52, 63, 57, 46, 34, 34, 38, 42], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"7ef41850-829f-4d26-acd7-1bb6123de52d\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"f3656cdf-144f-4d85-aa51-5354439f9d27\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"71702183-2f1c-4c99-abe2-363b670b17ea\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = 10;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"179d4135-3800-4b1e-8b09-88d7f0fdbcf3\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"b6bb6479-4846-435c-ae26-9d0271432751\"}, {\"attributes\": {\"glyph\": {\"id\": \"6e2e9728-6da3-41b8-b286-5e6079680a36\", \"type\": \"Quad\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"e254871b-b306-4543-96fc-593037b4de52\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\", \"type\": \"Quad\"}}, \"type\": \"GlyphRenderer\", \"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"62395804-d44b-439e-8a6a-57559cfff496\"}, {\"attributes\": {\"plot\": {\"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"Date\", \"$month-$day-$year\"], [\"Average Temperature\", \"$x\"], [\"Dew Point\", \"$y\"]]}, \"type\": \"HoverTool\", \"id\": \"97cb45c4-379d-4dea-9c54-8d53433b0519\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"day\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"month\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]}, \"column_names\": [\"month\", \"day\", \"y\", \"x\", \"year\"]}, \"type\": \"ColumnDataSource\", \"id\": \"f740ad3d-6667-407f-a900-b80993875ca3\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\"}, {\"attributes\": {\"plot\": {\"id\": \"86f7429b-369b-4942-a300-5da5ff68e264\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"a6d0d573-f970-4b4c-83f0-79205c110cbd\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"052d6b31-a06e-4107-a1ef-7ac94e63223b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"61531cae-7c81-499e-8b7c-b7f3f1939988\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"487281c3-31e3-4521-88f8-09aa3d3b0a02\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"59245691-6a7f-46de-9e70-f04ccb383e6e\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"9353ae16-837f-439a-b670-4e736358653b\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"8a651f75-2c83-4b70-a093-d0d43a5c67c3\"}, {\"attributes\": {\"children\": [{\"id\": \"7704dc1f-556c-427e-83b9-d52c110085ef\", \"type\": \"Slider\"}, {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"6e3bc8f4-b876-48db-8286-3d3274c659e7\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"1921a8bb-76c6-4e27-a42d-44ee1015617c\"}, {\"attributes\": {\"title\": \"Histogram of Average Temperature\", \"below\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"f598c1d8-2f98-412e-9c7c-a121e2d036af\", \"type\": \"PanTool\"}, {\"id\": \"c053e2ca-0442-4ddd-81ff-fed0d19c5a5a\", \"type\": \"WheelZoomTool\"}, {\"id\": \"cb62b859-1956-4933-a68a-6687f70b704e\", \"type\": \"BoxZoomTool\"}, {\"id\": \"4a2af97a-2953-4da9-be5c-922c5199d0ba\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"5b74a08b-292c-4b57-b9b0-27a68410cb42\", \"type\": \"ResizeTool\"}, {\"id\": \"282e4daf-8715-4519-82a2-6d6df96c998b\", \"type\": \"ResetTool\"}, {\"id\": \"c265d47c-ba41-4efa-adc5-862d839a1eeb\", \"type\": \"HelpTool\"}], \"y_range\": {\"id\": \"a97ad723-e5e2-4a75-8ca8-64e09340cc96\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\", \"type\": \"LinearAxis\"}, {\"id\": \"cf6fb9e5-dd87-4f6d-94dc-dbd5300302ec\", \"type\": \"Grid\"}, {\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}, {\"id\": \"c18cdd02-6438-494f-b5fa-c82673000469\", \"type\": \"Grid\"}, {\"id\": \"35701018-1afe-47ba-80ea-c5370534df55\", \"type\": \"BoxAnnotation\"}, {\"id\": \"8f92de5a-9da5-4344-bf01-14f1e2ef8a5c\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"9705552a-5318-4e55-9c94-bc806733a654\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\"}, {\"attributes\": {\"callback\": null, \"data\": {\"y\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0], \"x\": [11.0, 12.612244897959183, 14.224489795918368, 15.83673469387755, 17.448979591836736, 19.06122448979592, 20.6734693877551, 22.285714285714285, 23.89795918367347, 25.51020408163265, 27.122448979591837, 28.73469387755102, 30.346938775510203, 31.959183673469386, 33.57142857142857, 35.183673469387756, 36.79591836734694, 38.40816326530612, 40.0204081632653, 41.63265306122449, 43.244897959183675, 44.857142857142854, 46.46938775510204, 48.08163265306123, 49.69387755102041, 51.30612244897959, 52.91836734693877, 54.53061224489796, 56.142857142857146, 57.755102040816325, 59.36734693877551, 60.97959183673469, 62.59183673469388, 64.20408163265307, 65.81632653061224, 67.42857142857143, 69.0408163265306, 70.65306122448979, 72.26530612244898, 73.87755102040816, 75.48979591836735, 77.10204081632654, 78.71428571428571, 80.3265306122449, 81.93877551020408, 83.55102040816327, 85.16326530612245, 86.77551020408163, 88.38775510204081, 90.0]}, \"column_names\": [\"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"dd6b4e15-f988-4bd2-8645-93d3bbef7b6b\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"9d02ba7b-c686-4427-ad9f-f024b583100d\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"e288c692-1af1-4f48-bede-df5c65212bbd\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"f9579d44-df06-4421-84ba-99ffe4dd60e4\"}, {\"attributes\": {\"glyph\": {\"id\": \"429e94a8-6273-4a4b-ac60-9108f9f22a18\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"3c24a0d4-df29-470c-ad62-b7831b5d98a8\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"92490d88-c853-4c55-b64f-21a3ce0677e6\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"123fdc3f-f46f-4be0-b7bb-d211d33101e6\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"34efdb75-a9cf-4afd-8beb-3c6b17f6ec8a\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"9f8c68d0-b080-4229-be12-55e35a821f93\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3492563a-267c-4f64-9d25-33d5ebd3eed4\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"2cdfc5ed-66f4-43dc-a4ce-893cca963d02\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"adcedef0-d224-486a-8b5b-bc5af6e9cceb\"}, {\"attributes\": {\"x_range\": {\"id\": \"52a9844c-4233-44f7-a3a0-76e0e8c9597b\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\", \"type\": \"LinearAxis\"}, {\"id\": \"a5824b9f-a54b-47c2-ba29-c0af06878ddf\", \"type\": \"Grid\"}, {\"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\", \"type\": \"LinearAxis\"}, {\"id\": \"2a4f7fbe-9f83-47f0-ba97-01beb289c1b8\", \"type\": \"Grid\"}, {\"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\", \"type\": \"BoxAnnotation\"}, {\"id\": \"b4f8bc60-0afa-4b52-af0d-0980c2ec1272\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"98031b6b-2ea6-4afd-8709-0e17914ef65e\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"36b1c2b7-eebb-4f82-87aa-bd0dab9c635a\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"9d02ba7b-c686-4427-ad9f-f024b583100d\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"c1f01812-2155-4bd5-b3ad-946cc8725b8e\", \"type\": \"PanTool\"}, {\"id\": \"49000335-2686-4a9a-a0b1-362b15576da5\", \"type\": \"WheelZoomTool\"}, {\"id\": \"283918f5-9f85-49f9-983b-1d5f00466c3a\", \"type\": \"BoxZoomTool\"}, {\"id\": \"ec4cb71c-d520-4029-bec7-7b6dd5b55751\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"dc6bac97-3b76-4482-afaf-7102acdabf24\", \"type\": \"ResizeTool\"}, {\"id\": \"91f11d28-3a57-42d5-81b3-fc76bb9f74a3\", \"type\": \"ResetTool\"}, {\"id\": \"b83441e8-1ca2-4fea-9156-b10295543268\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"e45b08e3-7746-4f71-8845-86f8bb24ab0f\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"93d63f5d-e311-406b-afe9-dad87becc657\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\"}, {\"attributes\": {\"plot\": {\"id\": \"9dc4e033-bf54-4828-ad09-3691dc6ce4d0\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"4035eecb-2a19-4941-9d80-b7db8150e47c\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"76c9a418-872f-47bf-a992-995faf88b62f\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"09318a91-18e1-49f5-b98a-ca933e39c7af\"}, {\"attributes\": {\"callback\": null, \"data\": {\"s\": [5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45]}, \"column_names\": [\"s\", \"y\", \"x\"]}, \"type\": \"ColumnDataSource\", \"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\"}, {\"attributes\": {\"right_units\": \"screen\", \"fill_color\": {\"value\": \"lightgrey\"}, \"bottom_units\": \"screen\", \"fill_alpha\": {\"value\": 0.5}, \"left_units\": \"screen\", \"level\": \"overlay\", \"line_width\": {\"value\": 2}, \"plot\": null, \"line_alpha\": {\"value\": 1.0}, \"line_color\": {\"value\": \"black\"}, \"line_dash\": [4, 4], \"top_units\": \"screen\", \"render_mode\": \"css\"}, \"type\": \"BoxAnnotation\", \"id\": \"68ab62af-a39b-4b95-b452-327af84702df\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"512b63d4-a6c4-4161-9421-b6f0c16dd7dd\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f1129ad8-ef6e-4cda-9252-ef1494fc0a71\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"4258cefc-5541-4895-9baf-e264737a58a1\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"78e94dc7-9fb9-4a44-87d6-15b577cd7809\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"e897e6fc-3604-4ada-800c-1547b663a501\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"fe977e76-6589-4acb-b164-d4bd2ba46af3\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"090e74cd-1d76-4ed0-91f6-5edd1b55ca6d\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"460da6b4-c3be-4bb6-ac05-dc9bdca8669d\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"8d5d7228-9364-47d6-b8fa-c78dc46d6420\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"413d3acf-7e83-48c9-b2fd-e8ff0e13176e\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"9ac7b084-b56a-4910-a73c-7a6085fe9197\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"cdfd89c7-6e36-4ae3-914c-7e995a47427b\"}, {\"attributes\": {\"args\": {\"source\": {\"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\", \"type\": \"ColumnDataSource\"}}, \"code\": \"\\n var data = source.get('data');\\n var size = cb_obj.get('value');\\n x = data['x'];\\n y = data['y'];\\n s = data['s'];\\n for (i = 0; i < x.length; i++) {\\n s[i] = size;\\n }\\n console.log(size);\\n source.trigger('change');\\n \"}, \"type\": \"CustomJS\", \"id\": \"33e2d1c0-c267-4195-a9f7-e20ff4429c7a\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"52a9844c-4233-44f7-a3a0-76e0e8c9597b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"5d63cbe3-a780-40db-87f9-92d0a123c6a5\"}, {\"attributes\": {\"plot\": {\"id\": \"14969063-1ecd-42b8-a229-c0749a938181\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"b5ae1cda-dd5e-4274-8907-56448e6b07d0\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"64e50211-01c8-407c-bfe7-64308bf13261\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"038c6def-283d-41b5-9e80-ad4455396e6e\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"ba42957b-aefb-4cef-80e1-5f6bdb1a319a\"}, {\"attributes\": {\"glyph\": {\"id\": \"1921a8bb-76c6-4e27-a42d-44ee1015617c\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"ce2daf10-dfe5-4a7d-ad9f-e30719dbfe75\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"33f3b48d-8b1e-4022-9d59-fcde30fd5b8b\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"b7fe099a-4ce6-4620-9351-beb668a740da\"}, {\"attributes\": {\"plot\": {\"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"5300cc42-9325-4f81-82c5-bc005c8b793f\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"ef8eb990-e10a-4a22-9aab-a9efe1b9d255\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"0e4db862-db25-4395-bc67-6254fcc2e53f\"}, {\"attributes\": {\"right\": {\"field\": \"right\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"left\": {\"field\": \"left\"}, \"top\": {\"field\": \"top\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"bottom\": {\"value\": 0}, \"line_alpha\": {\"value\": 0.1}}, \"type\": \"Quad\", \"id\": \"d19e5628-da3c-4ab7-9398-690c51c8d266\"}, {\"attributes\": {\"plot\": {\"id\": \"14969063-1ecd-42b8-a229-c0749a938181\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"64e50211-01c8-407c-bfe7-64308bf13261\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"aa6e027c-ea42-4550-8fdf-cf805734b856\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"1273cc4b-668a-426d-9dde-12d067c3a0ea\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"2dfd7f21-c39d-40b3-bd6c-91eb1bea53fb\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"cf5f36cb-f8ff-46df-a770-58a15e025701\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\"}, {\"attributes\": {\"plot\": {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"d26a8f69-2bbb-4504-b8e3-80af652a86e4\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"43bd5c53-f745-4b4e-851a-d9e66d9963a7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0c13b6e4-17c5-40b7-bfab-336fc9c07e87\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\"}, {\"attributes\": {\"plot\": {\"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"1402db3d-aa97-4120-b528-2aecca981b24\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"d8203be1-21c6-4095-9b8c-3352ea18f9bd\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"4139e8c2-7ebd-442d-b812-5f4c68279ef6\"}, {\"attributes\": {\"glyph\": {\"id\": \"f8729961-3981-4698-91b8-7e914b07123c\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"bc138715-6f56-4b06-8ef3-ed50c1078435\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"8abb52e8-e896-4255-a533-ea4a02719274\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"81b47d09-423e-4f06-aa82-fed5e82d5957\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"1b1ce2e5-32e8-496f-a5e9-67ca4ab0a1ec\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"a246c803-f0ef-4b66-9054-3ef3d30256ba\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"d95c73ae-efe6-4400-8abe-1537b092eb29\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"c69e4587-196e-4d85-8be5-1c3b7ec7ccf7\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"a9201af5-3434-4589-8a94-3f83d82c9e09\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"90c3ab14-31af-4a0f-b13c-7b06cbfffb3f\"}, {\"attributes\": {\"plot\": {\"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"71ac2632-095d-4dc7-877a-c09029eaffdc\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"0e870ca2-ea53-4a96-b2c9-f4afead73ce7\"}, {\"attributes\": {\"x_range\": {\"id\": \"8eabc892-df19-4340-b033-72aed7866cb9\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}, {\"id\": \"c8a7c2fa-3bed-4faa-a82f-f8d27c5b587e\", \"type\": \"Grid\"}, {\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}, {\"id\": \"196b57b4-68f3-4a90-80f2-2c16fad4a039\", \"type\": \"Grid\"}, {\"id\": \"62395804-d44b-439e-8a6a-57559cfff496\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3281f94a-6514-46de-b5be-920bb0582404\", \"type\": \"GlyphRenderer\"}, {\"id\": \"c1ca9812-2b8e-4c35-af44-f442c59b2638\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"5dc1328d-ad82-481c-9cfa-5f0d82f8d54d\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"7cf2361d-2c06-4d71-b43c-09aaeb1269cd\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"65300e8e-1af8-456f-b2f6-3e04103ecf9e\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"b0b24d46-5eeb-465e-9f53-a5ad07de410a\", \"type\": \"PanTool\"}, {\"id\": \"55ec8fcc-2484-493b-b30f-106543559054\", \"type\": \"WheelZoomTool\"}, {\"id\": \"3f881596-1aa1-4dc4-a2a0-43d02cc26619\", \"type\": \"BoxZoomTool\"}, {\"id\": \"8fb63bf8-66ec-4eb6-9e22-1ed5ff261505\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"2f9909e9-5cfd-4bf4-a233-30bd524100c2\", \"type\": \"ResizeTool\"}, {\"id\": \"579545ef-f828-4e2e-8765-0eed23793089\", \"type\": \"ResetTool\"}, {\"id\": \"c801b71c-3783-4aa4-bf4f-3a664c1a1ef2\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"7e907f4d-be9a-4679-a81f-76433fade334\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\"}, {\"attributes\": {\"x_range\": {\"id\": \"f3969a2e-7ac3-47d8-b88c-c0d213ff8ca5\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\", \"type\": \"LinearAxis\"}, {\"id\": \"35ade122-5097-45b2-beb9-ff5d03b55426\", \"type\": \"Grid\"}, {\"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\", \"type\": \"LinearAxis\"}, {\"id\": \"34a81269-33e5-4019-9c99-ed89e06a324c\", \"type\": \"Grid\"}, {\"id\": \"f8939c16-69f0-4a9b-aa50-a5230ad745d8\", \"type\": \"BoxAnnotation\"}, {\"id\": \"aeeee24a-8979-4038-8f0e-733b22fcaa5d\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"f969cc53-60e8-4cf0-a1db-0103cd8cf132\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"6de5b649-6212-42b0-8703-58c5c600a93e\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"4f8b077f-9759-4308-9835-5ad86b9d4670\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"9f8c68d0-b080-4229-be12-55e35a821f93\", \"type\": \"PanTool\"}, {\"id\": \"5dec921d-f364-4ea6-8058-b7d53300fe03\", \"type\": \"WheelZoomTool\"}, {\"id\": \"29808dc7-c817-4a6d-90c9-1b266910d406\", \"type\": \"BoxZoomTool\"}, {\"id\": \"d26a8f69-2bbb-4504-b8e3-80af652a86e4\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"ddda9672-1b1a-4c51-ab81-f20318625d42\", \"type\": \"ResizeTool\"}, {\"id\": \"89545452-e447-4294-9d2b-2e33b2749f32\", \"type\": \"ResetTool\"}, {\"id\": \"748d0a2d-ec1b-4806-a41f-7546910057e1\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"a889899c-2d33-4df2-9de3-ae5dbb5a06b7\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"99bd67f0-bf91-4efc-bc2a-6d0708fe845f\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\"}, {\"attributes\": {\"callback\": null, \"data\": {\"top\": [5, 8, 10, 9, 24, 40, 40, 45, 39, 43, 45, 53, 61, 43, 40, 60, 55, 55, 67, 67, 74, 67, 39, 10, 9], \"right\": [14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84, 90.0], \"left\": [11.0, 14.16, 17.32, 20.48, 23.64, 26.8, 29.96, 33.120000000000005, 36.28, 39.44, 42.6, 45.760000000000005, 48.92, 52.08, 55.24, 58.400000000000006, 61.56, 64.72, 67.88, 71.04, 74.2, 77.36, 80.52000000000001, 83.68, 86.84]}, \"column_names\": [\"top\", \"right\", \"left\"]}, \"type\": \"ColumnDataSource\", \"id\": \"e254871b-b306-4543-96fc-593037b4de52\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"4fc251db-abef-4c7a-a057-78243d8c6945\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"overlay\": {\"id\": \"2add2e00-a6c8-4d49-926c-59daa70a26e1\", \"type\": \"BoxAnnotation\"}}, \"type\": \"BoxZoomTool\", \"id\": \"283918f5-9f85-49f9-983b-1d5f00466c3a\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"982f4c71-b46f-4c76-b62a-9fbf8e63f0a3\"}, {\"attributes\": {}, \"type\": \"ToolEvents\", \"id\": \"9fae09b8-d10f-4f3d-97ee-670deb7f9216\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResizeTool\", \"id\": \"dc6bac97-3b76-4482-afaf-7102acdabf24\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"ae31f862-4dda-4562-b886-2d8d5f3f7819\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"d0580257-10b8-4cd8-9aed-26d46e717e2e\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"e4048a66-1073-405b-b7d9-d74cb20ac0c6\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Dew Point\", \"formatter\": {\"id\": \"7dea09a8-1869-4973-ad04-4ef208d50a3a\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"4c91ebcc-32b2-4218-b776-4b9548943c1a\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"653de7e2-e5af-4d2b-bb42-5292b7336368\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"d3a791c2-1978-4772-96b7-e88596e72b1f\"}, {\"attributes\": {\"glyph\": {\"id\": \"5dcbd54d-58ee-4df7-b5ae-681b7a4cab4f\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"f5682464-9a7c-46c2-8792-8bff1ef40ca4\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"ea39496b-fa2e-468d-9ea6-cddec3aaec40\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"aeeee24a-8979-4038-8f0e-733b22fcaa5d\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"18c63fa6-1806-48a1-ab64-586dbf430ca7\"}, {\"attributes\": {\"glyph\": {\"id\": \"ff73558e-a894-4540-8b96-f80abb8503e7\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"99cf53f0-74e2-4c7d-beac-956b948dd3c4\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"cc5b25cd-e739-489c-b15e-debac5df47dc\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"3281f94a-6514-46de-b5be-920bb0582404\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"fc2fe8ab-0222-4624-913c-3f1407a4264d\"}, {\"attributes\": {\"glyph\": {\"id\": \"0af73f0d-b062-4d44-a102-f47b14a4eaa5\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"15d94729-33ec-4a9e-9715-ed08e05a811f\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"612224a1-f777-4233-97b3-1735e4ba3cb7\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"5c8b3fa3-eb27-483e-a3d8-784439cfc095\"}, {\"attributes\": {\"glyph\": {\"id\": \"011dff46-4876-4412-ba93-7845e495c917\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5da86ef2-4842-4de8-9760-048de8a48417\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"d2d81361-762d-4f24-9868-ed930ddea17b\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"33f07cf4-2fee-42e8-b192-44363717a2e2\"}, {\"attributes\": {\"glyph\": {\"id\": \"a05637ee-4312-4979-847e-78384aefa70d\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"9df8150f-c8b2-4a7e-ae94-0cd0b218bdbb\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"0b9532f6-f275-4670-b3d1-f7a40d58c79f\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"001f2deb-2636-45bc-b310-3e3d8eff307d\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"fill_color\": {\"value\": \"#1f77b4\"}, \"size\": {\"units\": \"screen\", \"field\": \"s\"}, \"x\": {\"field\": \"x\"}, \"y\": {\"field\": \"y\"}}, \"type\": \"Circle\", \"id\": \"7e3a566f-5eff-4a55-8e92-17e18bf2030b\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"ae31f862-4dda-4562-b886-2d8d5f3f7819\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"4ab2fb58-276b-402c-b894-582c79efbe2c\"}, {\"attributes\": {\"plot\": {\"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"a246c803-f0ef-4b66-9054-3ef3d30256ba\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"5300cc42-9325-4f81-82c5-bc005c8b793f\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"cf6a5a90-9f46-4c1b-93b0-b6d71e15a626\"}, {\"attributes\": {\"plot\": {\"id\": \"de596545-a2d6-4f45-ac82-a896c97ea23a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"a85dfdc9-2930-4322-a0b6-2919ab66fd1b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"493355f4-9ea0-439f-9a6b-af9532017b86\"}, {\"attributes\": {\"plot\": {\"id\": \"d8bab0c0-2dba-4a9f-9135-51fd0e843b3c\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"5d63cbe3-a780-40db-87f9-92d0a123c6a5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"642b16c9-47f7-4768-a44e-4bf94ff3feee\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"073818a5-b6c3-4030-be1d-1843312ae9e9\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"6ac955df-dfe3-443e-bf32-38f5cbc50937\"}, {\"attributes\": {\"plot\": {\"id\": \"65e6522a-4490-424e-a998-024b2cb9b3de\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"axis_label\": \"Average Temperature\", \"formatter\": {\"id\": \"505cb46a-31d3-483b-b7e8-fce41e7ee0f7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"c93c10a3-25ed-437c-a732-7b869d0e9e01\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"50808d8d-27ff-48d4-a677-449dc81cc826\"}, {\"attributes\": {\"title\": \"Hover over the dots!\", \"below\": [{\"id\": \"ab54dac8-98ec-48ba-a7a6-4b68b601407d\", \"type\": \"LinearAxis\"}], \"tools\": [{\"id\": \"97cb45c4-379d-4dea-9c54-8d53433b0519\", \"type\": \"HoverTool\"}], \"y_range\": {\"id\": \"fc2fe8ab-0222-4624-913c-3f1407a4264d\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"4df58e1e-2f23-42e1-bb9c-9752b829851c\", \"type\": \"ToolEvents\"}, \"renderers\": [{\"id\": \"ab54dac8-98ec-48ba-a7a6-4b68b601407d\", \"type\": \"LinearAxis\"}, {\"id\": \"b6299452-f941-4806-ada4-43017630f60b\", \"type\": \"Grid\"}, {\"id\": \"f8f25b1e-e11f-451e-8a81-ef18e3b92673\", \"type\": \"LinearAxis\"}, {\"id\": \"bb2858d2-b9c2-45fd-b411-3f7c54a570b0\", \"type\": \"Grid\"}, {\"id\": \"ce36b770-8b42-455e-80fe-e444eb017662\", \"type\": \"GlyphRenderer\"}], \"left\": [{\"id\": \"f8f25b1e-e11f-451e-8a81-ef18e3b92673\", \"type\": \"LinearAxis\"}], \"x_range\": {\"id\": \"20e0d38b-7976-4840-8168-9e8b4462a9e0\", \"type\": \"DataRange1d\"}}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"0925eeee-5501-40fd-8220-5aad9b768389\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"a9280afc-43b0-4eb8-83b2-a076f7b1dda5\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"ResetTool\", \"id\": \"9428e2de-8504-40fb-833d-26bd6ca5f8cc\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"73a445ba-a1a3-4907-9ab8-c0456742f663\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"2a4f7fbe-9f83-47f0-ba97-01beb289c1b8\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"cfa0fc97-9cd9-4482-bdf7-8d68bd65de03\"}, {\"attributes\": {\"children\": [{\"id\": \"17b2fa99-b6a9-4daa-8d88-f5f21bef3611\", \"type\": \"Slider\"}, {\"id\": \"e2a538f2-d525-4b11-8e9a-4c5959136a4a\", \"type\": \"Plot\", \"subtype\": \"Figure\"}]}, \"type\": \"VBoxForm\", \"id\": \"c71e8111-1b66-416e-bb23-d6e6262873e3\"}, {\"attributes\": {\"glyph\": {\"id\": \"0e4db862-db25-4395-bc67-6254fcc2e53f\", \"type\": \"Circle\"}, \"hover_glyph\": null, \"selection_glyph\": null, \"data_source\": {\"id\": \"5645af34-e982-4463-b53e-d45ecb0fc02f\", \"type\": \"ColumnDataSource\"}, \"nonselection_glyph\": {\"id\": \"a9280afc-43b0-4eb8-83b2-a076f7b1dda5\", \"type\": \"Circle\"}}, \"type\": \"GlyphRenderer\", \"id\": \"ce36b770-8b42-455e-80fe-e444eb017662\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"2aa09552-631d-4719-85d2-54ed55cc6d14\"}, {\"attributes\": {\"fill_color\": {\"value\": \"#1f77b4\"}, \"y\": {\"field\": \"y\"}, \"fill_alpha\": {\"value\": 0.1}, \"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"x\": {\"field\": \"x\"}}, \"type\": \"Circle\", \"id\": \"d2d81361-762d-4f24-9868-ed930ddea17b\"}, {\"attributes\": {\"plot\": {\"id\": \"14969063-1ecd-42b8-a229-c0749a938181\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"a3ce2bd8-d496-43c2-a54a-c286f47808ae\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"78f736fc-2a21-4b41-a733-cf02bfc17534\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"0504fa3f-8e83-4b30-8988-4127d0794df8\"}, {\"attributes\": {\"x_range\": {\"id\": \"59245691-6a7f-46de-9e70-f04ccb383e6e\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\", \"type\": \"LinearAxis\"}, {\"id\": \"f10cd2c7-7283-4701-ae4a-3d79ca92fd28\", \"type\": \"Grid\"}, {\"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\", \"type\": \"LinearAxis\"}, {\"id\": \"1e57a445-c12c-4554-970b-8fec4d1d1c6f\", \"type\": \"Grid\"}, {\"id\": \"7a86e188-d7fb-4985-b360-1735cae8db97\", \"type\": \"BoxAnnotation\"}, {\"id\": \"404b79c2-2db5-43fb-8e78-9beae9382f70\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"f359ee5f-67d0-4afd-b1fa-65a2358f1c4c\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"adcedef0-d224-486a-8b5b-bc5af6e9cceb\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"3e2b7dd4-5533-465d-9720-4c3ef3264645\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"942da444-16d0-4254-b8ab-470957a4888d\", \"type\": \"PanTool\"}, {\"id\": \"f3656cdf-144f-4d85-aa51-5354439f9d27\", \"type\": \"WheelZoomTool\"}, {\"id\": \"af0e5595-905c-4e9a-a49f-cc77be75bec4\", \"type\": \"BoxZoomTool\"}, {\"id\": \"319ffabb-ea1a-4a6d-ab1a-04cd525ecdad\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"93d63f5d-e311-406b-afe9-dad87becc657\", \"type\": \"ResizeTool\"}, {\"id\": \"18c63fa6-1806-48a1-ab64-586dbf430ca7\", \"type\": \"ResetTool\"}, {\"id\": \"e05c6bae-0726-4f94-aab9-077e51018af3\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"b34319ad-3281-4ca7-8ddd-8b034b6867e9\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\"}, {\"attributes\": {\"title\": \"Size\", \"value\": 5, \"end\": 10, \"callback\": {\"id\": \"b4ecd022-102d-4595-8df5-48bf86706eea\", \"type\": \"CustomJS\"}, \"start\": 1, \"step\": 0.05}, \"type\": \"Slider\", \"id\": \"34efee33-252e-4218-8556-389e60300d94\"}, {\"attributes\": {\"plot\": {\"id\": \"90bfec0d-dded-4b00-822d-4df5d60a7601\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"471de5e2-0a91-4d21-92d0-cb9915c20910\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"1e57a445-c12c-4554-970b-8fec4d1d1c6f\"}, {\"attributes\": {\"line_color\": {\"value\": \"#1f77b4\"}, \"line_alpha\": {\"value\": 0.1}, \"y\": {\"field\": \"y\"}, \"x\": {\"field\": \"x\"}}, \"type\": \"Line\", \"id\": \"bbe2e904-b160-4ce6-b16c-90ea8249d905\"}, {\"attributes\": {\"x_range\": {\"id\": \"3106c785-b280-47fa-af1a-a4b551b954dd\", \"type\": \"DataRange1d\"}, \"renderers\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}, {\"id\": \"2471a752-5482-4ab4-b64a-f90f30d52688\", \"type\": \"Grid\"}, {\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}, {\"id\": \"e544b81e-c2af-40e3-9289-4ec6f7fe4956\", \"type\": \"Grid\"}, {\"id\": \"68ab62af-a39b-4b95-b452-327af84702df\", \"type\": \"BoxAnnotation\"}, {\"id\": \"3abdd1f5-0394-417d-9444-0452a4e5ddf7\", \"type\": \"GlyphRenderer\"}, {\"id\": \"a2e9e76b-631e-4946-9a7f-99397db23406\", \"type\": \"GlyphRenderer\"}], \"below\": [{\"id\": \"e2e0de99-7156-451f-884c-eb4e2267948f\", \"type\": \"LinearAxis\"}], \"y_range\": {\"id\": \"f5b0057c-5d79-4f44-a6d4-62c03879e529\", \"type\": \"DataRange1d\"}, \"tool_events\": {\"id\": \"6748c334-e6ad-4fd9-bad8-d9442b38b638\", \"type\": \"ToolEvents\"}, \"tools\": [{\"id\": \"f51b38ed-4b38-467e-9205-893fd26c0ade\", \"type\": \"PanTool\"}, {\"id\": \"ba987a79-48d9-4d5c-b064-c4f4d943fa91\", \"type\": \"WheelZoomTool\"}, {\"id\": \"59f7a794-b718-4db9-bef1-2013e014f6d3\", \"type\": \"BoxZoomTool\"}, {\"id\": \"c43031d6-fab7-46fe-a04b-e24442b8ec35\", \"type\": \"PreviewSaveTool\"}, {\"id\": \"9bac4841-076a-42b8-981b-9992f6405647\", \"type\": \"ResizeTool\"}, {\"id\": \"1b8d24ad-f729-4878-9b11-abd2cdcea5d5\", \"type\": \"ResetTool\"}, {\"id\": \"a52f7d10-a2b9-4492-9fc4-dafc9616498c\", \"type\": \"HelpTool\"}], \"left\": [{\"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\", \"type\": \"LinearAxis\"}]}, \"type\": \"Plot\", \"subtype\": \"Figure\", \"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"3661a4a6-bb2f-443f-97d1-b66d5c7a7d98\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"e9247aad-d664-4a47-b187-9b0464d0b25f\"}, {\"attributes\": {\"plot\": {\"id\": \"14969063-1ecd-42b8-a229-c0749a938181\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"callback\": null, \"tooltips\": [[\"(x,y)\", \"($x, $y)\"]]}, \"type\": \"HoverTool\", \"id\": \"7db5f16c-52ba-423a-a1da-e87f97e9ac95\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"3b509d4d-95a0-4f54-b291-ea9cf463ca8a\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"f3969a2e-7ac3-47d8-b88c-c0d213ff8ca5\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"2440d434-6949-41f9-ba2b-5be477cc1b3a\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"HelpTool\", \"id\": \"7d21c49b-eaf7-4e43-b1f1-3d6fe532a20e\"}, {\"attributes\": {}, \"type\": \"BasicTicker\", \"id\": \"32dbdf1b-5566-4baa-a0f6-09b1ac18505e\"}, {\"attributes\": {\"plot\": {\"id\": \"99f8a77c-293f-4ef4-aa28-bbb42abe6502\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"617df45d-a847-47e0-b9cf-a8282b54cc5b\"}, {\"attributes\": {\"plot\": {\"id\": \"18403bbd-dd7e-44b1-80c2-09b2cae28f72\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PanTool\", \"id\": \"c1f01812-2155-4bd5-b3ad-946cc8725b8e\"}, {\"attributes\": {\"plot\": {\"id\": \"b25ca956-ef42-451f-a46a-eb54cd845505\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"78e94dc7-9fb9-4a44-87d6-15b577cd7809\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"913703c7-dcd7-49e4-b049-7abb9961ab04\"}, {\"attributes\": {\"plot\": {\"id\": \"7097f1dd-2f9d-4801-96aa-0b4f08e952a6\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"ticker\": {\"id\": \"56078f52-3944-4262-88bf-d5e5292d2f7b\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"919fe4e3-e61e-4696-8738-2eda9db876ca\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"d\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"m\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37]}, \"column_names\": [\"m\", \"d\", \"year\", \"x\", \"y\"]}, \"type\": \"ColumnDataSource\", \"id\": \"9df8150f-c8b2-4a7e-ae94-0cd0b218bdbb\"}, {\"attributes\": {\"plot\": {\"id\": \"96b355dc-3777-4dc2-a6b7-701790901452\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"f19e00da-164a-435c-bb84-987b5875eeb5\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"fac7751b-a85b-4c9b-b90d-3d05783e2cce\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"8bba6ec8-86cc-4bf3-8cbf-1c18d5517510\"}, {\"attributes\": {\"callback\": null}, \"type\": \"DataRange1d\", \"id\": \"a5ff126c-dfe2-4a61-b5b7-5a2700189287\"}, {\"attributes\": {\"plot\": {\"id\": \"dd936462-c172-417e-8eab-5552574c1876\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"dimension\": 1, \"ticker\": {\"id\": \"b3c3b1b5-8cb6-4a67-bfde-c5ad0125e72d\", \"type\": \"BasicTicker\"}}, \"type\": \"Grid\", \"id\": \"50038d3e-682c-4150-9e77-1d7ea2b58336\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"d210a2a5-45e9-49c6-b5be-9d1943fd2793\"}, {\"attributes\": {\"plot\": {\"id\": \"3a484cb4-906b-4b57-9a01-0941fc356b8b\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"3db18476-a36b-45ac-b23d-c92f71caaa80\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"8a65c8f2-86c9-4a92-afc6-d2f5524feaca\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"096a08b8-41b4-439e-a205-4968be189b3a\"}, {\"attributes\": {}, \"type\": \"BasicTickFormatter\", \"id\": \"a3ce2bd8-d496-43c2-a54a-c286f47808ae\"}, {\"attributes\": {\"plot\": {\"id\": \"8d99fcbb-a549-4840-8354-6d86cb2be746\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"WheelZoomTool\", \"id\": \"55ec8fcc-2484-493b-b30f-106543559054\"}, {\"attributes\": {\"plot\": {\"id\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\", \"type\": \"Plot\", \"subtype\": \"Figure\"}, \"formatter\": {\"id\": \"d0076f72-10ee-426f-9c8b-16a895c9d1e7\", \"type\": \"BasicTickFormatter\"}, \"ticker\": {\"id\": \"460da6b4-c3be-4bb6-ac05-dc9bdca8669d\", \"type\": \"BasicTicker\"}}, \"type\": \"LinearAxis\", \"id\": \"a5dad8cd-1fcb-4621-beef-f4222e5eb49f\"}, {\"attributes\": {\"callback\": null, \"data\": {\"year\": [2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2013, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2014, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015, 2015], \"day\": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 25, 26, 27, 29, 30, 31, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 25, 27, 28, 29, 30, 31, 1, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 1, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31], \"y\": [22, 11, 14, 19, 19, 23, 27, 32, 23, 35, 42, 44, 45, 26, 32, 26, 9, 22, 20, 10, -5, -2, 8, 7, 8, 26, 37, 46, 35, 9, 10, 18, 9, 24, 19, 10, 29, 18, 11, 39, 25, 25, 31, 25, 3, 4, 29, 12, 10, 21, 36, 32, 24, 30, 38, 27, 17, 22, 30, 30, 30, 21, 32, 40, 47, 27, 10, 17, 27, 16, 19, 32, 15, 17, 20, 30, 26, 23, 26, 25, 33, 10, 9, 18, 22, 15, 33, 41, 50, 39, 37, 29, 29, 46, 43, 43, 56, 35, 21, 31, 35, 43, 29, 29, 27, 33, 46, 36, 40, 39, 41, 39, 46, 52, 57, 55, 54, 61, 27, 26, 45, 50, 39, 48, 55, 60, 65, 63, 66, 54, 41, 35, 36, 52, 61, 63, 63, 65, 66, 67, 41, 44, 55, 59, 58, 58, 63, 64, 52, 58, 53, 51, 56, 64, 64, 53, 53, 52, 54, 65, 67, 66, 70, 67, 71, 72, 73, 72, 71, 70, 70, 67, 68, 65, 70, 71, 70, 65, 68, 69, 73, 69, 64, 71, 72, 62, 53, 58, 62, 67, 63, 54, 57, 65, 63, 61, 54, 47, 54, 70, 72, 60, 54, 65, 67, 49, 48, 52, 53, 62, 62, 70, 58, 51, 53, 59, 66, 70, 65, 69, 70, 72, 65, 54, 48, 41, 47, 48, 66, 71, 70, 57, 44, 44, 52, 37, 43, 48, 54, 62, 54, 40, 40, 44, 53, 50, 50, 53, 51, 53, 56, 54, 61, 64, 42, 44, 55, 46, 49, 47, 49, 54, 59, 45, 45, 39, 37, 44, 35, 28, 28, 29, 29, 30, 30, 42, 55, 57, 44, 30, 16, 34, 44, 48, 25, 26, 26, 23, 13, 15, 22, 40, 53, 44, 22, 15, 31, 45, 2, 9, 27, 46, 10, 15, 17, 29, 34, 34, 36, 50, 43, 26, 21, 32, 28, 13, 6, 10, 21, 28, 10, 21, 18, 22, 31, 47, 52, 7, 19, 23, 36, 24, 13, 20, 1, 3, 27, 34, -12, -3, 8, 28, 48, 32, 31, 41, 10, 14, -8, -1, 2, 11, 21, 28, 28, 16, 13, 4, 15, 9, 3, 6, 28, 26, 25, 9, 2, 23, 32, 29, 36, 24, 13, 9, 10, 1, -7, 10, 5, 1, 7, 4, 21, 27, 15, 31, 42, 3, 10, 24, 8, 3, 9, 34, 34, 18, 27, 14, 2, 7, 9, 40, 42, 41, 31, 27, 37, 29, 36, 31, 21, 37, 44, 26, 22, 40, 38, 46, 53, 48, 20, 24, 28, 27, 26, 30, 46, 36, 16, 23, 44, 33, 33, 37, 43, 54, 40, 36, 29, 28, 31, 56, 60, 43, 52, 47, 50, 60, 63, 44, 35, 33, 37, 48, 57, 56, 55, 51, 48, 50, 42, 48, 39, 48, 62, 61, 60, 48, 52, 54, 62, 65, 59, 62, 65, 60, 51, 56, 63, 62, 63, 47, 48, 53, 56, 58, 68, 67, 60, 55, 55, 62, 67, 71, 71, 64, 49, 54, 63, 67, 65, 61, 58, 60, 67, 71, 71, 54, 61, 64, 68, 61, 54, 62, 67, 65, 51, 52, 58, 65, 62, 63, 65, 62, 59, 51, 52, 53, 56, 58, 66, 66, 51, 48, 51, 55, 52, 58, 60, 62, 62, 59, 58, 58, 62, 62, 54, 50, 59, 69, 70, 69, 58, 58, 69, 69, 56, 53, 57, 57, 63, 50, 56, 46, 44, 55, 45, 47, 45, 56, 66, 42, 53, 54, 51, 54, 58, 58, 57, 54, 51, 58, 34, 45, 54, 52, 37, 48, 40, 53, 62, 66, 62, 51, 48, 32, 33, 50, 50, 46, 43, 39, 36, 47, 38, 37, 38, 25, 23, 27, 36, 46, 34, 26, 32, 35, 52, 52, 30, 24, 17, 23, 41, 9, 7, 16, 8, 13, 27, 55, 35, 32, 30, 17, 16, 33, 40, 30, 38, 21, 33, 42, 18, 17, 36, 31, 23, 21, 25, 29, 29, 39, 39, 23, 21, 19, 35, 42, 47, 40, 28, 31, 37, 19, 13, 8, 10, 17, 29, 43, 10, 9, 1, -4, 11, -1, 6, 31, 13, 12, 16, 12, 5, 34, 25, 18, 9, 19, 17, 30, 17, 16, 15, 2, 13, 22, -1, 19, 24, 8, 21, 10, 0, 17, 28, 19, 19, 11, -7, 15, -11, 9, -3, -10, 15, 28, 1, -3, 10, 9, 3, -2, 16, 18, 20, 35, 23, 3, 11, 22, 24, 36, 39, 7, 9, 41, 29, 25, 27, 9, 4, 19, 12, 4, 8, 26, 46, 34, 6, 30, 18, 24, 50, 34, 24, 36, 41, 32, 35, 42, 31, 28, 37, 41, 21, 25, 51, 39, 29, 50, 44, 36, 24, 18, 23, 27, 30, 35, 38, 38, 39, 40, 38, 44, 50, 45, 52, 55, 61, 59, 38, 33, 40, 58, 64, 57, 38, 38, 40, 29, 43, 55, 58, 64, 64, 55, 63, 65, 53, 49, 49, 48, 54, 54, 42, 58, 63, 56, 64, 64, 59, 59, 66, 66, 58, 62, 69, 61, 68, 54, 52, 58, 56, 61, 55, 61, 65, 58, 54, 61, 65, 71, 65, 62, 56, 60, 61, 69, 69, 49, 59, 68, 70, 68, 51, 49, 50, 56, 67, 65, 66, 73, 59, 58, 57, 60, 61, 55, 52, 54, 55, 58, 60, 67, 58, 52, 55, 62, 64, 64, 68, 70, 70, 65, 52, 63, 64, 63, 52, 52, 52, 55, 64, 65, 64, 65, 64, 65, 57, 56, 62, 65, 69, 62, 65, 61, 46, 49, 54, 55, 56, 63, 54, 43, 49, 49, 52, 51, 49, 52, 61, 68, 67, 49, 45, 45, 42, 45, 46, 49, 50, 60, 40, 43, 47, 55, 45, 39, 38, 28, 22, 25, 36, 44, 47, 34, 37, 48, 33, 37, 57, 53, 31, 32, 46, 43, 43, 48, 59, 62, 42, 30, 34, 50, 47, 50, 29, 23, 28, 34, 29, 42, 57, 33, 30, 36, 16, 19, 27, 42, 46, 30, 43, 49, 29, 30, 32, 31, 30, 38, 44, 47, 53, 43, 37, 52, 16, 17, 32, 52, 54, 60, 53, 48, 24, 37, 39, 37], \"x\": [33, 28, 28, 34, 37, 41, 42, 44, 44, 42, 45, 47, 47, 37, 35, 39, 30, 41, 42, 29, 16, 17, 19, 21, 27, 33, 43, 49, 46, 28, 24, 27, 27, 30, 34, 29, 31, 27, 27, 40, 40, 39, 46, 36, 25, 26, 41, 32, 29, 32, 39, 41, 39, 40, 42, 41, 35, 40, 40, 36, 37, 45, 43, 47, 50, 45, 35, 39, 37, 34, 32, 38, 35, 39, 40, 38, 45, 45, 48, 50, 49, 38, 40, 43, 53, 44, 48, 62, 65, 44, 50, 52, 52, 55, 63, 55, 63, 52, 46, 48, 47, 57, 56, 59, 60, 60, 55, 58, 61, 58, 59, 55, 58, 63, 59, 61, 69, 66, 52, 52, 62, 71, 65, 61, 57, 69, 77, 69, 72, 55, 50, 57, 62, 62, 70, 81, 83, 82, 79, 72, 66, 66, 65, 61, 67, 72, 66, 72, 71, 62, 63, 71, 73, 77, 74, 68, 71, 73, 75, 79, 83, 80, 80, 77, 75, 77, 78, 81, 83, 85, 85, 81, 81, 73, 74, 82, 86, 86, 88, 90, 90, 87, 83, 81, 80, 76, 66, 74, 76, 74, 77, 75, 75, 71, 75, 73, 73, 70, 73, 76, 80, 77, 73, 76, 73, 68, 69, 73, 74, 78, 81, 75, 77, 73, 74, 76, 79, 79, 78, 80, 80, 78, 75, 74, 72, 65, 70, 65, 78, 87, 79, 68, 61, 62, 65, 58, 62, 67, 70, 69, 62, 58, 60, 63, 65, 63, 65, 65, 66, 71, 74, 71, 70, 68, 61, 58, 64, 66, 61, 59, 63, 62, 67, 62, 58, 57, 58, 59, 50, 48, 47, 48, 52, 52, 50, 54, 60, 65, 62, 46, 41, 48, 55, 54, 45, 44, 48, 42, 34, 43, 51, 53, 56, 58, 44, 38, 44, 54, 27, 29, 40, 49, 33, 34, 32, 43, 45, 46, 47, 54, 50, 37, 31, 35, 34, 30, 27, 29, 28, 35, 29, 28, 30, 39, 47, 58, 53, 25, 36, 46, 45, 34, 29, 26, 14, 19, 34, 37, 12, 16, 27, 34, 48, 46, 44, 48, 24, 33, 17, 19, 23, 32, 41, 38, 32, 27, 28, 25, 26, 25, 21, 19, 30, 36, 32, 26, 25, 33, 40, 44, 43, 47, 36, 29, 26, 24, 17, 29, 25, 21, 33, 24, 32, 46, 40, 56, 44, 26, 34, 50, 36, 29, 36, 39, 47, 45, 52, 35, 28, 30, 33, 50, 51, 44, 46, 50, 48, 57, 44, 47, 49, 48, 55, 53, 50, 66, 62, 66, 67, 48, 40, 42, 42, 55, 53, 54, 61, 53, 52, 54, 57, 53, 56, 48, 47, 65, 63, 60, 60, 62, 60, 59, 70, 71, 75, 63, 62, 65, 63, 62, 59, 61, 66, 69, 63, 64, 64, 68, 76, 59, 59, 65, 66, 70, 76, 73, 69, 69, 71, 76, 68, 71, 66, 67, 72, 67, 70, 72, 80, 83, 73, 72, 70, 72, 73, 75, 78, 78, 75, 77, 76, 77, 81, 82, 78, 70, 72, 75, 81, 81, 80, 78, 79, 78, 78, 78, 79, 74, 76, 79, 80, 75, 74, 75, 78, 75, 70, 72, 75, 78, 69, 71, 77, 81, 77, 75, 74, 77, 78, 79, 75, 75, 70, 67, 71, 74, 72, 73, 77, 74, 72, 72, 72, 76, 80, 80, 74, 71, 73, 82, 82, 85, 79, 78, 80, 79, 73, 70, 68, 72, 76, 70, 64, 62, 63, 64, 64, 67, 60, 66, 71, 62, 65, 61, 68, 72, 74, 73, 63, 66, 64, 61, 54, 60, 67, 68, 62, 55, 56, 59, 70, 73, 66, 65, 63, 50, 51, 61, 54, 52, 57, 59, 56, 63, 53, 50, 45, 45, 50, 61, 60, 53, 47, 42, 52, 53, 57, 56, 42, 39, 38, 40, 46, 35, 29, 38, 33, 36, 50, 61, 60, 43, 36, 33, 36, 50, 54, 39, 44, 41, 39, 45, 36, 31, 39, 36, 35, 35, 39, 42, 43, 44, 48, 40, 35, 32, 40, 45, 51, 53, 45, 50, 49, 39, 31, 30, 33, 39, 38, 49, 35, 21, 16, 15, 26, 20, 28, 37, 27, 24, 30, 32, 25, 37, 39, 36, 31, 36, 34, 36, 37, 27, 25, 25, 28, 29, 20, 28, 24, 20, 34, 28, 20, 33, 33, 27, 33, 28, 15, 24, 12, 21, 18, 11, 23, 38, 23, 14, 29, 27, 24, 21, 28, 33, 30, 40, 30, 20, 28, 43, 47, 46, 52, 42, 37, 46, 40, 44, 46, 34, 36, 34, 36, 31, 36, 42, 52, 43, 36, 41, 42, 54, 62, 51, 52, 53, 52, 41, 40, 48, 51, 55, 59, 60, 62, 58, 63, 70, 56, 52, 59, 59, 47, 46, 50, 55, 56, 61, 64, 58, 56, 61, 66, 71, 76, 68, 69, 64, 72, 75, 62, 62, 65, 66, 74, 68, 61, 57, 65, 60, 69, 75, 78, 78, 78, 75, 76, 72, 55, 53, 61, 60, 63, 68, 65, 71, 76, 74, 81, 81, 79, 77, 74, 72, 68, 78, 80, 79, 83, 76, 74, 75, 65, 68, 70, 75, 76, 75, 74, 76, 78, 82, 74, 78, 79, 81, 81, 78, 77, 72, 74, 78, 86, 88, 77, 77, 79, 79, 79, 85, 87, 82, 81, 82, 80, 83, 79, 80, 75, 77, 75, 77, 77, 76, 78, 75, 78, 83, 85, 87, 82, 82, 82, 79, 78, 78, 80, 82, 76, 75, 73, 77, 81, 84, 83, 83, 84, 79, 75, 76, 81, 87, 75, 74, 74, 71, 68, 73, 77, 79, 78, 76, 72, 66, 67, 70, 71, 70, 67, 64, 72, 78, 69, 60, 53, 52, 58, 60, 63, 66, 66, 70, 58, 61, 67, 67, 63, 58, 59, 49, 44, 44, 59, 67, 67, 55, 49, 58, 52, 52, 61, 65, 55, 49, 60, 59, 60, 63, 64, 70, 63, 51, 51, 54, 54, 56, 52, 46, 49, 59, 46, 52, 61, 55, 48, 49, 39, 39, 43, 51, 58, 40, 48, 52, 47, 46, 46, 48, 45, 48, 56, 61, 60, 61, 50, 55, 38, 39, 48, 58, 58, 68, 62, 54, 40, 40, 43, 45], \"month\": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12]}, \"column_names\": [\"month\", \"day\", \"y\", \"x\", \"year\"]}, \"type\": \"ColumnDataSource\", \"id\": \"95465252-8543-48f8-a4be-44d8db7f6a69\"}, {\"attributes\": {\"plot\": {\"id\": \"e8bfe266-4bc6-488d-9412-de3159e32bc8\", \"type\": \"Plot\", \"subtype\": \"Figure\"}}, \"type\": \"PreviewSaveTool\", \"id\": \"4e613903-5541-4166-a4ce-adeb8568168d\"}]}, \"version\": \"0.11.0\"}};\n",
" var render_items = [{\"docid\": \"d4769322-5af4-46b2-94d0-c7f7a84ea4c7\", \"elementid\": \"0990ac5d-6d26-4edb-b55d-7c0aa355a8d3\", \"notebook_comms_target\": \"a4d7d1ad-65cb-462a-8275-9a8000980b1f\", \"modelid\": \"9e7c2529-8b55-48e4-8ec3-3e95815a2a46\"}];\n",
" \n",
" Bokeh.embed.embed_items(docs_json, render_items);\n",
" });\n",
" },\n",
" function(Bokeh) {\n",
" }\n",
" ];\n",
" \n",
" function run_inline_js() {\n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i](window.Bokeh);\n",
" }\n",
" }\n",
" \n",
" if (window._bokeh_is_loading === 0) {\n",
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(js_urls, function() {\n",
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
" }(this));\n",
"</script>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"<bokeh.io._CommsHandle at 0x10c067940>"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"from bokeh.plotting import figure, output_file, show, ColumnDataSource\n",
"from bokeh.models import HoverTool\n",
"\n",
"tooltip_source = bokeh.plotting.ColumnDataSource(data = dict(x = data.mean_temperature, y = data.dew_point,\\\n",
" month = data.month, day = data.day, year = data.year))\n",
"\n",
"hover = bokeh.models.HoverTool(\n",
" tooltips = [\n",
" (\"Date\", \"@month-@day-@year\"),\n",
" (\"Average Temperature\", \"@x\"),\n",
" (\"Dew Point\", \"@y\")\n",
" ]\n",
" )\n",
"\n",
"fig = figure(tools = [hover], title = \"Hover over the dots!\")\n",
"\n",
"fig.circle('x', 'y', source = tooltip_source)\n",
"\n",
"show(fig)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Awesome, we created a nice plot that shows us useful information when we hover over it.\n",
"\n",
"Thanks for completing this curriculum and taking your first steps towards being a data scientist!"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.4.3"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment