Skip to content

Instantly share code, notes, and snippets.

@willb
Created January 20, 2017 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willb/bf08714c32e6b8364d3f76ec55ea4935 to your computer and use it in GitHub Desktop.
Save willb/bf08714c32e6b8364d3f76ec55ea4935 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Value-at-risk calculations\n",
"\n",
"The basic idea behind the value-at-risk calculation is that we're going to look at the historical returns of a portfolio of securities and run many simulations to determine the range of returns we can expect from these. We can then predict, over a given time horizon, what our expected loss is at a given probability, e.g., we might say that there is less than a 10% chance that the portfolio will lose more than $1,000,000.\n",
"\n",
"Note that this is a didactic example and consequently makes some simplifying assumptions about the composition of the portfolio (i.e., only long positions in common stocks, so no options, dividends, or short selling) and the behavior of the market (i.e., day-to-day return percentages are normally-distributed and independent). Do not use this code to guide actual investment decisions!\n",
"\n",
"## Basic setup\n",
"\n",
"Here we import the `pyspark` module and set up a `SparkSession`."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"import pyspark\n",
"from pyspark.context import SparkContext\n",
"from pyspark.sql import SparkSession, SQLContext\n",
"\n",
"spark = SparkSession.builder.master(\"local[*]\").getOrCreate()"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": true
},
"source": [
"## Loading the data\n",
"\n",
"We'll start by loading the data (from the WikiEOD dataset of freely-available stock closing prices)."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"df = spark.read.load(\"/data/wikieod.parquet\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Calculating historical returns\n",
"\n",
"We'll use Spark's windowing functions over data frames to determine the percentage change in each security from the previous close to each day's close. Basically, we'll add a column to our data frame that represents the percentage change from the previous day's close (that is, `lag(\"close\", 1)` when partitioned by ticker symbol and ordered by date) and the current day's close (that is, `col(\"close\")`)."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"+------+----------+-----+------------------+\n",
"|ticker| date|close| change|\n",
"+------+----------+-----+------------------+\n",
"| ACFN|1992-02-11|10.12| null|\n",
"| ACFN|1992-02-12|10.75| 6.225296442687744|\n",
"| ACFN|1992-02-13| 10.0|-6.976744186046513|\n",
"| ACFN|1992-02-14|10.12| 1.200000000000001|\n",
"| ACFN|1992-02-18|10.25|1.2845849802371578|\n",
"| ACFN|1992-02-19|10.38|1.2682926829268304|\n",
"| ACFN|1992-02-20| 12.0|15.606936416184958|\n",
"| ACFN|1992-02-21|13.12| 9.333333333333327|\n",
"| ACFN|1992-02-24| 12.0|-8.536585365853655|\n",
"| ACFN|1992-02-25|12.38| 3.166666666666673|\n",
"+------+----------+-----+------------------+\n",
"only showing top 10 rows\n",
"\n"
]
}
],
"source": [
"from pyspark.sql import Window\n",
"from pyspark.sql.functions import lag, col, avg, variance\n",
"\n",
"ddf = df.select(\"ticker\", \"date\", \"close\").withColumn(\"change\", (col(\"close\") / lag(\"close\", 1).over(Window.partitionBy(\"ticker\").orderBy(df[\"date\"])) - 1.0) * 100)\n",
"ddf.show(10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Characterizing expected return distributions\n",
"\n",
"With the range of changes now available, we can calculate our expected returns for each security. Since this is a simple example, we'll assume that returns are normal (in the real world, you'd want to use a distribution with heavier tails or a more sophisticated technique altogether). We can calculate the parameters for each security's distribution as follows:"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"+------+--------------------+------------------+\n",
"|ticker| mean| stddev|\n",
"+------+--------------------+------------------+\n",
"| ACFN| 0.06242424778074286| 5.014939329411184|\n",
"| ALXN| 0.15393095850020602| 4.532013447331393|\n",
"| AWAY| 0.02539756867869776| 2.69393746555018|\n",
"| CCK| 0.04952646560952892| 2.931715455254924|\n",
"| CRS|0.031102171093862575| 2.499932187771903|\n",
"| CYNI|-0.03118042941995...|4.1279080205519225|\n",
"| GIS|0.019429696808146178| 1.721249863186511|\n",
"| HBNC|0.027071069371644215|2.0340790030584697|\n",
"| HWAY| 0.08017011008855986| 3.668783283957359|\n",
"| K|0.026071743393784257|1.8036206811619875|\n",
"+------+--------------------+------------------+\n",
"only showing top 10 rows\n",
"\n"
]
}
],
"source": [
"from pyspark.sql.functions import sqrt\n",
"mv = ddf.groupBy(\"ticker\").agg(avg(\"change\").alias(\"mean\"), sqrt(variance(\"change\")).alias(\"stddev\"))\n",
"mv.show(10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Since there are only about 3,000 ticker symbols in our data set, we can easily collect these in driver memory for use in our simulation:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(0.08187986469765945, 3.8769620645490304)"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dist_map = mv.rdd.map(lambda r: (r[0], (r[1], r[2]))).collectAsMap()\n",
"dist_map[\"RHT\"]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Getting current security prices\n",
"\n",
"We'll now identify the latest price for each security in our dataset:"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"+------+-----+----------+\n",
"|ticker|price| date|\n",
"+------+-----+----------+\n",
"| ACFN| 0.26|2015-07-23|\n",
"| ALXN|129.0|2016-11-04|\n",
"| AWAY|35.77|2015-12-14|\n",
"| CCK|53.04|2016-11-04|\n",
"| CRS|31.75|2016-11-04|\n",
"| CYNI| 5.7|2015-07-31|\n",
"| GIS|60.65|2016-11-04|\n",
"| HBNC|27.59|2016-11-04|\n",
"| HWAY|19.45|2016-11-04|\n",
"| K|73.67|2016-11-04|\n",
"+------+-----+----------+\n",
"only showing top 10 rows\n",
"\n"
]
}
],
"source": [
"from pyspark.sql.functions import first\n",
"priceDF = ddf.orderBy(\"date\", ascending=False).groupBy(\"ticker\").agg(first(\"close\").alias(\"price\"), first(\"date\").alias(\"date\"))\n",
"priceDF.show(10)\n",
"\n",
"prices = priceDF.rdd.map(lambda r: (r[0], r[1])).collectAsMap()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Setting up a simulation\n",
"\n",
"We'll now define our simulation. This involves three steps: \n",
"\n",
"1. We'll start by generating a random portfolio of securities (a map from ticker symbols to values); then, \n",
"2. we'll decide how many simulations to run and generate a random seed for each; and, finally\n",
"3. we'll actually run the simulation for a given number of training days, updating the value of our portfolio with random returns sampled from the distribution of historical returns.\n",
"\n",
"Generating the random portfolio is pretty straightforward:"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"from random import randint, seed\n",
"\n",
"def random_portfolio(symbols):\n",
" result = {}\n",
" for s in symbols:\n",
" result[s] = prices[s] * (randint(1, 1000) * 11)\n",
" return result\n",
"\n",
"def portfolio_value(pf):\n",
" return sum([v for v in pf.values()])\n",
"\n",
"seed(0xdea110c8)\n",
"\n",
"portfolio = random_portfolio(ddf.select(\"ticker\").distinct().sample(True, 0.01, 0xdea110c8).rdd.map(lambda r: r[0]).collect())"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As is generating a collection of random seeds:"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def seeds(count):\n",
" return [randint(0, 1 << 32 - 1) for i in range(count)]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll define a single step of our simulation (and, subsequently, a whole run of the simulation) next:"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def simstep(pf, params, prng):\n",
" def daily_return(sym):\n",
" mean, stddev = params[sym]\n",
" change = (prng.normalvariate(mean, stddev) + 100) / 100.0\n",
" return change\n",
" return dict([(s, daily_return(s) * v) for s, v in pf.items()])\n",
"\n",
"def simulate(seed, pf, params, days):\n",
" from random import Random\n",
" prng = Random()\n",
" prng.seed(seed)\n",
" pf = pf.copy()\n",
" \n",
" for day in range(days):\n",
" pf = simstep(pf, params, prng)\n",
" return pf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we have everything we need to actually run the simulation. For each seed, we'll spawn a Spark job to simulate 5 days of activity on our portfolio and then return the total dollar value of our gain or loss at the end of the period."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"sc = spark.sparkContext\n",
"seed_rdd = sc.parallelize(seeds(10000))\n",
"bparams = sc.broadcast(dist_map)\n",
"bpf = sc.broadcast(portfolio)\n",
"initial_value = portfolio_value(portfolio)\n",
"\n",
"results = seed_rdd.map(lambda s: portfolio_value(simulate(s, bpf.value, bparams.value, 5)) - initial_value)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"collapsed": false,
"scrolled": false
},
"outputs": [],
"source": [
"simulated_results = list(zip(results.collect(), seed_rdd.collect()))\n",
"simulated_values = [v for (v, _) in simulated_results]\n",
"simulated_values.sort()"
]
},
{
"cell_type": "code",
"execution_count": 80,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[]"
]
},
"execution_count": 80,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"321pt\" version=\"1.1\" viewBox=\"0 0 460 321\" width=\"460pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 321.3 \n",
"L 460.8 321.3 \n",
"L 460.8 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"L 453.6 7.2 \n",
"L 7.2 7.2 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 314.1 \n",
"L 7.2 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"line2d_3\"/>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 70.971429 314.1 \n",
"L 70.971429 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_5\"/>\n",
" <g id=\"line2d_6\"/>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 134.742857 314.1 \n",
"L 134.742857 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"line2d_9\"/>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_10\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 198.514286 314.1 \n",
"L 198.514286 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_11\"/>\n",
" <g id=\"line2d_12\"/>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 262.285714 314.1 \n",
"L 262.285714 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"line2d_15\"/>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_16\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 326.057143 314.1 \n",
"L 326.057143 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_17\"/>\n",
" <g id=\"line2d_18\"/>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 389.828571 314.1 \n",
"L 389.828571 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"line2d_21\"/>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_22\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 453.6 314.1 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_23\"/>\n",
" <g id=\"line2d_24\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"line2d_27\"/>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_28\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 275.7375 \n",
"L 453.6 275.7375 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"line2d_30\"/>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 237.375 \n",
"L 453.6 237.375 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"line2d_33\"/>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_34\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 199.0125 \n",
"L 453.6 199.0125 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_35\"/>\n",
" <g id=\"line2d_36\"/>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 160.65 \n",
"L 453.6 160.65 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"line2d_39\"/>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_40\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 122.2875 \n",
"L 453.6 122.2875 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_41\"/>\n",
" <g id=\"line2d_42\"/>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 83.925 \n",
"L 453.6 83.925 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"line2d_45\"/>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_46\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 45.5625 \n",
"L 453.6 45.5625 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_47\"/>\n",
" <g id=\"line2d_48\"/>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 7.2 7.2 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\"/>\n",
" <g id=\"line2d_51\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 65.653773 314.1 \n",
"L 72.672895 314.1 \n",
"L 72.672895 313.716375 \n",
"L 65.653773 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 72.672895 314.1 \n",
"L 79.692017 314.1 \n",
"L 79.692017 313.716375 \n",
"L 72.672895 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 79.692017 314.1 \n",
"L 86.711139 314.1 \n",
"L 86.711139 313.716375 \n",
"L 79.692017 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 86.711139 314.1 \n",
"L 93.730261 314.1 \n",
"L 93.730261 313.33275 \n",
"L 86.711139 313.33275 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 93.730261 314.1 \n",
"L 100.749383 314.1 \n",
"L 100.749383 313.33275 \n",
"L 93.730261 313.33275 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 100.749383 314.1 \n",
"L 107.768505 314.1 \n",
"L 107.768505 308.72925 \n",
"L 100.749383 308.72925 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 107.768505 314.1 \n",
"L 114.787627 314.1 \n",
"L 114.787627 304.509375 \n",
"L 107.768505 304.509375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 114.787627 314.1 \n",
"L 121.806749 314.1 \n",
"L 121.806749 295.686 \n",
"L 114.787627 295.686 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 121.806749 314.1 \n",
"L 128.825872 314.1 \n",
"L 128.825872 291.466125 \n",
"L 121.806749 291.466125 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_12\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 128.825872 314.1 \n",
"L 135.844994 314.1 \n",
"L 135.844994 262.69425 \n",
"L 128.825872 262.69425 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_13\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 135.844994 314.1 \n",
"L 142.864116 314.1 \n",
"L 142.864116 255.405375 \n",
"L 135.844994 255.405375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_14\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 142.864116 314.1 \n",
"L 149.883238 314.1 \n",
"L 149.883238 226.249875 \n",
"L 142.864116 226.249875 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_15\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 149.883238 314.1 \n",
"L 156.90236 314.1 \n",
"L 156.90236 194.792625 \n",
"L 149.883238 194.792625 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_16\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 156.90236 314.1 \n",
"L 163.921482 314.1 \n",
"L 163.921482 172.926 \n",
"L 156.90236 172.926 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_17\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 163.921482 314.1 \n",
"L 170.940604 314.1 \n",
"L 170.940604 123.822 \n",
"L 163.921482 123.822 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_18\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 170.940604 314.1 \n",
"L 177.959726 314.1 \n",
"L 177.959726 99.27 \n",
"L 170.940604 99.27 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_19\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 177.959726 314.1 \n",
"L 184.978848 314.1 \n",
"L 184.978848 62.825625 \n",
"L 177.959726 62.825625 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_20\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 184.978848 314.1 \n",
"L 191.99797 314.1 \n",
"L 191.99797 51.7005 \n",
"L 184.978848 51.7005 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_21\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 191.99797 314.1 \n",
"L 199.017092 314.1 \n",
"L 199.017092 42.877125 \n",
"L 191.99797 42.877125 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_22\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 199.017092 314.1 \n",
"L 206.036214 314.1 \n",
"L 206.036214 44.028 \n",
"L 199.017092 44.028 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_23\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 206.036214 314.1 \n",
"L 213.055336 314.1 \n",
"L 213.055336 39.808125 \n",
"L 206.036214 39.808125 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_24\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 213.055336 314.1 \n",
"L 220.074458 314.1 \n",
"L 220.074458 58.989375 \n",
"L 213.055336 58.989375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_25\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 220.074458 314.1 \n",
"L 227.09358 314.1 \n",
"L 227.09358 89.679375 \n",
"L 220.074458 89.679375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_26\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 227.09358 314.1 \n",
"L 234.112702 314.1 \n",
"L 234.112702 101.955375 \n",
"L 227.09358 101.955375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_27\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 234.112702 314.1 \n",
"L 241.131825 314.1 \n",
"L 241.131825 125.740125 \n",
"L 234.112702 125.740125 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_28\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 241.131825 314.1 \n",
"L 248.150947 314.1 \n",
"L 248.150947 157.964625 \n",
"L 241.131825 157.964625 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_29\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 248.150947 314.1 \n",
"L 255.170069 314.1 \n",
"L 255.170069 191.34 \n",
"L 248.150947 191.34 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_30\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 255.170069 314.1 \n",
"L 262.189191 314.1 \n",
"L 262.189191 219.72825 \n",
"L 255.170069 219.72825 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_31\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 262.189191 314.1 \n",
"L 269.208313 314.1 \n",
"L 269.208313 229.7025 \n",
"L 262.189191 229.7025 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_32\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 269.208313 314.1 \n",
"L 276.227435 314.1 \n",
"L 276.227435 243.513 \n",
"L 269.208313 243.513 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_33\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 276.227435 314.1 \n",
"L 283.246557 314.1 \n",
"L 283.246557 270.750375 \n",
"L 276.227435 270.750375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_34\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 283.246557 314.1 \n",
"L 290.265679 314.1 \n",
"L 290.265679 278.422875 \n",
"L 283.246557 278.422875 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_35\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 290.265679 314.1 \n",
"L 297.284801 314.1 \n",
"L 297.284801 288.0135 \n",
"L 290.265679 288.0135 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_36\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 297.284801 314.1 \n",
"L 304.303923 314.1 \n",
"L 304.303923 294.1515 \n",
"L 297.284801 294.1515 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_37\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 304.303923 314.1 \n",
"L 311.323045 314.1 \n",
"L 311.323045 299.52225 \n",
"L 304.303923 299.52225 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_38\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 311.323045 314.1 \n",
"L 318.342167 314.1 \n",
"L 318.342167 306.043875 \n",
"L 311.323045 306.043875 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_39\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 318.342167 314.1 \n",
"L 325.361289 314.1 \n",
"L 325.361289 304.893 \n",
"L 318.342167 304.893 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_40\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 325.361289 314.1 \n",
"L 332.380411 314.1 \n",
"L 332.380411 307.19475 \n",
"L 325.361289 307.19475 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_41\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 332.380411 314.1 \n",
"L 339.399533 314.1 \n",
"L 339.399533 309.112875 \n",
"L 332.380411 309.112875 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_42\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 339.399533 314.1 \n",
"L 346.418655 314.1 \n",
"L 346.418655 311.79825 \n",
"L 339.399533 311.79825 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_43\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 346.418655 314.1 \n",
"L 353.437777 314.1 \n",
"L 353.437777 312.181875 \n",
"L 346.418655 312.181875 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_44\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 353.437777 314.1 \n",
"L 360.4569 314.1 \n",
"L 360.4569 313.716375 \n",
"L 353.437777 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_45\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 360.4569 314.1 \n",
"L 367.476022 314.1 \n",
"L 367.476022 313.716375 \n",
"L 360.4569 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_46\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 367.476022 314.1 \n",
"L 374.495144 314.1 \n",
"L 374.495144 313.33275 \n",
"L 367.476022 313.33275 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_47\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 374.495144 314.1 \n",
"L 381.514266 314.1 \n",
"L 381.514266 314.1 \n",
"L 374.495144 314.1 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_48\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 381.514266 314.1 \n",
"L 388.533388 314.1 \n",
"L 388.533388 313.716375 \n",
"L 381.514266 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_49\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 388.533388 314.1 \n",
"L 395.55251 314.1 \n",
"L 395.55251 313.33275 \n",
"L 388.533388 313.33275 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_50\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 395.55251 314.1 \n",
"L 402.571632 314.1 \n",
"L 402.571632 313.716375 \n",
"L 395.55251 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_51\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 402.571632 314.1 \n",
"L 409.590754 314.1 \n",
"L 409.590754 314.1 \n",
"L 402.571632 314.1 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_52\">\n",
" <path clip-path=\"url(#pd2ad5eefa7)\" d=\"M 409.590754 314.1 \n",
"L 416.609876 314.1 \n",
"L 416.609876 313.716375 \n",
"L 409.590754 313.716375 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_53\">\n",
" <path d=\"M 7.2 7.2 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_54\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 7.2 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_55\">\n",
" <path d=\"M 453.6 314.1 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_56\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pd2ad5eefa7\">\n",
" <rect height=\"306.9\" width=\"446.4\" x=\"7.2\" y=\"7.2\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa41409e7b8>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%matplotlib inline\n",
"%config InlineBackend.figure_format = 'svg'\n",
"\n",
"import seaborn as sns\n",
"import numpy as np\n",
"sns.set(color_codes=True)\n",
"\n",
"dp = sns.distplot(simulated_values, kde=False)\n",
"dp.set_xticklabels([])\n",
"dp.set_yticklabels([])\n"
]
},
{
"cell_type": "code",
"execution_count": 81,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[]"
]
},
"execution_count": 81,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"321pt\" version=\"1.1\" viewBox=\"0 0 460 321\" width=\"460pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 321.3 \n",
"L 460.8 321.3 \n",
"L 460.8 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"L 453.6 7.2 \n",
"L 7.2 7.2 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 314.1 \n",
"L 7.2 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"line2d_3\"/>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 70.971429 314.1 \n",
"L 70.971429 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_5\"/>\n",
" <g id=\"line2d_6\"/>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 134.742857 314.1 \n",
"L 134.742857 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"line2d_9\"/>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_10\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 198.514286 314.1 \n",
"L 198.514286 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_11\"/>\n",
" <g id=\"line2d_12\"/>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 262.285714 314.1 \n",
"L 262.285714 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"line2d_15\"/>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_16\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 326.057143 314.1 \n",
"L 326.057143 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_17\"/>\n",
" <g id=\"line2d_18\"/>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 389.828571 314.1 \n",
"L 389.828571 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"line2d_21\"/>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_22\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 453.6 314.1 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_23\"/>\n",
" <g id=\"line2d_24\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"line2d_27\"/>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_28\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 270.257143 \n",
"L 453.6 270.257143 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"line2d_30\"/>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 226.414286 \n",
"L 453.6 226.414286 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"line2d_33\"/>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_34\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 182.571429 \n",
"L 453.6 182.571429 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_35\"/>\n",
" <g id=\"line2d_36\"/>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 138.728571 \n",
"L 453.6 138.728571 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"line2d_39\"/>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_40\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 94.885714 \n",
"L 453.6 94.885714 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_41\"/>\n",
" <g id=\"line2d_42\"/>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 51.042857 \n",
"L 453.6 51.042857 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"line2d_45\"/>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_46\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 7.2 7.2 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_47\"/>\n",
" <g id=\"line2d_48\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#p9a55d5ad5a)\" d=\"M 46.737138 314.098009 \n",
"L 50.664303 314.089226 \n",
"L 54.591468 314.059834 \n",
"L 58.518634 313.995219 \n",
"L 62.445799 313.903242 \n",
"L 66.372964 313.821229 \n",
"L 70.30013 313.779487 \n",
"L 74.227295 313.764004 \n",
"L 78.154461 313.724385 \n",
"L 82.081626 313.626024 \n",
"L 86.008791 313.481761 \n",
"L 89.935957 313.263695 \n",
"L 93.863122 312.768175 \n",
"L 97.790288 311.674305 \n",
"L 101.717453 309.805326 \n",
"L 105.644618 307.242954 \n",
"L 109.571784 304.163924 \n",
"L 113.498949 300.681598 \n",
"L 117.426115 296.645224 \n",
"L 121.35328 291.361011 \n",
"L 125.280445 284.018916 \n",
"L 129.207611 274.753847 \n",
"L 133.134776 264.515792 \n",
"L 137.061942 253.55804 \n",
"L 140.989107 241.136509 \n",
"L 144.916272 226.949242 \n",
"L 148.843438 211.715441 \n",
"L 152.770603 195.963036 \n",
"L 156.697769 178.891147 \n",
"L 160.624934 159.357129 \n",
"L 164.552099 138.038745 \n",
"L 168.479265 117.093511 \n",
"L 172.40643 97.692891 \n",
"L 176.333596 79.913985 \n",
"L 180.260761 64.582433 \n",
"L 184.187926 52.921137 \n",
"L 188.115092 44.824093 \n",
"L 192.042257 39.047143 \n",
"L 195.969422 34.887123 \n",
"L 199.896588 32.697801 \n",
"L 203.823753 32.583665 \n",
"L 207.750919 34.37945 \n",
"L 211.678084 39.398823 \n",
"L 215.605249 49.183771 \n",
"L 219.532415 62.234269 \n",
"L 223.45958 75.225759 \n",
"L 227.386746 87.036538 \n",
"L 231.313911 99.020655 \n",
"L 235.241076 112.595213 \n",
"L 239.168242 128.337351 \n",
"L 243.095407 146.12248 \n",
"L 247.022573 164.8188 \n",
"L 250.949738 182.525705 \n",
"L 254.876903 197.747528 \n",
"L 258.804069 210.117997 \n",
"L 262.731234 220.45521 \n",
"L 266.6584 230.22974 \n",
"L 270.585565 240.393663 \n",
"L 274.51273 250.821526 \n",
"L 278.439896 260.623885 \n",
"L 282.367061 268.880304 \n",
"L 286.294227 275.472902 \n",
"L 290.221392 280.939503 \n",
"L 294.148557 285.736112 \n",
"L 298.075723 290.090914 \n",
"L 302.002888 294.105097 \n",
"L 305.930053 297.73984 \n",
"L 309.857219 300.824862 \n",
"L 313.784384 303.117478 \n",
"L 317.71155 304.56238 \n",
"L 321.638715 305.47001 \n",
"L 325.56588 306.239682 \n",
"L 329.493046 307.106422 \n",
"L 333.420211 308.201351 \n",
"L 337.347377 309.470603 \n",
"L 341.274542 310.635073 \n",
"L 345.201707 311.525899 \n",
"L 349.128873 312.229193 \n",
"L 353.056038 312.822509 \n",
"L 356.983204 313.232725 \n",
"L 360.910369 313.401753 \n",
"L 364.837534 313.434445 \n",
"L 368.7647 313.506391 \n",
"L 372.691865 313.665977 \n",
"L 376.619031 313.797934 \n",
"L 380.546196 313.789672 \n",
"L 384.473361 313.668664 \n",
"L 388.400527 313.564264 \n",
"L 392.327692 313.570576 \n",
"L 396.254858 313.672213 \n",
"L 400.182023 313.802394 \n",
"L 404.109188 313.909151 \n",
"L 408.036354 313.956111 \n",
"L 411.963519 313.941272 \n",
"L 415.890685 313.918821 \n",
"L 419.81785 313.943732 \n",
"L 423.745015 314.006653 \n",
"L 427.672181 314.062026 \n",
"L 431.599346 314.089511 \n",
"L 435.526511 314.098034 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 7.2 7.2 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 7.2 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 453.6 314.1 \n",
"L 453.6 7.2 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 7.2 314.1 \n",
"L 453.6 314.1 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p9a55d5ad5a\">\n",
" <rect height=\"306.9\" width=\"446.4\" x=\"7.2\" y=\"7.2\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa40b521a20>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"dp = sns.distplot(simulated_values, hist=False)\n",
"dp.set_xticklabels([])\n",
"dp.set_yticklabels([])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"xvals = [float(i) / len(simulated_values) for i in range(len(simulated_values))]\n",
"ax = sns.tsplot(np.array(simulated_values), np.array(xvals), markevery=0.5)\n",
"ax.get_xaxis().set_ticks([i * 0.1 for i in range(11)])\n",
"_ = ax.get_xaxis().set_ticklabels([\"%d%%\" % (i * 10) for i in range(11)])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Since the market historically trends up, we have a better than even chance of not losing money in our simulation. We can see the 5% value at risk over our time horizon."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"-170488.99104319979"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"simulated_values[int(len(simulated_values) * 0.05)]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Visualizing random walks\n",
"\n",
"Finally, let's look at some example simulation runs to see how the portfolio value changes over time. We'll take the runs with the best and worst returns and also the runs at each decile. To visualize our simulation, we'll need a slightly different `simulate` function:"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def simulate_with_history(seed, pf, params, days):\n",
" from random import Random\n",
" prng = Random()\n",
" prng.seed(seed)\n",
" pf = pf.copy()\n",
" values = [portfolio_value(pf)]\n",
" \n",
" for day in range(days):\n",
" pf = simstep(pf, params, prng)\n",
" values.append(portfolio_value(pf))\n",
" return values"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We'll now repeat the simulation on eleven of our seeds from the earlier run, collecting history for each:"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"simulated_results.sort()\n",
"eleven_results = [simulated_results[int((len(simulated_results) - 1) * i / 10)] for i in range(11)]\n",
"eleven_seeds = sc.parallelize([seed for (_, seed) in eleven_results])\n",
"walks = eleven_seeds.map(lambda s: simulate_with_history(s, bpf.value, bparams.value, 5))\n",
"\n",
"walk_results = walks.collect()"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"342pt\" version=\"1.1\" viewBox=\"0 0 515 342\" width=\"515pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 342.817188 \n",
"L 515.51875 342.817188 \n",
"L 515.51875 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 58.7375 318.939063 \n",
"L 505.1375 318.939063 \n",
"L 505.1375 12.039062 \n",
"L 58.7375 12.039062 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 318.939063 \n",
"L 58.7375 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"line2d_3\"/>\n",
" <g id=\"text_1\">\n",
" <!-- 0 -->\n",
" <defs>\n",
" <path d=\"M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(55.55625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 148.0175 318.939063 \n",
"L 148.0175 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_5\"/>\n",
" <g id=\"line2d_6\"/>\n",
" <g id=\"text_2\">\n",
" <!-- 1 -->\n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(144.83625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 237.2975 318.939063 \n",
"L 237.2975 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"line2d_9\"/>\n",
" <g id=\"text_3\">\n",
" <!-- 2 -->\n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(234.11625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_10\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 326.5775 318.939063 \n",
"L 326.5775 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_11\"/>\n",
" <g id=\"line2d_12\"/>\n",
" <g id=\"text_4\">\n",
" <!-- 3 -->\n",
" <defs>\n",
" <path d=\"M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(323.39625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 415.8575 318.939063 \n",
"L 415.8575 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"line2d_15\"/>\n",
" <g id=\"text_5\">\n",
" <!-- 4 -->\n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(412.67625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_16\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 505.1375 318.939063 \n",
"L 505.1375 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_17\"/>\n",
" <g id=\"line2d_18\"/>\n",
" <g id=\"text_6\">\n",
" <!-- 5 -->\n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(501.95625 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 318.939063 \n",
"L 505.1375 318.939063 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"line2d_21\"/>\n",
" <g id=\"text_7\">\n",
" <!-- 6000000 -->\n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 321.6984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_22\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 275.096205 \n",
"L 505.1375 275.096205 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_23\"/>\n",
" <g id=\"line2d_24\"/>\n",
" <g id=\"text_8\">\n",
" <!-- 6200000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 277.855580357)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 231.253348 \n",
"L 505.1375 231.253348 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"line2d_27\"/>\n",
" <g id=\"text_9\">\n",
" <!-- 6400000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 234.012723214)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_28\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 187.410491 \n",
"L 505.1375 187.410491 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"line2d_30\"/>\n",
" <g id=\"text_10\">\n",
" <!-- 6600000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 190.169866071)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 143.567634 \n",
"L 505.1375 143.567634 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"line2d_33\"/>\n",
" <g id=\"text_11\">\n",
" <!-- 6800000 -->\n",
" <defs>\n",
" <path d=\"M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 146.327008929)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_34\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 99.724777 \n",
"L 505.1375 99.724777 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_35\"/>\n",
" <g id=\"line2d_36\"/>\n",
" <g id=\"text_12\">\n",
" <!-- 7000000 -->\n",
" <defs>\n",
" <path d=\"M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-37\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 102.484151786)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 55.88192 \n",
"L 505.1375 55.88192 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"line2d_39\"/>\n",
" <g id=\"text_13\">\n",
" <!-- 7200000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 58.6412946429)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_40\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 12.039062 \n",
"L 505.1375 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_41\"/>\n",
" <g id=\"line2d_42\"/>\n",
" <g id=\"text_14\">\n",
" <!-- 7400000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"254.4921875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"318.115234375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"381.73828125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_1\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -145.214913 \n",
"L 237.2975 -133.649252 \n",
"L 326.5775 -117.320655 \n",
"L 415.8575 -79.166738 \n",
"L 505.1375 -56.51818 \n",
"L 505.1375 -56.51818 \n",
"L 505.1375 -56.51818 \n",
"L 415.8575 -79.166738 \n",
"L 326.5775 -117.320655 \n",
"L 237.2975 -133.649252 \n",
"L 148.0175 -145.214913 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"m4fc68df752\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#m4fc68df752\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_2\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -133.501686 \n",
"L 237.2975 -121.465215 \n",
"L 326.5775 -127.284926 \n",
"L 415.8575 -118.792871 \n",
"L 505.1375 -119.543334 \n",
"L 505.1375 -119.543334 \n",
"L 505.1375 -119.543334 \n",
"L 415.8575 -118.792871 \n",
"L 326.5775 -127.284926 \n",
"L 237.2975 -121.465215 \n",
"L 148.0175 -133.501686 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"ma52c1cd7b7\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#ma52c1cd7b7\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_3\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -136.818381 \n",
"L 237.2975 -116.129386 \n",
"L 326.5775 -116.789169 \n",
"L 415.8575 -124.985655 \n",
"L 505.1375 -130.356342 \n",
"L 505.1375 -130.356342 \n",
"L 505.1375 -130.356342 \n",
"L 415.8575 -124.985655 \n",
"L 326.5775 -116.789169 \n",
"L 237.2975 -116.129386 \n",
"L 148.0175 -136.818381 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"m46a4adb839\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#m46a4adb839\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_4\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -142.446388 \n",
"L 237.2975 -128.350754 \n",
"L 326.5775 -133.602132 \n",
"L 415.8575 -123.80035 \n",
"L 505.1375 -138.14706 \n",
"L 505.1375 -138.14706 \n",
"L 505.1375 -138.14706 \n",
"L 415.8575 -123.80035 \n",
"L 326.5775 -133.602132 \n",
"L 237.2975 -128.350754 \n",
"L 148.0175 -142.446388 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"m045bd17c79\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#m045bd17c79\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_5\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -135.486214 \n",
"L 237.2975 -118.869123 \n",
"L 326.5775 -139.865751 \n",
"L 415.8575 -143.560284 \n",
"L 505.1375 -145.21081 \n",
"L 505.1375 -145.21081 \n",
"L 505.1375 -145.21081 \n",
"L 415.8575 -143.560284 \n",
"L 326.5775 -139.865751 \n",
"L 237.2975 -118.869123 \n",
"L 148.0175 -135.486214 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"mc51f63ce55\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#mc51f63ce55\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_6\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -150.436728 \n",
"L 237.2975 -132.644456 \n",
"L 326.5775 -144.544798 \n",
"L 415.8575 -147.524154 \n",
"L 505.1375 -151.897848 \n",
"L 505.1375 -151.897848 \n",
"L 505.1375 -151.897848 \n",
"L 415.8575 -147.524154 \n",
"L 326.5775 -144.544798 \n",
"L 237.2975 -132.644456 \n",
"L 148.0175 -150.436728 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"ma05f850170\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#ma05f850170\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_7\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -148.073804 \n",
"L 237.2975 -151.345306 \n",
"L 326.5775 -145.464082 \n",
"L 415.8575 -137.730487 \n",
"L 505.1375 -158.726295 \n",
"L 505.1375 -158.726295 \n",
"L 505.1375 -158.726295 \n",
"L 415.8575 -137.730487 \n",
"L 326.5775 -145.464082 \n",
"L 237.2975 -151.345306 \n",
"L 148.0175 -148.073804 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"mf2635bcf7c\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#mf2635bcf7c\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_8\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -141.500087 \n",
"L 237.2975 -146.525683 \n",
"L 326.5775 -146.225325 \n",
"L 415.8575 -152.055464 \n",
"L 505.1375 -166.450571 \n",
"L 505.1375 -166.450571 \n",
"L 505.1375 -166.450571 \n",
"L 415.8575 -152.055464 \n",
"L 326.5775 -146.225325 \n",
"L 237.2975 -146.525683 \n",
"L 148.0175 -141.500087 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"m16aca3b473\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#m16aca3b473\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_9\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -158.539441 \n",
"L 237.2975 -177.112474 \n",
"L 326.5775 -176.968172 \n",
"L 415.8575 -174.319415 \n",
"L 505.1375 -175.401641 \n",
"L 505.1375 -175.401641 \n",
"L 505.1375 -175.401641 \n",
"L 415.8575 -174.319415 \n",
"L 326.5775 -176.968172 \n",
"L 237.2975 -177.112474 \n",
"L 148.0175 -158.539441 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"ma00e3502a6\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#ma00e3502a6\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_10\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -153.783049 \n",
"L 237.2975 -171.850165 \n",
"L 326.5775 -162.279795 \n",
"L 415.8575 -156.837479 \n",
"L 505.1375 -188.883154 \n",
"L 505.1375 -188.883154 \n",
"L 505.1375 -188.883154 \n",
"L 415.8575 -156.837479 \n",
"L 326.5775 -162.279795 \n",
"L 237.2975 -171.850165 \n",
"L 148.0175 -153.783049 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"m4d15b33d61\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#m4d15b33d61\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"PolyCollection_11\">\n",
" <defs>\n",
" <path d=\"M 58.7375 -147.859783 \n",
"L 58.7375 -147.859783 \n",
"L 148.0175 -176.951658 \n",
"L 237.2975 -185.214997 \n",
"L 326.5775 -229.606337 \n",
"L 415.8575 -295.621863 \n",
"L 505.1375 -297.800501 \n",
"L 505.1375 -297.800501 \n",
"L 505.1375 -297.800501 \n",
"L 415.8575 -295.621863 \n",
"L 326.5775 -229.606337 \n",
"L 237.2975 -185.214997 \n",
"L 148.0175 -176.951658 \n",
"L 58.7375 -147.859783 \n",
"z\n",
"\" id=\"mb5becdf0c0\" style=\"stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\"/>\n",
" </defs>\n",
" <g clip-path=\"url(#pd055fe7f7e)\">\n",
" <use style=\"fill:#4c72b0;fill-opacity:0.2;stroke:#1a1a1a;stroke-opacity:0.2;stroke-width:0.3;\" x=\"0.0\" xlink:href=\"#mb5becdf0c0\" y=\"342.8171875\"/>\n",
" </g>\n",
" </g>\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 197.602274 \n",
"L 237.2975 209.167935 \n",
"L 326.5775 225.496533 \n",
"L 415.8575 263.650449 \n",
"L 505.1375 286.299007 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 209.315501 \n",
"L 237.2975 221.351972 \n",
"L 326.5775 215.532261 \n",
"L 415.8575 224.024316 \n",
"L 505.1375 223.273854 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_45\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 205.998806 \n",
"L 237.2975 226.687801 \n",
"L 326.5775 226.028018 \n",
"L 415.8575 217.831533 \n",
"L 505.1375 212.460846 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_46\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 200.3708 \n",
"L 237.2975 214.466433 \n",
"L 326.5775 209.215055 \n",
"L 415.8575 219.016838 \n",
"L 505.1375 204.670128 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_47\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 207.330974 \n",
"L 237.2975 223.948065 \n",
"L 326.5775 202.951437 \n",
"L 415.8575 199.256903 \n",
"L 505.1375 197.606377 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_48\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 192.380459 \n",
"L 237.2975 210.172732 \n",
"L 326.5775 198.272389 \n",
"L 415.8575 195.293033 \n",
"L 505.1375 190.919339 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 194.743383 \n",
"L 237.2975 191.471881 \n",
"L 326.5775 197.353106 \n",
"L 415.8575 205.086701 \n",
"L 505.1375 184.090892 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 201.317101 \n",
"L 237.2975 196.291504 \n",
"L 326.5775 196.591863 \n",
"L 415.8575 190.761723 \n",
"L 505.1375 176.366617 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_51\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 184.277746 \n",
"L 237.2975 165.704714 \n",
"L 326.5775 165.849016 \n",
"L 415.8575 168.497773 \n",
"L 505.1375 167.415546 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_52\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 189.034139 \n",
"L 237.2975 170.967023 \n",
"L 326.5775 180.537393 \n",
"L 415.8575 185.979708 \n",
"L 505.1375 153.934034 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_53\">\n",
" <path clip-path=\"url(#pd055fe7f7e)\" d=\"M 58.7375 194.957405 \n",
"L 148.0175 165.865529 \n",
"L 237.2975 157.60219 \n",
"L 326.5775 113.210851 \n",
"L 415.8575 47.195325 \n",
"L 505.1375 45.016686 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path d=\"M 58.7375 12.039062 \n",
"L 505.1375 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path d=\"M 58.7375 318.939063 \n",
"L 58.7375 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path d=\"M 505.1375 318.939063 \n",
"L 505.1375 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path d=\"M 58.7375 318.939063 \n",
"L 505.1375 318.939063 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pd055fe7f7e\">\n",
" <rect height=\"306.9\" width=\"446.4\" x=\"58.7375\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa41745ab38>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"for c in walk_results:\n",
" _ = sns.tsplot(c)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Getting more realistic results\n",
"\n",
"Of course, most real-world stock returns aren't normally distributed. To make a more interesting simulation, we can try to find a distribution that better models the returns we've observed.\n",
"\n",
"We'll start by looking at the actual distributions of returns. The Seaborn `distplot` function will plot a histogram of returns and fit a [kernel density estimate](https://en.wikipedia.org/wiki/Kernel_density_estimation) to the observations. To see this in action, we'll try it out first with a single security:"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x7fa4212dbbe0>"
]
},
"execution_count": 44,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"342pt\" version=\"1.1\" viewBox=\"0 0 496 342\" width=\"496pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 342.817187 \n",
"L 496.428125 342.817187 \n",
"L 496.428125 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"L 36.465625 12.039062 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 318.939062 \n",
"L 36.465625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"line2d_3\"/>\n",
" <g id=\"text_1\">\n",
" <!-- −50 -->\n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" <path d=\"M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(25.91328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 86.065625 318.939062 \n",
"L 86.065625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_5\"/>\n",
" <g id=\"line2d_6\"/>\n",
" <g id=\"text_2\">\n",
" <!-- −40 -->\n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(75.51328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 135.665625 318.939062 \n",
"L 135.665625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"line2d_9\"/>\n",
" <g id=\"text_3\">\n",
" <!-- −30 -->\n",
" <defs>\n",
" <path d=\"M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(125.11328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_10\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 185.265625 318.939062 \n",
"L 185.265625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_11\"/>\n",
" <g id=\"line2d_12\"/>\n",
" <g id=\"text_4\">\n",
" <!-- −20 -->\n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(174.71328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 234.865625 318.939062 \n",
"L 234.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"line2d_15\"/>\n",
" <g id=\"text_5\">\n",
" <!-- −10 -->\n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(224.31328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_16\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 284.465625 318.939062 \n",
"L 284.465625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_17\"/>\n",
" <g id=\"line2d_18\"/>\n",
" <g id=\"text_6\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(281.284375 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 334.065625 318.939062 \n",
"L 334.065625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"line2d_21\"/>\n",
" <g id=\"text_7\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(327.703125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_22\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 383.665625 318.939062 \n",
"L 383.665625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_23\"/>\n",
" <g id=\"line2d_24\"/>\n",
" <g id=\"text_8\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(377.303125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 433.265625 318.939062 \n",
"L 433.265625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"line2d_27\"/>\n",
" <g id=\"text_9\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(426.903125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_28\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"line2d_30\"/>\n",
" <g id=\"text_10\">\n",
" <!-- 40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(476.503125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"line2d_33\"/>\n",
" <g id=\"text_11\">\n",
" <!-- 0.00 -->\n",
" <defs>\n",
" <path d=\"M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 321.6984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_34\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 284.839062 \n",
"L 482.865625 284.839062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_35\"/>\n",
" <g id=\"line2d_36\"/>\n",
" <g id=\"text_12\">\n",
" <!-- 0.02 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 287.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 250.739062 \n",
"L 482.865625 250.739062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"line2d_39\"/>\n",
" <g id=\"text_13\">\n",
" <!-- 0.04 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 253.4984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_40\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 216.639062 \n",
"L 482.865625 216.639062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_41\"/>\n",
" <g id=\"line2d_42\"/>\n",
" <g id=\"text_14\">\n",
" <!-- 0.06 -->\n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 219.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 182.539062 \n",
"L 482.865625 182.539062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"line2d_45\"/>\n",
" <g id=\"text_15\">\n",
" <!-- 0.08 -->\n",
" <defs>\n",
" <path d=\"M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 185.2984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_46\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 148.439062 \n",
"L 482.865625 148.439062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_47\"/>\n",
" <g id=\"line2d_48\"/>\n",
" <g id=\"text_16\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 151.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 114.339062 \n",
"L 482.865625 114.339062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\"/>\n",
" <g id=\"line2d_51\"/>\n",
" <g id=\"text_17\">\n",
" <!-- 0.12 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 117.0984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_52\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 80.239062 \n",
"L 482.865625 80.239062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_53\"/>\n",
" <g id=\"line2d_54\"/>\n",
" <g id=\"text_18\">\n",
" <!-- 0.14 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 82.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_55\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 46.139062 \n",
"L 482.865625 46.139062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_56\"/>\n",
" <g id=\"line2d_57\"/>\n",
" <g id=\"text_19\">\n",
" <!-- 0.16 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 48.8984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_58\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 36.465625 12.039062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_59\"/>\n",
" <g id=\"line2d_60\"/>\n",
" <g id=\"text_20\">\n",
" <!-- 0.18 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 53.342752 318.939062 \n",
"L 61.263382 318.939062 \n",
"L 61.263382 318.69214 \n",
"L 53.342752 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 61.263382 318.939062 \n",
"L 69.184012 318.939062 \n",
"L 69.184012 318.939062 \n",
"L 61.263382 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 69.184012 318.939062 \n",
"L 77.104641 318.939062 \n",
"L 77.104641 318.939062 \n",
"L 69.184012 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 77.104641 318.939062 \n",
"L 85.025271 318.939062 \n",
"L 85.025271 318.939062 \n",
"L 77.104641 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 85.025271 318.939062 \n",
"L 92.945901 318.939062 \n",
"L 92.945901 318.939062 \n",
"L 85.025271 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 92.945901 318.939062 \n",
"L 100.866531 318.939062 \n",
"L 100.866531 318.939062 \n",
"L 92.945901 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 100.866531 318.939062 \n",
"L 108.787161 318.939062 \n",
"L 108.787161 318.939062 \n",
"L 100.866531 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 108.787161 318.939062 \n",
"L 116.707791 318.939062 \n",
"L 116.707791 318.939062 \n",
"L 108.787161 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 116.707791 318.939062 \n",
"L 124.628421 318.939062 \n",
"L 124.628421 318.939062 \n",
"L 116.707791 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_12\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 124.628421 318.939062 \n",
"L 132.549051 318.939062 \n",
"L 132.549051 318.939062 \n",
"L 124.628421 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_13\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 132.549051 318.939062 \n",
"L 140.469681 318.939062 \n",
"L 140.469681 318.939062 \n",
"L 132.549051 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_14\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 140.469681 318.939062 \n",
"L 148.390311 318.939062 \n",
"L 148.390311 318.939062 \n",
"L 140.469681 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_15\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 148.390311 318.939062 \n",
"L 156.310941 318.939062 \n",
"L 156.310941 318.939062 \n",
"L 148.390311 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_16\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 156.310941 318.939062 \n",
"L 164.231571 318.939062 \n",
"L 164.231571 318.939062 \n",
"L 156.310941 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_17\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 164.231571 318.939062 \n",
"L 172.152201 318.939062 \n",
"L 172.152201 318.198295 \n",
"L 164.231571 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_18\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 172.152201 318.939062 \n",
"L 180.072831 318.939062 \n",
"L 180.072831 318.939062 \n",
"L 172.152201 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_19\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 180.072831 318.939062 \n",
"L 187.993461 318.939062 \n",
"L 187.993461 318.939062 \n",
"L 180.072831 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_20\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 187.993461 318.939062 \n",
"L 195.914091 318.939062 \n",
"L 195.914091 318.445218 \n",
"L 187.993461 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_21\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 195.914091 318.939062 \n",
"L 203.834721 318.939062 \n",
"L 203.834721 318.939062 \n",
"L 195.914091 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_22\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 203.834721 318.939062 \n",
"L 211.755351 318.939062 \n",
"L 211.755351 318.198295 \n",
"L 203.834721 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_23\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 211.755351 318.939062 \n",
"L 219.67598 318.939062 \n",
"L 219.67598 316.963683 \n",
"L 211.755351 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_24\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 219.67598 318.939062 \n",
"L 227.59661 318.939062 \n",
"L 227.59661 315.72907 \n",
"L 219.67598 315.72907 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_25\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 227.59661 318.939062 \n",
"L 235.51724 318.939062 \n",
"L 235.51724 315.975993 \n",
"L 227.59661 315.975993 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_26\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 235.51724 318.939062 \n",
"L 243.43787 318.939062 \n",
"L 243.43787 312.025233 \n",
"L 235.51724 312.025233 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_27\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 243.43787 318.939062 \n",
"L 251.3585 318.939062 \n",
"L 251.3585 303.136023 \n",
"L 243.43787 303.136023 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_28\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 251.3585 318.939062 \n",
"L 259.27913 318.939062 \n",
"L 259.27913 298.197573 \n",
"L 251.3585 298.197573 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_29\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 259.27913 318.939062 \n",
"L 267.19976 318.939062 \n",
"L 267.19976 262.640734 \n",
"L 259.27913 262.640734 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_30\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 267.19976 318.939062 \n",
"L 275.12039 318.939062 \n",
"L 275.12039 207.577019 \n",
"L 267.19976 207.577019 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_31\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 275.12039 318.939062 \n",
"L 283.04102 318.939062 \n",
"L 283.04102 61.398903 \n",
"L 275.12039 61.398903 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_32\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 283.04102 318.939062 \n",
"L 290.96165 318.939062 \n",
"L 290.96165 16.952855 \n",
"L 283.04102 16.952855 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_33\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 290.96165 318.939062 \n",
"L 298.88228 318.939062 \n",
"L 298.88228 169.550955 \n",
"L 290.96165 169.550955 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_34\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 298.88228 318.939062 \n",
"L 306.80291 318.939062 \n",
"L 306.80291 254.24537 \n",
"L 298.88228 254.24537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_35\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 306.80291 318.939062 \n",
"L 314.72354 318.939062 \n",
"L 314.72354 291.777588 \n",
"L 306.80291 291.777588 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_36\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 314.72354 318.939062 \n",
"L 322.64417 318.939062 \n",
"L 322.64417 305.605248 \n",
"L 314.72354 305.605248 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_37\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 322.64417 318.939062 \n",
"L 330.5648 318.939062 \n",
"L 330.5648 310.049853 \n",
"L 322.64417 310.049853 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_38\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 330.5648 318.939062 \n",
"L 338.48543 318.939062 \n",
"L 338.48543 312.025233 \n",
"L 330.5648 312.025233 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_39\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 338.48543 318.939062 \n",
"L 346.40606 318.939062 \n",
"L 346.40606 314.000613 \n",
"L 338.48543 314.000613 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_40\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 346.40606 318.939062 \n",
"L 354.32669 318.939062 \n",
"L 354.32669 317.70445 \n",
"L 346.40606 317.70445 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_41\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 354.32669 318.939062 \n",
"L 362.247319 318.939062 \n",
"L 362.247319 317.210605 \n",
"L 354.32669 317.210605 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_42\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 362.247319 318.939062 \n",
"L 370.167949 318.939062 \n",
"L 370.167949 316.963683 \n",
"L 362.247319 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_43\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 370.167949 318.939062 \n",
"L 378.088579 318.939062 \n",
"L 378.088579 316.963683 \n",
"L 370.167949 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_44\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 378.088579 318.939062 \n",
"L 386.009209 318.939062 \n",
"L 386.009209 317.951373 \n",
"L 378.088579 317.951373 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_45\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 386.009209 318.939062 \n",
"L 393.929839 318.939062 \n",
"L 393.929839 318.198295 \n",
"L 386.009209 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_46\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 393.929839 318.939062 \n",
"L 401.850469 318.939062 \n",
"L 401.850469 318.198295 \n",
"L 393.929839 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_47\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 401.850469 318.939062 \n",
"L 409.771099 318.939062 \n",
"L 409.771099 318.445218 \n",
"L 401.850469 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_48\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 409.771099 318.939062 \n",
"L 417.691729 318.939062 \n",
"L 417.691729 318.445218 \n",
"L 409.771099 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_49\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 417.691729 318.939062 \n",
"L 425.612359 318.939062 \n",
"L 425.612359 318.69214 \n",
"L 417.691729 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_50\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 425.612359 318.939062 \n",
"L 433.532989 318.939062 \n",
"L 433.532989 318.445218 \n",
"L 425.612359 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_51\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 433.532989 318.939062 \n",
"L 441.453619 318.939062 \n",
"L 441.453619 318.939062 \n",
"L 433.532989 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_52\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 441.453619 318.939062 \n",
"L 449.374249 318.939062 \n",
"L 449.374249 318.69214 \n",
"L 441.453619 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_61\">\n",
" <path clip-path=\"url(#p6ea398eec3)\" d=\"M 42.53172 318.936655 \n",
"L 46.750443 318.898425 \n",
"L 50.969166 318.764781 \n",
"L 55.187889 318.749165 \n",
"L 59.406612 318.886492 \n",
"L 63.625335 318.935365 \n",
"L 67.844057 318.938996 \n",
"L 72.06278 318.939062 \n",
"L 76.281503 318.939062 \n",
"L 80.500226 318.939062 \n",
"L 84.718949 318.939062 \n",
"L 88.937672 318.939062 \n",
"L 93.156394 318.939062 \n",
"L 97.375117 318.939062 \n",
"L 101.59384 318.939062 \n",
"L 105.812563 318.939062 \n",
"L 110.031286 318.939062 \n",
"L 114.250008 318.939062 \n",
"L 118.468731 318.939062 \n",
"L 122.687454 318.939062 \n",
"L 126.906177 318.939062 \n",
"L 131.1249 318.939062 \n",
"L 135.343623 318.939062 \n",
"L 139.562345 318.939062 \n",
"L 143.781068 318.939062 \n",
"L 147.999791 318.939061 \n",
"L 152.218514 318.938813 \n",
"L 156.437237 318.92942 \n",
"L 160.65596 318.837149 \n",
"L 164.874682 318.591501 \n",
"L 169.093405 318.430567 \n",
"L 173.312128 318.601627 \n",
"L 177.530851 318.859257 \n",
"L 181.749574 318.93196 \n",
"L 185.968296 318.903849 \n",
"L 190.187019 318.713659 \n",
"L 194.405742 318.520448 \n",
"L 198.624465 318.625026 \n",
"L 202.843188 318.508119 \n",
"L 207.061911 318.303024 \n",
"L 211.280633 317.923312 \n",
"L 215.499356 317.311051 \n",
"L 219.718079 316.816315 \n",
"L 223.936802 315.766985 \n",
"L 228.155525 315.112388 \n",
"L 232.374248 314.682809 \n",
"L 236.59297 313.211485 \n",
"L 240.811693 311.3909 \n",
"L 245.030416 307.462728 \n",
"L 249.249139 303.154828 \n",
"L 253.467862 298.724732 \n",
"L 257.686584 286.172723 \n",
"L 261.905307 267.209916 \n",
"L 266.12403 245.691181 \n",
"L 270.342753 209.548864 \n",
"L 274.561476 148.286905 \n",
"L 278.780199 72.9076 \n",
"L 282.998921 22.555592 \n",
"L 287.217644 35.710913 \n",
"L 291.436367 101.834722 \n",
"L 295.65509 175.422133 \n",
"L 299.873813 228.109143 \n",
"L 304.092536 260.409767 \n",
"L 308.311258 281.346671 \n",
"L 312.529981 294.076416 \n",
"L 316.748704 302.180819 \n",
"L 320.967427 307.902658 \n",
"L 325.18615 309.721306 \n",
"L 329.404873 309.879456 \n",
"L 333.623595 311.597308 \n",
"L 337.842318 313.42327 \n",
"L 342.061041 314.26572 \n",
"L 346.279764 315.685458 \n",
"L 350.498487 317.150187 \n",
"L 354.717209 317.530468 \n",
"L 358.935932 317.328032 \n",
"L 363.154655 317.117079 \n",
"L 367.373378 316.658152 \n",
"L 371.592101 316.541601 \n",
"L 375.810824 317.335915 \n",
"L 380.029546 317.898834 \n",
"L 384.248269 318.17173 \n",
"L 388.466992 318.098452 \n",
"L 392.685715 318.017913 \n",
"L 396.904438 318.200295 \n",
"L 401.123161 318.662336 \n",
"L 405.341883 318.637106 \n",
"L 409.560606 318.427379 \n",
"L 413.779329 318.370931 \n",
"L 417.998052 318.330736 \n",
"L 422.216775 318.574732 \n",
"L 426.435497 318.636018 \n",
"L 430.65422 318.620395 \n",
"L 434.872943 318.742472 \n",
"L 439.091666 318.892379 \n",
"L 443.310389 318.883922 \n",
"L 447.529112 318.749125 \n",
"L 451.747834 318.764781 \n",
"L 455.966557 318.898425 \n",
"L 460.18528 318.936655 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_53\">\n",
" <path d=\"M 36.465625 12.039062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_54\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 36.465625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_55\">\n",
" <path d=\"M 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_56\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p6ea398eec3\">\n",
" <rect height=\"306.9\" width=\"446.4\" x=\"36.465625\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa417785128>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"rdist = ddf.filter(ddf[\"ticker\"] == \"RHT\").select(\"change\").rdd.map(lambda r: r[\"change\"]).filter(lambda c: c is not None).collect()\n",
"sns.distplot(rdist)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As we can see, the distribution for this particular security doesn't look all that normal. While there are various [statistical techniques to quantify](https://en.wikipedia.org/wiki/Goodness_of_fit) just how bad of a fit the normal distribution is for our observations (see in particular [this one](https://en.wikipedia.org/wiki/Kolmogorov%E2%80%93Smirnov_test)), `distplot` will let us visually compare an empirically-observed distribution to an ideal distribution in order to see how well the latter fits the former. We can do this to see just how far this distribution is from normal.\n",
"\n",
"We'll first import a library of models and then plot the expected return distribution if returns were normal:"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"<matplotlib.axes._subplots.AxesSubplot at 0x7fa41740f080>"
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"342pt\" version=\"1.1\" viewBox=\"0 0 496 342\" width=\"496pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 342.817187 \n",
"L 496.428125 342.817187 \n",
"L 496.428125 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"L 36.465625 12.039062 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 318.939062 \n",
"L 36.465625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"line2d_3\"/>\n",
" <g id=\"text_1\">\n",
" <!-- −50 -->\n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" <path d=\"M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(25.91328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_4\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 86.065625 318.939062 \n",
"L 86.065625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_5\"/>\n",
" <g id=\"line2d_6\"/>\n",
" <g id=\"text_2\">\n",
" <!-- −40 -->\n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(75.51328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 135.665625 318.939062 \n",
"L 135.665625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"line2d_9\"/>\n",
" <g id=\"text_3\">\n",
" <!-- −30 -->\n",
" <defs>\n",
" <path d=\"M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(125.11328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_10\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 185.265625 318.939062 \n",
"L 185.265625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_11\"/>\n",
" <g id=\"line2d_12\"/>\n",
" <g id=\"text_4\">\n",
" <!-- −20 -->\n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(174.71328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 234.865625 318.939062 \n",
"L 234.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"line2d_15\"/>\n",
" <g id=\"text_5\">\n",
" <!-- −10 -->\n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(224.31328125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_16\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 284.465625 318.939062 \n",
"L 284.465625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_17\"/>\n",
" <g id=\"line2d_18\"/>\n",
" <g id=\"text_6\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(281.284375 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 334.065625 318.939062 \n",
"L 334.065625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"line2d_21\"/>\n",
" <g id=\"text_7\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(327.703125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_22\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 383.665625 318.939062 \n",
"L 383.665625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_23\"/>\n",
" <g id=\"line2d_24\"/>\n",
" <g id=\"text_8\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(377.303125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 433.265625 318.939062 \n",
"L 433.265625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"line2d_27\"/>\n",
" <g id=\"text_9\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(426.903125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_28\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_29\"/>\n",
" <g id=\"line2d_30\"/>\n",
" <g id=\"text_10\">\n",
" <!-- 40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(476.503125 333.5375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"line2d_33\"/>\n",
" <g id=\"text_11\">\n",
" <!-- 0.00 -->\n",
" <defs>\n",
" <path d=\"M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 321.6984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_34\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 284.839062 \n",
"L 482.865625 284.839062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_35\"/>\n",
" <g id=\"line2d_36\"/>\n",
" <g id=\"text_12\">\n",
" <!-- 0.02 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 287.5984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 250.739062 \n",
"L 482.865625 250.739062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"line2d_39\"/>\n",
" <g id=\"text_13\">\n",
" <!-- 0.04 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 253.4984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_40\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 216.639062 \n",
"L 482.865625 216.639062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_41\"/>\n",
" <g id=\"line2d_42\"/>\n",
" <g id=\"text_14\">\n",
" <!-- 0.06 -->\n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 219.3984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 182.539062 \n",
"L 482.865625 182.539062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"line2d_45\"/>\n",
" <g id=\"text_15\">\n",
" <!-- 0.08 -->\n",
" <defs>\n",
" <path d=\"M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 185.2984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_46\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 148.439062 \n",
"L 482.865625 148.439062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_47\"/>\n",
" <g id=\"line2d_48\"/>\n",
" <g id=\"text_16\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 151.1984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 114.339062 \n",
"L 482.865625 114.339062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\"/>\n",
" <g id=\"line2d_51\"/>\n",
" <g id=\"text_17\">\n",
" <!-- 0.12 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 117.0984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_52\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 80.239062 \n",
"L 482.865625 80.239062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_53\"/>\n",
" <g id=\"line2d_54\"/>\n",
" <g id=\"text_18\">\n",
" <!-- 0.14 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 82.9984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_55\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 46.139062 \n",
"L 482.865625 46.139062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_56\"/>\n",
" <g id=\"line2d_57\"/>\n",
" <g id=\"text_19\">\n",
" <!-- 0.16 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 48.8984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_58\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 36.465625 12.039062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_59\"/>\n",
" <g id=\"line2d_60\"/>\n",
" <g id=\"text_20\">\n",
" <!-- 0.18 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 14.7984375)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 53.342752 318.939062 \n",
"L 61.263382 318.939062 \n",
"L 61.263382 318.69214 \n",
"L 53.342752 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 61.263382 318.939062 \n",
"L 69.184012 318.939062 \n",
"L 69.184012 318.939062 \n",
"L 61.263382 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 69.184012 318.939062 \n",
"L 77.104641 318.939062 \n",
"L 77.104641 318.939062 \n",
"L 69.184012 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 77.104641 318.939062 \n",
"L 85.025271 318.939062 \n",
"L 85.025271 318.939062 \n",
"L 77.104641 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 85.025271 318.939062 \n",
"L 92.945901 318.939062 \n",
"L 92.945901 318.939062 \n",
"L 85.025271 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 92.945901 318.939062 \n",
"L 100.866531 318.939062 \n",
"L 100.866531 318.939062 \n",
"L 92.945901 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 100.866531 318.939062 \n",
"L 108.787161 318.939062 \n",
"L 108.787161 318.939062 \n",
"L 100.866531 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 108.787161 318.939062 \n",
"L 116.707791 318.939062 \n",
"L 116.707791 318.939062 \n",
"L 108.787161 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 116.707791 318.939062 \n",
"L 124.628421 318.939062 \n",
"L 124.628421 318.939062 \n",
"L 116.707791 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_12\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 124.628421 318.939062 \n",
"L 132.549051 318.939062 \n",
"L 132.549051 318.939062 \n",
"L 124.628421 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_13\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 132.549051 318.939062 \n",
"L 140.469681 318.939062 \n",
"L 140.469681 318.939062 \n",
"L 132.549051 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_14\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 140.469681 318.939062 \n",
"L 148.390311 318.939062 \n",
"L 148.390311 318.939062 \n",
"L 140.469681 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_15\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 148.390311 318.939062 \n",
"L 156.310941 318.939062 \n",
"L 156.310941 318.939062 \n",
"L 148.390311 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_16\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 156.310941 318.939062 \n",
"L 164.231571 318.939062 \n",
"L 164.231571 318.939062 \n",
"L 156.310941 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_17\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 164.231571 318.939062 \n",
"L 172.152201 318.939062 \n",
"L 172.152201 318.198295 \n",
"L 164.231571 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_18\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 172.152201 318.939062 \n",
"L 180.072831 318.939062 \n",
"L 180.072831 318.939062 \n",
"L 172.152201 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_19\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 180.072831 318.939062 \n",
"L 187.993461 318.939062 \n",
"L 187.993461 318.939062 \n",
"L 180.072831 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_20\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 187.993461 318.939062 \n",
"L 195.914091 318.939062 \n",
"L 195.914091 318.445218 \n",
"L 187.993461 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_21\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 195.914091 318.939062 \n",
"L 203.834721 318.939062 \n",
"L 203.834721 318.939062 \n",
"L 195.914091 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_22\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 203.834721 318.939062 \n",
"L 211.755351 318.939062 \n",
"L 211.755351 318.198295 \n",
"L 203.834721 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_23\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 211.755351 318.939062 \n",
"L 219.67598 318.939062 \n",
"L 219.67598 316.963683 \n",
"L 211.755351 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_24\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 219.67598 318.939062 \n",
"L 227.59661 318.939062 \n",
"L 227.59661 315.72907 \n",
"L 219.67598 315.72907 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_25\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 227.59661 318.939062 \n",
"L 235.51724 318.939062 \n",
"L 235.51724 315.975993 \n",
"L 227.59661 315.975993 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_26\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 235.51724 318.939062 \n",
"L 243.43787 318.939062 \n",
"L 243.43787 312.025233 \n",
"L 235.51724 312.025233 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_27\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 243.43787 318.939062 \n",
"L 251.3585 318.939062 \n",
"L 251.3585 303.136023 \n",
"L 243.43787 303.136023 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_28\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 251.3585 318.939062 \n",
"L 259.27913 318.939062 \n",
"L 259.27913 298.197573 \n",
"L 251.3585 298.197573 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_29\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 259.27913 318.939062 \n",
"L 267.19976 318.939062 \n",
"L 267.19976 262.640734 \n",
"L 259.27913 262.640734 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_30\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 267.19976 318.939062 \n",
"L 275.12039 318.939062 \n",
"L 275.12039 207.577019 \n",
"L 267.19976 207.577019 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_31\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 275.12039 318.939062 \n",
"L 283.04102 318.939062 \n",
"L 283.04102 61.398903 \n",
"L 275.12039 61.398903 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_32\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 283.04102 318.939062 \n",
"L 290.96165 318.939062 \n",
"L 290.96165 16.952855 \n",
"L 283.04102 16.952855 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_33\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 290.96165 318.939062 \n",
"L 298.88228 318.939062 \n",
"L 298.88228 169.550955 \n",
"L 290.96165 169.550955 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_34\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 298.88228 318.939062 \n",
"L 306.80291 318.939062 \n",
"L 306.80291 254.24537 \n",
"L 298.88228 254.24537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_35\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 306.80291 318.939062 \n",
"L 314.72354 318.939062 \n",
"L 314.72354 291.777588 \n",
"L 306.80291 291.777588 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_36\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 314.72354 318.939062 \n",
"L 322.64417 318.939062 \n",
"L 322.64417 305.605248 \n",
"L 314.72354 305.605248 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_37\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 322.64417 318.939062 \n",
"L 330.5648 318.939062 \n",
"L 330.5648 310.049853 \n",
"L 322.64417 310.049853 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_38\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 330.5648 318.939062 \n",
"L 338.48543 318.939062 \n",
"L 338.48543 312.025233 \n",
"L 330.5648 312.025233 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_39\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 338.48543 318.939062 \n",
"L 346.40606 318.939062 \n",
"L 346.40606 314.000613 \n",
"L 338.48543 314.000613 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_40\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 346.40606 318.939062 \n",
"L 354.32669 318.939062 \n",
"L 354.32669 317.70445 \n",
"L 346.40606 317.70445 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_41\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 354.32669 318.939062 \n",
"L 362.247319 318.939062 \n",
"L 362.247319 317.210605 \n",
"L 354.32669 317.210605 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_42\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 362.247319 318.939062 \n",
"L 370.167949 318.939062 \n",
"L 370.167949 316.963683 \n",
"L 362.247319 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_43\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 370.167949 318.939062 \n",
"L 378.088579 318.939062 \n",
"L 378.088579 316.963683 \n",
"L 370.167949 316.963683 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_44\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 378.088579 318.939062 \n",
"L 386.009209 318.939062 \n",
"L 386.009209 317.951373 \n",
"L 378.088579 317.951373 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_45\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 386.009209 318.939062 \n",
"L 393.929839 318.939062 \n",
"L 393.929839 318.198295 \n",
"L 386.009209 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_46\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 393.929839 318.939062 \n",
"L 401.850469 318.939062 \n",
"L 401.850469 318.198295 \n",
"L 393.929839 318.198295 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_47\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 401.850469 318.939062 \n",
"L 409.771099 318.939062 \n",
"L 409.771099 318.445218 \n",
"L 401.850469 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_48\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 409.771099 318.939062 \n",
"L 417.691729 318.939062 \n",
"L 417.691729 318.445218 \n",
"L 409.771099 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_49\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 417.691729 318.939062 \n",
"L 425.612359 318.939062 \n",
"L 425.612359 318.69214 \n",
"L 417.691729 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_50\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 425.612359 318.939062 \n",
"L 433.532989 318.939062 \n",
"L 433.532989 318.445218 \n",
"L 425.612359 318.445218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_51\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 433.532989 318.939062 \n",
"L 441.453619 318.939062 \n",
"L 441.453619 318.939062 \n",
"L 433.532989 318.939062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_52\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 441.453619 318.939062 \n",
"L 449.374249 318.939062 \n",
"L 449.374249 318.69214 \n",
"L 441.453619 318.69214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_61\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 42.53172 318.936655 \n",
"L 46.750443 318.898425 \n",
"L 50.969166 318.764781 \n",
"L 55.187889 318.749165 \n",
"L 59.406612 318.886492 \n",
"L 63.625335 318.935365 \n",
"L 67.844057 318.938996 \n",
"L 72.06278 318.939062 \n",
"L 76.281503 318.939062 \n",
"L 80.500226 318.939062 \n",
"L 84.718949 318.939062 \n",
"L 88.937672 318.939062 \n",
"L 93.156394 318.939062 \n",
"L 97.375117 318.939062 \n",
"L 101.59384 318.939062 \n",
"L 105.812563 318.939062 \n",
"L 110.031286 318.939062 \n",
"L 114.250008 318.939062 \n",
"L 118.468731 318.939062 \n",
"L 122.687454 318.939062 \n",
"L 126.906177 318.939062 \n",
"L 131.1249 318.939062 \n",
"L 135.343623 318.939062 \n",
"L 139.562345 318.939062 \n",
"L 143.781068 318.939062 \n",
"L 147.999791 318.939061 \n",
"L 152.218514 318.938813 \n",
"L 156.437237 318.92942 \n",
"L 160.65596 318.837149 \n",
"L 164.874682 318.591501 \n",
"L 169.093405 318.430567 \n",
"L 173.312128 318.601627 \n",
"L 177.530851 318.859257 \n",
"L 181.749574 318.93196 \n",
"L 185.968296 318.903849 \n",
"L 190.187019 318.713659 \n",
"L 194.405742 318.520448 \n",
"L 198.624465 318.625026 \n",
"L 202.843188 318.508119 \n",
"L 207.061911 318.303024 \n",
"L 211.280633 317.923312 \n",
"L 215.499356 317.311051 \n",
"L 219.718079 316.816315 \n",
"L 223.936802 315.766985 \n",
"L 228.155525 315.112388 \n",
"L 232.374248 314.682809 \n",
"L 236.59297 313.211485 \n",
"L 240.811693 311.3909 \n",
"L 245.030416 307.462728 \n",
"L 249.249139 303.154828 \n",
"L 253.467862 298.724732 \n",
"L 257.686584 286.172723 \n",
"L 261.905307 267.209916 \n",
"L 266.12403 245.691181 \n",
"L 270.342753 209.548864 \n",
"L 274.561476 148.286905 \n",
"L 278.780199 72.9076 \n",
"L 282.998921 22.555592 \n",
"L 287.217644 35.710913 \n",
"L 291.436367 101.834722 \n",
"L 295.65509 175.422133 \n",
"L 299.873813 228.109143 \n",
"L 304.092536 260.409767 \n",
"L 308.311258 281.346671 \n",
"L 312.529981 294.076416 \n",
"L 316.748704 302.180819 \n",
"L 320.967427 307.902658 \n",
"L 325.18615 309.721306 \n",
"L 329.404873 309.879456 \n",
"L 333.623595 311.597308 \n",
"L 337.842318 313.42327 \n",
"L 342.061041 314.26572 \n",
"L 346.279764 315.685458 \n",
"L 350.498487 317.150187 \n",
"L 354.717209 317.530468 \n",
"L 358.935932 317.328032 \n",
"L 363.154655 317.117079 \n",
"L 367.373378 316.658152 \n",
"L 371.592101 316.541601 \n",
"L 375.810824 317.335915 \n",
"L 380.029546 317.898834 \n",
"L 384.248269 318.17173 \n",
"L 388.466992 318.098452 \n",
"L 392.685715 318.017913 \n",
"L 396.904438 318.200295 \n",
"L 401.123161 318.662336 \n",
"L 405.341883 318.637106 \n",
"L 409.560606 318.427379 \n",
"L 413.779329 318.370931 \n",
"L 417.998052 318.330736 \n",
"L 422.216775 318.574732 \n",
"L 426.435497 318.636018 \n",
"L 430.65422 318.620395 \n",
"L 434.872943 318.742472 \n",
"L 439.091666 318.892379 \n",
"L 443.310389 318.883922 \n",
"L 447.529112 318.749125 \n",
"L 451.747834 318.764781 \n",
"L 455.966557 318.898425 \n",
"L 460.18528 318.936655 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_62\">\n",
" <path clip-path=\"url(#p991e0b695d)\" d=\"M 42.53047 318.939062 \n",
"L 210.432404 318.841457 \n",
"L 216.728726 318.610378 \n",
"L 220.926275 318.24333 \n",
"L 225.123823 317.534931 \n",
"L 227.222597 316.979637 \n",
"L 229.321371 316.237126 \n",
"L 231.420146 315.257375 \n",
"L 233.51892 313.981773 \n",
"L 235.617694 312.343267 \n",
"L 237.716468 310.267137 \n",
"L 239.815242 307.672554 \n",
"L 241.914016 304.475055 \n",
"L 244.012791 300.590019 \n",
"L 246.111565 295.937163 \n",
"L 248.210339 290.445978 \n",
"L 250.309113 284.061935 \n",
"L 252.407887 276.753151 \n",
"L 254.506662 268.517111 \n",
"L 256.605436 259.386927 \n",
"L 258.70421 249.436548 \n",
"L 262.901758 227.594368 \n",
"L 269.198081 193.07589 \n",
"L 271.296855 182.180427 \n",
"L 273.395629 172.101784 \n",
"L 275.494403 163.147699 \n",
"L 277.593177 155.60532 \n",
"L 279.691952 149.725982 \n",
"L 281.790726 145.711324 \n",
"L 283.8895 143.701814 \n",
"L 285.988274 143.768592 \n",
"L 288.087048 145.909284 \n",
"L 290.185822 150.048146 \n",
"L 292.284597 156.040513 \n",
"L 294.383371 163.681192 \n",
"L 296.482145 172.716121 \n",
"L 298.580919 182.85637 \n",
"L 302.778467 205.214546 \n",
"L 309.07479 239.483915 \n",
"L 311.173564 250.095661 \n",
"L 313.272338 259.996626 \n",
"L 315.371113 269.071363 \n",
"L 317.469887 277.248662 \n",
"L 319.568661 284.497862 \n",
"L 321.667435 290.823551 \n",
"L 323.766209 296.259265 \n",
"L 325.864983 300.860752 \n",
"L 327.963758 304.699325 \n",
"L 330.062532 307.855698 \n",
"L 332.161306 310.414605 \n",
"L 334.26008 312.46037 \n",
"L 336.358854 314.073496 \n",
"L 338.457628 315.328249 \n",
"L 340.556403 316.291159 \n",
"L 342.655177 317.020285 \n",
"L 344.753951 317.565107 \n",
"L 348.951499 318.259319 \n",
"L 353.149048 318.618421 \n",
"L 359.44537 318.844063 \n",
"L 372.038015 318.933017 \n",
"L 460.18653 318.939062 \n",
"L 460.18653 318.939062 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_53\">\n",
" <path d=\"M 36.465625 12.039062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_54\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 36.465625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_55\">\n",
" <path d=\"M 482.865625 318.939062 \n",
"L 482.865625 12.039062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_56\">\n",
" <path d=\"M 36.465625 318.939062 \n",
"L 482.865625 318.939062 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"p991e0b695d\">\n",
" <rect height=\"306.9\" width=\"446.4\" x=\"36.465625\" y=\"12.0390625\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa417446630>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"from scipy import stats\n",
"sns.distplot(rdist, fit=stats.norm)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"As we can see, the normal distribution (black line) is not a great fit for the kernel density estimate of our observations (blue line). While we'd want a more rigorous way to choose models in a production application, looking at the returns from multiple securities is a good way to continue our exploration of these data. We'll do that now.\n",
"\n",
"First, we'll choose a small number of securities at random:"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"symbols = ddf.select(\"ticker\").distinct().sample(True, 0.001).rdd.map(lambda l: l[\"ticker\"]).collect()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now we'll use Spark to generate a data frame with all of the returns for each symbol in `symbols`:"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"dfs = ddf.filter(ddf[\"ticker\"].isin(symbols)).select(\"ticker\", \"change\").dropna()\n",
"sampled_returns = dfs.toPandas()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's unpack what's happening here:\n",
"\n",
"1. We start with `ddf`, our `DataFrame` of stock returns.\n",
"2. We're going to filter out any row that isn't for a symbol we care about. In SQL, this would look like `SELECT ticker, change WHERE ticker IN ...`; in the Spark data frame DSL we use `isin`, like this: `ddf[\"ticker\"].isin(symbols)`.\n",
"3. The return for the first day we have data for each ticker symbol will be null (by definition), and we don't want to have to deal with those in our plot functions. The `dropna()` function is a convenient way to do this.\n",
"4. Finally, we're going to collect the Spark data frame in memory and convert it to a Pandas data frame, which will make it easier to plot."
]
},
{
"cell_type": "code",
"execution_count": 72,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"2365pt\" version=\"1.1\" viewBox=\"0 0 636 2365\" width=\"636pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 2365.162344 \n",
"L 636.333125 2365.162344 \n",
"L 636.333125 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 42.828125 191.056463 \n",
"L 616.408125 191.056463 \n",
"L 616.408125 20.558281 \n",
"L 42.828125 20.558281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 191.056463 \n",
"L 42.828125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"text_1\">\n",
" <!-- −60 -->\n",
" <defs>\n",
" <path d=\"M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" <path d=\"M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 114.525625 191.056463 \n",
"L 114.525625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_4\"/>\n",
" <g id=\"text_2\">\n",
" <!-- −50 -->\n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(103.97328125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 186.223125 191.056463 \n",
"L 186.223125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_6\"/>\n",
" <g id=\"text_3\">\n",
" <!-- −40 -->\n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(175.67078125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 257.920625 191.056463 \n",
"L 257.920625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"text_4\">\n",
" <!-- −30 -->\n",
" <defs>\n",
" <path d=\"M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(247.36828125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 329.618125 191.056463 \n",
"L 329.618125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_10\"/>\n",
" <g id=\"text_5\">\n",
" <!-- −20 -->\n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(319.06578125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 401.315625 191.056463 \n",
"L 401.315625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_12\"/>\n",
" <g id=\"text_6\">\n",
" <!-- −10 -->\n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(390.76328125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 473.013125 191.056463 \n",
"L 473.013125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"text_7\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(469.831875 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_15\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 544.710625 191.056463 \n",
"L 544.710625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_16\"/>\n",
" <g id=\"text_8\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(538.348125 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_17\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 616.408125 191.056463 \n",
"L 616.408125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_18\"/>\n",
" <g id=\"text_9\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 205.654900568)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 191.056463 \n",
"L 616.408125 191.056463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"text_10\">\n",
" <!-- 0.00 -->\n",
" <defs>\n",
" <path d=\"M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 193.815838068)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_21\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 156.956827 \n",
"L 616.408125 156.956827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_22\"/>\n",
" <g id=\"text_11\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 159.716201705)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_23\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 122.85719 \n",
"L 616.408125 122.85719 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_24\"/>\n",
" <g id=\"text_12\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 125.616565341)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 88.757554 \n",
"L 616.408125 88.757554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\"/>\n",
" <g id=\"text_13\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 91.5169289773)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_27\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 54.657918 \n",
"L 616.408125 54.657918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_28\"/>\n",
" <g id=\"text_14\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 57.4172926136)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_29\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 42.828125 20.558281 \n",
"L 616.408125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_30\"/>\n",
" <g id=\"text_15\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 23.31765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 117.149504 191.056463 \n",
"L 126.683807 191.056463 \n",
"L 126.683807 190.87664 \n",
"L 117.149504 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 126.683807 191.056463 \n",
"L 136.218111 191.056463 \n",
"L 136.218111 191.056463 \n",
"L 126.683807 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 136.218111 191.056463 \n",
"L 145.752414 191.056463 \n",
"L 145.752414 191.056463 \n",
"L 136.218111 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 145.752414 191.056463 \n",
"L 155.286717 191.056463 \n",
"L 155.286717 191.056463 \n",
"L 145.752414 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 155.286717 191.056463 \n",
"L 164.82102 191.056463 \n",
"L 164.82102 191.056463 \n",
"L 155.286717 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 164.82102 191.056463 \n",
"L 174.355323 191.056463 \n",
"L 174.355323 191.056463 \n",
"L 164.82102 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 174.355323 191.056463 \n",
"L 183.889627 191.056463 \n",
"L 183.889627 191.056463 \n",
"L 174.355323 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 183.889627 191.056463 \n",
"L 193.42393 191.056463 \n",
"L 193.42393 191.056463 \n",
"L 183.889627 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 193.42393 191.056463 \n",
"L 202.958233 191.056463 \n",
"L 202.958233 191.056463 \n",
"L 193.42393 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_12\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 202.958233 191.056463 \n",
"L 212.492536 191.056463 \n",
"L 212.492536 191.056463 \n",
"L 202.958233 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_13\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 212.492536 191.056463 \n",
"L 222.02684 191.056463 \n",
"L 222.02684 191.056463 \n",
"L 212.492536 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_14\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 222.02684 191.056463 \n",
"L 231.561143 191.056463 \n",
"L 231.561143 191.056463 \n",
"L 222.02684 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_15\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 231.561143 191.056463 \n",
"L 241.095446 191.056463 \n",
"L 241.095446 191.056463 \n",
"L 231.561143 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_16\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 241.095446 191.056463 \n",
"L 250.629749 191.056463 \n",
"L 250.629749 191.056463 \n",
"L 241.095446 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_17\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 250.629749 191.056463 \n",
"L 260.164052 191.056463 \n",
"L 260.164052 191.056463 \n",
"L 250.629749 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_18\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 260.164052 191.056463 \n",
"L 269.698356 191.056463 \n",
"L 269.698356 191.056463 \n",
"L 260.164052 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_19\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 269.698356 191.056463 \n",
"L 279.232659 191.056463 \n",
"L 279.232659 190.87664 \n",
"L 269.698356 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_20\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 279.232659 191.056463 \n",
"L 288.766962 191.056463 \n",
"L 288.766962 191.056463 \n",
"L 279.232659 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_21\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 288.766962 191.056463 \n",
"L 298.301265 191.056463 \n",
"L 298.301265 191.056463 \n",
"L 288.766962 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_22\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 298.301265 191.056463 \n",
"L 307.835568 191.056463 \n",
"L 307.835568 190.87664 \n",
"L 298.301265 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_23\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 307.835568 191.056463 \n",
"L 317.369872 191.056463 \n",
"L 317.369872 191.056463 \n",
"L 307.835568 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_24\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 317.369872 191.056463 \n",
"L 326.904175 191.056463 \n",
"L 326.904175 191.056463 \n",
"L 317.369872 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_25\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 326.904175 191.056463 \n",
"L 336.438478 191.056463 \n",
"L 336.438478 191.056463 \n",
"L 326.904175 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_26\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 336.438478 191.056463 \n",
"L 345.972781 191.056463 \n",
"L 345.972781 191.056463 \n",
"L 336.438478 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_27\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 345.972781 191.056463 \n",
"L 355.507084 191.056463 \n",
"L 355.507084 191.056463 \n",
"L 345.972781 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_28\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 355.507084 191.056463 \n",
"L 365.041388 191.056463 \n",
"L 365.041388 191.056463 \n",
"L 355.507084 191.056463 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_29\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 365.041388 191.056463 \n",
"L 374.575691 191.056463 \n",
"L 374.575691 190.87664 \n",
"L 365.041388 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_30\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 374.575691 191.056463 \n",
"L 384.109994 191.056463 \n",
"L 384.109994 190.696817 \n",
"L 374.575691 190.696817 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_31\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 384.109994 191.056463 \n",
"L 393.644297 191.056463 \n",
"L 393.644297 190.157348 \n",
"L 384.109994 190.157348 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_32\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 393.644297 191.056463 \n",
"L 403.178601 191.056463 \n",
"L 403.178601 189.617879 \n",
"L 393.644297 189.617879 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_33\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 403.178601 191.056463 \n",
"L 412.712904 191.056463 \n",
"L 412.712904 189.438056 \n",
"L 403.178601 189.438056 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_34\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 412.712904 191.056463 \n",
"L 422.247207 191.056463 \n",
"L 422.247207 188.538941 \n",
"L 412.712904 188.538941 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_35\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 422.247207 191.056463 \n",
"L 431.78151 191.056463 \n",
"L 431.78151 187.639826 \n",
"L 422.247207 187.639826 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_36\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 431.78151 191.056463 \n",
"L 441.315813 191.056463 \n",
"L 441.315813 180.626728 \n",
"L 431.78151 180.626728 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_37\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 441.315813 191.056463 \n",
"L 450.850117 191.056463 \n",
"L 450.850117 169.297878 \n",
"L 441.315813 169.297878 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_38\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 450.850117 191.056463 \n",
"L 460.38442 191.056463 \n",
"L 460.38442 132.254337 \n",
"L 450.850117 132.254337 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_39\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 460.38442 191.056463 \n",
"L 469.918723 191.056463 \n",
"L 469.918723 89.995928 \n",
"L 460.38442 89.995928 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_40\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 469.918723 191.056463 \n",
"L 479.453026 191.056463 \n",
"L 479.453026 41.983183 \n",
"L 469.918723 41.983183 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_41\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 479.453026 191.056463 \n",
"L 488.987329 191.056463 \n",
"L 488.987329 106.719469 \n",
"L 479.453026 106.719469 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_42\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 488.987329 191.056463 \n",
"L 498.521633 191.056463 \n",
"L 498.521633 157.069913 \n",
"L 488.987329 157.069913 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_43\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 498.521633 191.056463 \n",
"L 508.055936 191.056463 \n",
"L 508.055936 171.455754 \n",
"L 498.521633 171.455754 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_44\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 508.055936 191.056463 \n",
"L 517.590239 191.056463 \n",
"L 517.590239 182.245135 \n",
"L 508.055936 182.245135 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_45\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 517.590239 191.056463 \n",
"L 527.124542 191.056463 \n",
"L 527.124542 185.661773 \n",
"L 517.590239 185.661773 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_46\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 527.124542 191.056463 \n",
"L 536.658845 191.056463 \n",
"L 536.658845 187.460003 \n",
"L 527.124542 187.460003 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_47\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 536.658845 191.056463 \n",
"L 546.193149 191.056463 \n",
"L 546.193149 188.359118 \n",
"L 536.658845 188.359118 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_48\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 546.193149 191.056463 \n",
"L 555.727452 191.056463 \n",
"L 555.727452 190.157348 \n",
"L 546.193149 190.157348 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_49\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 555.727452 191.056463 \n",
"L 565.261755 191.056463 \n",
"L 565.261755 190.87664 \n",
"L 555.727452 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_50\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 565.261755 191.056463 \n",
"L 574.796058 191.056463 \n",
"L 574.796058 190.337171 \n",
"L 565.261755 190.337171 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_51\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 574.796058 191.056463 \n",
"L 584.330361 191.056463 \n",
"L 584.330361 190.87664 \n",
"L 574.796058 190.87664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_52\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 584.330361 191.056463 \n",
"L 593.864665 191.056463 \n",
"L 593.864665 190.696817 \n",
"L 584.330361 190.696817 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 103.845376 191.054747 \n",
"L 108.929451 191.028774 \n",
"L 114.013526 190.936359 \n",
"L 119.0976 190.916435 \n",
"L 124.181675 191.012582 \n",
"L 129.26575 191.052767 \n",
"L 134.349825 191.056379 \n",
"L 139.4339 191.056463 \n",
"L 144.517975 191.056463 \n",
"L 149.60205 191.056463 \n",
"L 154.686125 191.056463 \n",
"L 159.7702 191.056463 \n",
"L 164.854275 191.056463 \n",
"L 169.93835 191.056463 \n",
"L 175.022425 191.056463 \n",
"L 180.1065 191.056463 \n",
"L 185.190574 191.056463 \n",
"L 190.274649 191.056463 \n",
"L 195.358724 191.056463 \n",
"L 200.442799 191.056463 \n",
"L 205.526874 191.056463 \n",
"L 210.610949 191.056463 \n",
"L 215.695024 191.056463 \n",
"L 220.779099 191.056463 \n",
"L 225.863174 191.056463 \n",
"L 230.947249 191.056463 \n",
"L 236.031324 191.056463 \n",
"L 241.115399 191.056463 \n",
"L 246.199474 191.056463 \n",
"L 251.283548 191.056463 \n",
"L 256.367623 191.056459 \n",
"L 261.451698 191.056074 \n",
"L 266.535773 191.045826 \n",
"L 271.619848 190.978351 \n",
"L 276.703923 190.902288 \n",
"L 281.787998 190.974657 \n",
"L 286.872073 191.043848 \n",
"L 291.956148 191.03691 \n",
"L 297.040223 190.95337 \n",
"L 302.124298 190.906955 \n",
"L 307.208373 190.998182 \n",
"L 312.292448 191.050357 \n",
"L 317.376523 191.056291 \n",
"L 322.460597 191.056462 \n",
"L 327.544672 191.056463 \n",
"L 332.628747 191.056463 \n",
"L 337.712822 191.056463 \n",
"L 342.796897 191.056463 \n",
"L 347.880972 191.056447 \n",
"L 352.965047 191.055355 \n",
"L 358.049122 191.03539 \n",
"L 363.133197 190.947463 \n",
"L 368.217272 190.879015 \n",
"L 373.301347 190.82523 \n",
"L 378.385422 190.680375 \n",
"L 383.469497 190.518193 \n",
"L 388.553571 190.230813 \n",
"L 393.637646 189.943148 \n",
"L 398.721721 189.680729 \n",
"L 403.805796 189.606543 \n",
"L 408.889871 189.189249 \n",
"L 413.973946 188.7723 \n",
"L 419.058021 188.420208 \n",
"L 424.142096 187.671249 \n",
"L 429.226171 186.153083 \n",
"L 434.310246 182.662781 \n",
"L 439.394321 177.008598 \n",
"L 444.478396 169.845521 \n",
"L 449.562471 158.114569 \n",
"L 454.646546 138.983333 \n",
"L 459.73062 116.539772 \n",
"L 464.814695 88.155809 \n",
"L 469.89877 59.49686 \n",
"L 474.982845 52.272215 \n",
"L 480.06692 74.258077 \n",
"L 485.150995 111.363037 \n",
"L 490.23507 140.854438 \n",
"L 495.319145 158.549051 \n",
"L 500.40322 168.368086 \n",
"L 505.487295 174.646006 \n",
"L 510.57137 179.315466 \n",
"L 515.655445 183.131003 \n",
"L 520.73952 185.471573 \n",
"L 525.823594 187.163905 \n",
"L 530.907669 187.771295 \n",
"L 535.991744 187.719439 \n",
"L 541.075819 188.310148 \n",
"L 546.159894 189.095586 \n",
"L 551.243969 189.941448 \n",
"L 556.328044 190.631668 \n",
"L 561.412119 190.781297 \n",
"L 566.496194 190.533567 \n",
"L 571.580269 190.460532 \n",
"L 576.664344 190.662877 \n",
"L 581.748419 190.822323 \n",
"L 586.832494 190.82876 \n",
"L 591.916569 190.775318 \n",
"L 597.000643 190.896949 \n",
"L 602.084718 191.025716 \n",
"L 607.168793 191.054683 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\">\n",
" <path clip-path=\"url(#p5668ed6dd4)\" d=\"M 103.843043 191.056463 \n",
"L 392.181744 190.970133 \n",
"L 399.769604 190.758687 \n",
"L 404.828178 190.421035 \n",
"L 409.886752 189.771772 \n",
"L 412.416039 189.266381 \n",
"L 414.945326 188.595608 \n",
"L 417.474612 187.718836 \n",
"L 420.003899 186.590365 \n",
"L 422.533186 185.160463 \n",
"L 425.062473 183.377095 \n",
"L 427.59176 181.188393 \n",
"L 430.121047 178.545876 \n",
"L 432.650333 175.408351 \n",
"L 435.17962 171.746345 \n",
"L 437.708907 167.546786 \n",
"L 440.238194 162.817604 \n",
"L 442.767481 157.591806 \n",
"L 445.296768 151.930561 \n",
"L 450.355341 139.695096 \n",
"L 455.413915 127.176628 \n",
"L 457.943202 121.24359 \n",
"L 460.472489 115.782291 \n",
"L 463.001776 110.981783 \n",
"L 465.531063 107.017016 \n",
"L 468.060349 104.0383 \n",
"L 470.589636 102.161862 \n",
"L 473.118923 101.462323 \n",
"L 475.64821 101.967772 \n",
"L 478.177497 103.657899 \n",
"L 480.706784 106.465345 \n",
"L 483.236071 110.280158 \n",
"L 485.765357 114.956938 \n",
"L 488.294644 120.324019 \n",
"L 490.823931 126.193897 \n",
"L 500.941079 150.980545 \n",
"L 503.470365 156.704411 \n",
"L 505.999652 162.005493 \n",
"L 508.528939 166.817873 \n",
"L 511.058226 171.10417 \n",
"L 513.587513 174.852658 \n",
"L 516.1168 178.073316 \n",
"L 518.646086 180.793289 \n",
"L 521.175373 183.052186 \n",
"L 523.70466 184.897589 \n",
"L 526.233947 186.381058 \n",
"L 528.763234 187.554787 \n",
"L 531.292521 188.469016 \n",
"L 533.821808 189.170185 \n",
"L 536.351094 189.699779 \n",
"L 541.409668 190.382493 \n",
"L 546.468242 190.739245 \n",
"L 554.056102 190.963892 \n",
"L 569.231824 191.050987 \n",
"L 607.171126 191.056463 \n",
"L 607.171126 191.056463 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_53\">\n",
" <path d=\"M 42.828125 191.056463 \n",
"L 42.828125 20.558281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_54\">\n",
" <path d=\"M 42.828125 191.056463 \n",
"L 616.408125 191.056463 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_16\">\n",
" <!-- ticker = DSW -->\n",
" <defs>\n",
" <path d=\"M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-72\"/>\n",
" <path d=\"M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-65\"/>\n",
" <path d=\"M 19.671875 64.796875 \n",
"L 19.671875 8.109375 \n",
"L 31.59375 8.109375 \n",
"Q 46.6875 8.109375 53.6875 14.9375 \n",
"Q 60.6875 21.78125 60.6875 36.53125 \n",
"Q 60.6875 51.171875 53.6875 57.984375 \n",
"Q 46.6875 64.796875 31.59375 64.796875 \n",
"z\n",
"M 9.8125 72.90625 \n",
"L 30.078125 72.90625 \n",
"Q 51.265625 72.90625 61.171875 64.09375 \n",
"Q 71.09375 55.28125 71.09375 36.53125 \n",
"Q 71.09375 17.671875 61.125 8.828125 \n",
"Q 51.171875 0 30.078125 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-44\"/>\n",
" <path d=\"M 10.59375 45.40625 \n",
"L 73.1875 45.40625 \n",
"L 73.1875 37.203125 \n",
"L 10.59375 37.203125 \n",
"z\n",
"M 10.59375 25.484375 \n",
"L 73.1875 25.484375 \n",
"L 73.1875 17.1875 \n",
"L 10.59375 17.1875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-3d\"/>\n",
" <path d=\"M 3.328125 72.90625 \n",
"L 13.28125 72.90625 \n",
"L 28.609375 11.28125 \n",
"L 43.890625 72.90625 \n",
"L 54.984375 72.90625 \n",
"L 70.3125 11.28125 \n",
"L 85.59375 72.90625 \n",
"L 95.609375 72.90625 \n",
"L 77.296875 0 \n",
"L 64.890625 0 \n",
"L 49.515625 63.28125 \n",
"L 33.984375 0 \n",
"L 21.578125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-57\"/>\n",
" <path d=\"M 53.515625 70.515625 \n",
"L 53.515625 60.890625 \n",
"Q 47.90625 63.578125 42.921875 64.890625 \n",
"Q 37.9375 66.21875 33.296875 66.21875 \n",
"Q 25.25 66.21875 20.875 63.09375 \n",
"Q 16.5 59.96875 16.5 54.203125 \n",
"Q 16.5 49.359375 19.40625 46.890625 \n",
"Q 22.3125 44.4375 30.421875 42.921875 \n",
"L 36.375 41.703125 \n",
"Q 47.40625 39.59375 52.65625 34.296875 \n",
"Q 57.90625 29 57.90625 20.125 \n",
"Q 57.90625 9.515625 50.796875 4.046875 \n",
"Q 43.703125 -1.421875 29.984375 -1.421875 \n",
"Q 24.8125 -1.421875 18.96875 -0.25 \n",
"Q 13.140625 0.921875 6.890625 3.21875 \n",
"L 6.890625 13.375 \n",
"Q 12.890625 10.015625 18.65625 8.296875 \n",
"Q 24.421875 6.59375 29.984375 6.59375 \n",
"Q 38.421875 6.59375 43.015625 9.90625 \n",
"Q 47.609375 13.234375 47.609375 19.390625 \n",
"Q 47.609375 24.75 44.3125 27.78125 \n",
"Q 41.015625 30.8125 33.5 32.328125 \n",
"L 27.484375 33.5 \n",
"Q 16.453125 35.6875 11.515625 40.375 \n",
"Q 6.59375 45.0625 6.59375 53.421875 \n",
"Q 6.59375 63.09375 13.40625 68.65625 \n",
"Q 20.21875 74.21875 32.171875 74.21875 \n",
"Q 37.3125 74.21875 42.625 73.28125 \n",
"Q 47.953125 72.359375 53.515625 70.515625 \n",
"\" id=\"BitstreamVeraSans-Roman-53\"/>\n",
" <path d=\"M 18.3125 70.21875 \n",
"L 18.3125 54.6875 \n",
"L 36.8125 54.6875 \n",
"L 36.8125 47.703125 \n",
"L 18.3125 47.703125 \n",
"L 18.3125 18.015625 \n",
"Q 18.3125 11.328125 20.140625 9.421875 \n",
"Q 21.96875 7.515625 27.59375 7.515625 \n",
"L 36.8125 7.515625 \n",
"L 36.8125 0 \n",
"L 27.59375 0 \n",
"Q 17.1875 0 13.234375 3.875 \n",
"Q 9.28125 7.765625 9.28125 18.015625 \n",
"L 9.28125 47.703125 \n",
"L 2.6875 47.703125 \n",
"L 2.6875 54.6875 \n",
"L 9.28125 54.6875 \n",
"L 9.28125 70.21875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-74\"/>\n",
" <path d=\"M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"\" id=\"BitstreamVeraSans-Roman-63\"/>\n",
" <path id=\"BitstreamVeraSans-Roman-20\"/>\n",
" <path d=\"M 9.078125 75.984375 \n",
"L 18.109375 75.984375 \n",
"L 18.109375 31.109375 \n",
"L 44.921875 54.6875 \n",
"L 56.390625 54.6875 \n",
"L 27.390625 29.109375 \n",
"L 57.625 0 \n",
"L 45.90625 0 \n",
"L 18.109375 26.703125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-6b\"/>\n",
" <path d=\"M 9.421875 54.6875 \n",
"L 18.40625 54.6875 \n",
"L 18.40625 0 \n",
"L 9.421875 0 \n",
"z\n",
"M 9.421875 75.984375 \n",
"L 18.40625 75.984375 \n",
"L 18.40625 64.59375 \n",
"L 9.421875 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-69\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.8128125 15.55828125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-44\"/>\n",
" <use x=\"506.837890625\" xlink:href=\"#BitstreamVeraSans-Roman-53\"/>\n",
" <use x=\"570.314453125\" xlink:href=\"#BitstreamVeraSans-Roman-57\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_2\">\n",
" <g id=\"patch_55\">\n",
" <path d=\"M 42.828125 404.514645 \n",
"L 616.408125 404.514645 \n",
"L 616.408125 234.016463 \n",
"L 42.828125 234.016463 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_3\">\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_33\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 404.514645 \n",
"L 42.828125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_34\"/>\n",
" <g id=\"text_17\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_35\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 114.525625 404.514645 \n",
"L 114.525625 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_36\"/>\n",
" <g id=\"text_18\">\n",
" <!-- −15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(103.97328125 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 186.223125 404.514645 \n",
"L 186.223125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"text_19\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(175.67078125 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_39\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 257.920625 404.514645 \n",
"L 257.920625 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_40\"/>\n",
" <g id=\"text_20\">\n",
" <!-- −5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(250.54953125 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_41\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 329.618125 404.514645 \n",
"L 329.618125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_42\"/>\n",
" <g id=\"text_21\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(326.436875 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 401.315625 404.514645 \n",
"L 401.315625 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"text_22\">\n",
" <!-- 5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(398.134375 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_45\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 473.013125 404.514645 \n",
"L 473.013125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_46\"/>\n",
" <g id=\"text_23\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(466.650625 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_47\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 544.710625 404.514645 \n",
"L 544.710625 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_48\"/>\n",
" <g id=\"text_24\">\n",
" <!-- 15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(538.348125 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_18\">\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 616.408125 404.514645 \n",
"L 616.408125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\"/>\n",
" <g id=\"text_25\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 419.113082386)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_4\">\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_51\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 404.514645 \n",
"L 616.408125 404.514645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_52\"/>\n",
" <g id=\"text_26\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 407.274019886)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_53\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 376.098281 \n",
"L 616.408125 376.098281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_54\"/>\n",
" <g id=\"text_27\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 378.85765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_55\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 347.681918 \n",
"L 616.408125 347.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_56\"/>\n",
" <g id=\"text_28\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 350.441292614)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_57\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 319.265554 \n",
"L 616.408125 319.265554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_58\"/>\n",
" <g id=\"text_29\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 322.024928977)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_11\">\n",
" <g id=\"line2d_59\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 290.84919 \n",
"L 616.408125 290.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_60\"/>\n",
" <g id=\"text_30\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 293.608565341)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_12\">\n",
" <g id=\"line2d_61\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 262.432827 \n",
"L 616.408125 262.432827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_62\"/>\n",
" <g id=\"text_31\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 265.192201705)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_13\">\n",
" <g id=\"line2d_63\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 42.828125 234.016463 \n",
"L 616.408125 234.016463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_64\"/>\n",
" <g id=\"text_32\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 236.775838068)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_56\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 100.868958 404.514645 \n",
"L 110.312209 404.514645 \n",
"L 110.312209 404.235537 \n",
"L 100.868958 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_57\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 110.312209 404.514645 \n",
"L 119.755459 404.514645 \n",
"L 119.755459 404.514645 \n",
"L 110.312209 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_58\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 119.755459 404.514645 \n",
"L 129.198709 404.514645 \n",
"L 129.198709 404.235537 \n",
"L 119.755459 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_59\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 129.198709 404.514645 \n",
"L 138.641959 404.514645 \n",
"L 138.641959 404.514645 \n",
"L 129.198709 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_60\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 138.641959 404.514645 \n",
"L 148.085209 404.514645 \n",
"L 148.085209 404.514645 \n",
"L 138.641959 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_61\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 148.085209 404.514645 \n",
"L 157.52846 404.514645 \n",
"L 157.52846 404.514645 \n",
"L 148.085209 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_62\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 157.52846 404.514645 \n",
"L 166.97171 404.514645 \n",
"L 166.97171 403.95643 \n",
"L 157.52846 403.95643 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_63\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 166.97171 404.514645 \n",
"L 176.41496 404.514645 \n",
"L 176.41496 404.235537 \n",
"L 166.97171 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_64\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 176.41496 404.514645 \n",
"L 185.85821 404.514645 \n",
"L 185.85821 403.95643 \n",
"L 176.41496 403.95643 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_65\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 185.85821 404.514645 \n",
"L 195.30146 404.514645 \n",
"L 195.30146 403.398215 \n",
"L 185.85821 403.398215 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_66\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 195.30146 404.514645 \n",
"L 204.744711 404.514645 \n",
"L 204.744711 404.235537 \n",
"L 195.30146 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_67\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 204.744711 404.514645 \n",
"L 214.187961 404.514645 \n",
"L 214.187961 403.119107 \n",
"L 204.744711 403.119107 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_68\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 214.187961 404.514645 \n",
"L 223.631211 404.514645 \n",
"L 223.631211 403.95643 \n",
"L 214.187961 403.95643 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_69\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 223.631211 404.514645 \n",
"L 233.074461 404.514645 \n",
"L 233.074461 403.398215 \n",
"L 223.631211 403.398215 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_70\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 233.074461 404.514645 \n",
"L 242.517712 404.514645 \n",
"L 242.517712 402.002677 \n",
"L 233.074461 402.002677 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_71\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 242.517712 404.514645 \n",
"L 251.960962 404.514645 \n",
"L 251.960962 401.444462 \n",
"L 242.517712 401.444462 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_72\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 251.960962 404.514645 \n",
"L 261.404212 404.514645 \n",
"L 261.404212 399.49071 \n",
"L 251.960962 399.49071 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_73\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 261.404212 404.514645 \n",
"L 270.847462 404.514645 \n",
"L 270.847462 392.792129 \n",
"L 261.404212 392.792129 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_74\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 270.847462 404.514645 \n",
"L 280.290712 404.514645 \n",
"L 280.290712 391.396592 \n",
"L 270.847462 391.396592 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_75\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 280.290712 404.514645 \n",
"L 289.733963 404.514645 \n",
"L 289.733963 381.627829 \n",
"L 280.290712 381.627829 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_76\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 289.733963 404.514645 \n",
"L 299.177213 404.514645 \n",
"L 299.177213 365.439593 \n",
"L 289.733963 365.439593 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_77\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 299.177213 404.514645 \n",
"L 308.620463 404.514645 \n",
"L 308.620463 345.343853 \n",
"L 299.177213 345.343853 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_78\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 308.620463 404.514645 \n",
"L 318.063713 404.514645 \n",
"L 318.063713 312.409166 \n",
"L 308.620463 312.409166 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_79\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 318.063713 404.514645 \n",
"L 327.506964 404.514645 \n",
"L 327.506964 277.799835 \n",
"L 318.063713 277.799835 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_80\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 327.506964 404.514645 \n",
"L 336.950214 404.514645 \n",
"L 336.950214 248.493546 \n",
"L 327.506964 248.493546 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_81\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 336.950214 404.514645 \n",
"L 346.393464 404.514645 \n",
"L 346.393464 291.196996 \n",
"L 336.950214 291.196996 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_82\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 346.393464 404.514645 \n",
"L 355.836714 404.514645 \n",
"L 355.836714 331.388477 \n",
"L 346.393464 331.388477 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_83\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 355.836714 404.514645 \n",
"L 365.279964 404.514645 \n",
"L 365.279964 353.717078 \n",
"L 355.836714 353.717078 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_84\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 365.279964 404.514645 \n",
"L 374.723215 404.514645 \n",
"L 374.723215 377.441216 \n",
"L 365.279964 377.441216 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_85\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 374.723215 404.514645 \n",
"L 384.166465 404.514645 \n",
"L 384.166465 385.814442 \n",
"L 374.723215 385.814442 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_86\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 384.166465 404.514645 \n",
"L 393.609715 404.514645 \n",
"L 393.609715 390.559269 \n",
"L 384.166465 390.559269 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_87\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 393.609715 404.514645 \n",
"L 403.052965 404.514645 \n",
"L 403.052965 397.536957 \n",
"L 393.609715 397.536957 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_88\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 403.052965 404.514645 \n",
"L 412.496215 404.514645 \n",
"L 412.496215 399.211602 \n",
"L 403.052965 399.211602 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_89\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 412.496215 404.514645 \n",
"L 421.939466 404.514645 \n",
"L 421.939466 400.328032 \n",
"L 412.496215 400.328032 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_90\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 421.939466 404.514645 \n",
"L 431.382716 404.514645 \n",
"L 431.382716 401.72357 \n",
"L 421.939466 401.72357 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_91\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 431.382716 404.514645 \n",
"L 440.825966 404.514645 \n",
"L 440.825966 402.002677 \n",
"L 431.382716 402.002677 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_92\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 440.825966 404.514645 \n",
"L 450.269216 404.514645 \n",
"L 450.269216 403.398215 \n",
"L 440.825966 403.398215 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_93\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 450.269216 404.514645 \n",
"L 459.712467 404.514645 \n",
"L 459.712467 402.84 \n",
"L 450.269216 402.84 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_94\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 459.712467 404.514645 \n",
"L 469.155717 404.514645 \n",
"L 469.155717 404.514645 \n",
"L 459.712467 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_95\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 469.155717 404.514645 \n",
"L 478.598967 404.514645 \n",
"L 478.598967 402.84 \n",
"L 469.155717 402.84 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_96\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 478.598967 404.514645 \n",
"L 488.042217 404.514645 \n",
"L 488.042217 403.677322 \n",
"L 478.598967 403.677322 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_97\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 488.042217 404.514645 \n",
"L 497.485467 404.514645 \n",
"L 497.485467 404.235537 \n",
"L 488.042217 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_98\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 497.485467 404.514645 \n",
"L 506.928718 404.514645 \n",
"L 506.928718 404.235537 \n",
"L 497.485467 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_99\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 506.928718 404.514645 \n",
"L 516.371968 404.514645 \n",
"L 516.371968 404.514645 \n",
"L 506.928718 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_100\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 516.371968 404.514645 \n",
"L 525.815218 404.514645 \n",
"L 525.815218 404.235537 \n",
"L 516.371968 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_101\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 525.815218 404.514645 \n",
"L 535.258468 404.514645 \n",
"L 535.258468 404.514645 \n",
"L 525.815218 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_102\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 535.258468 404.514645 \n",
"L 544.701718 404.514645 \n",
"L 544.701718 404.514645 \n",
"L 535.258468 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_103\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 544.701718 404.514645 \n",
"L 554.144969 404.514645 \n",
"L 554.144969 404.514645 \n",
"L 544.701718 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_104\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 554.144969 404.514645 \n",
"L 563.588219 404.514645 \n",
"L 563.588219 404.514645 \n",
"L 554.144969 404.514645 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_105\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 563.588219 404.514645 \n",
"L 573.031469 404.514645 \n",
"L 573.031469 404.235537 \n",
"L 563.588219 404.235537 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_65\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 80.776472 404.512899 \n",
"L 85.951699 404.501494 \n",
"L 91.126926 404.460118 \n",
"L 96.302154 404.390005 \n",
"L 101.477381 404.355641 \n",
"L 106.652608 404.388499 \n",
"L 111.827835 404.406756 \n",
"L 117.003062 404.370015 \n",
"L 122.178289 404.361025 \n",
"L 127.353516 404.420284 \n",
"L 132.528743 404.482475 \n",
"L 137.70397 404.507157 \n",
"L 142.879197 404.501171 \n",
"L 148.054425 404.451329 \n",
"L 153.229652 404.335811 \n",
"L 158.404879 404.218018 \n",
"L 163.580106 404.202904 \n",
"L 168.755333 404.241993 \n",
"L 173.93056 404.204891 \n",
"L 179.105787 404.05643 \n",
"L 184.281014 403.838421 \n",
"L 189.456241 403.649162 \n",
"L 194.631468 403.602393 \n",
"L 199.806696 403.668682 \n",
"L 204.981923 403.643505 \n",
"L 210.15715 403.569267 \n",
"L 215.332377 403.64933 \n",
"L 220.507604 403.706535 \n",
"L 225.682831 403.441593 \n",
"L 230.858058 402.91994 \n",
"L 236.033285 402.42236 \n",
"L 241.208512 402.01527 \n",
"L 246.383739 401.461744 \n",
"L 251.558967 400.433466 \n",
"L 256.734194 398.671405 \n",
"L 261.909421 396.234292 \n",
"L 267.084648 393.586523 \n",
"L 272.259875 390.891721 \n",
"L 277.435102 387.426018 \n",
"L 282.610329 382.533684 \n",
"L 287.785556 376.219509 \n",
"L 292.960783 368.375559 \n",
"L 298.13601 358.217517 \n",
"L 303.311238 344.759143 \n",
"L 308.486465 328.403073 \n",
"L 313.661692 310.854517 \n",
"L 318.836919 292.855948 \n",
"L 324.012146 275.505469 \n",
"L 329.187373 264.4092 \n",
"L 334.3626 266.497323 \n",
"L 339.537827 281.451479 \n",
"L 344.713054 302.420928 \n",
"L 349.888281 323.356511 \n",
"L 355.063509 340.764387 \n",
"L 360.238736 353.752599 \n",
"L 365.413963 364.416939 \n",
"L 370.58919 373.860103 \n",
"L 375.764417 380.951133 \n",
"L 380.939644 385.710372 \n",
"L 386.114871 389.428578 \n",
"L 391.290098 392.846425 \n",
"L 396.465325 395.67928 \n",
"L 401.640552 397.698468 \n",
"L 406.81578 399.121816 \n",
"L 411.991007 400.055378 \n",
"L 417.166234 400.587867 \n",
"L 422.341461 401.064106 \n",
"L 427.516688 401.666221 \n",
"L 432.691915 402.173982 \n",
"L 437.867142 402.424854 \n",
"L 443.042369 402.599632 \n",
"L 448.217596 402.833954 \n",
"L 453.392823 403.144658 \n",
"L 458.568051 403.523298 \n",
"L 463.743278 403.720338 \n",
"L 468.918505 403.572494 \n",
"L 474.093732 403.392864 \n",
"L 479.268959 403.492243 \n",
"L 484.444186 403.787249 \n",
"L 489.619413 404.030538 \n",
"L 494.79464 404.129483 \n",
"L 499.969867 404.218947 \n",
"L 505.145094 404.360315 \n",
"L 510.320322 404.456504 \n",
"L 515.495549 404.456274 \n",
"L 520.670776 404.394114 \n",
"L 525.846003 404.357737 \n",
"L 531.02123 404.401518 \n",
"L 536.196457 404.469732 \n",
"L 541.371684 404.504826 \n",
"L 546.546911 404.5134 \n",
"L 551.722138 404.51357 \n",
"L 556.897365 404.506011 \n",
"L 562.072593 404.473471 \n",
"L 567.24782 404.406516 \n",
"L 572.423047 404.35832 \n",
"L 577.598274 404.390224 \n",
"L 582.773501 404.460128 \n",
"L 587.948728 404.501494 \n",
"L 593.123955 404.512899 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_66\">\n",
" <path clip-path=\"url(#pfa6bb1f4db)\" d=\"M 80.773222 404.514645 \n",
"L 206.930736 404.414654 \n",
"L 217.229308 404.215528 \n",
"L 224.953238 403.875379 \n",
"L 230.102524 403.485008 \n",
"L 235.25181 402.89517 \n",
"L 240.401096 402.027207 \n",
"L 245.550383 400.783709 \n",
"L 248.125026 399.985841 \n",
"L 250.699669 399.049885 \n",
"L 253.274312 397.959526 \n",
"L 255.848955 396.698151 \n",
"L 258.423598 395.24922 \n",
"L 260.998241 393.596708 \n",
"L 263.572885 391.725612 \n",
"L 266.147528 389.622517 \n",
"L 268.722171 387.276214 \n",
"L 271.296814 384.678347 \n",
"L 273.871457 381.824075 \n",
"L 276.4461 378.712719 \n",
"L 279.020743 375.348385 \n",
"L 281.595386 371.740508 \n",
"L 284.17003 367.90431 \n",
"L 289.319316 359.638626 \n",
"L 294.468602 350.797542 \n",
"L 304.767175 332.838926 \n",
"L 307.341818 328.614657 \n",
"L 309.916461 324.617131 \n",
"L 312.491104 320.906856 \n",
"L 315.065747 317.542112 \n",
"L 317.64039 314.577434 \n",
"L 320.215033 312.062153 \n",
"L 322.789677 310.039027 \n",
"L 325.36432 308.543037 \n",
"L 327.938963 307.600378 \n",
"L 330.513606 307.227699 \n",
"L 333.088249 307.431612 \n",
"L 335.662892 308.208496 \n",
"L 338.237535 309.544608 \n",
"L 340.812178 311.416483 \n",
"L 343.386822 313.79162 \n",
"L 345.961465 316.629424 \n",
"L 348.536108 319.882356 \n",
"L 351.110751 323.497257 \n",
"L 353.685394 327.416789 \n",
"L 358.83468 335.928537 \n",
"L 374.282539 362.640725 \n",
"L 379.431825 370.638961 \n",
"L 382.006468 374.315603 \n",
"L 384.581112 377.752546 \n",
"L 387.155755 380.938701 \n",
"L 389.730398 383.868455 \n",
"L 392.305041 386.541145 \n",
"L 394.879684 388.960458 \n",
"L 397.454327 391.13379 \n",
"L 400.02897 393.07158 \n",
"L 402.603614 394.786664 \n",
"L 405.178257 396.293638 \n",
"L 407.7529 397.608284 \n",
"L 410.327543 398.747042 \n",
"L 412.902186 399.726543 \n",
"L 415.476829 400.563223 \n",
"L 420.626115 401.871025 \n",
"L 425.775402 402.787486 \n",
"L 430.924688 403.412717 \n",
"L 436.073974 403.828111 \n",
"L 443.797904 404.191729 \n",
"L 454.096476 404.405944 \n",
"L 472.118978 404.501778 \n",
"L 559.656844 404.514645 \n",
"L 593.127205 404.514645 \n",
"L 593.127205 404.514645 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_106\">\n",
" <path d=\"M 42.828125 404.514645 \n",
"L 42.828125 234.016463 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_107\">\n",
" <path d=\"M 42.828125 404.514645 \n",
"L 616.408125 404.514645 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_33\">\n",
" <!-- ticker = BLKB -->\n",
" <defs>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 19.671875 72.90625 \n",
"L 19.671875 42.09375 \n",
"L 52.390625 72.90625 \n",
"L 65.09375 72.90625 \n",
"L 28.90625 38.921875 \n",
"L 67.671875 0 \n",
"L 54.6875 0 \n",
"L 19.671875 35.109375 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-4b\"/>\n",
" <path d=\"M 19.671875 34.8125 \n",
"L 19.671875 8.109375 \n",
"L 35.5 8.109375 \n",
"Q 43.453125 8.109375 47.28125 11.40625 \n",
"Q 51.125 14.703125 51.125 21.484375 \n",
"Q 51.125 28.328125 47.28125 31.5625 \n",
"Q 43.453125 34.8125 35.5 34.8125 \n",
"z\n",
"M 19.671875 64.796875 \n",
"L 19.671875 42.828125 \n",
"L 34.28125 42.828125 \n",
"Q 41.5 42.828125 45.03125 45.53125 \n",
"Q 48.578125 48.25 48.578125 53.8125 \n",
"Q 48.578125 59.328125 45.03125 62.0625 \n",
"Q 41.5 64.796875 34.28125 64.796875 \n",
"z\n",
"M 9.8125 72.90625 \n",
"L 35.015625 72.90625 \n",
"Q 46.296875 72.90625 52.390625 68.21875 \n",
"Q 58.5 63.53125 58.5 54.890625 \n",
"Q 58.5 48.1875 55.375 44.234375 \n",
"Q 52.25 40.28125 46.1875 39.3125 \n",
"Q 53.46875 37.75 57.5 32.78125 \n",
"Q 61.53125 27.828125 61.53125 20.40625 \n",
"Q 61.53125 10.640625 54.890625 5.3125 \n",
"Q 48.25 0 35.984375 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-42\"/>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 19.671875 72.90625 \n",
"L 19.671875 8.296875 \n",
"L 55.171875 8.296875 \n",
"L 55.171875 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-4c\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(291.75921875 229.016463068)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"498.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-4c\"/>\n",
" <use x=\"554.15234375\" xlink:href=\"#BitstreamVeraSans-Roman-4b\"/>\n",
" <use x=\"619.728515625\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_3\">\n",
" <g id=\"patch_108\">\n",
" <path d=\"M 42.828125 617.972827 \n",
"L 616.408125 617.972827 \n",
"L 616.408125 447.474645 \n",
"L 42.828125 447.474645 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_5\">\n",
" <g id=\"xtick_19\">\n",
" <g id=\"line2d_67\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 617.972827 \n",
"L 42.828125 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_68\"/>\n",
" <g id=\"text_34\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_20\">\n",
" <g id=\"line2d_69\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 138.424792 617.972827 \n",
"L 138.424792 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_70\"/>\n",
" <g id=\"text_35\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(127.872447917 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_21\">\n",
" <g id=\"line2d_71\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 234.021458 617.972827 \n",
"L 234.021458 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_72\"/>\n",
" <g id=\"text_36\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(223.469114583 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_22\">\n",
" <g id=\"line2d_73\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 329.618125 617.972827 \n",
"L 329.618125 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_74\"/>\n",
" <g id=\"text_37\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(326.436875 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_23\">\n",
" <g id=\"line2d_75\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 425.214792 617.972827 \n",
"L 425.214792 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_76\"/>\n",
" <g id=\"text_38\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(418.852291667 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_24\">\n",
" <g id=\"line2d_77\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 520.811458 617.972827 \n",
"L 520.811458 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_78\"/>\n",
" <g id=\"text_39\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(514.448958333 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_25\">\n",
" <g id=\"line2d_79\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 616.408125 617.972827 \n",
"L 616.408125 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_80\"/>\n",
" <g id=\"text_40\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 632.571264205)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_6\">\n",
" <g id=\"ytick_14\">\n",
" <g id=\"line2d_81\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 617.972827 \n",
"L 616.408125 617.972827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_82\"/>\n",
" <g id=\"text_41\">\n",
" <!-- 0.0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 620.732201705)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_15\">\n",
" <g id=\"line2d_83\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 593.615944 \n",
"L 616.408125 593.615944 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_84\"/>\n",
" <g id=\"text_42\">\n",
" <!-- 0.1 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 596.375318588)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_16\">\n",
" <g id=\"line2d_85\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 569.25906 \n",
"L 616.408125 569.25906 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_86\"/>\n",
" <g id=\"text_43\">\n",
" <!-- 0.2 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 572.018435471)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_17\">\n",
" <g id=\"line2d_87\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 544.902177 \n",
"L 616.408125 544.902177 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_88\"/>\n",
" <g id=\"text_44\">\n",
" <!-- 0.3 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 547.661552354)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_18\">\n",
" <g id=\"line2d_89\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 520.545294 \n",
"L 616.408125 520.545294 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_90\"/>\n",
" <g id=\"text_45\">\n",
" <!-- 0.4 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 523.304669237)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_19\">\n",
" <g id=\"line2d_91\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 496.188411 \n",
"L 616.408125 496.188411 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_92\"/>\n",
" <g id=\"text_46\">\n",
" <!-- 0.5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 498.94778612)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_20\">\n",
" <g id=\"line2d_93\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 471.831528 \n",
"L 616.408125 471.831528 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_94\"/>\n",
" <g id=\"text_47\">\n",
" <!-- 0.6 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 474.590903003)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_21\">\n",
" <g id=\"line2d_95\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 42.828125 447.474645 \n",
"L 616.408125 447.474645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_96\"/>\n",
" <g id=\"text_48\">\n",
" <!-- 0.7 -->\n",
" <defs>\n",
" <path d=\"M 8.203125 72.90625 \n",
"L 55.078125 72.90625 \n",
"L 55.078125 68.703125 \n",
"L 28.609375 0 \n",
"L 18.3125 0 \n",
"L 43.21875 64.59375 \n",
"L 8.203125 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-37\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(19.925 450.234019886)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_109\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 143.321206 617.972827 \n",
"L 151.459299 617.972827 \n",
"L 151.459299 617.75285 \n",
"L 143.321206 617.75285 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_110\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 151.459299 617.972827 \n",
"L 159.597391 617.972827 \n",
"L 159.597391 617.972827 \n",
"L 151.459299 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_111\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 159.597391 617.972827 \n",
"L 167.735483 617.972827 \n",
"L 167.735483 617.972827 \n",
"L 159.597391 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_112\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 167.735483 617.972827 \n",
"L 175.873575 617.972827 \n",
"L 175.873575 617.899501 \n",
"L 167.735483 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_113\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 175.873575 617.972827 \n",
"L 184.011667 617.972827 \n",
"L 184.011667 617.899501 \n",
"L 175.873575 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_114\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 184.011667 617.972827 \n",
"L 192.14976 617.972827 \n",
"L 192.14976 617.899501 \n",
"L 184.011667 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_115\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 192.14976 617.972827 \n",
"L 200.287852 617.972827 \n",
"L 200.287852 617.972827 \n",
"L 192.14976 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_116\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 200.287852 617.972827 \n",
"L 208.425944 617.972827 \n",
"L 208.425944 617.826176 \n",
"L 200.287852 617.826176 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_117\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 208.425944 617.972827 \n",
"L 216.564036 617.972827 \n",
"L 216.564036 617.826176 \n",
"L 208.425944 617.826176 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_118\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 216.564036 617.972827 \n",
"L 224.702129 617.972827 \n",
"L 224.702129 617.75285 \n",
"L 216.564036 617.75285 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_119\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 224.702129 617.972827 \n",
"L 232.840221 617.972827 \n",
"L 232.840221 617.899501 \n",
"L 224.702129 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_120\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 232.840221 617.972827 \n",
"L 240.978313 617.972827 \n",
"L 240.978313 617.679525 \n",
"L 232.840221 617.679525 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_121\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 240.978313 617.972827 \n",
"L 249.116405 617.972827 \n",
"L 249.116405 616.872945 \n",
"L 240.978313 616.872945 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_122\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 249.116405 617.972827 \n",
"L 257.254497 617.972827 \n",
"L 257.254497 617.459549 \n",
"L 249.116405 617.459549 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_123\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 257.254497 617.972827 \n",
"L 265.39259 617.972827 \n",
"L 265.39259 617.312898 \n",
"L 257.254497 617.312898 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_124\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 265.39259 617.972827 \n",
"L 273.530682 617.972827 \n",
"L 273.530682 617.092922 \n",
"L 265.39259 617.092922 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_125\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 273.530682 617.972827 \n",
"L 281.668774 617.972827 \n",
"L 281.668774 616.579644 \n",
"L 273.530682 616.579644 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_126\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 281.668774 617.972827 \n",
"L 289.806866 617.972827 \n",
"L 289.806866 615.113135 \n",
"L 281.668774 615.113135 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_127\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 289.806866 617.972827 \n",
"L 297.944958 617.972827 \n",
"L 297.944958 613.866603 \n",
"L 289.806866 613.866603 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_128\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 297.944958 617.972827 \n",
"L 306.083051 617.972827 \n",
"L 306.083051 611.006911 \n",
"L 297.944958 611.006911 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_129\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 306.083051 617.972827 \n",
"L 314.221143 617.972827 \n",
"L 314.221143 606.754037 \n",
"L 306.083051 606.754037 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_130\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 314.221143 617.972827 \n",
"L 322.359235 617.972827 \n",
"L 322.359235 599.64147 \n",
"L 314.221143 599.64147 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_131\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 322.359235 617.972827 \n",
"L 330.497327 617.972827 \n",
"L 330.497327 449.397674 \n",
"L 322.359235 449.397674 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_132\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 330.497327 617.972827 \n",
"L 338.63542 617.972827 \n",
"L 338.63542 593.848762 \n",
"L 330.497327 593.848762 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_133\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 338.63542 617.972827 \n",
"L 346.773512 617.972827 \n",
"L 346.773512 601.401281 \n",
"L 338.63542 601.401281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_134\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 346.773512 617.972827 \n",
"L 354.911604 617.972827 \n",
"L 354.911604 610.200332 \n",
"L 346.773512 610.200332 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_135\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 354.911604 617.972827 \n",
"L 363.049696 617.972827 \n",
"L 363.049696 611.593515 \n",
"L 354.911604 611.593515 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_136\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 363.049696 617.972827 \n",
"L 371.187788 617.972827 \n",
"L 371.187788 613.573301 \n",
"L 363.049696 613.573301 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_137\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 371.187788 617.972827 \n",
"L 379.325881 617.972827 \n",
"L 379.325881 614.306555 \n",
"L 371.187788 614.306555 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_138\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 379.325881 617.972827 \n",
"L 387.463973 617.972827 \n",
"L 387.463973 616.726294 \n",
"L 379.325881 616.726294 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_139\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 387.463973 617.972827 \n",
"L 395.602065 617.972827 \n",
"L 395.602065 617.092922 \n",
"L 387.463973 617.092922 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_140\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 395.602065 617.972827 \n",
"L 403.740157 617.972827 \n",
"L 403.740157 616.872945 \n",
"L 395.602065 616.872945 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_141\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 403.740157 617.972827 \n",
"L 411.87825 617.972827 \n",
"L 411.87825 617.459549 \n",
"L 403.740157 617.459549 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_142\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 411.87825 617.972827 \n",
"L 420.016342 617.972827 \n",
"L 420.016342 617.679525 \n",
"L 411.87825 617.679525 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_143\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 420.016342 617.972827 \n",
"L 428.154434 617.972827 \n",
"L 428.154434 617.75285 \n",
"L 420.016342 617.75285 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_144\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 428.154434 617.972827 \n",
"L 436.292526 617.972827 \n",
"L 436.292526 617.826176 \n",
"L 428.154434 617.826176 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_145\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 436.292526 617.972827 \n",
"L 444.430618 617.972827 \n",
"L 444.430618 617.899501 \n",
"L 436.292526 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_146\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 444.430618 617.972827 \n",
"L 452.568711 617.972827 \n",
"L 452.568711 617.972827 \n",
"L 444.430618 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_147\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 452.568711 617.972827 \n",
"L 460.706803 617.972827 \n",
"L 460.706803 617.75285 \n",
"L 452.568711 617.75285 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_148\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 460.706803 617.972827 \n",
"L 468.844895 617.972827 \n",
"L 468.844895 617.826176 \n",
"L 460.706803 617.826176 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_149\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 468.844895 617.972827 \n",
"L 476.982987 617.972827 \n",
"L 476.982987 617.899501 \n",
"L 468.844895 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_150\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 476.982987 617.972827 \n",
"L 485.12108 617.972827 \n",
"L 485.12108 617.972827 \n",
"L 476.982987 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_151\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 485.12108 617.972827 \n",
"L 493.259172 617.972827 \n",
"L 493.259172 617.972827 \n",
"L 485.12108 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_152\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 493.259172 617.972827 \n",
"L 501.397264 617.972827 \n",
"L 501.397264 617.972827 \n",
"L 493.259172 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_153\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 501.397264 617.972827 \n",
"L 509.535356 617.972827 \n",
"L 509.535356 617.826176 \n",
"L 501.397264 617.826176 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_154\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 509.535356 617.972827 \n",
"L 517.673448 617.972827 \n",
"L 517.673448 617.972827 \n",
"L 509.535356 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_155\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 517.673448 617.972827 \n",
"L 525.811541 617.972827 \n",
"L 525.811541 617.899501 \n",
"L 517.673448 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_156\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 525.811541 617.972827 \n",
"L 533.949633 617.972827 \n",
"L 533.949633 617.972827 \n",
"L 525.811541 617.972827 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_157\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 533.949633 617.972827 \n",
"L 542.087725 617.972827 \n",
"L 542.087725 617.899501 \n",
"L 533.949633 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_158\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 542.087725 617.972827 \n",
"L 550.225817 617.972827 \n",
"L 550.225817 617.899501 \n",
"L 542.087725 617.899501 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_97\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 130.791217 617.972183 \n",
"L 135.154495 617.963884 \n",
"L 139.517774 617.926155 \n",
"L 143.881053 617.862184 \n",
"L 148.244331 617.833132 \n",
"L 152.60761 617.889762 \n",
"L 156.970889 617.952013 \n",
"L 161.334167 617.95537 \n",
"L 165.697446 617.923869 \n",
"L 170.060725 617.921949 \n",
"L 174.424004 617.948056 \n",
"L 178.787282 617.922485 \n",
"L 183.150561 617.863384 \n",
"L 187.51384 617.888131 \n",
"L 191.877118 617.943402 \n",
"L 196.240397 617.933383 \n",
"L 200.603676 617.893755 \n",
"L 204.966954 617.861621 \n",
"L 209.330233 617.834467 \n",
"L 213.693512 617.809166 \n",
"L 218.05679 617.772168 \n",
"L 222.420069 617.810595 \n",
"L 226.783348 617.863316 \n",
"L 231.146627 617.761983 \n",
"L 235.509905 617.590248 \n",
"L 239.873184 617.350249 \n",
"L 244.236463 617.168715 \n",
"L 248.599741 617.245291 \n",
"L 252.96302 617.310273 \n",
"L 257.326299 617.290554 \n",
"L 261.689577 617.283873 \n",
"L 266.052856 617.256846 \n",
"L 270.416135 617.120093 \n",
"L 274.779413 616.900023 \n",
"L 279.142692 616.326318 \n",
"L 283.505971 615.364616 \n",
"L 287.869249 614.556141 \n",
"L 292.232528 614.043824 \n",
"L 296.595807 613.190732 \n",
"L 300.959086 611.591528 \n",
"L 305.322364 609.816569 \n",
"L 309.685643 607.10908 \n",
"L 314.048922 603.182343 \n",
"L 318.4122 596.475565 \n",
"L 322.775479 566.771789 \n",
"L 327.138758 499.829834 \n",
"L 331.502036 492.72322 \n",
"L 335.865315 559.355142 \n",
"L 340.228594 594.675757 \n",
"L 344.591872 602.602598 \n",
"L 348.955151 607.131231 \n",
"L 353.31843 610.298239 \n",
"L 357.681709 611.487601 \n",
"L 362.044987 612.278904 \n",
"L 366.408266 613.427888 \n",
"L 370.771545 614.313027 \n",
"L 375.134823 614.631738 \n",
"L 379.498102 615.360069 \n",
"L 383.861381 616.30668 \n",
"L 388.224659 616.827232 \n",
"L 392.587938 617.1095 \n",
"L 396.951217 617.127089 \n",
"L 401.314495 617.101052 \n",
"L 405.677774 617.271347 \n",
"L 410.041053 617.470489 \n",
"L 414.404331 617.597032 \n",
"L 418.76761 617.697761 \n",
"L 423.130889 617.722886 \n",
"L 427.494168 617.738299 \n",
"L 431.857446 617.821028 \n",
"L 436.220725 617.906264 \n",
"L 440.584004 617.918986 \n",
"L 444.947282 617.918279 \n",
"L 449.310561 617.939206 \n",
"L 453.67384 617.891371 \n",
"L 458.037118 617.785522 \n",
"L 462.400397 617.756748 \n",
"L 466.763676 617.795383 \n",
"L 471.126954 617.866637 \n",
"L 475.490233 617.93671 \n",
"L 479.853512 617.967425 \n",
"L 484.216791 617.972525 \n",
"L 488.580069 617.972713 \n",
"L 492.943348 617.97013 \n",
"L 497.306627 617.948745 \n",
"L 501.669905 617.892835 \n",
"L 506.033184 617.869546 \n",
"L 510.396463 617.919783 \n",
"L 514.759741 617.954711 \n",
"L 519.12302 617.935494 \n",
"L 523.486299 617.915792 \n",
"L 527.849577 617.93786 \n",
"L 532.212856 617.937203 \n",
"L 536.576135 617.915419 \n",
"L 540.939414 617.932403 \n",
"L 545.302692 617.93688 \n",
"L 549.665971 617.915816 \n",
"L 554.02925 617.935163 \n",
"L 558.392528 617.964397 \n",
"L 562.755807 617.972193 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_98\">\n",
" <path clip-path=\"url(#p866142b401)\" d=\"M 130.789611 617.972827 \n",
"L 252.348389 617.893916 \n",
"L 261.031159 617.673998 \n",
"L 267.543237 617.241598 \n",
"L 271.884621 616.709042 \n",
"L 276.226006 615.873309 \n",
"L 278.396699 615.306567 \n",
"L 280.567391 614.620147 \n",
"L 282.738084 613.798484 \n",
"L 284.908776 612.826579 \n",
"L 287.079469 611.690799 \n",
"L 289.250161 610.379789 \n",
"L 291.420854 608.885465 \n",
"L 293.591546 607.204044 \n",
"L 295.762239 605.33705 \n",
"L 297.932931 603.292226 \n",
"L 302.274316 598.73539 \n",
"L 306.615701 593.741524 \n",
"L 313.127778 586.166013 \n",
"L 315.298471 583.828827 \n",
"L 317.469163 581.680471 \n",
"L 319.639856 579.776423 \n",
"L 321.810548 578.167946 \n",
"L 323.981241 576.899799 \n",
"L 326.151933 576.008171 \n",
"L 328.322626 575.51897 \n",
"L 330.493318 575.446568 \n",
"L 332.664011 575.793102 \n",
"L 334.834703 576.548367 \n",
"L 337.005396 577.690318 \n",
"L 339.176088 579.186137 \n",
"L 341.346781 580.993802 \n",
"L 343.517473 583.064041 \n",
"L 347.858858 587.772409 \n",
"L 358.71232 600.289134 \n",
"L 363.053705 604.651645 \n",
"L 365.224398 606.581154 \n",
"L 367.39509 608.327016 \n",
"L 369.565783 609.885657 \n",
"L 371.736475 611.259143 \n",
"L 373.907168 612.45419 \n",
"L 376.07786 613.481142 \n",
"L 378.248553 614.352955 \n",
"L 380.419245 615.084251 \n",
"L 384.76063 616.187226 \n",
"L 389.102015 616.911837 \n",
"L 393.4434 617.366838 \n",
"L 399.955477 617.729946 \n",
"L 408.638247 617.91033 \n",
"L 428.17448 617.971174 \n",
"L 562.757413 617.972827 \n",
"L 562.757413 617.972827 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_159\">\n",
" <path d=\"M 42.828125 617.972827 \n",
"L 42.828125 447.474645 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_160\">\n",
" <path d=\"M 42.828125 617.972827 \n",
"L 616.408125 617.972827 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_49\">\n",
" <!-- ticker = HVB -->\n",
" <defs>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 19.671875 72.90625 \n",
"L 19.671875 43.015625 \n",
"L 55.515625 43.015625 \n",
"L 55.515625 72.90625 \n",
"L 65.375 72.90625 \n",
"L 65.375 0 \n",
"L 55.515625 0 \n",
"L 55.515625 34.71875 \n",
"L 19.671875 34.71875 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-48\"/>\n",
" <path d=\"M 28.609375 0 \n",
"L 0.78125 72.90625 \n",
"L 11.078125 72.90625 \n",
"L 34.1875 11.53125 \n",
"L 57.328125 72.90625 \n",
"L 67.578125 72.90625 \n",
"L 39.796875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-56\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(294.305546875 442.474644886)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-48\"/>\n",
" <use x=\"505.03125\" xlink:href=\"#BitstreamVeraSans-Roman-56\"/>\n",
" <use x=\"573.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_4\">\n",
" <g id=\"patch_161\">\n",
" <path d=\"M 42.828125 831.431009 \n",
"L 616.408125 831.431009 \n",
"L 616.408125 660.932827 \n",
"L 42.828125 660.932827 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_7\">\n",
" <g id=\"xtick_26\">\n",
" <g id=\"line2d_99\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 831.431009 \n",
"L 42.828125 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_100\"/>\n",
" <g id=\"text_50\">\n",
" <!-- −40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_27\">\n",
" <g id=\"line2d_101\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 106.559236 831.431009 \n",
"L 106.559236 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_102\"/>\n",
" <g id=\"text_51\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(96.0068923611 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_28\">\n",
" <g id=\"line2d_103\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 170.290347 831.431009 \n",
"L 170.290347 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_104\"/>\n",
" <g id=\"text_52\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(159.738003472 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_29\">\n",
" <g id=\"line2d_105\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 234.021458 831.431009 \n",
"L 234.021458 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_106\"/>\n",
" <g id=\"text_53\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(223.469114583 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_30\">\n",
" <g id=\"line2d_107\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 297.752569 831.431009 \n",
"L 297.752569 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_108\"/>\n",
" <g id=\"text_54\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(294.571319444 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_31\">\n",
" <g id=\"line2d_109\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 361.483681 831.431009 \n",
"L 361.483681 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_110\"/>\n",
" <g id=\"text_55\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(355.121180556 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_32\">\n",
" <g id=\"line2d_111\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 425.214792 831.431009 \n",
"L 425.214792 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_112\"/>\n",
" <g id=\"text_56\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(418.852291667 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_33\">\n",
" <g id=\"line2d_113\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 488.945903 831.431009 \n",
"L 488.945903 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_114\"/>\n",
" <g id=\"text_57\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(482.583402778 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_34\">\n",
" <g id=\"line2d_115\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 552.677014 831.431009 \n",
"L 552.677014 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_116\"/>\n",
" <g id=\"text_58\">\n",
" <!-- 40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(546.314513889 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_35\">\n",
" <g id=\"line2d_117\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 616.408125 831.431009 \n",
"L 616.408125 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_118\"/>\n",
" <g id=\"text_59\">\n",
" <!-- 50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 846.029446023)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_8\">\n",
" <g id=\"ytick_22\">\n",
" <g id=\"line2d_119\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 831.431009 \n",
"L 616.408125 831.431009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_120\"/>\n",
" <g id=\"text_60\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 834.190383523)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_23\">\n",
" <g id=\"line2d_121\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 797.331372 \n",
"L 616.408125 797.331372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_122\"/>\n",
" <g id=\"text_61\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 800.090747159)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_24\">\n",
" <g id=\"line2d_123\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 763.231736 \n",
"L 616.408125 763.231736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_124\"/>\n",
" <g id=\"text_62\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 765.991110795)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_25\">\n",
" <g id=\"line2d_125\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 729.132099 \n",
"L 616.408125 729.132099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_126\"/>\n",
" <g id=\"text_63\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 731.891474432)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_26\">\n",
" <g id=\"line2d_127\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 695.032463 \n",
"L 616.408125 695.032463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_128\"/>\n",
" <g id=\"text_64\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 697.791838068)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_27\">\n",
" <g id=\"line2d_129\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 42.828125 660.932827 \n",
"L 616.408125 660.932827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_130\"/>\n",
" <g id=\"text_65\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 663.692201705)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_162\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 102.506969 831.431009 \n",
"L 111.502938 831.431009 \n",
"L 111.502938 831.297872 \n",
"L 102.506969 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_163\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 111.502938 831.431009 \n",
"L 120.498906 831.431009 \n",
"L 120.498906 831.431009 \n",
"L 111.502938 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_164\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 120.498906 831.431009 \n",
"L 129.494875 831.431009 \n",
"L 129.494875 831.431009 \n",
"L 120.498906 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_165\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 129.494875 831.431009 \n",
"L 138.490844 831.431009 \n",
"L 138.490844 831.431009 \n",
"L 129.494875 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_166\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 138.490844 831.431009 \n",
"L 147.486812 831.431009 \n",
"L 147.486812 831.431009 \n",
"L 138.490844 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_167\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 147.486812 831.431009 \n",
"L 156.482781 831.431009 \n",
"L 156.482781 831.431009 \n",
"L 147.486812 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_168\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 156.482781 831.431009 \n",
"L 165.47875 831.431009 \n",
"L 165.47875 831.431009 \n",
"L 156.482781 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_169\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 165.47875 831.431009 \n",
"L 174.474719 831.431009 \n",
"L 174.474719 831.431009 \n",
"L 165.47875 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_170\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 174.474719 831.431009 \n",
"L 183.470687 831.431009 \n",
"L 183.470687 831.297872 \n",
"L 174.474719 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_171\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 183.470687 831.431009 \n",
"L 192.466656 831.431009 \n",
"L 192.466656 831.164736 \n",
"L 183.470687 831.164736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_172\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 192.466656 831.431009 \n",
"L 201.462625 831.431009 \n",
"L 201.462625 831.297872 \n",
"L 192.466656 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_173\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 201.462625 831.431009 \n",
"L 210.458593 831.431009 \n",
"L 210.458593 831.164736 \n",
"L 201.462625 831.164736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_174\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 210.458593 831.431009 \n",
"L 219.454562 831.431009 \n",
"L 219.454562 831.297872 \n",
"L 210.458593 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_175\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 219.454562 831.431009 \n",
"L 228.450531 831.431009 \n",
"L 228.450531 830.898464 \n",
"L 219.454562 830.898464 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_176\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 228.450531 831.431009 \n",
"L 237.446499 831.431009 \n",
"L 237.446499 830.499055 \n",
"L 228.450531 830.499055 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_177\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 237.446499 831.431009 \n",
"L 246.442468 831.431009 \n",
"L 246.442468 829.167692 \n",
"L 237.446499 829.167692 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_178\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 246.442468 831.431009 \n",
"L 255.438437 831.431009 \n",
"L 255.438437 827.969466 \n",
"L 246.442468 827.969466 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_179\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 255.438437 831.431009 \n",
"L 264.434406 831.431009 \n",
"L 264.434406 826.504967 \n",
"L 255.438437 826.504967 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_180\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 264.434406 831.431009 \n",
"L 273.430374 831.431009 \n",
"L 273.430374 820.913245 \n",
"L 264.434406 820.913245 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_181\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 273.430374 831.431009 \n",
"L 282.426343 831.431009 \n",
"L 282.426343 802.806714 \n",
"L 273.430374 802.806714 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_182\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 282.426343 831.431009 \n",
"L 291.422312 831.431009 \n",
"L 291.422312 754.877663 \n",
"L 282.426343 754.877663 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_183\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 291.422312 831.431009 \n",
"L 300.41828 831.431009 \n",
"L 300.41828 664.877556 \n",
"L 291.422312 664.877556 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_184\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 300.41828 831.431009 \n",
"L 309.414249 831.431009 \n",
"L 309.414249 723.457507 \n",
"L 300.41828 723.457507 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_185\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 309.414249 831.431009 \n",
"L 318.410218 831.431009 \n",
"L 318.410218 788.827408 \n",
"L 309.414249 788.827408 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_186\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 318.410218 831.431009 \n",
"L 327.406186 831.431009 \n",
"L 327.406186 814.922113 \n",
"L 318.410218 814.922113 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_187\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 327.406186 831.431009 \n",
"L 336.402155 831.431009 \n",
"L 336.402155 823.57597 \n",
"L 327.406186 823.57597 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_188\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 336.402155 831.431009 \n",
"L 345.398124 831.431009 \n",
"L 345.398124 826.904376 \n",
"L 336.402155 826.904376 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_189\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 345.398124 831.431009 \n",
"L 354.394093 831.431009 \n",
"L 354.394093 827.969466 \n",
"L 345.398124 827.969466 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_190\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 354.394093 831.431009 \n",
"L 363.390061 831.431009 \n",
"L 363.390061 829.700237 \n",
"L 354.394093 829.700237 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_191\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 363.390061 831.431009 \n",
"L 372.38603 831.431009 \n",
"L 372.38603 830.499055 \n",
"L 363.390061 830.499055 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_192\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 372.38603 831.431009 \n",
"L 381.381999 831.431009 \n",
"L 381.381999 830.365918 \n",
"L 372.38603 830.365918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_193\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 381.381999 831.431009 \n",
"L 390.377967 831.431009 \n",
"L 390.377967 831.297872 \n",
"L 381.381999 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_194\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 390.377967 831.431009 \n",
"L 399.373936 831.431009 \n",
"L 399.373936 831.164736 \n",
"L 390.377967 831.164736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_195\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 399.373936 831.431009 \n",
"L 408.369905 831.431009 \n",
"L 408.369905 831.297872 \n",
"L 399.373936 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_196\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 408.369905 831.431009 \n",
"L 417.365873 831.431009 \n",
"L 417.365873 831.164736 \n",
"L 408.369905 831.164736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_197\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 417.365873 831.431009 \n",
"L 426.361842 831.431009 \n",
"L 426.361842 831.431009 \n",
"L 417.365873 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_198\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 426.361842 831.431009 \n",
"L 435.357811 831.431009 \n",
"L 435.357811 831.431009 \n",
"L 426.361842 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_199\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 435.357811 831.431009 \n",
"L 444.35378 831.431009 \n",
"L 444.35378 831.297872 \n",
"L 435.357811 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_200\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 444.35378 831.431009 \n",
"L 453.349748 831.431009 \n",
"L 453.349748 831.431009 \n",
"L 444.35378 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_201\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 453.349748 831.431009 \n",
"L 462.345717 831.431009 \n",
"L 462.345717 831.431009 \n",
"L 453.349748 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_202\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 462.345717 831.431009 \n",
"L 471.341686 831.431009 \n",
"L 471.341686 831.431009 \n",
"L 462.345717 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_203\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 471.341686 831.431009 \n",
"L 480.337654 831.431009 \n",
"L 480.337654 831.431009 \n",
"L 471.341686 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_204\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 480.337654 831.431009 \n",
"L 489.333623 831.431009 \n",
"L 489.333623 831.431009 \n",
"L 480.337654 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_205\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 489.333623 831.431009 \n",
"L 498.329592 831.431009 \n",
"L 498.329592 831.431009 \n",
"L 489.333623 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_206\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 498.329592 831.431009 \n",
"L 507.32556 831.431009 \n",
"L 507.32556 831.431009 \n",
"L 498.329592 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_207\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 507.32556 831.431009 \n",
"L 516.321529 831.431009 \n",
"L 516.321529 831.431009 \n",
"L 507.32556 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_208\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 516.321529 831.431009 \n",
"L 525.317498 831.431009 \n",
"L 525.317498 831.431009 \n",
"L 516.321529 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_209\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 525.317498 831.431009 \n",
"L 534.313467 831.431009 \n",
"L 534.313467 831.431009 \n",
"L 525.317498 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_210\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 534.313467 831.431009 \n",
"L 543.309435 831.431009 \n",
"L 543.309435 831.431009 \n",
"L 534.313467 831.431009 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_211\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 543.309435 831.431009 \n",
"L 552.305404 831.431009 \n",
"L 552.305404 831.297872 \n",
"L 543.309435 831.297872 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_131\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 91.845029 831.429513 \n",
"L 96.60384 831.397158 \n",
"L 101.362651 831.303372 \n",
"L 106.121462 831.350852 \n",
"L 110.880274 831.422625 \n",
"L 115.639085 831.430862 \n",
"L 120.397896 831.431008 \n",
"L 125.156707 831.431009 \n",
"L 129.915519 831.431009 \n",
"L 134.67433 831.431009 \n",
"L 139.433141 831.431009 \n",
"L 144.191953 831.431009 \n",
"L 148.950764 831.431009 \n",
"L 153.709575 831.431009 \n",
"L 158.468386 831.431009 \n",
"L 163.227198 831.431003 \n",
"L 167.986009 831.430081 \n",
"L 172.74482 831.405111 \n",
"L 177.503631 831.305605 \n",
"L 182.262443 831.245733 \n",
"L 187.021254 831.153332 \n",
"L 191.780065 831.29846 \n",
"L 196.538877 831.367963 \n",
"L 201.297688 831.279136 \n",
"L 206.056499 831.201938 \n",
"L 210.81531 831.073585 \n",
"L 215.574122 831.220311 \n",
"L 220.332933 831.153674 \n",
"L 225.091744 830.813882 \n",
"L 229.850555 830.638358 \n",
"L 234.609367 830.206335 \n",
"L 239.368178 829.564366 \n",
"L 244.126989 829.069254 \n",
"L 248.8858 828.360174 \n",
"L 253.644612 827.327084 \n",
"L 258.403423 826.420056 \n",
"L 263.162234 825.22288 \n",
"L 267.921046 821.198584 \n",
"L 272.679857 813.975391 \n",
"L 277.438668 803.446736 \n",
"L 282.197479 784.659581 \n",
"L 286.956291 752.0886 \n",
"L 291.715102 706.208358 \n",
"L 296.473913 670.085405 \n",
"L 301.232724 686.47631 \n",
"L 305.991536 732.988935 \n",
"L 310.750347 770.410367 \n",
"L 315.509158 794.240978 \n",
"L 320.26797 809.918615 \n",
"L 325.026781 817.43784 \n",
"L 329.785592 821.953981 \n",
"L 334.544403 825.07011 \n",
"L 339.303215 826.410398 \n",
"L 344.062026 826.905996 \n",
"L 348.820837 827.845312 \n",
"L 353.579648 828.574689 \n",
"L 358.33846 829.571303 \n",
"L 363.097271 830.414739 \n",
"L 367.856082 830.474452 \n",
"L 372.614893 830.261464 \n",
"L 377.373705 830.472892 \n",
"L 382.132516 830.824838 \n",
"L 386.891327 831.187317 \n",
"L 391.650139 831.2428 \n",
"L 396.40895 831.193021 \n",
"L 401.167761 831.221303 \n",
"L 405.926572 831.369444 \n",
"L 410.685384 831.303538 \n",
"L 415.444195 831.188712 \n",
"L 420.203006 831.320582 \n",
"L 424.961817 831.419773 \n",
"L 429.720629 831.41368 \n",
"L 434.47944 831.32513 \n",
"L 439.238251 831.322031 \n",
"L 443.997063 831.412327 \n",
"L 448.755874 831.430475 \n",
"L 453.514685 831.431006 \n",
"L 458.273496 831.431009 \n",
"L 463.032308 831.431009 \n",
"L 467.791119 831.431009 \n",
"L 472.54993 831.431009 \n",
"L 477.308741 831.431009 \n",
"L 482.067553 831.431009 \n",
"L 486.826364 831.431009 \n",
"L 491.585175 831.431009 \n",
"L 496.343986 831.431009 \n",
"L 501.102798 831.431009 \n",
"L 505.861609 831.431009 \n",
"L 510.62042 831.431009 \n",
"L 515.379232 831.431009 \n",
"L 520.138043 831.431009 \n",
"L 524.896854 831.431009 \n",
"L 529.655665 831.431009 \n",
"L 534.414477 831.431008 \n",
"L 539.173288 831.430862 \n",
"L 543.932099 831.422625 \n",
"L 548.69091 831.350852 \n",
"L 553.449722 831.303372 \n",
"L 558.208533 831.397158 \n",
"L 562.967344 831.429513 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_132\">\n",
" <path clip-path=\"url(#pf43dc56857)\" d=\"M 91.843559 831.431009 \n",
"L 229.156447 831.353226 \n",
"L 236.258838 831.119659 \n",
"L 240.993765 830.709038 \n",
"L 243.361229 830.35884 \n",
"L 245.728693 829.865176 \n",
"L 248.096156 829.182127 \n",
"L 250.46362 828.254671 \n",
"L 252.831083 827.019109 \n",
"L 255.198547 825.404533 \n",
"L 257.566011 823.335576 \n",
"L 259.933474 820.736631 \n",
"L 262.300938 817.537569 \n",
"L 264.668401 813.680822 \n",
"L 267.035865 809.129467 \n",
"L 269.403328 803.875675 \n",
"L 271.770792 797.948706 \n",
"L 274.138256 791.421447 \n",
"L 278.873183 777.09631 \n",
"L 283.60811 762.415597 \n",
"L 285.975574 755.575216 \n",
"L 288.343037 749.43924 \n",
"L 290.710501 744.276353 \n",
"L 293.077964 740.324423 \n",
"L 295.445428 737.772382 \n",
"L 297.812892 736.745255 \n",
"L 300.180355 737.294014 \n",
"L 302.547819 739.39138 \n",
"L 304.915282 742.934075 \n",
"L 307.282746 747.751248 \n",
"L 309.65021 753.618132 \n",
"L 312.017673 760.273399 \n",
"L 316.7526 774.836067 \n",
"L 321.487527 789.330316 \n",
"L 323.854991 796.018776 \n",
"L 326.222455 802.138524 \n",
"L 328.589918 807.60244 \n",
"L 330.957382 812.368567 \n",
"L 333.324845 816.434231 \n",
"L 335.692309 819.828385 \n",
"L 338.059773 822.603192 \n",
"L 340.427236 824.825759 \n",
"L 342.7947 826.570698 \n",
"L 345.162163 827.913966 \n",
"L 347.529627 828.928186 \n",
"L 349.897091 829.679463 \n",
"L 352.264554 830.225552 \n",
"L 354.632018 830.61514 \n",
"L 359.366945 831.075562 \n",
"L 364.101872 831.28617 \n",
"L 373.571726 831.411331 \n",
"L 409.08368 831.431008 \n",
"L 562.968814 831.431009 \n",
"L 562.968814 831.431009 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_212\">\n",
" <path d=\"M 42.828125 831.431009 \n",
"L 42.828125 660.932827 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_213\">\n",
" <path d=\"M 42.828125 831.431009 \n",
"L 616.408125 831.431009 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_66\">\n",
" <!-- ticker = VRNT -->\n",
" <defs>\n",
" <path d=\"M -0.296875 72.90625 \n",
"L 61.375 72.90625 \n",
"L 61.375 64.59375 \n",
"L 35.5 64.59375 \n",
"L 35.5 0 \n",
"L 25.59375 0 \n",
"L 25.59375 64.59375 \n",
"L -0.296875 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-54\"/>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 23.09375 72.90625 \n",
"L 55.421875 11.921875 \n",
"L 55.421875 72.90625 \n",
"L 64.984375 72.90625 \n",
"L 64.984375 0 \n",
"L 51.703125 0 \n",
"L 19.390625 60.984375 \n",
"L 19.390625 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-4e\"/>\n",
" <path d=\"M 44.390625 34.1875 \n",
"Q 47.5625 33.109375 50.5625 29.59375 \n",
"Q 53.5625 26.078125 56.59375 19.921875 \n",
"L 66.609375 0 \n",
"L 56 0 \n",
"L 46.6875 18.703125 \n",
"Q 43.0625 26.03125 39.671875 28.421875 \n",
"Q 36.28125 30.8125 30.421875 30.8125 \n",
"L 19.671875 30.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"L 9.8125 72.90625 \n",
"L 32.078125 72.90625 \n",
"Q 44.578125 72.90625 50.734375 67.671875 \n",
"Q 56.890625 62.453125 56.890625 51.90625 \n",
"Q 56.890625 45.015625 53.6875 40.46875 \n",
"Q 50.484375 35.9375 44.390625 34.1875 \n",
"M 19.671875 64.796875 \n",
"L 19.671875 38.921875 \n",
"L 32.078125 38.921875 \n",
"Q 39.203125 38.921875 42.84375 42.21875 \n",
"Q 46.484375 45.515625 46.484375 51.90625 \n",
"Q 46.484375 58.296875 42.84375 61.546875 \n",
"Q 39.203125 64.796875 32.078125 64.796875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-52\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(290.919609375 655.932826705)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-56\"/>\n",
" <use x=\"498.244140625\" xlink:href=\"#BitstreamVeraSans-Roman-52\"/>\n",
" <use x=\"567.7265625\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" <use x=\"642.53125\" xlink:href=\"#BitstreamVeraSans-Roman-54\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_5\">\n",
" <g id=\"patch_214\">\n",
" <path d=\"M 42.828125 1044.88919 \n",
"L 616.408125 1044.88919 \n",
"L 616.408125 874.391009 \n",
"L 42.828125 874.391009 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_9\">\n",
" <g id=\"xtick_36\">\n",
" <g id=\"line2d_133\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 1044.88919 \n",
"L 42.828125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_134\"/>\n",
" <g id=\"text_67\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_37\">\n",
" <g id=\"line2d_135\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 114.525625 1044.88919 \n",
"L 114.525625 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_136\"/>\n",
" <g id=\"text_68\">\n",
" <!-- −15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(103.97328125 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_38\">\n",
" <g id=\"line2d_137\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 186.223125 1044.88919 \n",
"L 186.223125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_138\"/>\n",
" <g id=\"text_69\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(175.67078125 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_39\">\n",
" <g id=\"line2d_139\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 257.920625 1044.88919 \n",
"L 257.920625 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_140\"/>\n",
" <g id=\"text_70\">\n",
" <!-- −5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(250.54953125 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_40\">\n",
" <g id=\"line2d_141\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 329.618125 1044.88919 \n",
"L 329.618125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_142\"/>\n",
" <g id=\"text_71\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(326.436875 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_41\">\n",
" <g id=\"line2d_143\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 401.315625 1044.88919 \n",
"L 401.315625 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_144\"/>\n",
" <g id=\"text_72\">\n",
" <!-- 5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(398.134375 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_42\">\n",
" <g id=\"line2d_145\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 473.013125 1044.88919 \n",
"L 473.013125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_146\"/>\n",
" <g id=\"text_73\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(466.650625 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_43\">\n",
" <g id=\"line2d_147\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 544.710625 1044.88919 \n",
"L 544.710625 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_148\"/>\n",
" <g id=\"text_74\">\n",
" <!-- 15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(538.348125 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_44\">\n",
" <g id=\"line2d_149\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 616.408125 1044.88919 \n",
"L 616.408125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_150\"/>\n",
" <g id=\"text_75\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 1059.48762784)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_10\">\n",
" <g id=\"ytick_28\">\n",
" <g id=\"line2d_151\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 1044.88919 \n",
"L 616.408125 1044.88919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_152\"/>\n",
" <g id=\"text_76\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1047.64856534)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_29\">\n",
" <g id=\"line2d_153\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 1020.532307 \n",
"L 616.408125 1020.532307 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_154\"/>\n",
" <g id=\"text_77\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1023.29168222)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_30\">\n",
" <g id=\"line2d_155\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 996.175424 \n",
"L 616.408125 996.175424 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_156\"/>\n",
" <g id=\"text_78\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 998.934799107)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_31\">\n",
" <g id=\"line2d_157\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 971.818541 \n",
"L 616.408125 971.818541 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_158\"/>\n",
" <g id=\"text_79\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 974.57791599)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_32\">\n",
" <g id=\"line2d_159\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 947.461658 \n",
"L 616.408125 947.461658 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_160\"/>\n",
" <g id=\"text_80\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 950.221032873)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_33\">\n",
" <g id=\"line2d_161\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 923.104775 \n",
"L 616.408125 923.104775 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_162\"/>\n",
" <g id=\"text_81\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 925.864149756)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_34\">\n",
" <g id=\"line2d_163\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 898.747892 \n",
"L 616.408125 898.747892 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_164\"/>\n",
" <g id=\"text_82\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 901.50726664)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_35\">\n",
" <g id=\"line2d_165\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 42.828125 874.391009 \n",
"L 616.408125 874.391009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_166\"/>\n",
" <g id=\"text_83\">\n",
" <!-- 0.35 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 877.150383523)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_215\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 82.586983 1044.88919 \n",
"L 91.561737 1044.88919 \n",
"L 91.561737 1044.614938 \n",
"L 82.586983 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_216\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 91.561737 1044.88919 \n",
"L 100.53649 1044.88919 \n",
"L 100.53649 1044.88919 \n",
"L 91.561737 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_217\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 100.53649 1044.88919 \n",
"L 109.511243 1044.88919 \n",
"L 109.511243 1044.88919 \n",
"L 100.53649 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_218\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 109.511243 1044.88919 \n",
"L 118.485996 1044.88919 \n",
"L 118.485996 1044.88919 \n",
"L 109.511243 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_219\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 118.485996 1044.88919 \n",
"L 127.46075 1044.88919 \n",
"L 127.46075 1044.88919 \n",
"L 118.485996 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_220\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 127.46075 1044.88919 \n",
"L 136.435503 1044.88919 \n",
"L 136.435503 1044.88919 \n",
"L 127.46075 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_221\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 136.435503 1044.88919 \n",
"L 145.410256 1044.88919 \n",
"L 145.410256 1044.88919 \n",
"L 136.435503 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_222\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 145.410256 1044.88919 \n",
"L 154.385009 1044.88919 \n",
"L 154.385009 1044.88919 \n",
"L 145.410256 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_223\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 154.385009 1044.88919 \n",
"L 163.359763 1044.88919 \n",
"L 163.359763 1044.88919 \n",
"L 154.385009 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_224\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 163.359763 1044.88919 \n",
"L 172.334516 1044.88919 \n",
"L 172.334516 1044.614938 \n",
"L 163.359763 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_225\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 172.334516 1044.88919 \n",
"L 181.309269 1044.88919 \n",
"L 181.309269 1044.614938 \n",
"L 172.334516 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_226\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 181.309269 1044.88919 \n",
"L 190.284023 1044.88919 \n",
"L 190.284023 1044.614938 \n",
"L 181.309269 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_227\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 190.284023 1044.88919 \n",
"L 199.258776 1044.88919 \n",
"L 199.258776 1044.340685 \n",
"L 190.284023 1044.340685 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_228\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 199.258776 1044.88919 \n",
"L 208.233529 1044.88919 \n",
"L 208.233529 1044.066432 \n",
"L 199.258776 1044.066432 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_229\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 208.233529 1044.88919 \n",
"L 217.208282 1044.88919 \n",
"L 217.208282 1044.066432 \n",
"L 208.233529 1044.066432 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_230\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 217.208282 1044.88919 \n",
"L 226.183036 1044.88919 \n",
"L 226.183036 1043.79218 \n",
"L 217.208282 1043.79218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_231\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 226.183036 1044.88919 \n",
"L 235.157789 1044.88919 \n",
"L 235.157789 1043.517927 \n",
"L 226.183036 1043.517927 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_232\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 235.157789 1044.88919 \n",
"L 244.132542 1044.88919 \n",
"L 244.132542 1042.146664 \n",
"L 235.157789 1042.146664 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_233\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 244.132542 1044.88919 \n",
"L 253.107295 1044.88919 \n",
"L 253.107295 1041.872411 \n",
"L 244.132542 1041.872411 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_234\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 253.107295 1044.88919 \n",
"L 262.082049 1044.88919 \n",
"L 262.082049 1041.049653 \n",
"L 253.107295 1041.049653 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_235\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 262.082049 1044.88919 \n",
"L 271.056802 1044.88919 \n",
"L 271.056802 1037.210117 \n",
"L 262.082049 1037.210117 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_236\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 271.056802 1044.88919 \n",
"L 280.031555 1044.88919 \n",
"L 280.031555 1034.46759 \n",
"L 271.056802 1034.46759 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_237\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 280.031555 1044.88919 \n",
"L 289.006308 1044.88919 \n",
"L 289.006308 1028.982538 \n",
"L 280.031555 1028.982538 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_238\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 289.006308 1044.88919 \n",
"L 297.981062 1044.88919 \n",
"L 297.981062 1016.915422 \n",
"L 289.006308 1016.915422 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_239\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 297.981062 1044.88919 \n",
"L 306.955815 1044.88919 \n",
"L 306.955815 999.363253 \n",
"L 297.981062 999.363253 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_240\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 306.955815 1044.88919 \n",
"L 315.930568 1044.88919 \n",
"L 315.930568 972.486495 \n",
"L 306.955815 972.486495 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_241\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 315.930568 1044.88919 \n",
"L 324.905322 1044.88919 \n",
"L 324.905322 945.609737 \n",
"L 315.930568 945.609737 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_242\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 324.905322 1044.88919 \n",
"L 333.880075 1044.88919 \n",
"L 333.880075 894.324494 \n",
"L 324.905322 894.324494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_243\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 333.880075 1044.88919 \n",
"L 342.854828 1044.88919 \n",
"L 342.854828 921.201253 \n",
"L 333.880075 921.201253 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_244\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 342.854828 1044.88919 \n",
"L 351.829581 1044.88919 \n",
"L 351.829581 967.001442 \n",
"L 342.854828 967.001442 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_245\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 351.829581 1044.88919 \n",
"L 360.804335 1044.88919 \n",
"L 360.804335 995.249464 \n",
"L 351.829581 995.249464 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_246\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 360.804335 1044.88919 \n",
"L 369.779088 1044.88919 \n",
"L 369.779088 1013.62439 \n",
"L 360.804335 1013.62439 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_247\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 369.779088 1044.88919 \n",
"L 378.753841 1044.88919 \n",
"L 378.753841 1024.868748 \n",
"L 369.779088 1024.868748 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_248\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 378.753841 1044.88919 \n",
"L 387.728594 1044.88919 \n",
"L 387.728594 1035.016096 \n",
"L 378.753841 1035.016096 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_249\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 387.728594 1044.88919 \n",
"L 396.703348 1044.88919 \n",
"L 396.703348 1038.855632 \n",
"L 387.728594 1038.855632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_250\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 396.703348 1044.88919 \n",
"L 405.678101 1044.88919 \n",
"L 405.678101 1041.323906 \n",
"L 396.703348 1041.323906 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_251\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 405.678101 1044.88919 \n",
"L 414.652854 1044.88919 \n",
"L 414.652854 1042.969422 \n",
"L 405.678101 1042.969422 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_252\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 414.652854 1044.88919 \n",
"L 423.627608 1044.88919 \n",
"L 423.627608 1042.420917 \n",
"L 414.652854 1042.420917 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_253\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 423.627608 1044.88919 \n",
"L 432.602361 1044.88919 \n",
"L 432.602361 1043.79218 \n",
"L 423.627608 1043.79218 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_254\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 432.602361 1044.88919 \n",
"L 441.577114 1044.88919 \n",
"L 441.577114 1042.695169 \n",
"L 432.602361 1042.695169 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_255\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 441.577114 1044.88919 \n",
"L 450.551867 1044.88919 \n",
"L 450.551867 1043.517927 \n",
"L 441.577114 1043.517927 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_256\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 450.551867 1044.88919 \n",
"L 459.526621 1044.88919 \n",
"L 459.526621 1044.614938 \n",
"L 450.551867 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_257\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 459.526621 1044.88919 \n",
"L 468.501374 1044.88919 \n",
"L 468.501374 1044.88919 \n",
"L 459.526621 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_258\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 468.501374 1044.88919 \n",
"L 477.476127 1044.88919 \n",
"L 477.476127 1044.066432 \n",
"L 468.501374 1044.066432 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_259\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 477.476127 1044.88919 \n",
"L 486.45088 1044.88919 \n",
"L 486.45088 1044.614938 \n",
"L 477.476127 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_260\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 486.45088 1044.88919 \n",
"L 495.425634 1044.88919 \n",
"L 495.425634 1044.88919 \n",
"L 486.45088 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_261\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 495.425634 1044.88919 \n",
"L 504.400387 1044.88919 \n",
"L 504.400387 1044.614938 \n",
"L 495.425634 1044.614938 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_262\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 504.400387 1044.88919 \n",
"L 513.37514 1044.88919 \n",
"L 513.37514 1044.88919 \n",
"L 504.400387 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_263\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 513.37514 1044.88919 \n",
"L 522.349893 1044.88919 \n",
"L 522.349893 1044.88919 \n",
"L 513.37514 1044.88919 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_264\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 522.349893 1044.88919 \n",
"L 531.324647 1044.88919 \n",
"L 531.324647 1044.340685 \n",
"L 522.349893 1044.340685 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_167\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 64.098217 1044.887418 \n",
"L 69.004431 1044.875135 \n",
"L 73.910645 1044.830036 \n",
"L 78.816859 1044.757065 \n",
"L 83.723073 1044.732572 \n",
"L 88.629287 1044.790662 \n",
"L 93.535501 1044.856294 \n",
"L 98.441715 1044.883361 \n",
"L 103.34793 1044.888642 \n",
"L 108.254144 1044.889163 \n",
"L 113.160358 1044.88919 \n",
"L 118.066572 1044.88919 \n",
"L 122.972786 1044.88919 \n",
"L 127.879 1044.88919 \n",
"L 132.785214 1044.88919 \n",
"L 137.691428 1044.889189 \n",
"L 142.597642 1044.88915 \n",
"L 147.503856 1044.888438 \n",
"L 152.410071 1044.881772 \n",
"L 157.316285 1044.850202 \n",
"L 162.222499 1044.7783 \n",
"L 167.128713 1044.704521 \n",
"L 172.034927 1044.653016 \n",
"L 176.941141 1044.578088 \n",
"L 181.847355 1044.541781 \n",
"L 186.753569 1044.587347 \n",
"L 191.659783 1044.564174 \n",
"L 196.565998 1044.405884 \n",
"L 201.472212 1044.177156 \n",
"L 206.378426 1043.988822 \n",
"L 211.28464 1043.953501 \n",
"L 216.190854 1043.973713 \n",
"L 221.097068 1043.865293 \n",
"L 226.003282 1043.563204 \n",
"L 230.909496 1043.095501 \n",
"L 235.81571 1042.694968 \n",
"L 240.721925 1042.487172 \n",
"L 245.628139 1042.132636 \n",
"L 250.534353 1041.483785 \n",
"L 255.440567 1040.716852 \n",
"L 260.346781 1039.767253 \n",
"L 265.252995 1038.405434 \n",
"L 270.159209 1036.624211 \n",
"L 275.065423 1034.390329 \n",
"L 279.971637 1031.471314 \n",
"L 284.877852 1027.313008 \n",
"L 289.784066 1021.300579 \n",
"L 294.69028 1013.318028 \n",
"L 299.596494 1003.448544 \n",
"L 304.502708 991.639514 \n",
"L 309.408922 978.164073 \n",
"L 314.315136 963.191451 \n",
"L 319.22135 945.450679 \n",
"L 324.127564 925.747182 \n",
"L 329.033779 911.800805 \n",
"L 333.939993 912.274951 \n",
"L 338.846207 926.790873 \n",
"L 343.752421 948.169184 \n",
"L 348.658635 969.178435 \n",
"L 353.564849 985.606706 \n",
"L 358.471063 997.768507 \n",
"L 363.377277 1008.182181 \n",
"L 368.283491 1017.17014 \n",
"L 373.189705 1023.729708 \n",
"L 378.09592 1028.596835 \n",
"L 383.002134 1033.071924 \n",
"L 387.908348 1036.687473 \n",
"L 392.814562 1038.843408 \n",
"L 397.720776 1040.223228 \n",
"L 402.62699 1041.344613 \n",
"L 407.533204 1042.107678 \n",
"L 412.439418 1042.506333 \n",
"L 417.345632 1042.868797 \n",
"L 422.251847 1043.3173 \n",
"L 427.158061 1043.473839 \n",
"L 432.064275 1043.265538 \n",
"L 436.970489 1043.144188 \n",
"L 441.876703 1043.358381 \n",
"L 446.782917 1043.697217 \n",
"L 451.689131 1044.02259 \n",
"L 456.595345 1044.370421 \n",
"L 461.501559 1044.589425 \n",
"L 466.407774 1044.540653 \n",
"L 471.313988 1044.372709 \n",
"L 476.220202 1044.35132 \n",
"L 481.126416 1044.531791 \n",
"L 486.03263 1044.715259 \n",
"L 490.938844 1044.752685 \n",
"L 495.845058 1044.727054 \n",
"L 500.751272 1044.763723 \n",
"L 505.657486 1044.83591 \n",
"L 510.563701 1044.869454 \n",
"L 515.469915 1044.842849 \n",
"L 520.376129 1044.748016 \n",
"L 525.282343 1044.631914 \n",
"L 530.188557 1044.608959 \n",
"L 535.094771 1044.70598 \n",
"L 540.000985 1044.818831 \n",
"L 544.907199 1044.87383 \n",
"L 549.813413 1044.887337 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_168\">\n",
" <path clip-path=\"url(#p53ba917543)\" d=\"M 64.094958 1044.88919 \n",
"L 217.866154 1044.796882 \n",
"L 227.629405 1044.598158 \n",
"L 234.951842 1044.246158 \n",
"L 239.833468 1043.833345 \n",
"L 244.715093 1043.200147 \n",
"L 249.596718 1042.256779 \n",
"L 252.037531 1041.634854 \n",
"L 254.478343 1040.892144 \n",
"L 256.919156 1040.011839 \n",
"L 259.359969 1038.976339 \n",
"L 261.800781 1037.767582 \n",
"L 264.241594 1036.367469 \n",
"L 266.682407 1034.758369 \n",
"L 269.123219 1032.92371 \n",
"L 271.564032 1030.848654 \n",
"L 274.004845 1028.520821 \n",
"L 276.445657 1025.931072 \n",
"L 278.88647 1023.074293 \n",
"L 281.327282 1019.950178 \n",
"L 283.768095 1016.563961 \n",
"L 286.208908 1012.927059 \n",
"L 291.090533 1004.980755 \n",
"L 295.972158 996.341772 \n",
"L 305.735409 978.455791 \n",
"L 310.617034 970.157405 \n",
"L 313.057847 966.398711 \n",
"L 315.498659 962.986773 \n",
"L 317.939472 959.981978 \n",
"L 320.380284 957.439039 \n",
"L 322.821097 955.405339 \n",
"L 325.26191 953.919464 \n",
"L 327.702722 953.009986 \n",
"L 330.143535 952.694547 \n",
"L 332.584348 952.979296 \n",
"L 335.02516 953.858682 \n",
"L 337.465973 955.31564 \n",
"L 339.906786 957.322138 \n",
"L 342.347598 959.840077 \n",
"L 344.788411 962.82249 \n",
"L 347.229223 966.215002 \n",
"L 349.670036 969.957472 \n",
"L 352.110849 973.985763 \n",
"L 356.992474 982.634128 \n",
"L 366.755724 1000.507178 \n",
"L 371.63735 1008.853581 \n",
"L 374.078162 1012.734341 \n",
"L 376.518975 1016.383654 \n",
"L 378.959788 1019.783043 \n",
"L 381.4006 1022.920758 \n",
"L 383.841413 1025.791266 \n",
"L 386.282225 1028.394606 \n",
"L 388.723038 1030.735662 \n",
"L 391.163851 1032.823389 \n",
"L 393.604663 1034.670017 \n",
"L 396.045476 1036.290279 \n",
"L 398.486289 1037.700674 \n",
"L 400.927101 1038.918793 \n",
"L 403.367914 1039.962727 \n",
"L 405.808727 1040.850548 \n",
"L 408.249539 1041.599888 \n",
"L 413.131164 1042.749531 \n",
"L 418.01279 1043.533195 \n",
"L 422.894415 1044.051962 \n",
"L 430.216853 1044.502393 \n",
"L 439.980103 1044.763097 \n",
"L 454.624979 1044.869891 \n",
"L 510.76367 1044.889189 \n",
"L 549.816672 1044.88919 \n",
"L 549.816672 1044.88919 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_265\">\n",
" <path d=\"M 42.828125 1044.88919 \n",
"L 42.828125 874.391009 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_266\">\n",
" <path d=\"M 42.828125 1044.88919 \n",
"L 616.408125 1044.88919 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_84\">\n",
" <!-- ticker = CNSL -->\n",
" <defs>\n",
" <path d=\"M 64.40625 67.28125 \n",
"L 64.40625 56.890625 \n",
"Q 59.421875 61.53125 53.78125 63.8125 \n",
"Q 48.140625 66.109375 41.796875 66.109375 \n",
"Q 29.296875 66.109375 22.65625 58.46875 \n",
"Q 16.015625 50.828125 16.015625 36.375 \n",
"Q 16.015625 21.96875 22.65625 14.328125 \n",
"Q 29.296875 6.6875 41.796875 6.6875 \n",
"Q 48.140625 6.6875 53.78125 8.984375 \n",
"Q 59.421875 11.28125 64.40625 15.921875 \n",
"L 64.40625 5.609375 \n",
"Q 59.234375 2.09375 53.4375 0.328125 \n",
"Q 47.65625 -1.421875 41.21875 -1.421875 \n",
"Q 24.65625 -1.421875 15.125 8.703125 \n",
"Q 5.609375 18.84375 5.609375 36.375 \n",
"Q 5.609375 53.953125 15.125 64.078125 \n",
"Q 24.65625 74.21875 41.21875 74.21875 \n",
"Q 47.75 74.21875 53.53125 72.484375 \n",
"Q 59.328125 70.75 64.40625 67.28125 \n",
"\" id=\"BitstreamVeraSans-Roman-43\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(291.466171875 869.391008523)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" <use x=\"499.66015625\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" <use x=\"574.46484375\" xlink:href=\"#BitstreamVeraSans-Roman-53\"/>\n",
" <use x=\"637.94140625\" xlink:href=\"#BitstreamVeraSans-Roman-4c\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_6\">\n",
" <g id=\"patch_267\">\n",
" <path d=\"M 42.828125 1258.347372 \n",
"L 616.408125 1258.347372 \n",
"L 616.408125 1087.84919 \n",
"L 42.828125 1087.84919 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_11\">\n",
" <g id=\"xtick_45\">\n",
" <g id=\"line2d_169\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1258.347372 \n",
"L 42.828125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_170\"/>\n",
" <g id=\"text_85\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_46\">\n",
" <g id=\"line2d_171\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 124.768125 1258.347372 \n",
"L 124.768125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_172\"/>\n",
" <g id=\"text_86\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(114.21578125 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_47\">\n",
" <g id=\"line2d_173\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 206.708125 1258.347372 \n",
"L 206.708125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_174\"/>\n",
" <g id=\"text_87\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(196.15578125 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_48\">\n",
" <g id=\"line2d_175\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 288.648125 1258.347372 \n",
"L 288.648125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_176\"/>\n",
" <g id=\"text_88\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(285.466875 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_49\">\n",
" <g id=\"line2d_177\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 370.588125 1258.347372 \n",
"L 370.588125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_178\"/>\n",
" <g id=\"text_89\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(364.225625 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_50\">\n",
" <g id=\"line2d_179\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 452.528125 1258.347372 \n",
"L 452.528125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_180\"/>\n",
" <g id=\"text_90\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(446.165625 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_51\">\n",
" <g id=\"line2d_181\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 534.468125 1258.347372 \n",
"L 534.468125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_182\"/>\n",
" <g id=\"text_91\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(528.105625 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_52\">\n",
" <g id=\"line2d_183\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 616.408125 1258.347372 \n",
"L 616.408125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_184\"/>\n",
" <g id=\"text_92\">\n",
" <!-- 40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 1272.94580966)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_12\">\n",
" <g id=\"ytick_36\">\n",
" <g id=\"line2d_185\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1258.347372 \n",
"L 616.408125 1258.347372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_186\"/>\n",
" <g id=\"text_93\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1261.10674716)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_37\">\n",
" <g id=\"line2d_187\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1229.931009 \n",
"L 616.408125 1229.931009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_188\"/>\n",
" <g id=\"text_94\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1232.69038352)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_38\">\n",
" <g id=\"line2d_189\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1201.514645 \n",
"L 616.408125 1201.514645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_190\"/>\n",
" <g id=\"text_95\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1204.27401989)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_39\">\n",
" <g id=\"line2d_191\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1173.098281 \n",
"L 616.408125 1173.098281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_192\"/>\n",
" <g id=\"text_96\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1175.85765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_40\">\n",
" <g id=\"line2d_193\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1144.681918 \n",
"L 616.408125 1144.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_194\"/>\n",
" <g id=\"text_97\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1147.44129261)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_41\">\n",
" <g id=\"line2d_195\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1116.265554 \n",
"L 616.408125 1116.265554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_196\"/>\n",
" <g id=\"text_98\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1119.02492898)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_42\">\n",
" <g id=\"line2d_197\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 42.828125 1087.84919 \n",
"L 616.408125 1087.84919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_198\"/>\n",
" <g id=\"text_99\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1090.60856534)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_268\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 127.929797 1258.347372 \n",
"L 136.982389 1258.347372 \n",
"L 136.982389 1258.129026 \n",
"L 127.929797 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_269\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 136.982389 1258.347372 \n",
"L 146.03498 1258.347372 \n",
"L 146.03498 1258.129026 \n",
"L 136.982389 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_270\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 146.03498 1258.347372 \n",
"L 155.087572 1258.347372 \n",
"L 155.087572 1257.910679 \n",
"L 146.03498 1257.910679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_271\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 155.087572 1258.347372 \n",
"L 164.140163 1258.347372 \n",
"L 164.140163 1258.129026 \n",
"L 155.087572 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_272\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 164.140163 1258.347372 \n",
"L 173.192755 1258.347372 \n",
"L 173.192755 1257.037293 \n",
"L 164.140163 1257.037293 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_273\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 173.192755 1258.347372 \n",
"L 182.245346 1258.347372 \n",
"L 182.245346 1258.347372 \n",
"L 173.192755 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_274\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 182.245346 1258.347372 \n",
"L 191.297938 1258.347372 \n",
"L 191.297938 1257.473986 \n",
"L 182.245346 1257.473986 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_275\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 191.297938 1258.347372 \n",
"L 200.35053 1258.347372 \n",
"L 200.35053 1257.910679 \n",
"L 191.297938 1257.910679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_276\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 200.35053 1258.347372 \n",
"L 209.403121 1258.347372 \n",
"L 209.403121 1257.037293 \n",
"L 200.35053 1257.037293 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_277\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 209.403121 1258.347372 \n",
"L 218.455713 1258.347372 \n",
"L 218.455713 1257.037293 \n",
"L 209.403121 1257.037293 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_278\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 218.455713 1258.347372 \n",
"L 227.508304 1258.347372 \n",
"L 227.508304 1254.853828 \n",
"L 218.455713 1254.853828 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_279\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 227.508304 1258.347372 \n",
"L 236.560896 1258.347372 \n",
"L 236.560896 1256.6006 \n",
"L 227.508304 1256.6006 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_280\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 236.560896 1258.347372 \n",
"L 245.613487 1258.347372 \n",
"L 245.613487 1252.670363 \n",
"L 236.560896 1252.670363 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_281\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 245.613487 1258.347372 \n",
"L 254.666079 1258.347372 \n",
"L 254.666079 1250.486898 \n",
"L 245.613487 1250.486898 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_282\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 254.666079 1258.347372 \n",
"L 263.71867 1258.347372 \n",
"L 263.71867 1242.84477 \n",
"L 254.666079 1242.84477 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_283\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 263.71867 1258.347372 \n",
"L 272.771262 1258.347372 \n",
"L 272.771262 1231.490752 \n",
"L 263.71867 1231.490752 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_284\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 272.771262 1258.347372 \n",
"L 281.823854 1258.347372 \n",
"L 281.823854 1189.78657 \n",
"L 272.771262 1189.78657 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_285\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 281.823854 1258.347372 \n",
"L 290.876445 1258.347372 \n",
"L 290.876445 1096.989305 \n",
"L 281.823854 1096.989305 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_286\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 290.876445 1258.347372 \n",
"L 299.929037 1258.347372 \n",
"L 299.929037 1137.165062 \n",
"L 290.876445 1137.165062 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_287\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 299.929037 1258.347372 \n",
"L 308.981628 1258.347372 \n",
"L 308.981628 1211.184527 \n",
"L 299.929037 1211.184527 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_288\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 308.981628 1258.347372 \n",
"L 318.03422 1258.347372 \n",
"L 318.03422 1238.259494 \n",
"L 308.981628 1238.259494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_289\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 318.03422 1258.347372 \n",
"L 327.086811 1258.347372 \n",
"L 327.086811 1248.303433 \n",
"L 318.03422 1248.303433 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_290\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 327.086811 1258.347372 \n",
"L 336.139403 1258.347372 \n",
"L 336.139403 1252.88871 \n",
"L 327.086811 1252.88871 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_291\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 336.139403 1258.347372 \n",
"L 345.191994 1258.347372 \n",
"L 345.191994 1254.853828 \n",
"L 336.139403 1254.853828 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_292\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 345.191994 1258.347372 \n",
"L 354.244586 1258.347372 \n",
"L 354.244586 1256.6006 \n",
"L 345.191994 1256.6006 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_293\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 354.244586 1258.347372 \n",
"L 363.297178 1258.347372 \n",
"L 363.297178 1256.163907 \n",
"L 354.244586 1256.163907 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_294\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 363.297178 1258.347372 \n",
"L 372.349769 1258.347372 \n",
"L 372.349769 1257.692333 \n",
"L 363.297178 1257.692333 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_295\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 372.349769 1258.347372 \n",
"L 381.402361 1258.347372 \n",
"L 381.402361 1257.692333 \n",
"L 372.349769 1257.692333 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_296\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 381.402361 1258.347372 \n",
"L 390.454952 1258.347372 \n",
"L 390.454952 1257.037293 \n",
"L 381.402361 1257.037293 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_297\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 390.454952 1258.347372 \n",
"L 399.507544 1258.347372 \n",
"L 399.507544 1257.473986 \n",
"L 390.454952 1257.473986 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_298\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 399.507544 1258.347372 \n",
"L 408.560135 1258.347372 \n",
"L 408.560135 1257.910679 \n",
"L 399.507544 1257.910679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_299\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 408.560135 1258.347372 \n",
"L 417.612727 1258.347372 \n",
"L 417.612727 1257.910679 \n",
"L 408.560135 1257.910679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_300\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 417.612727 1258.347372 \n",
"L 426.665318 1258.347372 \n",
"L 426.665318 1258.129026 \n",
"L 417.612727 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_301\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 426.665318 1258.347372 \n",
"L 435.71791 1258.347372 \n",
"L 435.71791 1257.910679 \n",
"L 426.665318 1257.910679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_302\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 435.71791 1258.347372 \n",
"L 444.770502 1258.347372 \n",
"L 444.770502 1258.347372 \n",
"L 435.71791 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_303\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 444.770502 1258.347372 \n",
"L 453.823093 1258.347372 \n",
"L 453.823093 1258.129026 \n",
"L 444.770502 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_304\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 453.823093 1258.347372 \n",
"L 462.875685 1258.347372 \n",
"L 462.875685 1258.347372 \n",
"L 453.823093 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_305\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 462.875685 1258.347372 \n",
"L 471.928276 1258.347372 \n",
"L 471.928276 1258.347372 \n",
"L 462.875685 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_306\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 471.928276 1258.347372 \n",
"L 480.980868 1258.347372 \n",
"L 480.980868 1258.347372 \n",
"L 471.928276 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_307\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 480.980868 1258.347372 \n",
"L 490.033459 1258.347372 \n",
"L 490.033459 1258.347372 \n",
"L 480.980868 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_308\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 490.033459 1258.347372 \n",
"L 499.086051 1258.347372 \n",
"L 499.086051 1258.347372 \n",
"L 490.033459 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_309\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 499.086051 1258.347372 \n",
"L 508.138643 1258.347372 \n",
"L 508.138643 1258.347372 \n",
"L 499.086051 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_310\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 508.138643 1258.347372 \n",
"L 517.191234 1258.347372 \n",
"L 517.191234 1258.347372 \n",
"L 508.138643 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_311\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 517.191234 1258.347372 \n",
"L 526.243826 1258.347372 \n",
"L 526.243826 1258.347372 \n",
"L 517.191234 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_312\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 526.243826 1258.347372 \n",
"L 535.296417 1258.347372 \n",
"L 535.296417 1258.347372 \n",
"L 526.243826 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_313\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 535.296417 1258.347372 \n",
"L 544.349009 1258.347372 \n",
"L 544.349009 1258.347372 \n",
"L 535.296417 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_314\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 544.349009 1258.347372 \n",
"L 553.4016 1258.347372 \n",
"L 553.4016 1258.129026 \n",
"L 544.349009 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_315\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 553.4016 1258.347372 \n",
"L 562.454192 1258.347372 \n",
"L 562.454192 1258.347372 \n",
"L 553.4016 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_316\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 562.454192 1258.347372 \n",
"L 571.506783 1258.347372 \n",
"L 571.506783 1258.347372 \n",
"L 562.454192 1258.347372 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_317\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 571.506783 1258.347372 \n",
"L 580.559375 1258.347372 \n",
"L 580.559375 1258.129026 \n",
"L 571.506783 1258.129026 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_199\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 112.1569 1258.345703 \n",
"L 117.04756 1258.329749 \n",
"L 121.938221 1258.268979 \n",
"L 126.828881 1258.199536 \n",
"L 131.719541 1258.217595 \n",
"L 136.610202 1258.230037 \n",
"L 141.500862 1258.123569 \n",
"L 146.391522 1258.001278 \n",
"L 151.282182 1257.998499 \n",
"L 156.172843 1258.030945 \n",
"L 161.063503 1257.810119 \n",
"L 165.954163 1257.491849 \n",
"L 170.844824 1257.552332 \n",
"L 175.735484 1257.903758 \n",
"L 180.626144 1258.04557 \n",
"L 185.516805 1257.835541 \n",
"L 190.407465 1257.642272 \n",
"L 195.298125 1257.552078 \n",
"L 200.188786 1257.378606 \n",
"L 205.079446 1257.215405 \n",
"L 209.970106 1257.035053 \n",
"L 214.860767 1256.644647 \n",
"L 219.751427 1256.026439 \n",
"L 224.642087 1255.611413 \n",
"L 229.532748 1255.712108 \n",
"L 234.423408 1255.36546 \n",
"L 239.314068 1253.624955 \n",
"L 244.204729 1251.393845 \n",
"L 249.095389 1249.618415 \n",
"L 253.986049 1247.155222 \n",
"L 258.87671 1242.969321 \n",
"L 263.76737 1236.872221 \n",
"L 268.65803 1226.583173 \n",
"L 273.548691 1207.274078 \n",
"L 278.439351 1175.326703 \n",
"L 283.330011 1134.926821 \n",
"L 288.220672 1109.019973 \n",
"L 293.111332 1121.563061 \n",
"L 298.001992 1160.424489 \n",
"L 302.892653 1196.997213 \n",
"L 307.783313 1221.154899 \n",
"L 312.673973 1235.148507 \n",
"L 317.564634 1242.947243 \n",
"L 322.455294 1247.329651 \n",
"L 327.345954 1250.166862 \n",
"L 332.236615 1252.475024 \n",
"L 337.127275 1254.154613 \n",
"L 342.017935 1255.279566 \n",
"L 346.908596 1255.956902 \n",
"L 351.799256 1256.244998 \n",
"L 356.689916 1256.513855 \n",
"L 361.580577 1257.035195 \n",
"L 366.471237 1257.488081 \n",
"L 371.361897 1257.5692 \n",
"L 376.252557 1257.405237 \n",
"L 381.143218 1257.141798 \n",
"L 386.033878 1257.110349 \n",
"L 390.924538 1257.339805 \n",
"L 395.815199 1257.650099 \n",
"L 400.705859 1257.892547 \n",
"L 405.596519 1257.967135 \n",
"L 410.48718 1257.961502 \n",
"L 415.37784 1257.987763 \n",
"L 420.2685 1257.988912 \n",
"L 425.159161 1257.885226 \n",
"L 430.049821 1257.979341 \n",
"L 434.940481 1258.213131 \n",
"L 439.831142 1258.295112 \n",
"L 444.721802 1258.238472 \n",
"L 449.612462 1258.198396 \n",
"L 454.503123 1258.260611 \n",
"L 459.393783 1258.326091 \n",
"L 464.284443 1258.345174 \n",
"L 469.175104 1258.347277 \n",
"L 474.065764 1258.34737 \n",
"L 478.956424 1258.347372 \n",
"L 483.847085 1258.347372 \n",
"L 488.737745 1258.347372 \n",
"L 493.628405 1258.347372 \n",
"L 498.519066 1258.347372 \n",
"L 503.409726 1258.347372 \n",
"L 508.300386 1258.347372 \n",
"L 513.191047 1258.347372 \n",
"L 518.081707 1258.347372 \n",
"L 522.972367 1258.347336 \n",
"L 527.863028 1258.346322 \n",
"L 532.753688 1258.334613 \n",
"L 537.644348 1258.282113 \n",
"L 542.535009 1258.206826 \n",
"L 547.425669 1258.219913 \n",
"L 552.316329 1258.298698 \n",
"L 557.20699 1258.339537 \n",
"L 562.09765 1258.346526 \n",
"L 566.98831 1258.341989 \n",
"L 571.878971 1258.308976 \n",
"L 576.769631 1258.231715 \n",
"L 581.660291 1258.200672 \n",
"L 586.550951 1258.269018 \n",
"L 591.441612 1258.32975 \n",
"L 596.332272 1258.345703 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_200\">\n",
" <path clip-path=\"url(#pfd4ef30dd2)\" d=\"M 112.153551 1258.347372 \n",
"L 197.311202 1258.261868 \n",
"L 207.043505 1258.012523 \n",
"L 211.909656 1257.721783 \n",
"L 216.775808 1257.22259 \n",
"L 221.641959 1256.401176 \n",
"L 224.075035 1255.823905 \n",
"L 226.50811 1255.106637 \n",
"L 228.941186 1254.22522 \n",
"L 231.374262 1253.154122 \n",
"L 233.807338 1251.867161 \n",
"L 236.240413 1250.338455 \n",
"L 238.673489 1248.543601 \n",
"L 241.106565 1246.461057 \n",
"L 243.539641 1244.07369 \n",
"L 245.972716 1241.370428 \n",
"L 248.405792 1238.347937 \n",
"L 250.838868 1235.01222 \n",
"L 253.271943 1231.380022 \n",
"L 255.705019 1227.479932 \n",
"L 260.571171 1219.053083 \n",
"L 270.303474 1201.592438 \n",
"L 272.736549 1197.602594 \n",
"L 275.169625 1193.952841 \n",
"L 277.602701 1190.735379 \n",
"L 280.035776 1188.034765 \n",
"L 282.468852 1185.924227 \n",
"L 284.901928 1184.462374 \n",
"L 287.335004 1183.690487 \n",
"L 289.768079 1183.630586 \n",
"L 292.201155 1184.284388 \n",
"L 294.634231 1185.63322 \n",
"L 297.067306 1187.63891 \n",
"L 299.500382 1190.245578 \n",
"L 301.933458 1193.382225 \n",
"L 304.366534 1196.965941 \n",
"L 306.799609 1200.905536 \n",
"L 311.665761 1209.46919 \n",
"L 318.964988 1222.644309 \n",
"L 323.831139 1230.745449 \n",
"L 326.264215 1234.424775 \n",
"L 328.697291 1237.811553 \n",
"L 331.130367 1240.887122 \n",
"L 333.563442 1243.643775 \n",
"L 335.996518 1246.083392 \n",
"L 338.429594 1248.215866 \n",
"L 340.86267 1250.057435 \n",
"L 343.295745 1251.629013 \n",
"L 345.728821 1252.954627 \n",
"L 348.161897 1254.059998 \n",
"L 350.594972 1254.971333 \n",
"L 353.028048 1255.714327 \n",
"L 355.461124 1256.313406 \n",
"L 360.327275 1257.168086 \n",
"L 365.193427 1257.689361 \n",
"L 370.059578 1257.994038 \n",
"L 377.358805 1258.21799 \n",
"L 389.524184 1258.327356 \n",
"L 435.752623 1258.34737 \n",
"L 596.335621 1258.347372 \n",
"L 596.335621 1258.347372 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_318\">\n",
" <path d=\"M 42.828125 1258.347372 \n",
"L 42.828125 1087.84919 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_319\">\n",
" <path d=\"M 42.828125 1258.347372 \n",
"L 616.408125 1258.347372 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_100\">\n",
" <!-- ticker = BKCC -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(290.92046875 1082.84919034)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"498.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-4b\"/>\n",
" <use x=\"563.9375\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" <use x=\"633.76171875\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_7\">\n",
" <g id=\"patch_320\">\n",
" <path d=\"M 42.828125 1471.805554 \n",
"L 616.408125 1471.805554 \n",
"L 616.408125 1301.307372 \n",
"L 42.828125 1301.307372 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_13\">\n",
" <g id=\"xtick_53\">\n",
" <g id=\"line2d_201\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1471.805554 \n",
"L 42.828125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_202\"/>\n",
" <g id=\"text_101\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_54\">\n",
" <g id=\"line2d_203\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 114.525625 1471.805554 \n",
"L 114.525625 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_204\"/>\n",
" <g id=\"text_102\">\n",
" <!-- −15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(103.97328125 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_55\">\n",
" <g id=\"line2d_205\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 186.223125 1471.805554 \n",
"L 186.223125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_206\"/>\n",
" <g id=\"text_103\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(175.67078125 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_56\">\n",
" <g id=\"line2d_207\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 257.920625 1471.805554 \n",
"L 257.920625 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_208\"/>\n",
" <g id=\"text_104\">\n",
" <!-- −5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(250.54953125 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_57\">\n",
" <g id=\"line2d_209\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 329.618125 1471.805554 \n",
"L 329.618125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_210\"/>\n",
" <g id=\"text_105\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(326.436875 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_58\">\n",
" <g id=\"line2d_211\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 401.315625 1471.805554 \n",
"L 401.315625 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_212\"/>\n",
" <g id=\"text_106\">\n",
" <!-- 5 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(398.134375 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_59\">\n",
" <g id=\"line2d_213\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 473.013125 1471.805554 \n",
"L 473.013125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_214\"/>\n",
" <g id=\"text_107\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(466.650625 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_60\">\n",
" <g id=\"line2d_215\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 544.710625 1471.805554 \n",
"L 544.710625 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_216\"/>\n",
" <g id=\"text_108\">\n",
" <!-- 15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(538.348125 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_61\">\n",
" <g id=\"line2d_217\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 616.408125 1471.805554 \n",
"L 616.408125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_218\"/>\n",
" <g id=\"text_109\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 1486.40399148)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_14\">\n",
" <g id=\"ytick_43\">\n",
" <g id=\"line2d_219\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1471.805554 \n",
"L 616.408125 1471.805554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_220\"/>\n",
" <g id=\"text_110\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1474.56492898)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_44\">\n",
" <g id=\"line2d_221\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1437.705918 \n",
"L 616.408125 1437.705918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_222\"/>\n",
" <g id=\"text_111\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1440.46529261)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_45\">\n",
" <g id=\"line2d_223\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1403.606281 \n",
"L 616.408125 1403.606281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_224\"/>\n",
" <g id=\"text_112\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1406.36565625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_46\">\n",
" <g id=\"line2d_225\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1369.506645 \n",
"L 616.408125 1369.506645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_226\"/>\n",
" <g id=\"text_113\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1372.26601989)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_47\">\n",
" <g id=\"line2d_227\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1335.407009 \n",
"L 616.408125 1335.407009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_228\"/>\n",
" <g id=\"text_114\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1338.16638352)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_48\">\n",
" <g id=\"line2d_229\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 42.828125 1301.307372 \n",
"L 616.408125 1301.307372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_230\"/>\n",
" <g id=\"text_115\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1304.06674716)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_321\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 124.23948 1471.805554 \n",
"L 132.726112 1471.805554 \n",
"L 132.726112 1470.46874 \n",
"L 124.23948 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_322\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 132.726112 1471.805554 \n",
"L 141.212744 1471.805554 \n",
"L 141.212744 1471.805554 \n",
"L 132.726112 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_323\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 141.212744 1471.805554 \n",
"L 149.699375 1471.805554 \n",
"L 149.699375 1471.805554 \n",
"L 141.212744 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_324\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 149.699375 1471.805554 \n",
"L 158.186007 1471.805554 \n",
"L 158.186007 1471.805554 \n",
"L 149.699375 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_325\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 158.186007 1471.805554 \n",
"L 166.672639 1471.805554 \n",
"L 166.672639 1471.805554 \n",
"L 158.186007 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_326\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 166.672639 1471.805554 \n",
"L 175.159271 1471.805554 \n",
"L 175.159271 1471.805554 \n",
"L 166.672639 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_327\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 175.159271 1471.805554 \n",
"L 183.645903 1471.805554 \n",
"L 183.645903 1471.805554 \n",
"L 175.159271 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_328\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 183.645903 1471.805554 \n",
"L 192.132535 1471.805554 \n",
"L 192.132535 1470.46874 \n",
"L 183.645903 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_329\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 192.132535 1471.805554 \n",
"L 200.619166 1471.805554 \n",
"L 200.619166 1470.46874 \n",
"L 192.132535 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_330\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 200.619166 1471.805554 \n",
"L 209.105798 1471.805554 \n",
"L 209.105798 1469.131925 \n",
"L 200.619166 1469.131925 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_331\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 209.105798 1471.805554 \n",
"L 217.59243 1471.805554 \n",
"L 217.59243 1470.46874 \n",
"L 209.105798 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_332\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 217.59243 1471.805554 \n",
"L 226.079062 1471.805554 \n",
"L 226.079062 1471.805554 \n",
"L 217.59243 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_333\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 226.079062 1471.805554 \n",
"L 234.565694 1471.805554 \n",
"L 234.565694 1466.458296 \n",
"L 226.079062 1466.458296 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_334\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 234.565694 1471.805554 \n",
"L 243.052326 1471.805554 \n",
"L 243.052326 1466.458296 \n",
"L 234.565694 1466.458296 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_335\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 243.052326 1471.805554 \n",
"L 251.538957 1471.805554 \n",
"L 251.538957 1462.447853 \n",
"L 243.052326 1462.447853 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_336\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 251.538957 1471.805554 \n",
"L 260.025589 1471.805554 \n",
"L 260.025589 1458.43741 \n",
"L 251.538957 1458.43741 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_337\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 260.025589 1471.805554 \n",
"L 268.512221 1471.805554 \n",
"L 268.512221 1449.079709 \n",
"L 260.025589 1449.079709 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_338\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 268.512221 1471.805554 \n",
"L 276.998853 1471.805554 \n",
"L 276.998853 1454.426966 \n",
"L 268.512221 1454.426966 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_339\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 276.998853 1471.805554 \n",
"L 285.485485 1471.805554 \n",
"L 285.485485 1449.079709 \n",
"L 276.998853 1449.079709 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_340\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 285.485485 1471.805554 \n",
"L 293.972117 1471.805554 \n",
"L 293.972117 1430.364307 \n",
"L 285.485485 1430.364307 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_341\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 293.972117 1471.805554 \n",
"L 302.458748 1471.805554 \n",
"L 302.458748 1394.270317 \n",
"L 293.972117 1394.270317 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_342\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 302.458748 1471.805554 \n",
"L 310.94538 1471.805554 \n",
"L 310.94538 1379.565359 \n",
"L 302.458748 1379.565359 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_343\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 310.94538 1471.805554 \n",
"L 319.432012 1471.805554 \n",
"L 319.432012 1366.197214 \n",
"L 310.94538 1366.197214 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_344\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 319.432012 1471.805554 \n",
"L 327.918644 1471.805554 \n",
"L 327.918644 1347.481812 \n",
"L 319.432012 1347.481812 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_345\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 327.918644 1471.805554 \n",
"L 336.405276 1471.805554 \n",
"L 336.405276 1330.103225 \n",
"L 327.918644 1330.103225 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_346\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 336.405276 1471.805554 \n",
"L 344.891908 1471.805554 \n",
"L 344.891908 1352.82907 \n",
"L 336.405276 1352.82907 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_347\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 344.891908 1471.805554 \n",
"L 353.378539 1471.805554 \n",
"L 353.378539 1374.218101 \n",
"L 344.891908 1374.218101 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_348\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 353.378539 1471.805554 \n",
"L 361.865171 1471.805554 \n",
"L 361.865171 1404.964833 \n",
"L 353.378539 1404.964833 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_349\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 361.865171 1471.805554 \n",
"L 370.351803 1471.805554 \n",
"L 370.351803 1422.34342 \n",
"L 361.865171 1422.34342 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_350\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 370.351803 1471.805554 \n",
"L 378.838435 1471.805554 \n",
"L 378.838435 1437.048379 \n",
"L 370.351803 1437.048379 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_351\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 378.838435 1471.805554 \n",
"L 387.325067 1471.805554 \n",
"L 387.325067 1447.742894 \n",
"L 378.838435 1447.742894 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_352\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 387.325067 1471.805554 \n",
"L 395.811699 1471.805554 \n",
"L 395.811699 1441.058822 \n",
"L 387.325067 1441.058822 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_353\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 395.811699 1471.805554 \n",
"L 404.29833 1471.805554 \n",
"L 404.29833 1459.774224 \n",
"L 395.811699 1459.774224 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_354\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 404.29833 1471.805554 \n",
"L 412.784962 1471.805554 \n",
"L 412.784962 1470.46874 \n",
"L 404.29833 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_355\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 412.784962 1471.805554 \n",
"L 421.271594 1471.805554 \n",
"L 421.271594 1459.774224 \n",
"L 412.784962 1459.774224 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_356\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 421.271594 1471.805554 \n",
"L 429.758226 1471.805554 \n",
"L 429.758226 1470.46874 \n",
"L 421.271594 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_357\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 429.758226 1471.805554 \n",
"L 438.244858 1471.805554 \n",
"L 438.244858 1467.795111 \n",
"L 429.758226 1467.795111 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_358\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 438.244858 1471.805554 \n",
"L 446.73149 1471.805554 \n",
"L 446.73149 1465.121482 \n",
"L 438.244858 1465.121482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_359\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 446.73149 1471.805554 \n",
"L 455.218121 1471.805554 \n",
"L 455.218121 1471.805554 \n",
"L 446.73149 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_360\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 455.218121 1471.805554 \n",
"L 463.704753 1471.805554 \n",
"L 463.704753 1470.46874 \n",
"L 455.218121 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_361\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 463.704753 1471.805554 \n",
"L 472.191385 1471.805554 \n",
"L 472.191385 1471.805554 \n",
"L 463.704753 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_362\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 472.191385 1471.805554 \n",
"L 480.678017 1471.805554 \n",
"L 480.678017 1469.131925 \n",
"L 472.191385 1469.131925 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_363\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 480.678017 1471.805554 \n",
"L 489.164649 1471.805554 \n",
"L 489.164649 1471.805554 \n",
"L 480.678017 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_364\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 489.164649 1471.805554 \n",
"L 497.651281 1471.805554 \n",
"L 497.651281 1471.805554 \n",
"L 489.164649 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_365\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 497.651281 1471.805554 \n",
"L 506.137912 1471.805554 \n",
"L 506.137912 1471.805554 \n",
"L 497.651281 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_366\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 506.137912 1471.805554 \n",
"L 514.624544 1471.805554 \n",
"L 514.624544 1471.805554 \n",
"L 506.137912 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_367\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 514.624544 1471.805554 \n",
"L 523.111176 1471.805554 \n",
"L 523.111176 1471.805554 \n",
"L 514.624544 1471.805554 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_368\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 523.111176 1471.805554 \n",
"L 531.597808 1471.805554 \n",
"L 531.597808 1470.46874 \n",
"L 523.111176 1470.46874 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_231\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 94.50148 1471.800458 \n",
"L 99.216978 1471.786622 \n",
"L 103.932476 1471.749446 \n",
"L 108.647974 1471.672912 \n",
"L 113.363473 1471.55542 \n",
"L 118.078971 1471.429282 \n",
"L 122.794469 1471.354047 \n",
"L 127.509967 1471.373375 \n",
"L 132.225466 1471.475566 \n",
"L 136.940964 1471.604566 \n",
"L 141.656462 1471.707902 \n",
"L 146.371961 1471.767696 \n",
"L 151.087459 1471.793756 \n",
"L 155.802957 1471.802029 \n",
"L 160.518455 1471.801617 \n",
"L 165.233954 1471.791125 \n",
"L 169.949452 1471.75599 \n",
"L 174.66495 1471.665735 \n",
"L 179.380448 1471.481047 \n",
"L 184.095947 1471.180191 \n",
"L 188.811445 1470.792762 \n",
"L 193.526943 1470.405683 \n",
"L 198.242441 1470.121585 \n",
"L 202.95794 1469.997062 \n",
"L 207.673438 1470.004383 \n",
"L 212.388936 1470.028442 \n",
"L 217.104435 1469.895169 \n",
"L 221.819933 1469.436736 \n",
"L 226.535431 1468.567156 \n",
"L 231.250929 1467.305083 \n",
"L 235.966428 1465.72872 \n",
"L 240.681926 1463.913338 \n",
"L 245.397424 1461.901596 \n",
"L 250.112922 1459.748706 \n",
"L 254.828421 1457.623442 \n",
"L 259.543919 1455.774797 \n",
"L 264.259417 1454.220996 \n",
"L 268.974916 1452.437608 \n",
"L 273.690414 1449.472566 \n",
"L 278.405912 1444.434761 \n",
"L 283.12141 1436.925633 \n",
"L 287.836909 1427.190599 \n",
"L 292.552407 1416.010891 \n",
"L 297.267905 1404.358563 \n",
"L 301.983403 1392.978008 \n",
"L 306.698902 1382.214467 \n",
"L 311.4144 1372.161496 \n",
"L 316.129898 1362.935202 \n",
"L 320.845396 1354.983973 \n",
"L 325.560895 1349.281047 \n",
"L 330.276393 1347.02569 \n",
"L 334.991891 1348.939311 \n",
"L 339.70739 1354.923924 \n",
"L 344.422888 1364.376903 \n",
"L 349.138386 1376.473047 \n",
"L 353.853884 1389.999512 \n",
"L 358.569383 1403.322341 \n",
"L 363.284881 1414.966849 \n",
"L 368.000379 1424.303826 \n",
"L 372.715877 1431.570867 \n",
"L 377.431376 1437.303524 \n",
"L 382.146874 1441.931378 \n",
"L 386.862372 1445.861416 \n",
"L 391.57787 1449.588478 \n",
"L 396.293369 1453.442466 \n",
"L 401.008867 1457.276851 \n",
"L 405.724365 1460.589079 \n",
"L 410.439864 1463.006202 \n",
"L 415.155362 1464.597318 \n",
"L 419.87086 1465.693517 \n",
"L 424.586358 1466.505271 \n",
"L 429.301857 1467.043133 \n",
"L 434.017355 1467.372967 \n",
"L 438.732853 1467.75104 \n",
"L 443.448351 1468.4044 \n",
"L 448.16385 1469.277443 \n",
"L 452.879348 1470.099319 \n",
"L 457.594846 1470.654 \n",
"L 462.310345 1470.911471 \n",
"L 467.025843 1470.952522 \n",
"L 471.741341 1470.879418 \n",
"L 476.456839 1470.807032 \n",
"L 481.172338 1470.845592 \n",
"L 485.887836 1471.031194 \n",
"L 490.603334 1471.296275 \n",
"L 495.318832 1471.535431 \n",
"L 500.034331 1471.688387 \n",
"L 504.749829 1471.755133 \n",
"L 509.465327 1471.757233 \n",
"L 514.180825 1471.705641 \n",
"L 518.896324 1471.604177 \n",
"L 523.611822 1471.475512 \n",
"L 528.32732 1471.373369 \n",
"L 533.042819 1471.354046 \n",
"L 537.758317 1471.429282 \n",
"L 542.473815 1471.55542 \n",
"L 547.189313 1471.672912 \n",
"L 551.904812 1471.749446 \n",
"L 556.62031 1471.786622 \n",
"L 561.335808 1471.800458 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_232\">\n",
" <path clip-path=\"url(#p014e3a1fdf)\" d=\"M 94.484215 1471.805553 \n",
"L 185.981127 1471.715865 \n",
"L 200.057575 1471.472888 \n",
"L 209.441873 1471.066045 \n",
"L 216.480097 1470.511236 \n",
"L 221.172247 1469.9607 \n",
"L 225.864396 1469.21515 \n",
"L 230.556545 1468.222464 \n",
"L 235.248695 1466.923166 \n",
"L 239.940844 1465.25178 \n",
"L 244.632993 1463.139224 \n",
"L 246.979068 1461.895778 \n",
"L 249.325143 1460.516344 \n",
"L 251.671217 1458.993038 \n",
"L 254.017292 1457.318623 \n",
"L 256.363367 1455.486704 \n",
"L 258.709441 1453.49195 \n",
"L 261.055516 1451.330303 \n",
"L 263.401591 1448.999203 \n",
"L 265.747665 1446.497807 \n",
"L 270.439815 1440.990545 \n",
"L 275.131964 1434.843537 \n",
"L 279.824113 1428.130487 \n",
"L 284.516263 1420.966665 \n",
"L 293.900561 1405.952691 \n",
"L 298.592711 1398.524653 \n",
"L 303.28486 1391.473015 \n",
"L 307.977009 1385.054103 \n",
"L 310.323084 1382.160552 \n",
"L 312.669159 1379.517274 \n",
"L 315.015233 1377.15173 \n",
"L 317.361308 1375.088977 \n",
"L 319.707383 1373.351227 \n",
"L 322.053457 1371.957447 \n",
"L 324.399532 1370.923016 \n",
"L 326.745607 1370.25944 \n",
"L 329.091681 1369.974145 \n",
"L 331.437756 1370.070332 \n",
"L 333.783831 1370.546921 \n",
"L 336.129905 1371.39857 \n",
"L 338.47598 1372.615775 \n",
"L 340.822054 1374.185046 \n",
"L 343.168129 1376.089157 \n",
"L 345.514204 1378.30746 \n",
"L 347.860278 1380.816256 \n",
"L 350.206353 1383.589219 \n",
"L 352.552428 1386.597854 \n",
"L 357.244577 1393.200236 \n",
"L 361.936726 1400.370797 \n",
"L 378.359249 1426.390254 \n",
"L 383.051398 1433.227499 \n",
"L 387.743548 1439.523361 \n",
"L 392.435697 1445.193997 \n",
"L 394.781772 1447.779601 \n",
"L 397.127846 1450.19519 \n",
"L 399.473921 1452.440679 \n",
"L 401.819996 1454.517805 \n",
"L 404.16607 1456.429909 \n",
"L 406.512145 1458.181719 \n",
"L 408.85822 1459.779129 \n",
"L 411.204294 1461.228984 \n",
"L 413.550369 1462.538871 \n",
"L 418.242518 1464.771647 \n",
"L 422.934668 1466.545945 \n",
"L 427.626817 1467.931239 \n",
"L 432.318966 1468.994166 \n",
"L 437.011116 1469.795853 \n",
"L 441.703265 1470.390326 \n",
"L 448.741489 1470.992438 \n",
"L 455.779713 1471.353886 \n",
"L 465.164012 1471.609863 \n",
"L 479.240459 1471.755685 \n",
"L 512.085505 1471.804339 \n",
"L 561.353073 1471.805553 \n",
"L 561.353073 1471.805553 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_369\">\n",
" <path d=\"M 42.828125 1471.805554 \n",
"L 42.828125 1301.307372 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_370\">\n",
" <path d=\"M 42.828125 1471.805554 \n",
"L 616.408125 1471.805554 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_116\">\n",
" <!-- ticker = NRCIA -->\n",
" <defs>\n",
" <path d=\"M 34.1875 63.1875 \n",
"L 20.796875 26.90625 \n",
"L 47.609375 26.90625 \n",
"z\n",
"M 28.609375 72.90625 \n",
"L 39.796875 72.90625 \n",
"L 67.578125 0 \n",
"L 57.328125 0 \n",
"L 50.6875 18.703125 \n",
"L 17.828125 18.703125 \n",
"L 11.1875 0 \n",
"L 0.78125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-41\"/>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 19.671875 72.90625 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-49\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(288.82015625 1296.30737216)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" <use x=\"504.640625\" xlink:href=\"#BitstreamVeraSans-Roman-52\"/>\n",
" <use x=\"574.044921875\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" <use x=\"643.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-49\"/>\n",
" <use x=\"673.361328125\" xlink:href=\"#BitstreamVeraSans-Roman-41\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_8\">\n",
" <g id=\"patch_371\">\n",
" <path d=\"M 42.828125 1685.263736 \n",
"L 616.408125 1685.263736 \n",
"L 616.408125 1514.765554 \n",
"L 42.828125 1514.765554 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_15\">\n",
" <g id=\"xtick_62\">\n",
" <g id=\"line2d_233\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1685.263736 \n",
"L 42.828125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_234\"/>\n",
" <g id=\"text_117\">\n",
" <!-- −60 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_63\">\n",
" <g id=\"line2d_235\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 114.525625 1685.263736 \n",
"L 114.525625 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_236\"/>\n",
" <g id=\"text_118\">\n",
" <!-- −50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(103.97328125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_64\">\n",
" <g id=\"line2d_237\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 186.223125 1685.263736 \n",
"L 186.223125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_238\"/>\n",
" <g id=\"text_119\">\n",
" <!-- −40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(175.67078125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_65\">\n",
" <g id=\"line2d_239\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 257.920625 1685.263736 \n",
"L 257.920625 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_240\"/>\n",
" <g id=\"text_120\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(247.36828125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_66\">\n",
" <g id=\"line2d_241\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 329.618125 1685.263736 \n",
"L 329.618125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_242\"/>\n",
" <g id=\"text_121\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(319.06578125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_67\">\n",
" <g id=\"line2d_243\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 401.315625 1685.263736 \n",
"L 401.315625 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_244\"/>\n",
" <g id=\"text_122\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(390.76328125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_68\">\n",
" <g id=\"line2d_245\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 473.013125 1685.263736 \n",
"L 473.013125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_246\"/>\n",
" <g id=\"text_123\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(469.831875 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_69\">\n",
" <g id=\"line2d_247\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 544.710625 1685.263736 \n",
"L 544.710625 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_248\"/>\n",
" <g id=\"text_124\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(538.348125 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_70\">\n",
" <g id=\"line2d_249\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 616.408125 1685.263736 \n",
"L 616.408125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_250\"/>\n",
" <g id=\"text_125\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 1699.8621733)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_16\">\n",
" <g id=\"ytick_49\">\n",
" <g id=\"line2d_251\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1685.263736 \n",
"L 616.408125 1685.263736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_252\"/>\n",
" <g id=\"text_126\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1688.0231108)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_50\">\n",
" <g id=\"line2d_253\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1660.906853 \n",
"L 616.408125 1660.906853 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_254\"/>\n",
" <g id=\"text_127\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1663.66622768)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_51\">\n",
" <g id=\"line2d_255\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1636.54997 \n",
"L 616.408125 1636.54997 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_256\"/>\n",
" <g id=\"text_128\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1639.30934456)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_52\">\n",
" <g id=\"line2d_257\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1612.193086 \n",
"L 616.408125 1612.193086 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_258\"/>\n",
" <g id=\"text_129\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1614.95246144)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_53\">\n",
" <g id=\"line2d_259\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1587.836203 \n",
"L 616.408125 1587.836203 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_260\"/>\n",
" <g id=\"text_130\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1590.59557833)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_54\">\n",
" <g id=\"line2d_261\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1563.47932 \n",
"L 616.408125 1563.47932 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_262\"/>\n",
" <g id=\"text_131\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1566.23869521)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_55\">\n",
" <g id=\"line2d_263\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1539.122437 \n",
"L 616.408125 1539.122437 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_264\"/>\n",
" <g id=\"text_132\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1541.88181209)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_56\">\n",
" <g id=\"line2d_265\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 42.828125 1514.765554 \n",
"L 616.408125 1514.765554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_266\"/>\n",
" <g id=\"text_133\">\n",
" <!-- 0.35 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1517.52492898)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_372\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 55.012751 1685.263736 \n",
"L 65.291342 1685.263736 \n",
"L 65.291342 1685.109632 \n",
"L 55.012751 1685.109632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_373\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 65.291342 1685.263736 \n",
"L 75.569932 1685.263736 \n",
"L 75.569932 1685.263736 \n",
"L 65.291342 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_374\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 75.569932 1685.263736 \n",
"L 85.848522 1685.263736 \n",
"L 85.848522 1685.263736 \n",
"L 75.569932 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_375\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 85.848522 1685.263736 \n",
"L 96.127113 1685.263736 \n",
"L 96.127113 1685.263736 \n",
"L 85.848522 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_376\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 96.127113 1685.263736 \n",
"L 106.405703 1685.263736 \n",
"L 106.405703 1685.263736 \n",
"L 96.127113 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_377\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 106.405703 1685.263736 \n",
"L 116.684293 1685.263736 \n",
"L 116.684293 1685.263736 \n",
"L 106.405703 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_378\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 116.684293 1685.263736 \n",
"L 126.962884 1685.263736 \n",
"L 126.962884 1685.263736 \n",
"L 116.684293 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_379\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 126.962884 1685.263736 \n",
"L 137.241474 1685.263736 \n",
"L 137.241474 1685.263736 \n",
"L 126.962884 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_380\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 137.241474 1685.263736 \n",
"L 147.520064 1685.263736 \n",
"L 147.520064 1685.263736 \n",
"L 137.241474 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_381\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 147.520064 1685.263736 \n",
"L 157.798655 1685.263736 \n",
"L 157.798655 1685.263736 \n",
"L 147.520064 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_382\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 157.798655 1685.263736 \n",
"L 168.077245 1685.263736 \n",
"L 168.077245 1685.263736 \n",
"L 157.798655 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_383\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 168.077245 1685.263736 \n",
"L 178.355835 1685.263736 \n",
"L 178.355835 1685.263736 \n",
"L 168.077245 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_384\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 178.355835 1685.263736 \n",
"L 188.634426 1685.263736 \n",
"L 188.634426 1685.263736 \n",
"L 178.355835 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_385\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 188.634426 1685.263736 \n",
"L 198.913016 1685.263736 \n",
"L 198.913016 1685.263736 \n",
"L 188.634426 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_386\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 198.913016 1685.263736 \n",
"L 209.191606 1685.263736 \n",
"L 209.191606 1685.263736 \n",
"L 198.913016 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_387\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 209.191606 1685.263736 \n",
"L 219.470197 1685.263736 \n",
"L 219.470197 1685.263736 \n",
"L 209.191606 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_388\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 219.470197 1685.263736 \n",
"L 229.748787 1685.263736 \n",
"L 229.748787 1685.263736 \n",
"L 219.470197 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_389\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 229.748787 1685.263736 \n",
"L 240.027377 1685.263736 \n",
"L 240.027377 1685.263736 \n",
"L 229.748787 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_390\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 240.027377 1685.263736 \n",
"L 250.305968 1685.263736 \n",
"L 250.305968 1685.263736 \n",
"L 240.027377 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_391\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 250.305968 1685.263736 \n",
"L 260.584558 1685.263736 \n",
"L 260.584558 1685.263736 \n",
"L 250.305968 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_392\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 260.584558 1685.263736 \n",
"L 270.863148 1685.263736 \n",
"L 270.863148 1685.263736 \n",
"L 260.584558 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_393\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 270.863148 1685.263736 \n",
"L 281.141739 1685.263736 \n",
"L 281.141739 1685.263736 \n",
"L 270.863148 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_394\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 281.141739 1685.263736 \n",
"L 291.420329 1685.263736 \n",
"L 291.420329 1685.263736 \n",
"L 281.141739 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_395\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 291.420329 1685.263736 \n",
"L 301.698919 1685.263736 \n",
"L 301.698919 1685.263736 \n",
"L 291.420329 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_396\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 301.698919 1685.263736 \n",
"L 311.97751 1685.263736 \n",
"L 311.97751 1685.263736 \n",
"L 301.698919 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_397\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 311.97751 1685.263736 \n",
"L 322.2561 1685.263736 \n",
"L 322.2561 1685.263736 \n",
"L 311.97751 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_398\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 322.2561 1685.263736 \n",
"L 332.53469 1685.263736 \n",
"L 332.53469 1685.263736 \n",
"L 322.2561 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_399\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 332.53469 1685.263736 \n",
"L 342.813281 1685.263736 \n",
"L 342.813281 1685.263736 \n",
"L 332.53469 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_400\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 342.813281 1685.263736 \n",
"L 353.091871 1685.263736 \n",
"L 353.091871 1685.263736 \n",
"L 342.813281 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_401\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 353.091871 1685.263736 \n",
"L 363.370461 1685.263736 \n",
"L 363.370461 1685.109632 \n",
"L 353.091871 1685.109632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_402\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 363.370461 1685.263736 \n",
"L 373.649052 1685.263736 \n",
"L 373.649052 1685.263736 \n",
"L 363.370461 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_403\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 373.649052 1685.263736 \n",
"L 383.927642 1685.263736 \n",
"L 383.927642 1685.263736 \n",
"L 373.649052 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_404\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 383.927642 1685.263736 \n",
"L 394.206232 1685.263736 \n",
"L 394.206232 1685.263736 \n",
"L 383.927642 1685.263736 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_405\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 394.206232 1685.263736 \n",
"L 404.484823 1685.263736 \n",
"L 404.484823 1685.109632 \n",
"L 394.206232 1685.109632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_406\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 404.484823 1685.263736 \n",
"L 414.763413 1685.263736 \n",
"L 414.763413 1685.109632 \n",
"L 404.484823 1685.109632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_407\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 414.763413 1685.263736 \n",
"L 425.042003 1685.263736 \n",
"L 425.042003 1684.955528 \n",
"L 414.763413 1684.955528 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_408\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 425.042003 1685.263736 \n",
"L 435.320594 1685.263736 \n",
"L 435.320594 1683.722697 \n",
"L 425.042003 1683.722697 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_409\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 435.320594 1685.263736 \n",
"L 445.599184 1685.263736 \n",
"L 445.599184 1681.102931 \n",
"L 435.320594 1681.102931 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_410\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 445.599184 1685.263736 \n",
"L 455.877774 1685.263736 \n",
"L 455.877774 1669.082829 \n",
"L 445.599184 1669.082829 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_411\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 455.877774 1685.263736 \n",
"L 466.156364 1685.263736 \n",
"L 466.156364 1636.721014 \n",
"L 455.877774 1636.721014 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_412\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 466.156364 1685.263736 \n",
"L 476.434955 1685.263736 \n",
"L 476.434955 1535.012454 \n",
"L 466.156364 1535.012454 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_413\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 476.434955 1685.263736 \n",
"L 486.713545 1685.263736 \n",
"L 486.713545 1606.208446 \n",
"L 476.434955 1606.208446 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_414\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 486.713545 1685.263736 \n",
"L 496.992135 1685.263736 \n",
"L 496.992135 1656.908622 \n",
"L 486.713545 1656.908622 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_415\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 496.992135 1685.263736 \n",
"L 507.270726 1685.263736 \n",
"L 507.270726 1678.329061 \n",
"L 496.992135 1678.329061 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_416\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 507.270726 1685.263736 \n",
"L 517.549316 1685.263736 \n",
"L 517.549316 1683.106281 \n",
"L 507.270726 1683.106281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_417\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 517.549316 1685.263736 \n",
"L 527.827906 1685.263736 \n",
"L 527.827906 1684.801424 \n",
"L 517.549316 1684.801424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_418\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 527.827906 1685.263736 \n",
"L 538.106497 1685.263736 \n",
"L 538.106497 1684.955528 \n",
"L 527.827906 1684.955528 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_419\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 538.106497 1685.263736 \n",
"L 548.385087 1685.263736 \n",
"L 548.385087 1685.109632 \n",
"L 538.106497 1685.109632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_420\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 548.385087 1685.263736 \n",
"L 558.663677 1685.263736 \n",
"L 558.663677 1684.955528 \n",
"L 548.385087 1684.955528 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_421\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 558.663677 1685.263736 \n",
"L 568.942268 1685.263736 \n",
"L 568.942268 1684.801424 \n",
"L 558.663677 1684.801424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_267\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 44.864066 1685.261657 \n",
"L 50.260298 1685.194089 \n",
"L 55.656529 1685.080331 \n",
"L 61.05276 1685.225774 \n",
"L 66.448991 1685.263118 \n",
"L 71.845222 1685.263735 \n",
"L 77.241453 1685.263736 \n",
"L 82.637685 1685.263736 \n",
"L 88.033916 1685.263736 \n",
"L 93.430147 1685.263736 \n",
"L 98.826378 1685.263736 \n",
"L 104.222609 1685.263736 \n",
"L 109.618841 1685.263736 \n",
"L 115.015072 1685.263736 \n",
"L 120.411303 1685.263736 \n",
"L 125.807534 1685.263736 \n",
"L 131.203765 1685.263736 \n",
"L 136.599996 1685.263736 \n",
"L 141.996228 1685.263736 \n",
"L 147.392459 1685.263736 \n",
"L 152.78869 1685.263736 \n",
"L 158.184921 1685.263736 \n",
"L 163.581152 1685.263736 \n",
"L 168.977383 1685.263736 \n",
"L 174.373615 1685.263736 \n",
"L 179.769846 1685.263736 \n",
"L 185.166077 1685.263736 \n",
"L 190.562308 1685.263736 \n",
"L 195.958539 1685.263736 \n",
"L 201.35477 1685.263736 \n",
"L 206.751002 1685.263736 \n",
"L 212.147233 1685.263736 \n",
"L 217.543464 1685.263736 \n",
"L 222.939695 1685.263736 \n",
"L 228.335926 1685.263736 \n",
"L 233.732158 1685.263736 \n",
"L 239.128389 1685.263736 \n",
"L 244.52462 1685.263736 \n",
"L 249.920851 1685.263736 \n",
"L 255.317082 1685.263736 \n",
"L 260.713313 1685.263736 \n",
"L 266.109545 1685.263736 \n",
"L 271.505776 1685.263736 \n",
"L 276.902007 1685.263736 \n",
"L 282.298238 1685.263736 \n",
"L 287.694469 1685.263736 \n",
"L 293.0907 1685.263736 \n",
"L 298.486932 1685.263736 \n",
"L 303.883163 1685.263736 \n",
"L 309.279394 1685.263736 \n",
"L 314.675625 1685.263736 \n",
"L 320.071856 1685.263736 \n",
"L 325.468087 1685.263736 \n",
"L 330.864319 1685.263736 \n",
"L 336.26055 1685.263736 \n",
"L 341.656781 1685.263735 \n",
"L 347.053012 1685.263011 \n",
"L 352.449243 1685.222439 \n",
"L 357.845475 1685.078867 \n",
"L 363.241706 1685.198686 \n",
"L 368.637937 1685.261937 \n",
"L 374.034168 1685.263732 \n",
"L 379.430399 1685.263736 \n",
"L 384.82663 1685.263615 \n",
"L 390.222862 1685.248429 \n",
"L 395.619093 1685.111757 \n",
"L 401.015324 1685.144927 \n",
"L 406.411555 1685.236102 \n",
"L 411.807786 1685.098986 \n",
"L 417.204017 1685.088664 \n",
"L 422.600249 1684.641567 \n",
"L 427.99648 1684.206165 \n",
"L 433.392711 1682.881742 \n",
"L 438.788942 1681.627021 \n",
"L 444.185173 1679.353644 \n",
"L 449.581404 1671.604271 \n",
"L 454.977636 1657.870059 \n",
"L 460.373867 1639.029685 \n",
"L 465.770098 1594.132552 \n",
"L 471.166329 1540.341004 \n",
"L 476.56256 1551.901989 \n",
"L 481.958791 1606.621046 \n",
"L 487.355023 1639.801715 \n",
"L 492.751254 1660.517451 \n",
"L 498.147485 1673.069342 \n",
"L 503.543716 1678.988062 \n",
"L 508.939947 1681.956624 \n",
"L 514.336179 1683.731219 \n",
"L 519.73241 1684.532553 \n",
"L 525.128641 1684.829459 \n",
"L 530.524872 1684.94284 \n",
"L 535.921103 1684.938186 \n",
"L 541.317334 1685.038217 \n",
"L 546.713566 1685.044223 \n",
"L 552.109797 1684.906655 \n",
"L 557.506028 1685.056672 \n",
"L 562.902259 1685.017911 \n",
"L 568.29849 1684.898683 \n",
"L 573.694721 1685.167013 \n",
"L 579.090953 1685.261327 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_268\">\n",
" <path clip-path=\"url(#pb2f562e735)\" d=\"M 44.861764 1685.263736 \n",
"L 415.333853 1685.162556 \n",
"L 420.703014 1684.929595 \n",
"L 423.387594 1684.682329 \n",
"L 426.072175 1684.280962 \n",
"L 428.756755 1683.649936 \n",
"L 431.441335 1682.689383 \n",
"L 434.125916 1681.274324 \n",
"L 436.810496 1679.257919 \n",
"L 439.495076 1676.480434 \n",
"L 442.179657 1672.785134 \n",
"L 444.864237 1668.041225 \n",
"L 447.548817 1662.172378 \n",
"L 450.233398 1655.187403 \n",
"L 452.917978 1647.207771 \n",
"L 458.287139 1629.40569 \n",
"L 460.971719 1620.467335 \n",
"L 463.656299 1612.244301 \n",
"L 466.34088 1605.326619 \n",
"L 469.02546 1600.2516 \n",
"L 471.710041 1597.435167 \n",
"L 474.394621 1597.115604 \n",
"L 477.079201 1599.320272 \n",
"L 479.763782 1603.861744 \n",
"L 482.448362 1610.364112 \n",
"L 485.132942 1618.314338 \n",
"L 495.871264 1653.271901 \n",
"L 498.555844 1660.522673 \n",
"L 501.240424 1666.676279 \n",
"L 503.925005 1671.697978 \n",
"L 506.609585 1675.645608 \n",
"L 509.294166 1678.639139 \n",
"L 511.978746 1680.831215 \n",
"L 514.663326 1682.382594 \n",
"L 517.347907 1683.44445 \n",
"L 520.032487 1684.147748 \n",
"L 522.717067 1684.598707 \n",
"L 528.086228 1685.04723 \n",
"L 536.139969 1685.23137 \n",
"L 557.616612 1685.263679 \n",
"L 579.093255 1685.263736 \n",
"L 579.093255 1685.263736 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_422\">\n",
" <path d=\"M 42.828125 1685.263736 \n",
"L 42.828125 1514.765554 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_423\">\n",
" <path d=\"M 42.828125 1685.263736 \n",
"L 616.408125 1685.263736 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_134\">\n",
" <!-- ticker = EBSB -->\n",
" <defs>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 55.90625 72.90625 \n",
"L 55.90625 64.59375 \n",
"L 19.671875 64.59375 \n",
"L 19.671875 43.015625 \n",
"L 54.390625 43.015625 \n",
"L 54.390625 34.71875 \n",
"L 19.671875 34.71875 \n",
"L 19.671875 8.296875 \n",
"L 56.78125 8.296875 \n",
"L 56.78125 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-45\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(291.464453125 1509.76555398)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-45\"/>\n",
" <use x=\"493.01953125\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"561.607421875\" xlink:href=\"#BitstreamVeraSans-Roman-53\"/>\n",
" <use x=\"625.083984375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_9\">\n",
" <g id=\"patch_424\">\n",
" <path d=\"M 42.828125 1898.721918 \n",
"L 616.408125 1898.721918 \n",
"L 616.408125 1728.223736 \n",
"L 42.828125 1728.223736 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_17\">\n",
" <g id=\"xtick_71\">\n",
" <g id=\"line2d_269\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1898.721918 \n",
"L 42.828125 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_270\"/>\n",
" <g id=\"text_135\">\n",
" <!-- −70 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-37\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_72\">\n",
" <g id=\"line2d_271\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 106.559236 1898.721918 \n",
"L 106.559236 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_272\"/>\n",
" <g id=\"text_136\">\n",
" <!-- −60 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(96.0068923611 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_73\">\n",
" <g id=\"line2d_273\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 170.290347 1898.721918 \n",
"L 170.290347 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_274\"/>\n",
" <g id=\"text_137\">\n",
" <!-- −50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(159.738003472 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_74\">\n",
" <g id=\"line2d_275\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 234.021458 1898.721918 \n",
"L 234.021458 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_276\"/>\n",
" <g id=\"text_138\">\n",
" <!-- −40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(223.469114583 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_75\">\n",
" <g id=\"line2d_277\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 297.752569 1898.721918 \n",
"L 297.752569 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_278\"/>\n",
" <g id=\"text_139\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(287.200225694 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_76\">\n",
" <g id=\"line2d_279\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 361.483681 1898.721918 \n",
"L 361.483681 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_280\"/>\n",
" <g id=\"text_140\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(350.931336806 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_77\">\n",
" <g id=\"line2d_281\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 425.214792 1898.721918 \n",
"L 425.214792 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_282\"/>\n",
" <g id=\"text_141\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(414.662447917 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_78\">\n",
" <g id=\"line2d_283\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 488.945903 1898.721918 \n",
"L 488.945903 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_284\"/>\n",
" <g id=\"text_142\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(485.764652778 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_79\">\n",
" <g id=\"line2d_285\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 552.677014 1898.721918 \n",
"L 552.677014 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_286\"/>\n",
" <g id=\"text_143\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(546.314513889 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_80\">\n",
" <g id=\"line2d_287\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 616.408125 1898.721918 \n",
"L 616.408125 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_288\"/>\n",
" <g id=\"text_144\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 1913.32035511)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_18\">\n",
" <g id=\"ytick_57\">\n",
" <g id=\"line2d_289\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1898.721918 \n",
"L 616.408125 1898.721918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_290\"/>\n",
" <g id=\"text_145\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1901.48129261)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_58\">\n",
" <g id=\"line2d_291\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1864.622281 \n",
"L 616.408125 1864.622281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_292\"/>\n",
" <g id=\"text_146\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1867.38165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_59\">\n",
" <g id=\"line2d_293\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1830.522645 \n",
"L 616.408125 1830.522645 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_294\"/>\n",
" <g id=\"text_147\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1833.28201989)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_60\">\n",
" <g id=\"line2d_295\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1796.423009 \n",
"L 616.408125 1796.423009 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_296\"/>\n",
" <g id=\"text_148\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1799.18238352)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_61\">\n",
" <g id=\"line2d_297\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1762.323372 \n",
"L 616.408125 1762.323372 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_298\"/>\n",
" <g id=\"text_149\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1765.08274716)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_62\">\n",
" <g id=\"line2d_299\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 42.828125 1728.223736 \n",
"L 616.408125 1728.223736 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_300\"/>\n",
" <g id=\"text_150\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 1730.9831108)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_425\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 84.797393 1898.721918 \n",
"L 94.841321 1898.721918 \n",
"L 94.841321 1898.170656 \n",
"L 84.797393 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_426\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 94.841321 1898.721918 \n",
"L 104.885248 1898.721918 \n",
"L 104.885248 1898.721918 \n",
"L 94.841321 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_427\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 104.885248 1898.721918 \n",
"L 114.929176 1898.721918 \n",
"L 114.929176 1898.721918 \n",
"L 104.885248 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_428\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 114.929176 1898.721918 \n",
"L 124.973103 1898.721918 \n",
"L 124.973103 1898.721918 \n",
"L 114.929176 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_429\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 124.973103 1898.721918 \n",
"L 135.017031 1898.721918 \n",
"L 135.017031 1898.721918 \n",
"L 124.973103 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_430\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 135.017031 1898.721918 \n",
"L 145.060958 1898.721918 \n",
"L 145.060958 1898.721918 \n",
"L 135.017031 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_431\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 145.060958 1898.721918 \n",
"L 155.104885 1898.721918 \n",
"L 155.104885 1898.721918 \n",
"L 145.060958 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_432\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 155.104885 1898.721918 \n",
"L 165.148813 1898.721918 \n",
"L 165.148813 1898.721918 \n",
"L 155.104885 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_433\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 165.148813 1898.721918 \n",
"L 175.19274 1898.721918 \n",
"L 175.19274 1898.721918 \n",
"L 165.148813 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_434\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 175.19274 1898.721918 \n",
"L 185.236668 1898.721918 \n",
"L 185.236668 1898.721918 \n",
"L 175.19274 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_435\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 185.236668 1898.721918 \n",
"L 195.280595 1898.721918 \n",
"L 195.280595 1898.721918 \n",
"L 185.236668 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_436\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 195.280595 1898.721918 \n",
"L 205.324523 1898.721918 \n",
"L 205.324523 1898.721918 \n",
"L 195.280595 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_437\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 205.324523 1898.721918 \n",
"L 215.36845 1898.721918 \n",
"L 215.36845 1898.721918 \n",
"L 205.324523 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_438\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 215.36845 1898.721918 \n",
"L 225.412378 1898.721918 \n",
"L 225.412378 1898.721918 \n",
"L 215.36845 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_439\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 225.412378 1898.721918 \n",
"L 235.456305 1898.721918 \n",
"L 235.456305 1898.721918 \n",
"L 225.412378 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_440\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 235.456305 1898.721918 \n",
"L 245.500233 1898.721918 \n",
"L 245.500233 1898.721918 \n",
"L 235.456305 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_441\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 245.500233 1898.721918 \n",
"L 255.54416 1898.721918 \n",
"L 255.54416 1898.721918 \n",
"L 245.500233 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_442\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 255.54416 1898.721918 \n",
"L 265.588087 1898.721918 \n",
"L 265.588087 1898.170656 \n",
"L 255.54416 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_443\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 265.588087 1898.721918 \n",
"L 275.632015 1898.721918 \n",
"L 275.632015 1898.721918 \n",
"L 265.588087 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_444\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 275.632015 1898.721918 \n",
"L 285.675942 1898.721918 \n",
"L 285.675942 1898.721918 \n",
"L 275.632015 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_445\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 285.675942 1898.721918 \n",
"L 295.71987 1898.721918 \n",
"L 295.71987 1898.721918 \n",
"L 285.675942 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_446\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 295.71987 1898.721918 \n",
"L 305.763797 1898.721918 \n",
"L 305.763797 1898.721918 \n",
"L 295.71987 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_447\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 305.763797 1898.721918 \n",
"L 315.807725 1898.721918 \n",
"L 315.807725 1898.721918 \n",
"L 305.763797 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_448\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 315.807725 1898.721918 \n",
"L 325.851652 1898.721918 \n",
"L 325.851652 1898.721918 \n",
"L 315.807725 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_449\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 325.851652 1898.721918 \n",
"L 335.89558 1898.721918 \n",
"L 335.89558 1898.721918 \n",
"L 325.851652 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_450\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 335.89558 1898.721918 \n",
"L 345.939507 1898.721918 \n",
"L 345.939507 1898.721918 \n",
"L 335.89558 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_451\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 345.939507 1898.721918 \n",
"L 355.983435 1898.721918 \n",
"L 355.983435 1898.721918 \n",
"L 345.939507 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_452\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 355.983435 1898.721918 \n",
"L 366.027362 1898.721918 \n",
"L 366.027362 1898.721918 \n",
"L 355.983435 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_453\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 366.027362 1898.721918 \n",
"L 376.071289 1898.721918 \n",
"L 376.071289 1898.170656 \n",
"L 366.027362 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_454\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 376.071289 1898.721918 \n",
"L 386.115217 1898.721918 \n",
"L 386.115217 1898.721918 \n",
"L 376.071289 1898.721918 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_455\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 386.115217 1898.721918 \n",
"L 396.159144 1898.721918 \n",
"L 396.159144 1898.170656 \n",
"L 386.115217 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_456\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 396.159144 1898.721918 \n",
"L 406.203072 1898.721918 \n",
"L 406.203072 1898.170656 \n",
"L 396.159144 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_457\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 406.203072 1898.721918 \n",
"L 416.246999 1898.721918 \n",
"L 416.246999 1898.170656 \n",
"L 406.203072 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_458\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 416.246999 1898.721918 \n",
"L 426.290927 1898.721918 \n",
"L 426.290927 1897.619394 \n",
"L 416.246999 1897.619394 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_459\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 426.290927 1898.721918 \n",
"L 436.334854 1898.721918 \n",
"L 436.334854 1898.170656 \n",
"L 426.290927 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_460\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 436.334854 1898.721918 \n",
"L 446.378782 1898.721918 \n",
"L 446.378782 1895.414346 \n",
"L 436.334854 1895.414346 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_461\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 446.378782 1898.721918 \n",
"L 456.422709 1898.721918 \n",
"L 456.422709 1891.555512 \n",
"L 446.378782 1891.555512 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_462\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 456.422709 1898.721918 \n",
"L 466.466637 1898.721918 \n",
"L 466.466637 1873.91513 \n",
"L 456.422709 1873.91513 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_463\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 466.466637 1898.721918 \n",
"L 476.510564 1898.721918 \n",
"L 476.510564 1857.928534 \n",
"L 466.466637 1857.928534 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_464\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 476.510564 1898.721918 \n",
"L 486.554491 1898.721918 \n",
"L 486.554491 1803.353602 \n",
"L 476.510564 1803.353602 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_465\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 486.554491 1898.721918 \n",
"L 496.598419 1898.721918 \n",
"L 496.598419 1756.496337 \n",
"L 486.554491 1756.496337 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_466\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 496.598419 1898.721918 \n",
"L 506.642346 1898.721918 \n",
"L 506.642346 1839.185628 \n",
"L 496.598419 1839.185628 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_467\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 506.642346 1898.721918 \n",
"L 516.686274 1898.721918 \n",
"L 516.686274 1874.466392 \n",
"L 506.642346 1874.466392 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_468\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 516.686274 1898.721918 \n",
"L 526.730201 1898.721918 \n",
"L 526.730201 1883.837845 \n",
"L 516.686274 1883.837845 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_469\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 526.730201 1898.721918 \n",
"L 536.774129 1898.721918 \n",
"L 536.774129 1892.106774 \n",
"L 526.730201 1892.106774 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_470\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 536.774129 1898.721918 \n",
"L 546.818056 1898.721918 \n",
"L 546.818056 1895.414346 \n",
"L 536.774129 1895.414346 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_471\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 546.818056 1898.721918 \n",
"L 556.861984 1898.721918 \n",
"L 556.861984 1895.414346 \n",
"L 546.818056 1895.414346 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_472\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 556.861984 1898.721918 \n",
"L 566.905911 1898.721918 \n",
"L 566.905911 1898.170656 \n",
"L 556.861984 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_473\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 566.905911 1898.721918 \n",
"L 576.949839 1898.721918 \n",
"L 576.949839 1897.619394 \n",
"L 566.905911 1897.619394 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_474\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 576.949839 1898.721918 \n",
"L 586.993766 1898.721918 \n",
"L 586.993766 1898.170656 \n",
"L 576.949839 1898.170656 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_301\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 64.474038 1898.718277 \n",
"L 69.957302 1898.692247 \n",
"L 75.440565 1898.596229 \n",
"L 80.923829 1898.445149 \n",
"L 86.407092 1898.405124 \n",
"L 91.890356 1898.533432 \n",
"L 97.373619 1898.663624 \n",
"L 102.856883 1898.712546 \n",
"L 108.340146 1898.721134 \n",
"L 113.82341 1898.721884 \n",
"L 119.306673 1898.721917 \n",
"L 124.789936 1898.721918 \n",
"L 130.2732 1898.721918 \n",
"L 135.756463 1898.721918 \n",
"L 141.239727 1898.721918 \n",
"L 146.72299 1898.721918 \n",
"L 152.206254 1898.721918 \n",
"L 157.689517 1898.721918 \n",
"L 163.172781 1898.721918 \n",
"L 168.656044 1898.721918 \n",
"L 174.139308 1898.721918 \n",
"L 179.622571 1898.721918 \n",
"L 185.105835 1898.721918 \n",
"L 190.589098 1898.721918 \n",
"L 196.072361 1898.721918 \n",
"L 201.555625 1898.721918 \n",
"L 207.038888 1898.721918 \n",
"L 212.522152 1898.721918 \n",
"L 218.005415 1898.721918 \n",
"L 223.488679 1898.721914 \n",
"L 228.971942 1898.721797 \n",
"L 234.455206 1898.719746 \n",
"L 239.938469 1898.701652 \n",
"L 245.421733 1898.623596 \n",
"L 250.904996 1898.473955 \n",
"L 256.388259 1898.396857 \n",
"L 261.871523 1898.500412 \n",
"L 267.354786 1898.643458 \n",
"L 272.83805 1898.707472 \n",
"L 278.321313 1898.720535 \n",
"L 283.804577 1898.721849 \n",
"L 289.28784 1898.721916 \n",
"L 294.771104 1898.721918 \n",
"L 300.254367 1898.721918 \n",
"L 305.737631 1898.721918 \n",
"L 311.220894 1898.721918 \n",
"L 316.704158 1898.721918 \n",
"L 322.187421 1898.721918 \n",
"L 327.670684 1898.721918 \n",
"L 333.153948 1898.721917 \n",
"L 338.637211 1898.72191 \n",
"L 344.120475 1898.721693 \n",
"L 349.603738 1898.718374 \n",
"L 355.087002 1898.692825 \n",
"L 360.570265 1898.597754 \n",
"L 366.053529 1898.445931 \n",
"L 371.536792 1898.396386 \n",
"L 377.020056 1898.479042 \n",
"L 382.503319 1898.483116 \n",
"L 387.986583 1898.381425 \n",
"L 393.469846 1898.340898 \n",
"L 398.953109 1898.323112 \n",
"L 404.436373 1898.232696 \n",
"L 409.919636 1898.071924 \n",
"L 415.4029 1897.875925 \n",
"L 420.886163 1897.784903 \n",
"L 426.369427 1897.713896 \n",
"L 431.85269 1897.362568 \n",
"L 437.335954 1896.56944 \n",
"L 442.819217 1895.230322 \n",
"L 448.302481 1892.293051 \n",
"L 453.785744 1886.1404 \n",
"L 459.269007 1877.06605 \n",
"L 464.752271 1866.614971 \n",
"L 470.235534 1853.71045 \n",
"L 475.718798 1833.858953 \n",
"L 481.202061 1806.675219 \n",
"L 486.685325 1783.987451 \n",
"L 492.168588 1783.478364 \n",
"L 497.651852 1807.113214 \n",
"L 503.135115 1837.585683 \n",
"L 508.618379 1860.753942 \n",
"L 514.101642 1874.680843 \n",
"L 519.584906 1882.240503 \n",
"L 525.068169 1886.791825 \n",
"L 530.551432 1890.309952 \n",
"L 536.034696 1892.972313 \n",
"L 541.517959 1894.583861 \n",
"L 547.001223 1895.400884 \n",
"L 552.484486 1896.13909 \n",
"L 557.96775 1897.12941 \n",
"L 563.451013 1897.87371 \n",
"L 568.934277 1898.049512 \n",
"L 574.41754 1898.037474 \n",
"L 579.900804 1898.134924 \n",
"L 585.384067 1898.260357 \n",
"L 590.867331 1898.416218 \n",
"L 596.350594 1898.593106 \n",
"L 601.833857 1898.692068 \n",
"L 607.317121 1898.718271 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_302\">\n",
" <path clip-path=\"url(#p0b6183af0c)\" d=\"M 64.461081 1898.721918 \n",
"L 394.547255 1898.637323 \n",
"L 402.73121 1898.4643 \n",
"L 408.18718 1898.210329 \n",
"L 413.64315 1897.750769 \n",
"L 419.099119 1896.959658 \n",
"L 421.827104 1896.387819 \n",
"L 424.555089 1895.665074 \n",
"L 427.283074 1894.763405 \n",
"L 430.011059 1893.653229 \n",
"L 432.739044 1892.304445 \n",
"L 435.467029 1890.687818 \n",
"L 438.195014 1888.776681 \n",
"L 440.922999 1886.548911 \n",
"L 443.650984 1883.989115 \n",
"L 446.378968 1881.090889 \n",
"L 449.106953 1877.859016 \n",
"L 451.834938 1874.311424 \n",
"L 454.562923 1870.480715 \n",
"L 460.018893 1862.178362 \n",
"L 468.202848 1849.292207 \n",
"L 470.930833 1845.274911 \n",
"L 473.658818 1841.578858 \n",
"L 476.386802 1838.311982 \n",
"L 479.114787 1835.574145 \n",
"L 481.842772 1833.452087 \n",
"L 484.570757 1832.014871 \n",
"L 487.298742 1831.310149 \n",
"L 490.026727 1831.36154 \n",
"L 492.754712 1832.167317 \n",
"L 495.482697 1833.7005 \n",
"L 498.210682 1835.910359 \n",
"L 500.938667 1838.725201 \n",
"L 503.666652 1842.056227 \n",
"L 506.394636 1845.802183 \n",
"L 511.850606 1854.102185 \n",
"L 520.034561 1866.976812 \n",
"L 522.762546 1871.01406 \n",
"L 525.490531 1874.808927 \n",
"L 528.218516 1878.315366 \n",
"L 530.946501 1881.50283 \n",
"L 533.674486 1884.35527 \n",
"L 536.40247 1886.869539 \n",
"L 539.130455 1889.05339 \n",
"L 541.85844 1890.923257 \n",
"L 544.586425 1892.502003 \n",
"L 547.31441 1893.816753 \n",
"L 550.042395 1894.896951 \n",
"L 552.77038 1895.772703 \n",
"L 555.498365 1896.473433 \n",
"L 558.22635 1897.026884 \n",
"L 563.68232 1897.790661 \n",
"L 569.138289 1898.232838 \n",
"L 577.322244 1898.550865 \n",
"L 588.234184 1898.685921 \n",
"L 607.330078 1898.720393 \n",
"L 607.330078 1898.720393 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_475\">\n",
" <path d=\"M 42.828125 1898.721918 \n",
"L 42.828125 1728.223736 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_476\">\n",
" <path d=\"M 42.828125 1898.721918 \n",
"L 616.408125 1898.721918 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_151\">\n",
" <!-- ticker = ADNC -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(290.025 1723.2237358)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-41\"/>\n",
" <use x=\"498.244140625\" xlink:href=\"#BitstreamVeraSans-Roman-44\"/>\n",
" <use x=\"575.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" <use x=\"650.05078125\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_10\">\n",
" <g id=\"patch_477\">\n",
" <path d=\"M 42.828125 2112.180099 \n",
"L 616.408125 2112.180099 \n",
"L 616.408125 1941.681918 \n",
"L 42.828125 1941.681918 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_19\">\n",
" <g id=\"xtick_81\">\n",
" <g id=\"line2d_303\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 2112.180099 \n",
"L 42.828125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_304\"/>\n",
" <g id=\"text_152\">\n",
" <!-- −500 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(29.09453125 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_82\">\n",
" <g id=\"line2d_305\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 157.544125 2112.180099 \n",
"L 157.544125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_306\"/>\n",
" <g id=\"text_153\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(154.362875 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_83\">\n",
" <g id=\"line2d_307\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 272.260125 2112.180099 \n",
"L 272.260125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_308\"/>\n",
" <g id=\"text_154\">\n",
" <!-- 500 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(262.716375 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_84\">\n",
" <g id=\"line2d_309\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 386.976125 2112.180099 \n",
"L 386.976125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_310\"/>\n",
" <g id=\"text_155\">\n",
" <!-- 1000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(374.251125 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_85\">\n",
" <g id=\"line2d_311\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 501.692125 2112.180099 \n",
"L 501.692125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_312\"/>\n",
" <g id=\"text_156\">\n",
" <!-- 1500 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(488.967125 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_86\">\n",
" <g id=\"line2d_313\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 616.408125 2112.180099 \n",
"L 616.408125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_314\"/>\n",
" <g id=\"text_157\">\n",
" <!-- 2000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(603.683125 2126.77853693)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"190.869140625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_20\">\n",
" <g id=\"ytick_63\">\n",
" <g id=\"line2d_315\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 2112.180099 \n",
"L 616.408125 2112.180099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_316\"/>\n",
" <g id=\"text_158\">\n",
" <!-- 0.000 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 2114.93947443)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_64\">\n",
" <g id=\"line2d_317\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 2078.080463 \n",
"L 616.408125 2078.080463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_318\"/>\n",
" <g id=\"text_159\">\n",
" <!-- 0.005 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 2080.83983807)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_65\">\n",
" <g id=\"line2d_319\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 2043.980827 \n",
"L 616.408125 2043.980827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_320\"/>\n",
" <g id=\"text_160\">\n",
" <!-- 0.010 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 2046.7402017)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_66\">\n",
" <g id=\"line2d_321\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 2009.88119 \n",
"L 616.408125 2009.88119 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_322\"/>\n",
" <g id=\"text_161\">\n",
" <!-- 0.015 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 2012.64056534)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_67\">\n",
" <g id=\"line2d_323\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 1975.781554 \n",
"L 616.408125 1975.781554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_324\"/>\n",
" <g id=\"text_162\">\n",
" <!-- 0.020 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 1978.54092898)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_68\">\n",
" <g id=\"line2d_325\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 42.828125 1941.681918 \n",
"L 616.408125 1941.681918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_326\"/>\n",
" <g id=\"text_163\">\n",
" <!-- 0.025 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 1944.44129261)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"222.65625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_478\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 135.888554 2112.180099 \n",
"L 144.565394 2112.180099 \n",
"L 144.565394 2111.652252 \n",
"L 135.888554 2111.652252 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_479\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 144.565394 2112.180099 \n",
"L 153.242235 2112.180099 \n",
"L 153.242235 2106.421769 \n",
"L 144.565394 2106.421769 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_480\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 153.242235 2112.180099 \n",
"L 161.919075 2112.180099 \n",
"L 161.919075 1946.244208 \n",
"L 153.242235 1946.244208 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_481\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 161.919075 2112.180099 \n",
"L 170.595916 2112.180099 \n",
"L 170.595916 2105.701978 \n",
"L 161.919075 2105.701978 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_482\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 170.595916 2112.180099 \n",
"L 179.272756 2112.180099 \n",
"L 179.272756 2111.460308 \n",
"L 170.595916 2111.460308 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_483\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 179.272756 2112.180099 \n",
"L 187.949597 2112.180099 \n",
"L 187.949597 2112.084127 \n",
"L 179.272756 2112.084127 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_484\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 187.949597 2112.180099 \n",
"L 196.626437 2112.180099 \n",
"L 196.626437 2112.036141 \n",
"L 187.949597 2112.036141 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_485\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 196.626437 2112.180099 \n",
"L 205.303278 2112.180099 \n",
"L 205.303278 2112.180099 \n",
"L 196.626437 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_486\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 205.303278 2112.180099 \n",
"L 213.980118 2112.180099 \n",
"L 213.980118 2112.180099 \n",
"L 205.303278 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_487\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 213.980118 2112.180099 \n",
"L 222.656959 2112.180099 \n",
"L 222.656959 2112.132113 \n",
"L 213.980118 2112.132113 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_488\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 222.656959 2112.180099 \n",
"L 231.333799 2112.180099 \n",
"L 231.333799 2112.180099 \n",
"L 222.656959 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_489\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 231.333799 2112.180099 \n",
"L 240.01064 2112.180099 \n",
"L 240.01064 2112.180099 \n",
"L 231.333799 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_490\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 240.01064 2112.180099 \n",
"L 248.68748 2112.180099 \n",
"L 248.68748 2112.132113 \n",
"L 240.01064 2112.132113 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_491\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 248.68748 2112.180099 \n",
"L 257.364321 2112.180099 \n",
"L 257.364321 2112.180099 \n",
"L 248.68748 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_492\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 257.364321 2112.180099 \n",
"L 266.041162 2112.180099 \n",
"L 266.041162 2112.180099 \n",
"L 257.364321 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_493\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 266.041162 2112.180099 \n",
"L 274.718002 2112.180099 \n",
"L 274.718002 2112.180099 \n",
"L 266.041162 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_494\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 274.718002 2112.180099 \n",
"L 283.394843 2112.180099 \n",
"L 283.394843 2112.180099 \n",
"L 274.718002 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_495\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 283.394843 2112.180099 \n",
"L 292.071683 2112.180099 \n",
"L 292.071683 2112.180099 \n",
"L 283.394843 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_496\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 292.071683 2112.180099 \n",
"L 300.748524 2112.180099 \n",
"L 300.748524 2112.180099 \n",
"L 292.071683 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_497\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 300.748524 2112.180099 \n",
"L 309.425364 2112.180099 \n",
"L 309.425364 2112.180099 \n",
"L 300.748524 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_498\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 309.425364 2112.180099 \n",
"L 318.102205 2112.180099 \n",
"L 318.102205 2112.180099 \n",
"L 309.425364 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_499\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 318.102205 2112.180099 \n",
"L 326.779045 2112.180099 \n",
"L 326.779045 2112.180099 \n",
"L 318.102205 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_500\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 326.779045 2112.180099 \n",
"L 335.455886 2112.180099 \n",
"L 335.455886 2112.180099 \n",
"L 326.779045 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_501\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 335.455886 2112.180099 \n",
"L 344.132726 2112.180099 \n",
"L 344.132726 2112.180099 \n",
"L 335.455886 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_502\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 344.132726 2112.180099 \n",
"L 352.809567 2112.180099 \n",
"L 352.809567 2112.180099 \n",
"L 344.132726 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_503\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 352.809567 2112.180099 \n",
"L 361.486407 2112.180099 \n",
"L 361.486407 2112.180099 \n",
"L 352.809567 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_504\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 361.486407 2112.180099 \n",
"L 370.163248 2112.180099 \n",
"L 370.163248 2112.180099 \n",
"L 361.486407 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_505\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 370.163248 2112.180099 \n",
"L 378.840088 2112.180099 \n",
"L 378.840088 2112.180099 \n",
"L 370.163248 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_506\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 378.840088 2112.180099 \n",
"L 387.516929 2112.180099 \n",
"L 387.516929 2112.180099 \n",
"L 378.840088 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_507\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 387.516929 2112.180099 \n",
"L 396.19377 2112.180099 \n",
"L 396.19377 2112.180099 \n",
"L 387.516929 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_508\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 396.19377 2112.180099 \n",
"L 404.87061 2112.180099 \n",
"L 404.87061 2112.180099 \n",
"L 396.19377 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_509\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 404.87061 2112.180099 \n",
"L 413.547451 2112.180099 \n",
"L 413.547451 2112.180099 \n",
"L 404.87061 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_510\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 413.547451 2112.180099 \n",
"L 422.224291 2112.180099 \n",
"L 422.224291 2112.180099 \n",
"L 413.547451 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_511\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 422.224291 2112.180099 \n",
"L 430.901132 2112.180099 \n",
"L 430.901132 2112.180099 \n",
"L 422.224291 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_512\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 430.901132 2112.180099 \n",
"L 439.577972 2112.180099 \n",
"L 439.577972 2112.180099 \n",
"L 430.901132 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_513\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 439.577972 2112.180099 \n",
"L 448.254813 2112.180099 \n",
"L 448.254813 2112.180099 \n",
"L 439.577972 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_514\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 448.254813 2112.180099 \n",
"L 456.931653 2112.180099 \n",
"L 456.931653 2112.180099 \n",
"L 448.254813 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_515\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 456.931653 2112.180099 \n",
"L 465.608494 2112.180099 \n",
"L 465.608494 2112.180099 \n",
"L 456.931653 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_516\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 465.608494 2112.180099 \n",
"L 474.285334 2112.180099 \n",
"L 474.285334 2112.180099 \n",
"L 465.608494 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_517\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 474.285334 2112.180099 \n",
"L 482.962175 2112.180099 \n",
"L 482.962175 2112.180099 \n",
"L 474.285334 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_518\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 482.962175 2112.180099 \n",
"L 491.639015 2112.180099 \n",
"L 491.639015 2112.180099 \n",
"L 482.962175 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_519\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 491.639015 2112.180099 \n",
"L 500.315856 2112.180099 \n",
"L 500.315856 2112.180099 \n",
"L 491.639015 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_520\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 500.315856 2112.180099 \n",
"L 508.992696 2112.180099 \n",
"L 508.992696 2111.748225 \n",
"L 500.315856 2111.748225 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_521\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 508.992696 2112.180099 \n",
"L 517.669537 2112.180099 \n",
"L 517.669537 2112.084127 \n",
"L 508.992696 2112.084127 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_522\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 517.669537 2112.180099 \n",
"L 526.346378 2112.180099 \n",
"L 526.346378 2112.180099 \n",
"L 517.669537 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_523\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 526.346378 2112.180099 \n",
"L 535.023218 2112.180099 \n",
"L 535.023218 2112.180099 \n",
"L 526.346378 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_524\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 535.023218 2112.180099 \n",
"L 543.700059 2112.180099 \n",
"L 543.700059 2112.180099 \n",
"L 535.023218 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_525\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 543.700059 2112.180099 \n",
"L 552.376899 2112.180099 \n",
"L 552.376899 2112.180099 \n",
"L 543.700059 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_526\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 552.376899 2112.180099 \n",
"L 561.05374 2112.180099 \n",
"L 561.05374 2112.180099 \n",
"L 552.376899 2112.180099 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_527\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 561.05374 2112.180099 \n",
"L 569.73058 2112.180099 \n",
"L 569.73058 2112.132113 \n",
"L 561.05374 2112.132113 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_327\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 124.246318 2112.175794 \n",
"L 128.863758 2112.101815 \n",
"L 133.481197 2111.831899 \n",
"L 138.098636 2111.746896 \n",
"L 142.716076 2111.232575 \n",
"L 147.333515 2102.561513 \n",
"L 151.950954 2050.458553 \n",
"L 156.568394 1972.13638 \n",
"L 161.185833 2015.525953 \n",
"L 165.803273 2089.42874 \n",
"L 170.420712 2108.69128 \n",
"L 175.038151 2111.29918 \n",
"L 179.655591 2111.930789 \n",
"L 184.27303 2112.06004 \n",
"L 188.890469 2112.031339 \n",
"L 193.507909 2112.083876 \n",
"L 198.125348 2112.159221 \n",
"L 202.742787 2112.178437 \n",
"L 207.360227 2112.172862 \n",
"L 211.977666 2112.146536 \n",
"L 216.595106 2112.14219 \n",
"L 221.212545 2112.169701 \n",
"L 225.829984 2112.179404 \n",
"L 230.447424 2112.179809 \n",
"L 235.064863 2112.174109 \n",
"L 239.682302 2112.148859 \n",
"L 244.299742 2112.140534 \n",
"L 248.917181 2112.167931 \n",
"L 253.534621 2112.179191 \n",
"L 258.15206 2112.180083 \n",
"L 262.769499 2112.180099 \n",
"L 267.386939 2112.180099 \n",
"L 272.004378 2112.180099 \n",
"L 276.621817 2112.180099 \n",
"L 281.239257 2112.180099 \n",
"L 285.856696 2112.180099 \n",
"L 290.474135 2112.180099 \n",
"L 295.091575 2112.180099 \n",
"L 299.709014 2112.180099 \n",
"L 304.326454 2112.180099 \n",
"L 308.943893 2112.180099 \n",
"L 313.561332 2112.180099 \n",
"L 318.178772 2112.180099 \n",
"L 322.796211 2112.180099 \n",
"L 327.41365 2112.180099 \n",
"L 332.03109 2112.180099 \n",
"L 336.648529 2112.180099 \n",
"L 341.265968 2112.180099 \n",
"L 345.883408 2112.180099 \n",
"L 350.500847 2112.180099 \n",
"L 355.118287 2112.180099 \n",
"L 359.735726 2112.180099 \n",
"L 364.353165 2112.180099 \n",
"L 368.970605 2112.180099 \n",
"L 373.588044 2112.180099 \n",
"L 378.205483 2112.180099 \n",
"L 382.822923 2112.180099 \n",
"L 387.440362 2112.180099 \n",
"L 392.057801 2112.180099 \n",
"L 396.675241 2112.180099 \n",
"L 401.29268 2112.180099 \n",
"L 405.91012 2112.180099 \n",
"L 410.527559 2112.180099 \n",
"L 415.144998 2112.180099 \n",
"L 419.762438 2112.180099 \n",
"L 424.379877 2112.180099 \n",
"L 428.997316 2112.180099 \n",
"L 433.614756 2112.180099 \n",
"L 438.232195 2112.180099 \n",
"L 442.849635 2112.180099 \n",
"L 447.467074 2112.180099 \n",
"L 452.084513 2112.180099 \n",
"L 456.701953 2112.180099 \n",
"L 461.319392 2112.180099 \n",
"L 465.936831 2112.180099 \n",
"L 470.554271 2112.180099 \n",
"L 475.17171 2112.180099 \n",
"L 479.789149 2112.180099 \n",
"L 484.406589 2112.180084 \n",
"L 489.024028 2112.178575 \n",
"L 493.641468 2112.142227 \n",
"L 498.258907 2111.944208 \n",
"L 502.876346 2111.791929 \n",
"L 507.493786 2111.956355 \n",
"L 512.111225 2112.093537 \n",
"L 516.728664 2112.162967 \n",
"L 521.346104 2112.179126 \n",
"L 525.963543 2112.180086 \n",
"L 530.580982 2112.180099 \n",
"L 535.198422 2112.180099 \n",
"L 539.815861 2112.180099 \n",
"L 544.433301 2112.180099 \n",
"L 549.05074 2112.180099 \n",
"L 553.668179 2112.180091 \n",
"L 558.285619 2112.179546 \n",
"L 562.903058 2112.17099 \n",
"L 567.520497 2112.143707 \n",
"L 572.137937 2112.144791 \n",
"L 576.755376 2112.17178 \n",
"L 581.372815 2112.179623 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_328\">\n",
" <path clip-path=\"url(#p5e7ec14e75)\" d=\"M 124.244769 2105.022359 \n",
"L 126.541903 2103.534464 \n",
"L 128.839036 2101.872344 \n",
"L 133.433304 2098.08926 \n",
"L 140.324704 2091.753683 \n",
"L 144.918972 2087.665404 \n",
"L 147.216105 2085.843306 \n",
"L 149.513239 2084.251739 \n",
"L 151.810373 2082.947048 \n",
"L 154.107506 2081.977175 \n",
"L 156.40464 2081.378731 \n",
"L 158.701774 2081.17471 \n",
"L 160.998907 2081.373022 \n",
"L 163.296041 2081.965977 \n",
"L 165.593175 2082.93079 \n",
"L 167.890308 2084.231026 \n",
"L 170.187442 2085.818889 \n",
"L 172.484576 2087.638128 \n",
"L 177.078843 2091.723374 \n",
"L 183.970244 2098.060503 \n",
"L 188.564511 2101.847479 \n",
"L 190.861645 2103.512001 \n",
"L 193.158778 2105.002432 \n",
"L 195.455912 2106.313466 \n",
"L 197.753046 2107.447053 \n",
"L 200.050179 2108.41099 \n",
"L 202.347313 2109.217432 \n",
"L 204.644447 2109.881448 \n",
"L 209.238714 2110.849363 \n",
"L 213.832981 2111.448799 \n",
"L 218.427249 2111.798609 \n",
"L 225.318649 2112.049734 \n",
"L 236.804318 2112.163316 \n",
"L 285.044124 2112.180099 \n",
"L 581.374365 2112.180099 \n",
"L 581.374365 2112.180099 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_528\">\n",
" <path d=\"M 42.828125 2112.180099 \n",
"L 42.828125 1941.681918 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_529\">\n",
" <path d=\"M 42.828125 2112.180099 \n",
"L 616.408125 2112.180099 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_164\">\n",
" <!-- ticker = NWBO -->\n",
" <defs>\n",
" <path d=\"M 39.40625 66.21875 \n",
"Q 28.65625 66.21875 22.328125 58.203125 \n",
"Q 16.015625 50.203125 16.015625 36.375 \n",
"Q 16.015625 22.609375 22.328125 14.59375 \n",
"Q 28.65625 6.59375 39.40625 6.59375 \n",
"Q 50.140625 6.59375 56.421875 14.59375 \n",
"Q 62.703125 22.609375 62.703125 36.375 \n",
"Q 62.703125 50.203125 56.421875 58.203125 \n",
"Q 50.140625 66.21875 39.40625 66.21875 \n",
"M 39.40625 74.21875 \n",
"Q 54.734375 74.21875 63.90625 63.9375 \n",
"Q 73.09375 53.65625 73.09375 36.375 \n",
"Q 73.09375 19.140625 63.90625 8.859375 \n",
"Q 54.734375 -1.421875 39.40625 -1.421875 \n",
"Q 24.03125 -1.421875 14.8125 8.828125 \n",
"Q 5.609375 19.09375 5.609375 36.375 \n",
"Q 5.609375 53.65625 14.8125 63.9375 \n",
"Q 24.03125 74.21875 39.40625 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-4f\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(288.322578125 1936.68191761)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" <use x=\"504.640625\" xlink:href=\"#BitstreamVeraSans-Roman-57\"/>\n",
" <use x=\"603.517578125\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"672.10546875\" xlink:href=\"#BitstreamVeraSans-Roman-4f\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_11\">\n",
" <g id=\"patch_530\">\n",
" <path d=\"M 42.828125 2325.638281 \n",
"L 616.408125 2325.638281 \n",
"L 616.408125 2155.140099 \n",
"L 42.828125 2155.140099 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_21\">\n",
" <g id=\"xtick_87\">\n",
" <g id=\"line2d_329\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2325.638281 \n",
"L 42.828125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_330\"/>\n",
" <g id=\"text_165\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(32.27578125 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_88\">\n",
" <g id=\"line2d_331\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 124.768125 2325.638281 \n",
"L 124.768125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_332\"/>\n",
" <g id=\"text_166\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(114.21578125 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_89\">\n",
" <g id=\"line2d_333\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 206.708125 2325.638281 \n",
"L 206.708125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_334\"/>\n",
" <g id=\"text_167\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(203.526875 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_90\">\n",
" <g id=\"line2d_335\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 288.648125 2325.638281 \n",
"L 288.648125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_336\"/>\n",
" <g id=\"text_168\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(282.285625 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_91\">\n",
" <g id=\"line2d_337\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 370.588125 2325.638281 \n",
"L 370.588125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_338\"/>\n",
" <g id=\"text_169\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(364.225625 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_92\">\n",
" <g id=\"line2d_339\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 452.528125 2325.638281 \n",
"L 452.528125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_340\"/>\n",
" <g id=\"text_170\">\n",
" <!-- 30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(446.165625 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_93\">\n",
" <g id=\"line2d_341\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 534.468125 2325.638281 \n",
"L 534.468125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_342\"/>\n",
" <g id=\"text_171\">\n",
" <!-- 40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(528.105625 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_94\">\n",
" <g id=\"line2d_343\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 616.408125 2325.638281 \n",
"L 616.408125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_344\"/>\n",
" <g id=\"text_172\">\n",
" <!-- 50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.045625 2340.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_173\">\n",
" <!-- change -->\n",
" <defs>\n",
" <path d=\"M 34.28125 27.484375 \n",
"Q 23.390625 27.484375 19.1875 25 \n",
"Q 14.984375 22.515625 14.984375 16.5 \n",
"Q 14.984375 11.71875 18.140625 8.90625 \n",
"Q 21.296875 6.109375 26.703125 6.109375 \n",
"Q 34.1875 6.109375 38.703125 11.40625 \n",
"Q 43.21875 16.703125 43.21875 25.484375 \n",
"L 43.21875 27.484375 \n",
"z\n",
"M 52.203125 31.203125 \n",
"L 52.203125 0 \n",
"L 43.21875 0 \n",
"L 43.21875 8.296875 \n",
"Q 40.140625 3.328125 35.546875 0.953125 \n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \n",
"Q 15.921875 -1.421875 10.953125 3.296875 \n",
"Q 6 8.015625 6 15.921875 \n",
"Q 6 25.140625 12.171875 29.828125 \n",
"Q 18.359375 34.515625 30.609375 34.515625 \n",
"L 43.21875 34.515625 \n",
"L 43.21875 35.40625 \n",
"Q 43.21875 41.609375 39.140625 45 \n",
"Q 35.0625 48.390625 27.6875 48.390625 \n",
"Q 23 48.390625 18.546875 47.265625 \n",
"Q 14.109375 46.140625 10.015625 43.890625 \n",
"L 10.015625 52.203125 \n",
"Q 14.9375 54.109375 19.578125 55.046875 \n",
"Q 24.21875 56 28.609375 56 \n",
"Q 40.484375 56 46.34375 49.84375 \n",
"Q 52.203125 43.703125 52.203125 31.203125 \n",
"\" id=\"BitstreamVeraSans-Roman-61\"/>\n",
" <path d=\"M 45.40625 27.984375 \n",
"Q 45.40625 37.75 41.375 43.109375 \n",
"Q 37.359375 48.484375 30.078125 48.484375 \n",
"Q 22.859375 48.484375 18.828125 43.109375 \n",
"Q 14.796875 37.75 14.796875 27.984375 \n",
"Q 14.796875 18.265625 18.828125 12.890625 \n",
"Q 22.859375 7.515625 30.078125 7.515625 \n",
"Q 37.359375 7.515625 41.375 12.890625 \n",
"Q 45.40625 18.265625 45.40625 27.984375 \n",
"M 54.390625 6.78125 \n",
"Q 54.390625 -7.171875 48.1875 -13.984375 \n",
"Q 42 -20.796875 29.203125 -20.796875 \n",
"Q 24.46875 -20.796875 20.265625 -20.09375 \n",
"Q 16.0625 -19.390625 12.109375 -17.921875 \n",
"L 12.109375 -9.1875 \n",
"Q 16.0625 -11.328125 19.921875 -12.34375 \n",
"Q 23.78125 -13.375 27.78125 -13.375 \n",
"Q 36.625 -13.375 41.015625 -8.765625 \n",
"Q 45.40625 -4.15625 45.40625 5.171875 \n",
"L 45.40625 9.625 \n",
"Q 42.625 4.78125 38.28125 2.390625 \n",
"Q 33.9375 0 27.875 0 \n",
"Q 17.828125 0 11.671875 7.65625 \n",
"Q 5.515625 15.328125 5.515625 27.984375 \n",
"Q 5.515625 40.671875 11.671875 48.328125 \n",
"Q 17.828125 56 27.875 56 \n",
"Q 33.9375 56 38.28125 53.609375 \n",
"Q 42.625 51.21875 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-67\"/>\n",
" <path d=\"M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 75.984375 \n",
"L 18.109375 75.984375 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"\" id=\"BitstreamVeraSans-Roman-68\"/>\n",
" <path d=\"M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"\" id=\"BitstreamVeraSans-Roman-6e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(309.37640625 2355.6746875)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"54.98046875\" xlink:href=\"#BitstreamVeraSans-Roman-68\"/>\n",
" <use x=\"118.359375\" xlink:href=\"#BitstreamVeraSans-Roman-61\"/>\n",
" <use x=\"179.638671875\" xlink:href=\"#BitstreamVeraSans-Roman-6e\"/>\n",
" <use x=\"243.017578125\" xlink:href=\"#BitstreamVeraSans-Roman-67\"/>\n",
" <use x=\"306.494140625\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_22\">\n",
" <g id=\"ytick_69\">\n",
" <g id=\"line2d_345\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2325.638281 \n",
"L 616.408125 2325.638281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_346\"/>\n",
" <g id=\"text_174\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2328.39765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_70\">\n",
" <g id=\"line2d_347\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2297.221918 \n",
"L 616.408125 2297.221918 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_348\"/>\n",
" <g id=\"text_175\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2299.98129261)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_71\">\n",
" <g id=\"line2d_349\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2268.805554 \n",
"L 616.408125 2268.805554 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_350\"/>\n",
" <g id=\"text_176\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2271.56492898)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_72\">\n",
" <g id=\"line2d_351\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2240.38919 \n",
"L 616.408125 2240.38919 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_352\"/>\n",
" <g id=\"text_177\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2243.14856534)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_73\">\n",
" <g id=\"line2d_353\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2211.972827 \n",
"L 616.408125 2211.972827 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_354\"/>\n",
" <g id=\"text_178\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2214.7322017)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_74\">\n",
" <g id=\"line2d_355\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2183.556463 \n",
"L 616.408125 2183.556463 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_356\"/>\n",
" <g id=\"text_179\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2186.31583807)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_75\">\n",
" <g id=\"line2d_357\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 42.828125 2155.140099 \n",
"L 616.408125 2155.140099 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_358\"/>\n",
" <g id=\"text_180\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(13.5625 2157.89947443)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_531\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 67.793711 2325.638281 \n",
"L 78.360416 2325.638281 \n",
"L 78.360416 2325.141424 \n",
"L 67.793711 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_532\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 78.360416 2325.638281 \n",
"L 88.927121 2325.638281 \n",
"L 88.927121 2325.141424 \n",
"L 78.360416 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_533\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 88.927121 2325.638281 \n",
"L 99.493826 2325.638281 \n",
"L 99.493826 2325.638281 \n",
"L 88.927121 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_534\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 99.493826 2325.638281 \n",
"L 110.060531 2325.638281 \n",
"L 110.060531 2325.638281 \n",
"L 99.493826 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_535\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 110.060531 2325.638281 \n",
"L 120.627236 2325.638281 \n",
"L 120.627236 2325.638281 \n",
"L 110.060531 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_536\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 120.627236 2325.638281 \n",
"L 131.193941 2325.638281 \n",
"L 131.193941 2325.638281 \n",
"L 120.627236 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_537\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 131.193941 2325.638281 \n",
"L 141.760647 2325.638281 \n",
"L 141.760647 2325.638281 \n",
"L 131.193941 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_538\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 141.760647 2325.638281 \n",
"L 152.327352 2325.638281 \n",
"L 152.327352 2325.141424 \n",
"L 141.760647 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_539\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 152.327352 2325.638281 \n",
"L 162.894057 2325.638281 \n",
"L 162.894057 2324.644568 \n",
"L 152.327352 2324.644568 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_540\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 162.894057 2325.638281 \n",
"L 173.460762 2325.638281 \n",
"L 173.460762 2320.669713 \n",
"L 162.894057 2320.669713 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_541\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 173.460762 2325.638281 \n",
"L 184.027467 2325.638281 \n",
"L 184.027467 2312.223147 \n",
"L 173.460762 2312.223147 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_542\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 184.027467 2325.638281 \n",
"L 194.594172 2325.638281 \n",
"L 194.594172 2280.921168 \n",
"L 184.027467 2280.921168 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_543\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 194.594172 2325.638281 \n",
"L 205.160877 2325.638281 \n",
"L 205.160877 2201.424078 \n",
"L 194.594172 2201.424078 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_544\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 205.160877 2325.638281 \n",
"L 215.727582 2325.638281 \n",
"L 215.727582 2172.109526 \n",
"L 205.160877 2172.109526 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_545\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 215.727582 2325.638281 \n",
"L 226.294287 2325.638281 \n",
"L 226.294287 2258.065755 \n",
"L 215.727582 2258.065755 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_546\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 226.294287 2325.638281 \n",
"L 236.860993 2325.638281 \n",
"L 236.860993 2304.273438 \n",
"L 226.294287 2304.273438 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_547\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 236.860993 2325.638281 \n",
"L 247.427698 2325.638281 \n",
"L 247.427698 2320.669713 \n",
"L 236.860993 2320.669713 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_548\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 247.427698 2325.638281 \n",
"L 257.994403 2325.638281 \n",
"L 257.994403 2323.650854 \n",
"L 247.427698 2323.650854 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_549\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 257.994403 2325.638281 \n",
"L 268.561108 2325.638281 \n",
"L 268.561108 2325.141424 \n",
"L 257.994403 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_550\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 268.561108 2325.638281 \n",
"L 279.127813 2325.638281 \n",
"L 279.127813 2325.141424 \n",
"L 268.561108 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_551\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 279.127813 2325.638281 \n",
"L 289.694518 2325.638281 \n",
"L 289.694518 2325.638281 \n",
"L 279.127813 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_552\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 289.694518 2325.638281 \n",
"L 300.261223 2325.638281 \n",
"L 300.261223 2325.638281 \n",
"L 289.694518 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_553\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 300.261223 2325.638281 \n",
"L 310.827928 2325.638281 \n",
"L 310.827928 2325.638281 \n",
"L 300.261223 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_554\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 310.827928 2325.638281 \n",
"L 321.394633 2325.638281 \n",
"L 321.394633 2325.638281 \n",
"L 310.827928 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_555\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 321.394633 2325.638281 \n",
"L 331.961338 2325.638281 \n",
"L 331.961338 2325.638281 \n",
"L 321.394633 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_556\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 331.961338 2325.638281 \n",
"L 342.528044 2325.638281 \n",
"L 342.528044 2325.638281 \n",
"L 331.961338 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_557\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 342.528044 2325.638281 \n",
"L 353.094749 2325.638281 \n",
"L 353.094749 2325.638281 \n",
"L 342.528044 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_558\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 353.094749 2325.638281 \n",
"L 363.661454 2325.638281 \n",
"L 363.661454 2325.638281 \n",
"L 353.094749 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_559\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 363.661454 2325.638281 \n",
"L 374.228159 2325.638281 \n",
"L 374.228159 2325.638281 \n",
"L 363.661454 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_560\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 374.228159 2325.638281 \n",
"L 384.794864 2325.638281 \n",
"L 384.794864 2325.638281 \n",
"L 374.228159 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_561\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 384.794864 2325.638281 \n",
"L 395.361569 2325.638281 \n",
"L 395.361569 2325.638281 \n",
"L 384.794864 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_562\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 395.361569 2325.638281 \n",
"L 405.928274 2325.638281 \n",
"L 405.928274 2325.638281 \n",
"L 395.361569 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_563\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 405.928274 2325.638281 \n",
"L 416.494979 2325.638281 \n",
"L 416.494979 2325.638281 \n",
"L 405.928274 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_564\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 416.494979 2325.638281 \n",
"L 427.061684 2325.638281 \n",
"L 427.061684 2325.638281 \n",
"L 416.494979 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_565\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 427.061684 2325.638281 \n",
"L 437.62839 2325.638281 \n",
"L 437.62839 2325.638281 \n",
"L 427.061684 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_566\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 437.62839 2325.638281 \n",
"L 448.195095 2325.638281 \n",
"L 448.195095 2325.638281 \n",
"L 437.62839 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_567\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 448.195095 2325.638281 \n",
"L 458.7618 2325.638281 \n",
"L 458.7618 2325.638281 \n",
"L 448.195095 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_568\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 458.7618 2325.638281 \n",
"L 469.328505 2325.638281 \n",
"L 469.328505 2325.638281 \n",
"L 458.7618 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_569\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 469.328505 2325.638281 \n",
"L 479.89521 2325.638281 \n",
"L 479.89521 2325.638281 \n",
"L 469.328505 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_570\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 479.89521 2325.638281 \n",
"L 490.461915 2325.638281 \n",
"L 490.461915 2325.638281 \n",
"L 479.89521 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_571\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 490.461915 2325.638281 \n",
"L 501.02862 2325.638281 \n",
"L 501.02862 2325.638281 \n",
"L 490.461915 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_572\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 501.02862 2325.638281 \n",
"L 511.595325 2325.638281 \n",
"L 511.595325 2325.638281 \n",
"L 501.02862 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_573\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 511.595325 2325.638281 \n",
"L 522.16203 2325.638281 \n",
"L 522.16203 2325.638281 \n",
"L 511.595325 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_574\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 522.16203 2325.638281 \n",
"L 532.728735 2325.638281 \n",
"L 532.728735 2325.638281 \n",
"L 522.16203 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_575\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 532.728735 2325.638281 \n",
"L 543.295441 2325.638281 \n",
"L 543.295441 2325.638281 \n",
"L 532.728735 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_576\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 543.295441 2325.638281 \n",
"L 553.862146 2325.638281 \n",
"L 553.862146 2325.638281 \n",
"L 543.295441 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_577\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 553.862146 2325.638281 \n",
"L 564.428851 2325.638281 \n",
"L 564.428851 2325.638281 \n",
"L 553.862146 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_578\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 564.428851 2325.638281 \n",
"L 574.995556 2325.638281 \n",
"L 574.995556 2325.638281 \n",
"L 564.428851 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_579\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 574.995556 2325.638281 \n",
"L 585.562261 2325.638281 \n",
"L 585.562261 2325.638281 \n",
"L 574.995556 2325.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_580\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 585.562261 2325.638281 \n",
"L 596.128966 2325.638281 \n",
"L 596.128966 2325.141424 \n",
"L 585.562261 2325.141424 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_359\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 52.533279 2325.633685 \n",
"L 58.17829 2325.569045 \n",
"L 63.823301 2325.327939 \n",
"L 69.468313 2325.160458 \n",
"L 75.113324 2325.158253 \n",
"L 80.758335 2325.252317 \n",
"L 86.403347 2325.517929 \n",
"L 92.048358 2325.62693 \n",
"L 97.693369 2325.637967 \n",
"L 103.33838 2325.638279 \n",
"L 108.983392 2325.638281 \n",
"L 114.628403 2325.638281 \n",
"L 120.273414 2325.638281 \n",
"L 125.918426 2325.638277 \n",
"L 131.563437 2325.637836 \n",
"L 137.208448 2325.623535 \n",
"L 142.85346 2325.488445 \n",
"L 148.498471 2325.096881 \n",
"L 154.143482 2324.59966 \n",
"L 159.788494 2323.769149 \n",
"L 165.433505 2321.92707 \n",
"L 171.078516 2319.568268 \n",
"L 176.723527 2314.34329 \n",
"L 182.368539 2302.230468 \n",
"L 188.01355 2281.644942 \n",
"L 193.658561 2250.098214 \n",
"L 199.303573 2208.052558 \n",
"L 204.948584 2174.186367 \n",
"L 210.593595 2182.771864 \n",
"L 216.238607 2223.291408 \n",
"L 221.883618 2260.563782 \n",
"L 227.528629 2288.552795 \n",
"L 233.173641 2306.894002 \n",
"L 238.818652 2316.751781 \n",
"L 244.463663 2320.900963 \n",
"L 250.108674 2322.833531 \n",
"L 255.753686 2324.644519 \n",
"L 261.398697 2325.234079 \n",
"L 267.043708 2324.908049 \n",
"L 272.68872 2325.013161 \n",
"L 278.333731 2325.460093 \n",
"L 283.978742 2325.621966 \n",
"L 289.623754 2325.637818 \n",
"L 295.268765 2325.638277 \n",
"L 300.913776 2325.638281 \n",
"L 306.558788 2325.638281 \n",
"L 312.203799 2325.638281 \n",
"L 317.84881 2325.638281 \n",
"L 323.493821 2325.638281 \n",
"L 329.138833 2325.638281 \n",
"L 334.783844 2325.638281 \n",
"L 340.428855 2325.638281 \n",
"L 346.073867 2325.638281 \n",
"L 351.718878 2325.638281 \n",
"L 357.363889 2325.638281 \n",
"L 363.008901 2325.638281 \n",
"L 368.653912 2325.638281 \n",
"L 374.298923 2325.638281 \n",
"L 379.943935 2325.638281 \n",
"L 385.588946 2325.638281 \n",
"L 391.233957 2325.638281 \n",
"L 396.878969 2325.638281 \n",
"L 402.52398 2325.638281 \n",
"L 408.168991 2325.638281 \n",
"L 413.814002 2325.638281 \n",
"L 419.459014 2325.638281 \n",
"L 425.104025 2325.638281 \n",
"L 430.749036 2325.638281 \n",
"L 436.394048 2325.638281 \n",
"L 442.039059 2325.638281 \n",
"L 447.68407 2325.638281 \n",
"L 453.329082 2325.638281 \n",
"L 458.974093 2325.638281 \n",
"L 464.619104 2325.638281 \n",
"L 470.264116 2325.638281 \n",
"L 475.909127 2325.638281 \n",
"L 481.554138 2325.638281 \n",
"L 487.199149 2325.638281 \n",
"L 492.844161 2325.638281 \n",
"L 498.489172 2325.638281 \n",
"L 504.134183 2325.638281 \n",
"L 509.779195 2325.638281 \n",
"L 515.424206 2325.638281 \n",
"L 521.069217 2325.638281 \n",
"L 526.714229 2325.638281 \n",
"L 532.35924 2325.638281 \n",
"L 538.004251 2325.638281 \n",
"L 543.649263 2325.638281 \n",
"L 549.294274 2325.638281 \n",
"L 554.939285 2325.638281 \n",
"L 560.584296 2325.638281 \n",
"L 566.229308 2325.638281 \n",
"L 571.874319 2325.638276 \n",
"L 577.51933 2325.637767 \n",
"L 583.164342 2325.622232 \n",
"L 588.809353 2325.491968 \n",
"L 594.454364 2325.248444 \n",
"L 600.099376 2325.334719 \n",
"L 605.744387 2325.569198 \n",
"L 611.389398 2325.633686 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_360\">\n",
" <path clip-path=\"url(#pa22371f6e3)\" d=\"M 52.524669 2325.638281 \n",
"L 133.968522 2325.536106 \n",
"L 139.58534 2325.357981 \n",
"L 145.202157 2324.928946 \n",
"L 148.010566 2324.543516 \n",
"L 150.818975 2323.982404 \n",
"L 153.627384 2323.183729 \n",
"L 156.435792 2322.072508 \n",
"L 159.244201 2320.56169 \n",
"L 162.05261 2318.555108 \n",
"L 164.861019 2315.952811 \n",
"L 167.669427 2312.658997 \n",
"L 170.477836 2308.59246 \n",
"L 173.286245 2303.699006 \n",
"L 176.094654 2297.964799 \n",
"L 178.903062 2291.429113 \n",
"L 181.711471 2284.194594 \n",
"L 187.328288 2268.384833 \n",
"L 190.136697 2260.350932 \n",
"L 192.945106 2252.676808 \n",
"L 195.753515 2245.72935 \n",
"L 198.561923 2239.868515 \n",
"L 201.370332 2235.416729 \n",
"L 204.178741 2232.629589 \n",
"L 206.98715 2231.671587 \n",
"L 209.795558 2232.600031 \n",
"L 212.603967 2235.359375 \n",
"L 215.412376 2239.786717 \n",
"L 218.220785 2245.627721 \n",
"L 221.029193 2252.560799 \n",
"L 223.837602 2260.226343 \n",
"L 232.262828 2284.075906 \n",
"L 235.071237 2291.320241 \n",
"L 237.879646 2297.867904 \n",
"L 240.688055 2303.615192 \n",
"L 243.496463 2308.521903 \n",
"L 246.304872 2312.601131 \n",
"L 249.113281 2315.906538 \n",
"L 251.921689 2318.519006 \n",
"L 254.730098 2320.534194 \n",
"L 257.538507 2322.052056 \n",
"L 260.346916 2323.168865 \n",
"L 263.155324 2323.971847 \n",
"L 265.963733 2324.536186 \n",
"L 268.772142 2324.92397 \n",
"L 274.388959 2325.355835 \n",
"L 282.814186 2325.577916 \n",
"L 299.664638 2325.636682 \n",
"L 611.398008 2325.638281 \n",
"L 611.398008 2325.638281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_581\">\n",
" <path d=\"M 42.828125 2325.638281 \n",
"L 42.828125 2155.140099 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_582\">\n",
" <path d=\"M 42.828125 2325.638281 \n",
"L 616.408125 2325.638281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_181\">\n",
" <!-- ticker = ADT -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(294.6209375 2150.14009943)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-41\"/>\n",
" <use x=\"498.244140625\" xlink:href=\"#BitstreamVeraSans-Roman-44\"/>\n",
" <use x=\"575.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-54\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pa22371f6e3\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"2155.14009943\"/>\n",
" </clipPath>\n",
" <clipPath id=\"pb2f562e735\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"1514.76555398\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p5e7ec14e75\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"1941.68191761\"/>\n",
" </clipPath>\n",
" <clipPath id=\"pfd4ef30dd2\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"1087.84919034\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p53ba917543\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"874.391008523\"/>\n",
" </clipPath>\n",
" <clipPath id=\"pf43dc56857\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"660.932826705\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p014e3a1fdf\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"1301.30737216\"/>\n",
" </clipPath>\n",
" <clipPath id=\"pfa6bb1f4db\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"234.016463068\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p5668ed6dd4\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"20.55828125\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p0b6183af0c\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"1728.2237358\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p866142b401\">\n",
" <rect height=\"170.498181818\" width=\"573.58\" x=\"42.828125\" y=\"447.474644886\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa4087aa278>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"g = sns.FacetGrid(sampled_returns, row=\"ticker\", sharex=False, sharey=False, aspect=3)\n",
"_ = g.map(sns.distplot, \"change\", fit=stats.norm)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can re-run this experiment several times to see the results with a different set of sampled ticker symbols."
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"def plot_returns(df, frac=0.001, dist=stats.norm):\n",
" \"Plot the distribution returns for a selection of securities against another distribution\"\n",
" symbols = df.select(\"ticker\").distinct().sample(True, frac).rdd.map(lambda l: l[\"ticker\"]).collect()\n",
" dfs = df.filter(df[\"ticker\"].isin(symbols)).select(\"ticker\", \"change\").dropna()\n",
" sampled_returns = dfs.toPandas()\n",
" g = sns.FacetGrid(sampled_returns, row=\"ticker\", sharex=False, sharey=False, aspect=3)\n",
" g.map(sns.distplot, \"change\", fit=dist)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The `plot_returns` function above will let us experiment some more as well: we can specify the fraction of ticker symbols to consider (set it larger if you're feeling particularly patient), and we can also specify a distribution to plot against our empirical observations. Try it out!"
]
},
{
"cell_type": "code",
"execution_count": 70,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Created with matplotlib (http://matplotlib.org/) -->\n",
"<svg height=\"1069pt\" version=\"1.1\" viewBox=\"0 0 636 1069\" width=\"636pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
" <defs>\n",
" <style type=\"text/css\">\n",
"*{stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:100000;}\n",
" </style>\n",
" </defs>\n",
" <g id=\"figure_1\">\n",
" <g id=\"patch_1\">\n",
" <path d=\"M 0 1069.162344 \n",
"L 636.351875 1069.162344 \n",
"L 636.351875 0 \n",
"L 0 0 \n",
"z\n",
"\" style=\"fill:#ffffff;\"/>\n",
" </g>\n",
" <g id=\"axes_1\">\n",
" <g id=\"patch_2\">\n",
" <path d=\"M 36.465625 188.006281 \n",
"L 619.608125 188.006281 \n",
"L 619.608125 20.558281 \n",
"L 36.465625 20.558281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_1\">\n",
" <g id=\"xtick_1\">\n",
" <g id=\"line2d_1\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 188.006281 \n",
"L 36.465625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_2\"/>\n",
" <g id=\"text_1\">\n",
" <!-- −50 -->\n",
" <defs>\n",
" <path d=\"M 10.796875 72.90625 \n",
"L 49.515625 72.90625 \n",
"L 49.515625 64.59375 \n",
"L 19.828125 64.59375 \n",
"L 19.828125 46.734375 \n",
"Q 21.96875 47.46875 24.109375 47.828125 \n",
"Q 26.265625 48.1875 28.421875 48.1875 \n",
"Q 40.625 48.1875 47.75 41.5 \n",
"Q 54.890625 34.8125 54.890625 23.390625 \n",
"Q 54.890625 11.625 47.5625 5.09375 \n",
"Q 40.234375 -1.421875 26.90625 -1.421875 \n",
"Q 22.3125 -1.421875 17.546875 -0.640625 \n",
"Q 12.796875 0.140625 7.71875 1.703125 \n",
"L 7.71875 11.625 \n",
"Q 12.109375 9.234375 16.796875 8.0625 \n",
"Q 21.484375 6.890625 26.703125 6.890625 \n",
"Q 35.15625 6.890625 40.078125 11.328125 \n",
"Q 45.015625 15.765625 45.015625 23.390625 \n",
"Q 45.015625 31 40.078125 35.4375 \n",
"Q 35.15625 39.890625 26.703125 39.890625 \n",
"Q 22.75 39.890625 18.8125 39.015625 \n",
"Q 14.890625 38.140625 10.796875 36.28125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-35\"/>\n",
" <path d=\"M 10.59375 35.5 \n",
"L 73.1875 35.5 \n",
"L 73.1875 27.203125 \n",
"L 10.59375 27.203125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2212\"/>\n",
" <path d=\"M 31.78125 66.40625 \n",
"Q 24.171875 66.40625 20.328125 58.90625 \n",
"Q 16.5 51.421875 16.5 36.375 \n",
"Q 16.5 21.390625 20.328125 13.890625 \n",
"Q 24.171875 6.390625 31.78125 6.390625 \n",
"Q 39.453125 6.390625 43.28125 13.890625 \n",
"Q 47.125 21.390625 47.125 36.375 \n",
"Q 47.125 51.421875 43.28125 58.90625 \n",
"Q 39.453125 66.40625 31.78125 66.40625 \n",
"M 31.78125 74.21875 \n",
"Q 44.046875 74.21875 50.515625 64.515625 \n",
"Q 56.984375 54.828125 56.984375 36.375 \n",
"Q 56.984375 17.96875 50.515625 8.265625 \n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \n",
"Q 19.53125 -1.421875 13.0625 8.265625 \n",
"Q 6.59375 17.96875 6.59375 36.375 \n",
"Q 6.59375 54.828125 13.0625 64.515625 \n",
"Q 19.53125 74.21875 31.78125 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-30\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(25.91328125 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_2\">\n",
" <g id=\"line2d_3\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 153.094125 188.006281 \n",
"L 153.094125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_4\"/>\n",
" <g id=\"text_2\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(149.912875 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_3\">\n",
" <g id=\"line2d_5\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 269.722625 188.006281 \n",
"L 269.722625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_6\"/>\n",
" <g id=\"text_3\">\n",
" <!-- 50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(263.360125 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_4\">\n",
" <g id=\"line2d_7\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 386.351125 188.006281 \n",
"L 386.351125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_8\"/>\n",
" <g id=\"text_4\">\n",
" <!-- 100 -->\n",
" <defs>\n",
" <path d=\"M 12.40625 8.296875 \n",
"L 28.515625 8.296875 \n",
"L 28.515625 63.921875 \n",
"L 10.984375 60.40625 \n",
"L 10.984375 69.390625 \n",
"L 28.421875 72.90625 \n",
"L 38.28125 72.90625 \n",
"L 38.28125 8.296875 \n",
"L 54.390625 8.296875 \n",
"L 54.390625 0 \n",
"L 12.40625 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-31\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(376.807375 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_5\">\n",
" <g id=\"line2d_9\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 502.979625 188.006281 \n",
"L 502.979625 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_10\"/>\n",
" <g id=\"text_5\">\n",
" <!-- 150 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(493.435875 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_6\">\n",
" <g id=\"line2d_11\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 619.608125 188.006281 \n",
"L 619.608125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_12\"/>\n",
" <g id=\"text_6\">\n",
" <!-- 200 -->\n",
" <defs>\n",
" <path d=\"M 19.1875 8.296875 \n",
"L 53.609375 8.296875 \n",
"L 53.609375 0 \n",
"L 7.328125 0 \n",
"L 7.328125 8.296875 \n",
"Q 12.9375 14.109375 22.625 23.890625 \n",
"Q 32.328125 33.6875 34.8125 36.53125 \n",
"Q 39.546875 41.84375 41.421875 45.53125 \n",
"Q 43.3125 49.21875 43.3125 52.78125 \n",
"Q 43.3125 58.59375 39.234375 62.25 \n",
"Q 35.15625 65.921875 28.609375 65.921875 \n",
"Q 23.96875 65.921875 18.8125 64.3125 \n",
"Q 13.671875 62.703125 7.8125 59.421875 \n",
"L 7.8125 69.390625 \n",
"Q 13.765625 71.78125 18.9375 73 \n",
"Q 24.125 74.21875 28.421875 74.21875 \n",
"Q 39.75 74.21875 46.484375 68.546875 \n",
"Q 53.21875 62.890625 53.21875 53.421875 \n",
"Q 53.21875 48.921875 51.53125 44.890625 \n",
"Q 49.859375 40.875 45.40625 35.40625 \n",
"Q 44.1875 33.984375 37.640625 27.21875 \n",
"Q 31.109375 20.453125 19.1875 8.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-32\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.064375 202.60471875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_2\">\n",
" <g id=\"ytick_1\">\n",
" <g id=\"line2d_13\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 188.006281 \n",
"L 619.608125 188.006281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_14\"/>\n",
" <g id=\"text_7\">\n",
" <!-- 0.00 -->\n",
" <defs>\n",
" <path d=\"M 10.6875 12.40625 \n",
"L 21 12.40625 \n",
"L 21 0 \n",
"L 10.6875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-2e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 190.76565625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_2\">\n",
" <g id=\"line2d_15\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 154.516681 \n",
"L 619.608125 154.516681 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_16\"/>\n",
" <g id=\"text_8\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 157.27605625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_3\">\n",
" <g id=\"line2d_17\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 121.027081 \n",
"L 619.608125 121.027081 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_18\"/>\n",
" <g id=\"text_9\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 123.78645625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_4\">\n",
" <g id=\"line2d_19\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 87.537481 \n",
"L 619.608125 87.537481 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_20\"/>\n",
" <g id=\"text_10\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 90.29685625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_5\">\n",
" <g id=\"line2d_21\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 54.047881 \n",
"L 619.608125 54.047881 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_22\"/>\n",
" <g id=\"text_11\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 56.80725625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_6\">\n",
" <g id=\"line2d_23\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 36.465625 20.558281 \n",
"L 619.608125 20.558281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_24\"/>\n",
" <g id=\"text_12\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 23.31765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_3\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 59.038883 188.006281 \n",
"L 69.954809 188.006281 \n",
"L 69.954809 187.968765 \n",
"L 59.038883 187.968765 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_4\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 69.954809 188.006281 \n",
"L 80.870735 188.006281 \n",
"L 80.870735 187.987523 \n",
"L 69.954809 187.987523 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_5\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 80.870735 188.006281 \n",
"L 91.786661 188.006281 \n",
"L 91.786661 187.987523 \n",
"L 80.870735 187.987523 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_6\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 91.786661 188.006281 \n",
"L 102.702587 188.006281 \n",
"L 102.702587 187.931249 \n",
"L 91.786661 187.931249 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_7\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 102.702587 188.006281 \n",
"L 113.618513 188.006281 \n",
"L 113.618513 187.687393 \n",
"L 102.702587 187.687393 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_8\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 113.618513 188.006281 \n",
"L 124.534439 188.006281 \n",
"L 124.534439 187.51857 \n",
"L 113.618513 187.51857 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_9\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 124.534439 188.006281 \n",
"L 135.450365 188.006281 \n",
"L 135.450365 185.736548 \n",
"L 124.534439 185.736548 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_10\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 135.450365 188.006281 \n",
"L 146.366291 188.006281 \n",
"L 146.366291 179.377542 \n",
"L 135.450365 179.377542 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_11\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 146.366291 188.006281 \n",
"L 157.282217 188.006281 \n",
"L 157.282217 75.757636 \n",
"L 146.366291 75.757636 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_12\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 157.282217 188.006281 \n",
"L 168.198143 188.006281 \n",
"L 168.198143 173.449973 \n",
"L 157.282217 173.449973 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_13\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 168.198143 188.006281 \n",
"L 179.114069 188.006281 \n",
"L 179.114069 185.642757 \n",
"L 168.198143 185.642757 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_14\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 179.114069 188.006281 \n",
"L 190.029995 188.006281 \n",
"L 190.029995 186.937068 \n",
"L 179.114069 186.937068 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_15\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 190.029995 188.006281 \n",
"L 200.945921 188.006281 \n",
"L 200.945921 187.481054 \n",
"L 190.029995 187.481054 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_16\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 200.945921 188.006281 \n",
"L 211.861847 188.006281 \n",
"L 211.861847 187.781184 \n",
"L 200.945921 187.781184 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_17\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 211.861847 188.006281 \n",
"L 222.777773 188.006281 \n",
"L 222.777773 187.912491 \n",
"L 211.861847 187.912491 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_18\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 222.777773 188.006281 \n",
"L 233.693699 188.006281 \n",
"L 233.693699 187.950007 \n",
"L 222.777773 187.950007 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_19\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 233.693699 188.006281 \n",
"L 244.609625 188.006281 \n",
"L 244.609625 187.931249 \n",
"L 233.693699 187.931249 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_20\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 244.609625 188.006281 \n",
"L 255.525551 188.006281 \n",
"L 255.525551 188.006281 \n",
"L 244.609625 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_21\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 255.525551 188.006281 \n",
"L 266.441477 188.006281 \n",
"L 266.441477 188.006281 \n",
"L 255.525551 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_22\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 266.441477 188.006281 \n",
"L 277.357403 188.006281 \n",
"L 277.357403 187.987523 \n",
"L 266.441477 187.987523 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_23\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 277.357403 188.006281 \n",
"L 288.273328 188.006281 \n",
"L 288.273328 187.987523 \n",
"L 277.357403 187.987523 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_24\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 288.273328 188.006281 \n",
"L 299.189254 188.006281 \n",
"L 299.189254 188.006281 \n",
"L 288.273328 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_25\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 299.189254 188.006281 \n",
"L 310.10518 188.006281 \n",
"L 310.10518 188.006281 \n",
"L 299.189254 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_26\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 310.10518 188.006281 \n",
"L 321.021106 188.006281 \n",
"L 321.021106 188.006281 \n",
"L 310.10518 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_27\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 321.021106 188.006281 \n",
"L 331.937032 188.006281 \n",
"L 331.937032 188.006281 \n",
"L 321.021106 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_28\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 331.937032 188.006281 \n",
"L 342.852958 188.006281 \n",
"L 342.852958 188.006281 \n",
"L 331.937032 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_29\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 342.852958 188.006281 \n",
"L 353.768884 188.006281 \n",
"L 353.768884 188.006281 \n",
"L 342.852958 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_30\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 353.768884 188.006281 \n",
"L 364.68481 188.006281 \n",
"L 364.68481 188.006281 \n",
"L 353.768884 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_31\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 364.68481 188.006281 \n",
"L 375.600736 188.006281 \n",
"L 375.600736 188.006281 \n",
"L 364.68481 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_32\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 375.600736 188.006281 \n",
"L 386.516662 188.006281 \n",
"L 386.516662 188.006281 \n",
"L 375.600736 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_33\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 386.516662 188.006281 \n",
"L 397.432588 188.006281 \n",
"L 397.432588 188.006281 \n",
"L 386.516662 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_34\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 397.432588 188.006281 \n",
"L 408.348514 188.006281 \n",
"L 408.348514 188.006281 \n",
"L 397.432588 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_35\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 408.348514 188.006281 \n",
"L 419.26444 188.006281 \n",
"L 419.26444 188.006281 \n",
"L 408.348514 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_36\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 419.26444 188.006281 \n",
"L 430.180366 188.006281 \n",
"L 430.180366 188.006281 \n",
"L 419.26444 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_37\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 430.180366 188.006281 \n",
"L 441.096292 188.006281 \n",
"L 441.096292 188.006281 \n",
"L 430.180366 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_38\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 441.096292 188.006281 \n",
"L 452.012218 188.006281 \n",
"L 452.012218 188.006281 \n",
"L 441.096292 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_39\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 452.012218 188.006281 \n",
"L 462.928144 188.006281 \n",
"L 462.928144 188.006281 \n",
"L 452.012218 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_40\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 462.928144 188.006281 \n",
"L 473.84407 188.006281 \n",
"L 473.84407 188.006281 \n",
"L 462.928144 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_41\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 473.84407 188.006281 \n",
"L 484.759996 188.006281 \n",
"L 484.759996 188.006281 \n",
"L 473.84407 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_42\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 484.759996 188.006281 \n",
"L 495.675922 188.006281 \n",
"L 495.675922 188.006281 \n",
"L 484.759996 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_43\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 495.675922 188.006281 \n",
"L 506.591848 188.006281 \n",
"L 506.591848 188.006281 \n",
"L 495.675922 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_44\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 506.591848 188.006281 \n",
"L 517.507774 188.006281 \n",
"L 517.507774 188.006281 \n",
"L 506.591848 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_45\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 517.507774 188.006281 \n",
"L 528.4237 188.006281 \n",
"L 528.4237 188.006281 \n",
"L 517.507774 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_46\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 528.4237 188.006281 \n",
"L 539.339626 188.006281 \n",
"L 539.339626 188.006281 \n",
"L 528.4237 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_47\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 539.339626 188.006281 \n",
"L 550.255552 188.006281 \n",
"L 550.255552 188.006281 \n",
"L 539.339626 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_48\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 550.255552 188.006281 \n",
"L 561.171478 188.006281 \n",
"L 561.171478 188.006281 \n",
"L 550.255552 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_49\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 561.171478 188.006281 \n",
"L 572.087404 188.006281 \n",
"L 572.087404 188.006281 \n",
"L 561.171478 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_50\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 572.087404 188.006281 \n",
"L 583.00333 188.006281 \n",
"L 583.00333 188.006281 \n",
"L 572.087404 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_51\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 583.00333 188.006281 \n",
"L 593.919256 188.006281 \n",
"L 593.919256 188.006281 \n",
"L 583.00333 188.006281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_52\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 593.919256 188.006281 \n",
"L 604.835182 188.006281 \n",
"L 604.835182 187.987523 \n",
"L 593.919256 187.987523 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_25\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 53.961267 188.005745 \n",
"L 59.576939 187.959641 \n",
"L 65.192611 187.96231 \n",
"L 70.808283 188.004903 \n",
"L 76.423955 187.966941 \n",
"L 82.039627 188.006261 \n",
"L 87.655299 187.989227 \n",
"L 93.270971 187.926705 \n",
"L 98.886643 187.96508 \n",
"L 104.502315 187.782161 \n",
"L 110.117987 187.622717 \n",
"L 115.733659 187.768258 \n",
"L 121.349332 187.148665 \n",
"L 126.965004 186.307554 \n",
"L 132.580676 185.094762 \n",
"L 138.196348 183.356186 \n",
"L 143.81202 175.120711 \n",
"L 149.427692 113.902514 \n",
"L 155.043364 50.584662 \n",
"L 160.659036 168.07362 \n",
"L 166.274708 183.308247 \n",
"L 171.89038 185.222092 \n",
"L 177.506052 186.389725 \n",
"L 183.121724 186.925656 \n",
"L 188.737396 187.348335 \n",
"L 194.353068 187.507489 \n",
"L 199.96874 187.620153 \n",
"L 205.584412 187.933106 \n",
"L 211.200084 187.687151 \n",
"L 216.815756 187.904853 \n",
"L 222.431428 188.005962 \n",
"L 228.0471 187.979406 \n",
"L 233.662772 187.844772 \n",
"L 239.278444 187.996965 \n",
"L 244.894116 187.975535 \n",
"L 250.509788 188.006276 \n",
"L 256.12546 188.006281 \n",
"L 261.741132 188.006281 \n",
"L 267.356804 187.98811 \n",
"L 272.972476 187.998641 \n",
"L 278.588148 188.006281 \n",
"L 284.20382 187.99567 \n",
"L 289.819492 187.992368 \n",
"L 295.435164 188.006281 \n",
"L 301.050836 188.006281 \n",
"L 306.666508 188.006281 \n",
"L 312.28218 188.006281 \n",
"L 317.897852 188.006281 \n",
"L 323.513524 188.006281 \n",
"L 329.129196 188.006281 \n",
"L 334.744868 188.006281 \n",
"L 340.36054 188.006281 \n",
"L 345.976212 188.006281 \n",
"L 351.591884 188.006281 \n",
"L 357.207556 188.006281 \n",
"L 362.823228 188.006281 \n",
"L 368.438901 188.006281 \n",
"L 374.054573 188.006281 \n",
"L 379.670245 188.006281 \n",
"L 385.285917 188.006281 \n",
"L 390.901589 188.006281 \n",
"L 396.517261 188.006281 \n",
"L 402.132933 188.006281 \n",
"L 407.748605 188.006281 \n",
"L 413.364277 188.006281 \n",
"L 418.979949 188.006281 \n",
"L 424.595621 188.006281 \n",
"L 430.211293 188.006281 \n",
"L 435.826965 188.006281 \n",
"L 441.442637 188.006281 \n",
"L 447.058309 188.006281 \n",
"L 452.673981 188.006281 \n",
"L 458.289653 188.006281 \n",
"L 463.905325 188.006281 \n",
"L 469.520997 188.006281 \n",
"L 475.136669 188.006281 \n",
"L 480.752341 188.006281 \n",
"L 486.368013 188.006281 \n",
"L 491.983685 188.006281 \n",
"L 497.599357 188.006281 \n",
"L 503.215029 188.006281 \n",
"L 508.830701 188.006281 \n",
"L 514.446373 188.006281 \n",
"L 520.062045 188.006281 \n",
"L 525.677717 188.006281 \n",
"L 531.293389 188.006281 \n",
"L 536.909061 188.006281 \n",
"L 542.524733 188.006281 \n",
"L 548.140405 188.006281 \n",
"L 553.756077 188.006281 \n",
"L 559.371749 188.006281 \n",
"L 564.987421 188.006281 \n",
"L 570.603093 188.006281 \n",
"L 576.218765 188.006281 \n",
"L 581.834437 188.006281 \n",
"L 587.450109 188.006281 \n",
"L 593.065781 188.006281 \n",
"L 598.681453 188.006216 \n",
"L 604.297125 187.960398 \n",
"L 609.912797 188.005745 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_26\">\n",
" <path clip-path=\"url(#p91b1eb7ea1)\" d=\"M 53.960934 188.006281 \n",
"L 115.422986 187.950422 \n",
"L 118.216716 187.855114 \n",
"L 121.010446 187.627231 \n",
"L 123.804175 187.1256 \n",
"L 126.597905 186.110349 \n",
"L 129.391634 184.224395 \n",
"L 132.185364 181.016302 \n",
"L 134.979094 176.035424 \n",
"L 137.772823 169.010531 \n",
"L 140.566553 160.076374 \n",
"L 146.154012 139.973124 \n",
"L 148.947742 131.823954 \n",
"L 151.741471 127.117095 \n",
"L 154.535201 126.861069 \n",
"L 157.328931 131.112264 \n",
"L 160.12266 138.954748 \n",
"L 165.71012 159.001465 \n",
"L 168.503849 168.113218 \n",
"L 171.297579 175.364303 \n",
"L 174.091308 180.562214 \n",
"L 176.885038 183.944773 \n",
"L 179.678768 185.95301 \n",
"L 182.472497 187.044476 \n",
"L 185.266227 187.588826 \n",
"L 188.059957 187.838395 \n",
"L 193.647416 187.984681 \n",
"L 218.790982 188.006281 \n",
"L 609.91313 188.006281 \n",
"L 609.91313 188.006281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_53\">\n",
" <path d=\"M 36.465625 188.006281 \n",
"L 36.465625 20.558281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_54\">\n",
" <path d=\"M 36.465625 188.006281 \n",
"L 619.608125 188.006281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_13\">\n",
" <!-- ticker = BDN -->\n",
" <defs>\n",
" <path d=\"M 41.109375 46.296875 \n",
"Q 39.59375 47.171875 37.8125 47.578125 \n",
"Q 36.03125 48 33.890625 48 \n",
"Q 26.265625 48 22.1875 43.046875 \n",
"Q 18.109375 38.09375 18.109375 28.8125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 20.953125 51.171875 25.484375 53.578125 \n",
"Q 30.03125 56 36.53125 56 \n",
"Q 37.453125 56 38.578125 55.875 \n",
"Q 39.703125 55.765625 41.0625 55.515625 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-72\"/>\n",
" <path d=\"M 56.203125 29.59375 \n",
"L 56.203125 25.203125 \n",
"L 14.890625 25.203125 \n",
"Q 15.484375 15.921875 20.484375 11.0625 \n",
"Q 25.484375 6.203125 34.421875 6.203125 \n",
"Q 39.59375 6.203125 44.453125 7.46875 \n",
"Q 49.3125 8.734375 54.109375 11.28125 \n",
"L 54.109375 2.78125 \n",
"Q 49.265625 0.734375 44.1875 -0.34375 \n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \n",
"Q 20.796875 -1.421875 13.15625 6.1875 \n",
"Q 5.515625 13.8125 5.515625 26.8125 \n",
"Q 5.515625 40.234375 12.765625 48.109375 \n",
"Q 20.015625 56 32.328125 56 \n",
"Q 43.359375 56 49.78125 48.890625 \n",
"Q 56.203125 41.796875 56.203125 29.59375 \n",
"M 47.21875 32.234375 \n",
"Q 47.125 39.59375 43.09375 43.984375 \n",
"Q 39.0625 48.390625 32.421875 48.390625 \n",
"Q 24.90625 48.390625 20.390625 44.140625 \n",
"Q 15.875 39.890625 15.1875 32.171875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-65\"/>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 23.09375 72.90625 \n",
"L 55.421875 11.921875 \n",
"L 55.421875 72.90625 \n",
"L 64.984375 72.90625 \n",
"L 64.984375 0 \n",
"L 51.703125 0 \n",
"L 19.390625 60.984375 \n",
"L 19.390625 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-4e\"/>\n",
" <path d=\"M 19.671875 64.796875 \n",
"L 19.671875 8.109375 \n",
"L 31.59375 8.109375 \n",
"Q 46.6875 8.109375 53.6875 14.9375 \n",
"Q 60.6875 21.78125 60.6875 36.53125 \n",
"Q 60.6875 51.171875 53.6875 57.984375 \n",
"Q 46.6875 64.796875 31.59375 64.796875 \n",
"z\n",
"M 9.8125 72.90625 \n",
"L 30.078125 72.90625 \n",
"Q 51.265625 72.90625 61.171875 64.09375 \n",
"Q 71.09375 55.28125 71.09375 36.53125 \n",
"Q 71.09375 17.671875 61.125 8.828125 \n",
"Q 51.171875 0 30.078125 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-44\"/>\n",
" <path d=\"M 10.59375 45.40625 \n",
"L 73.1875 45.40625 \n",
"L 73.1875 37.203125 \n",
"L 10.59375 37.203125 \n",
"z\n",
"M 10.59375 25.484375 \n",
"L 73.1875 25.484375 \n",
"L 73.1875 17.1875 \n",
"L 10.59375 17.1875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-3d\"/>\n",
" <path d=\"M 19.671875 34.8125 \n",
"L 19.671875 8.109375 \n",
"L 35.5 8.109375 \n",
"Q 43.453125 8.109375 47.28125 11.40625 \n",
"Q 51.125 14.703125 51.125 21.484375 \n",
"Q 51.125 28.328125 47.28125 31.5625 \n",
"Q 43.453125 34.8125 35.5 34.8125 \n",
"z\n",
"M 19.671875 64.796875 \n",
"L 19.671875 42.828125 \n",
"L 34.28125 42.828125 \n",
"Q 41.5 42.828125 45.03125 45.53125 \n",
"Q 48.578125 48.25 48.578125 53.8125 \n",
"Q 48.578125 59.328125 45.03125 62.0625 \n",
"Q 41.5 64.796875 34.28125 64.796875 \n",
"z\n",
"M 9.8125 72.90625 \n",
"L 35.015625 72.90625 \n",
"Q 46.296875 72.90625 52.390625 68.21875 \n",
"Q 58.5 63.53125 58.5 54.890625 \n",
"Q 58.5 48.1875 55.375 44.234375 \n",
"Q 52.25 40.28125 46.1875 39.3125 \n",
"Q 53.46875 37.75 57.5 32.78125 \n",
"Q 61.53125 27.828125 61.53125 20.40625 \n",
"Q 61.53125 10.640625 54.890625 5.3125 \n",
"Q 48.25 0 35.984375 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-42\"/>\n",
" <path d=\"M 18.3125 70.21875 \n",
"L 18.3125 54.6875 \n",
"L 36.8125 54.6875 \n",
"L 36.8125 47.703125 \n",
"L 18.3125 47.703125 \n",
"L 18.3125 18.015625 \n",
"Q 18.3125 11.328125 20.140625 9.421875 \n",
"Q 21.96875 7.515625 27.59375 7.515625 \n",
"L 36.8125 7.515625 \n",
"L 36.8125 0 \n",
"L 27.59375 0 \n",
"Q 17.1875 0 13.234375 3.875 \n",
"Q 9.28125 7.765625 9.28125 18.015625 \n",
"L 9.28125 47.703125 \n",
"L 2.6875 47.703125 \n",
"L 2.6875 54.6875 \n",
"L 9.28125 54.6875 \n",
"L 9.28125 70.21875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-74\"/>\n",
" <path d=\"M 48.78125 52.59375 \n",
"L 48.78125 44.1875 \n",
"Q 44.96875 46.296875 41.140625 47.34375 \n",
"Q 37.3125 48.390625 33.40625 48.390625 \n",
"Q 24.65625 48.390625 19.8125 42.84375 \n",
"Q 14.984375 37.3125 14.984375 27.296875 \n",
"Q 14.984375 17.28125 19.8125 11.734375 \n",
"Q 24.65625 6.203125 33.40625 6.203125 \n",
"Q 37.3125 6.203125 41.140625 7.25 \n",
"Q 44.96875 8.296875 48.78125 10.40625 \n",
"L 48.78125 2.09375 \n",
"Q 45.015625 0.34375 40.984375 -0.53125 \n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \n",
"Q 20.0625 -1.421875 12.78125 6.34375 \n",
"Q 5.515625 14.109375 5.515625 27.296875 \n",
"Q 5.515625 40.671875 12.859375 48.328125 \n",
"Q 20.21875 56 33.015625 56 \n",
"Q 37.15625 56 41.109375 55.140625 \n",
"Q 45.0625 54.296875 48.78125 52.59375 \n",
"\" id=\"BitstreamVeraSans-Roman-63\"/>\n",
" <path id=\"BitstreamVeraSans-Roman-20\"/>\n",
" <path d=\"M 9.078125 75.984375 \n",
"L 18.109375 75.984375 \n",
"L 18.109375 31.109375 \n",
"L 44.921875 54.6875 \n",
"L 56.390625 54.6875 \n",
"L 27.390625 29.109375 \n",
"L 57.625 0 \n",
"L 45.90625 0 \n",
"L 18.109375 26.703125 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-6b\"/>\n",
" <path d=\"M 9.421875 54.6875 \n",
"L 18.40625 54.6875 \n",
"L 18.40625 0 \n",
"L 9.421875 0 \n",
"z\n",
"M 9.421875 75.984375 \n",
"L 18.40625 75.984375 \n",
"L 18.40625 64.59375 \n",
"L 9.421875 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-69\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.273125 15.55828125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"498.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-44\"/>\n",
" <use x=\"575.44140625\" xlink:href=\"#BitstreamVeraSans-Roman-4e\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_2\">\n",
" <g id=\"patch_55\">\n",
" <path d=\"M 36.465625 398.414281 \n",
"L 619.608125 398.414281 \n",
"L 619.608125 230.966281 \n",
"L 36.465625 230.966281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_3\">\n",
" <g id=\"xtick_7\">\n",
" <g id=\"line2d_27\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 398.414281 \n",
"L 36.465625 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_28\"/>\n",
" <g id=\"text_14\">\n",
" <!-- −100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(22.73203125 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_8\">\n",
" <g id=\"line2d_29\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 133.656042 398.414281 \n",
"L 133.656042 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_30\"/>\n",
" <g id=\"text_15\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(130.474791667 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_9\">\n",
" <g id=\"line2d_31\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 230.846458 398.414281 \n",
"L 230.846458 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_32\"/>\n",
" <g id=\"text_16\">\n",
" <!-- 100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(221.302708333 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_10\">\n",
" <g id=\"line2d_33\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 328.036875 398.414281 \n",
"L 328.036875 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_34\"/>\n",
" <g id=\"text_17\">\n",
" <!-- 200 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(318.493125 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_11\">\n",
" <g id=\"line2d_35\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 425.227292 398.414281 \n",
"L 425.227292 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_36\"/>\n",
" <g id=\"text_18\">\n",
" <!-- 300 -->\n",
" <defs>\n",
" <path d=\"M 40.578125 39.3125 \n",
"Q 47.65625 37.796875 51.625 33 \n",
"Q 55.609375 28.21875 55.609375 21.1875 \n",
"Q 55.609375 10.40625 48.1875 4.484375 \n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \n",
"Q 12.796875 0.390625 7.625 2.203125 \n",
"L 7.625 11.71875 \n",
"Q 11.71875 9.328125 16.59375 8.109375 \n",
"Q 21.484375 6.890625 26.8125 6.890625 \n",
"Q 36.078125 6.890625 40.9375 10.546875 \n",
"Q 45.796875 14.203125 45.796875 21.1875 \n",
"Q 45.796875 27.640625 41.28125 31.265625 \n",
"Q 36.765625 34.90625 28.71875 34.90625 \n",
"L 20.21875 34.90625 \n",
"L 20.21875 43.015625 \n",
"L 29.109375 43.015625 \n",
"Q 36.375 43.015625 40.234375 45.921875 \n",
"Q 44.09375 48.828125 44.09375 54.296875 \n",
"Q 44.09375 59.90625 40.109375 62.90625 \n",
"Q 36.140625 65.921875 28.71875 65.921875 \n",
"Q 24.65625 65.921875 20.015625 65.03125 \n",
"Q 15.375 64.15625 9.8125 62.3125 \n",
"L 9.8125 71.09375 \n",
"Q 15.4375 72.65625 20.34375 73.4375 \n",
"Q 25.25 74.21875 29.59375 74.21875 \n",
"Q 40.828125 74.21875 47.359375 69.109375 \n",
"Q 53.90625 64.015625 53.90625 55.328125 \n",
"Q 53.90625 49.265625 50.4375 45.09375 \n",
"Q 46.96875 40.921875 40.578125 39.3125 \n",
"\" id=\"BitstreamVeraSans-Roman-33\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(415.683541667 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_12\">\n",
" <g id=\"line2d_37\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 522.417708 398.414281 \n",
"L 522.417708 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_38\"/>\n",
" <g id=\"text_19\">\n",
" <!-- 400 -->\n",
" <defs>\n",
" <path d=\"M 37.796875 64.3125 \n",
"L 12.890625 25.390625 \n",
"L 37.796875 25.390625 \n",
"z\n",
"M 35.203125 72.90625 \n",
"L 47.609375 72.90625 \n",
"L 47.609375 25.390625 \n",
"L 58.015625 25.390625 \n",
"L 58.015625 17.1875 \n",
"L 47.609375 17.1875 \n",
"L 47.609375 0 \n",
"L 37.796875 0 \n",
"L 37.796875 17.1875 \n",
"L 4.890625 17.1875 \n",
"L 4.890625 26.703125 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-34\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(512.873958333 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_13\">\n",
" <g id=\"line2d_39\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 619.608125 398.414281 \n",
"L 619.608125 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_40\"/>\n",
" <g id=\"text_20\">\n",
" <!-- 500 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.064375 413.01271875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_4\">\n",
" <g id=\"ytick_7\">\n",
" <g id=\"line2d_41\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 398.414281 \n",
"L 619.608125 398.414281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_42\"/>\n",
" <g id=\"text_21\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 401.17365625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_8\">\n",
" <g id=\"line2d_43\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 356.552281 \n",
"L 619.608125 356.552281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_44\"/>\n",
" <g id=\"text_22\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 359.31165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_9\">\n",
" <g id=\"line2d_45\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 314.690281 \n",
"L 619.608125 314.690281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_46\"/>\n",
" <g id=\"text_23\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 317.44965625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_10\">\n",
" <g id=\"line2d_47\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 272.828281 \n",
"L 619.608125 272.828281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_48\"/>\n",
" <g id=\"text_24\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 275.58765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_11\">\n",
" <g id=\"line2d_49\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 36.465625 230.966281 \n",
"L 619.608125 230.966281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_50\"/>\n",
" <g id=\"text_25\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 233.72565625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_56\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 100.569942 398.414281 \n",
"L 110.790295 398.414281 \n",
"L 110.790295 398.359494 \n",
"L 100.569942 398.359494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_57\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 110.790295 398.414281 \n",
"L 121.010647 398.414281 \n",
"L 121.010647 398.019811 \n",
"L 110.790295 398.019811 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_58\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 121.010647 398.414281 \n",
"L 131.230999 398.414281 \n",
"L 131.230999 388.015598 \n",
"L 121.010647 388.015598 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_59\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 131.230999 398.414281 \n",
"L 141.451352 398.414281 \n",
"L 141.451352 331.902153 \n",
"L 131.230999 331.902153 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_60\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 141.451352 398.414281 \n",
"L 151.671704 398.414281 \n",
"L 151.671704 396.540546 \n",
"L 141.451352 396.540546 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_61\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 151.671704 398.414281 \n",
"L 161.892056 398.414281 \n",
"L 161.892056 398.151301 \n",
"L 151.671704 398.151301 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_62\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 161.892056 398.414281 \n",
"L 172.112408 398.414281 \n",
"L 172.112408 398.359494 \n",
"L 161.892056 398.359494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_63\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 172.112408 398.414281 \n",
"L 182.332761 398.414281 \n",
"L 182.332761 398.359494 \n",
"L 172.112408 398.359494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_64\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 182.332761 398.414281 \n",
"L 192.553113 398.414281 \n",
"L 192.553113 398.414281 \n",
"L 182.332761 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_65\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 192.553113 398.414281 \n",
"L 202.773465 398.414281 \n",
"L 202.773465 398.414281 \n",
"L 192.553113 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_66\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 202.773465 398.414281 \n",
"L 212.993818 398.414281 \n",
"L 212.993818 398.414281 \n",
"L 202.773465 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_67\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 212.993818 398.414281 \n",
"L 223.21417 398.414281 \n",
"L 223.21417 398.414281 \n",
"L 212.993818 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_68\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 223.21417 398.414281 \n",
"L 233.434522 398.414281 \n",
"L 233.434522 398.414281 \n",
"L 223.21417 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_69\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 233.434522 398.414281 \n",
"L 243.654874 398.414281 \n",
"L 243.654874 398.414281 \n",
"L 233.434522 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_70\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 243.654874 398.414281 \n",
"L 253.875227 398.414281 \n",
"L 253.875227 398.414281 \n",
"L 243.654874 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_71\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 253.875227 398.414281 \n",
"L 264.095579 398.414281 \n",
"L 264.095579 398.414281 \n",
"L 253.875227 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_72\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 264.095579 398.414281 \n",
"L 274.315931 398.414281 \n",
"L 274.315931 398.414281 \n",
"L 264.095579 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_73\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 274.315931 398.414281 \n",
"L 284.536284 398.414281 \n",
"L 284.536284 398.414281 \n",
"L 274.315931 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_74\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 284.536284 398.414281 \n",
"L 294.756636 398.414281 \n",
"L 294.756636 398.414281 \n",
"L 284.536284 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_75\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 294.756636 398.414281 \n",
"L 304.976988 398.414281 \n",
"L 304.976988 398.414281 \n",
"L 294.756636 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_76\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 304.976988 398.414281 \n",
"L 315.19734 398.414281 \n",
"L 315.19734 398.414281 \n",
"L 304.976988 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_77\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 315.19734 398.414281 \n",
"L 325.417693 398.414281 \n",
"L 325.417693 398.414281 \n",
"L 315.19734 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_78\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 325.417693 398.414281 \n",
"L 335.638045 398.414281 \n",
"L 335.638045 398.414281 \n",
"L 325.417693 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_79\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 335.638045 398.414281 \n",
"L 345.858397 398.414281 \n",
"L 345.858397 398.414281 \n",
"L 335.638045 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_80\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 345.858397 398.414281 \n",
"L 356.07875 398.414281 \n",
"L 356.07875 398.414281 \n",
"L 345.858397 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_81\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 356.07875 398.414281 \n",
"L 366.299102 398.414281 \n",
"L 366.299102 398.414281 \n",
"L 356.07875 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_82\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 366.299102 398.414281 \n",
"L 376.519454 398.414281 \n",
"L 376.519454 398.414281 \n",
"L 366.299102 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_83\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 376.519454 398.414281 \n",
"L 386.739806 398.414281 \n",
"L 386.739806 398.414281 \n",
"L 376.519454 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_84\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 386.739806 398.414281 \n",
"L 396.960159 398.414281 \n",
"L 396.960159 398.414281 \n",
"L 386.739806 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_85\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 396.960159 398.414281 \n",
"L 407.180511 398.414281 \n",
"L 407.180511 398.414281 \n",
"L 396.960159 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_86\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 407.180511 398.414281 \n",
"L 417.400863 398.414281 \n",
"L 417.400863 398.414281 \n",
"L 407.180511 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_87\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 417.400863 398.414281 \n",
"L 427.621216 398.414281 \n",
"L 427.621216 398.414281 \n",
"L 417.400863 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_88\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 427.621216 398.414281 \n",
"L 437.841568 398.414281 \n",
"L 437.841568 398.414281 \n",
"L 427.621216 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_89\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 437.841568 398.414281 \n",
"L 448.06192 398.414281 \n",
"L 448.06192 398.414281 \n",
"L 437.841568 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_90\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 448.06192 398.414281 \n",
"L 458.282272 398.414281 \n",
"L 458.282272 398.414281 \n",
"L 448.06192 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_91\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 458.282272 398.414281 \n",
"L 468.502625 398.414281 \n",
"L 468.502625 398.414281 \n",
"L 458.282272 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_92\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 468.502625 398.414281 \n",
"L 478.722977 398.414281 \n",
"L 478.722977 398.414281 \n",
"L 468.502625 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_93\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 478.722977 398.414281 \n",
"L 488.943329 398.414281 \n",
"L 488.943329 398.414281 \n",
"L 478.722977 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_94\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 488.943329 398.414281 \n",
"L 499.163681 398.414281 \n",
"L 499.163681 398.414281 \n",
"L 488.943329 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_95\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 499.163681 398.414281 \n",
"L 509.384034 398.414281 \n",
"L 509.384034 398.414281 \n",
"L 499.163681 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_96\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 509.384034 398.414281 \n",
"L 519.604386 398.414281 \n",
"L 519.604386 398.414281 \n",
"L 509.384034 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_97\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 519.604386 398.414281 \n",
"L 529.824738 398.414281 \n",
"L 529.824738 398.414281 \n",
"L 519.604386 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_98\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 529.824738 398.414281 \n",
"L 540.045091 398.414281 \n",
"L 540.045091 398.414281 \n",
"L 529.824738 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_99\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 540.045091 398.414281 \n",
"L 550.265443 398.414281 \n",
"L 550.265443 398.414281 \n",
"L 540.045091 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_100\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 550.265443 398.414281 \n",
"L 560.485795 398.414281 \n",
"L 560.485795 398.414281 \n",
"L 550.265443 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_101\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 560.485795 398.414281 \n",
"L 570.706147 398.414281 \n",
"L 570.706147 398.414281 \n",
"L 560.485795 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_102\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 570.706147 398.414281 \n",
"L 580.9265 398.414281 \n",
"L 580.9265 398.414281 \n",
"L 570.706147 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_103\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 580.9265 398.414281 \n",
"L 591.146852 398.414281 \n",
"L 591.146852 398.414281 \n",
"L 580.9265 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_104\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 591.146852 398.414281 \n",
"L 601.367204 398.414281 \n",
"L 601.367204 398.414281 \n",
"L 591.146852 398.414281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_105\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 601.367204 398.414281 \n",
"L 611.587557 398.414281 \n",
"L 611.587557 398.403324 \n",
"L 601.367204 398.403324 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_51\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 97.113657 398.41385 \n",
"L 102.345275 398.36942 \n",
"L 107.576893 398.380043 \n",
"L 112.808511 398.302563 \n",
"L 118.040129 397.881655 \n",
"L 123.271747 394.965666 \n",
"L 128.503365 383.27939 \n",
"L 133.734983 247.291169 \n",
"L 138.966601 385.51 \n",
"L 144.198219 395.556058 \n",
"L 149.429837 397.789168 \n",
"L 154.661455 398.072651 \n",
"L 159.893073 398.312932 \n",
"L 165.124691 398.343816 \n",
"L 170.356309 398.37606 \n",
"L 175.587927 398.311805 \n",
"L 180.819545 398.413352 \n",
"L 186.051164 398.414281 \n",
"L 191.282782 398.414281 \n",
"L 196.5144 398.414281 \n",
"L 201.746018 398.414281 \n",
"L 206.977636 398.414281 \n",
"L 212.209254 398.414281 \n",
"L 217.440872 398.414281 \n",
"L 222.67249 398.414281 \n",
"L 227.904108 398.414281 \n",
"L 233.135726 398.414281 \n",
"L 238.367344 398.414281 \n",
"L 243.598962 398.414281 \n",
"L 248.83058 398.414281 \n",
"L 254.062198 398.414281 \n",
"L 259.293816 398.414281 \n",
"L 264.525434 398.414281 \n",
"L 269.757052 398.414281 \n",
"L 274.98867 398.414281 \n",
"L 280.220288 398.414281 \n",
"L 285.451906 398.414281 \n",
"L 290.683524 398.414281 \n",
"L 295.915142 398.414281 \n",
"L 301.14676 398.414281 \n",
"L 306.378378 398.414281 \n",
"L 311.609996 398.414281 \n",
"L 316.841614 398.414281 \n",
"L 322.073232 398.414281 \n",
"L 327.30485 398.414281 \n",
"L 332.536468 398.414281 \n",
"L 337.768086 398.414281 \n",
"L 342.999704 398.414281 \n",
"L 348.231322 398.414281 \n",
"L 353.46294 398.414281 \n",
"L 358.694559 398.414281 \n",
"L 363.926177 398.414281 \n",
"L 369.157795 398.414281 \n",
"L 374.389413 398.414281 \n",
"L 379.621031 398.414281 \n",
"L 384.852649 398.414281 \n",
"L 390.084267 398.414281 \n",
"L 395.315885 398.414281 \n",
"L 400.547503 398.414281 \n",
"L 405.779121 398.414281 \n",
"L 411.010739 398.414281 \n",
"L 416.242357 398.414281 \n",
"L 421.473975 398.414281 \n",
"L 426.705593 398.414281 \n",
"L 431.937211 398.414281 \n",
"L 437.168829 398.414281 \n",
"L 442.400447 398.414281 \n",
"L 447.632065 398.414281 \n",
"L 452.863683 398.414281 \n",
"L 458.095301 398.414281 \n",
"L 463.326919 398.414281 \n",
"L 468.558537 398.414281 \n",
"L 473.790155 398.414281 \n",
"L 479.021773 398.414281 \n",
"L 484.253391 398.414281 \n",
"L 489.485009 398.414281 \n",
"L 494.716627 398.414281 \n",
"L 499.948245 398.414281 \n",
"L 505.179863 398.414281 \n",
"L 510.411481 398.414281 \n",
"L 515.643099 398.414281 \n",
"L 520.874717 398.414281 \n",
"L 526.106335 398.414281 \n",
"L 531.337954 398.414281 \n",
"L 536.569572 398.414281 \n",
"L 541.80119 398.414281 \n",
"L 547.032808 398.414281 \n",
"L 552.264426 398.414281 \n",
"L 557.496044 398.414281 \n",
"L 562.727662 398.414281 \n",
"L 567.95928 398.414281 \n",
"L 573.190898 398.414281 \n",
"L 578.422516 398.414281 \n",
"L 583.654134 398.414281 \n",
"L 588.885752 398.414281 \n",
"L 594.11737 398.414281 \n",
"L 599.348988 398.414281 \n",
"L 604.580606 398.414281 \n",
"L 609.812224 398.402451 \n",
"L 615.043842 398.41385 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_52\">\n",
" <path clip-path=\"url(#p369efc8dc5)\" d=\"M 97.113419 398.414256 \n",
"L 107.524086 398.38577 \n",
"L 110.126752 398.298956 \n",
"L 112.729419 398.01104 \n",
"L 115.332086 397.195438 \n",
"L 117.934752 395.229564 \n",
"L 120.537419 391.220879 \n",
"L 123.140086 384.368748 \n",
"L 125.742752 374.706959 \n",
"L 128.345419 363.82296 \n",
"L 130.948085 354.783581 \n",
"L 133.550752 350.841604 \n",
"L 136.153419 353.57451 \n",
"L 138.756085 361.879243 \n",
"L 141.358752 372.680944 \n",
"L 143.961419 382.745939 \n",
"L 146.564085 390.167388 \n",
"L 149.166752 394.661977 \n",
"L 151.769419 396.938418 \n",
"L 154.372085 397.912477 \n",
"L 156.974752 398.266791 \n",
"L 162.180085 398.40605 \n",
"L 206.425418 398.414281 \n",
"L 615.04408 398.414281 \n",
"L 615.04408 398.414281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_106\">\n",
" <path d=\"M 36.465625 398.414281 \n",
"L 36.465625 230.966281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_107\">\n",
" <path d=\"M 36.465625 398.414281 \n",
"L 619.608125 398.414281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_26\">\n",
" <!-- ticker = HOT -->\n",
" <defs>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 19.671875 72.90625 \n",
"L 19.671875 43.015625 \n",
"L 55.515625 43.015625 \n",
"L 55.515625 72.90625 \n",
"L 65.375 72.90625 \n",
"L 65.375 0 \n",
"L 55.515625 0 \n",
"L 55.515625 34.71875 \n",
"L 19.671875 34.71875 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-48\"/>\n",
" <path d=\"M -0.296875 72.90625 \n",
"L 61.375 72.90625 \n",
"L 61.375 64.59375 \n",
"L 35.5 64.59375 \n",
"L 35.5 0 \n",
"L 25.59375 0 \n",
"L 25.59375 64.59375 \n",
"L -0.296875 64.59375 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-54\"/>\n",
" <path d=\"M 39.40625 66.21875 \n",
"Q 28.65625 66.21875 22.328125 58.203125 \n",
"Q 16.015625 50.203125 16.015625 36.375 \n",
"Q 16.015625 22.609375 22.328125 14.59375 \n",
"Q 28.65625 6.59375 39.40625 6.59375 \n",
"Q 50.140625 6.59375 56.421875 14.59375 \n",
"Q 62.703125 22.609375 62.703125 36.375 \n",
"Q 62.703125 50.203125 56.421875 58.203125 \n",
"Q 50.140625 66.21875 39.40625 66.21875 \n",
"M 39.40625 74.21875 \n",
"Q 54.734375 74.21875 63.90625 63.9375 \n",
"Q 73.09375 53.65625 73.09375 36.375 \n",
"Q 73.09375 19.140625 63.90625 8.859375 \n",
"Q 54.734375 -1.421875 39.40625 -1.421875 \n",
"Q 24.03125 -1.421875 14.8125 8.828125 \n",
"Q 5.609375 19.09375 5.609375 36.375 \n",
"Q 5.609375 53.65625 14.8125 63.9375 \n",
"Q 24.03125 74.21875 39.40625 74.21875 \n",
"\" id=\"BitstreamVeraSans-Roman-4f\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.571328125 225.96628125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-48\"/>\n",
" <use x=\"505.03125\" xlink:href=\"#BitstreamVeraSans-Roman-4f\"/>\n",
" <use x=\"583.7421875\" xlink:href=\"#BitstreamVeraSans-Roman-54\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_3\">\n",
" <g id=\"patch_108\">\n",
" <path d=\"M 36.465625 608.822281 \n",
"L 619.608125 608.822281 \n",
"L 619.608125 441.374281 \n",
"L 36.465625 441.374281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_5\">\n",
" <g id=\"xtick_14\">\n",
" <g id=\"line2d_53\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 608.822281 \n",
"L 36.465625 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_54\"/>\n",
" <g id=\"text_27\">\n",
" <!-- −100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(22.73203125 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_15\">\n",
" <g id=\"line2d_55\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 119.771696 608.822281 \n",
"L 119.771696 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_56\"/>\n",
" <g id=\"text_28\">\n",
" <!-- −50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(109.219352679 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_16\">\n",
" <g id=\"line2d_57\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 203.077768 608.822281 \n",
"L 203.077768 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_58\"/>\n",
" <g id=\"text_29\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(199.896517857 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_17\">\n",
" <g id=\"line2d_59\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 286.383839 608.822281 \n",
"L 286.383839 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_60\"/>\n",
" <g id=\"text_30\">\n",
" <!-- 50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(280.021339286 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_18\">\n",
" <g id=\"line2d_61\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 369.689911 608.822281 \n",
"L 369.689911 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_62\"/>\n",
" <g id=\"text_31\">\n",
" <!-- 100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(360.146160714 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_19\">\n",
" <g id=\"line2d_63\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 452.995982 608.822281 \n",
"L 452.995982 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_64\"/>\n",
" <g id=\"text_32\">\n",
" <!-- 150 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(443.452232143 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_20\">\n",
" <g id=\"line2d_65\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 536.302054 608.822281 \n",
"L 536.302054 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_66\"/>\n",
" <g id=\"text_33\">\n",
" <!-- 200 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(526.758303571 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_21\">\n",
" <g id=\"line2d_67\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 619.608125 608.822281 \n",
"L 619.608125 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_68\"/>\n",
" <g id=\"text_34\">\n",
" <!-- 250 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.064375 623.42071875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_6\">\n",
" <g id=\"ytick_12\">\n",
" <g id=\"line2d_69\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 608.822281 \n",
"L 619.608125 608.822281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_70\"/>\n",
" <g id=\"text_35\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 611.58165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_13\">\n",
" <g id=\"line2d_71\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 580.914281 \n",
"L 619.608125 580.914281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_72\"/>\n",
" <g id=\"text_36\">\n",
" <!-- 0.02 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 583.67365625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_14\">\n",
" <g id=\"line2d_73\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 553.006281 \n",
"L 619.608125 553.006281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_74\"/>\n",
" <g id=\"text_37\">\n",
" <!-- 0.04 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 555.76565625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_15\">\n",
" <g id=\"line2d_75\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 525.098281 \n",
"L 619.608125 525.098281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_76\"/>\n",
" <g id=\"text_38\">\n",
" <!-- 0.06 -->\n",
" <defs>\n",
" <path d=\"M 33.015625 40.375 \n",
"Q 26.375 40.375 22.484375 35.828125 \n",
"Q 18.609375 31.296875 18.609375 23.390625 \n",
"Q 18.609375 15.53125 22.484375 10.953125 \n",
"Q 26.375 6.390625 33.015625 6.390625 \n",
"Q 39.65625 6.390625 43.53125 10.953125 \n",
"Q 47.40625 15.53125 47.40625 23.390625 \n",
"Q 47.40625 31.296875 43.53125 35.828125 \n",
"Q 39.65625 40.375 33.015625 40.375 \n",
"M 52.59375 71.296875 \n",
"L 52.59375 62.3125 \n",
"Q 48.875 64.0625 45.09375 64.984375 \n",
"Q 41.3125 65.921875 37.59375 65.921875 \n",
"Q 27.828125 65.921875 22.671875 59.328125 \n",
"Q 17.53125 52.734375 16.796875 39.40625 \n",
"Q 19.671875 43.65625 24.015625 45.921875 \n",
"Q 28.375 48.1875 33.59375 48.1875 \n",
"Q 44.578125 48.1875 50.953125 41.515625 \n",
"Q 57.328125 34.859375 57.328125 23.390625 \n",
"Q 57.328125 12.15625 50.6875 5.359375 \n",
"Q 44.046875 -1.421875 33.015625 -1.421875 \n",
"Q 20.359375 -1.421875 13.671875 8.265625 \n",
"Q 6.984375 17.96875 6.984375 36.375 \n",
"Q 6.984375 53.65625 15.1875 63.9375 \n",
"Q 23.390625 74.21875 37.203125 74.21875 \n",
"Q 40.921875 74.21875 44.703125 73.484375 \n",
"Q 48.484375 72.75 52.59375 71.296875 \n",
"\" id=\"BitstreamVeraSans-Roman-36\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 527.85765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_16\">\n",
" <g id=\"line2d_77\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 497.190281 \n",
"L 619.608125 497.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_78\"/>\n",
" <g id=\"text_39\">\n",
" <!-- 0.08 -->\n",
" <defs>\n",
" <path d=\"M 31.78125 34.625 \n",
"Q 24.75 34.625 20.71875 30.859375 \n",
"Q 16.703125 27.09375 16.703125 20.515625 \n",
"Q 16.703125 13.921875 20.71875 10.15625 \n",
"Q 24.75 6.390625 31.78125 6.390625 \n",
"Q 38.8125 6.390625 42.859375 10.171875 \n",
"Q 46.921875 13.96875 46.921875 20.515625 \n",
"Q 46.921875 27.09375 42.890625 30.859375 \n",
"Q 38.875 34.625 31.78125 34.625 \n",
"M 21.921875 38.8125 \n",
"Q 15.578125 40.375 12.03125 44.71875 \n",
"Q 8.5 49.078125 8.5 55.328125 \n",
"Q 8.5 64.0625 14.71875 69.140625 \n",
"Q 20.953125 74.21875 31.78125 74.21875 \n",
"Q 42.671875 74.21875 48.875 69.140625 \n",
"Q 55.078125 64.0625 55.078125 55.328125 \n",
"Q 55.078125 49.078125 51.53125 44.71875 \n",
"Q 48 40.375 41.703125 38.8125 \n",
"Q 48.828125 37.15625 52.796875 32.3125 \n",
"Q 56.78125 27.484375 56.78125 20.515625 \n",
"Q 56.78125 9.90625 50.3125 4.234375 \n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \n",
"Q 19.734375 -1.421875 13.25 4.234375 \n",
"Q 6.78125 9.90625 6.78125 20.515625 \n",
"Q 6.78125 27.484375 10.78125 32.3125 \n",
"Q 14.796875 37.15625 21.921875 38.8125 \n",
"M 18.3125 54.390625 \n",
"Q 18.3125 48.734375 21.84375 45.5625 \n",
"Q 25.390625 42.390625 31.78125 42.390625 \n",
"Q 38.140625 42.390625 41.71875 45.5625 \n",
"Q 45.3125 48.734375 45.3125 54.390625 \n",
"Q 45.3125 60.0625 41.71875 63.234375 \n",
"Q 38.140625 66.40625 31.78125 66.40625 \n",
"Q 25.390625 66.40625 21.84375 63.234375 \n",
"Q 18.3125 60.0625 18.3125 54.390625 \n",
"\" id=\"BitstreamVeraSans-Roman-38\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 499.94965625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-38\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_17\">\n",
" <g id=\"line2d_79\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 469.282281 \n",
"L 619.608125 469.282281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_80\"/>\n",
" <g id=\"text_40\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 472.04165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_18\">\n",
" <g id=\"line2d_81\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 36.465625 441.374281 \n",
"L 619.608125 441.374281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_82\"/>\n",
" <g id=\"text_41\">\n",
" <!-- 0.12 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 444.13365625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_109\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 107.870829 608.822281 \n",
"L 116.540431 608.822281 \n",
"L 116.540431 608.760334 \n",
"L 107.870829 608.760334 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_110\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 116.540431 608.822281 \n",
"L 125.210032 608.822281 \n",
"L 125.210032 608.512547 \n",
"L 116.540431 608.512547 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_111\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 125.210032 608.822281 \n",
"L 133.879634 608.822281 \n",
"L 133.879634 608.388654 \n",
"L 125.210032 608.388654 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_112\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 133.879634 608.822281 \n",
"L 142.549235 608.822281 \n",
"L 142.549235 608.202814 \n",
"L 133.879634 608.202814 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_113\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 142.549235 608.822281 \n",
"L 151.218837 608.822281 \n",
"L 151.218837 608.016973 \n",
"L 142.549235 608.016973 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_114\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 151.218837 608.822281 \n",
"L 159.888438 608.822281 \n",
"L 159.888438 607.335559 \n",
"L 151.218837 607.335559 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_115\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 159.888438 608.822281 \n",
"L 168.55804 608.822281 \n",
"L 168.55804 607.707239 \n",
"L 159.888438 607.707239 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_116\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 168.55804 608.822281 \n",
"L 177.227641 608.822281 \n",
"L 177.227641 607.025825 \n",
"L 168.55804 607.025825 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_117\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 177.227641 608.822281 \n",
"L 185.897243 608.822281 \n",
"L 185.897243 604.300167 \n",
"L 177.227641 604.300167 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_118\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 185.897243 608.822281 \n",
"L 194.566845 608.822281 \n",
"L 194.566845 592.282494 \n",
"L 185.897243 592.282494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_119\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 194.566845 608.822281 \n",
"L 203.236446 608.822281 \n",
"L 203.236446 453.212003 \n",
"L 194.566845 453.212003 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_120\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 203.236446 608.822281 \n",
"L 211.906048 608.822281 \n",
"L 211.906048 552.636564 \n",
"L 203.236446 552.636564 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_121\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 211.906048 608.822281 \n",
"L 220.575649 608.822281 \n",
"L 220.575649 594.636472 \n",
"L 211.906048 594.636472 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_122\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 220.575649 608.822281 \n",
"L 229.245251 608.822281 \n",
"L 229.245251 602.875392 \n",
"L 220.575649 602.875392 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_123\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 229.245251 608.822281 \n",
"L 237.914852 608.822281 \n",
"L 237.914852 606.468304 \n",
"L 229.245251 606.468304 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_124\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 237.914852 608.822281 \n",
"L 246.584454 608.822281 \n",
"L 246.584454 607.397506 \n",
"L 237.914852 607.397506 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_125\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 246.584454 608.822281 \n",
"L 255.254055 608.822281 \n",
"L 255.254055 607.89308 \n",
"L 246.584454 607.89308 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_126\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 255.254055 608.822281 \n",
"L 263.923657 608.822281 \n",
"L 263.923657 608.140867 \n",
"L 255.254055 608.140867 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_127\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 263.923657 608.822281 \n",
"L 272.593258 608.822281 \n",
"L 272.593258 608.016973 \n",
"L 263.923657 608.016973 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_128\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 272.593258 608.822281 \n",
"L 281.26286 608.822281 \n",
"L 281.26286 608.574494 \n",
"L 272.593258 608.574494 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_129\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 281.26286 608.822281 \n",
"L 289.932462 608.822281 \n",
"L 289.932462 608.326707 \n",
"L 281.26286 608.326707 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_130\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 289.932462 608.822281 \n",
"L 298.602063 608.822281 \n",
"L 298.602063 608.760334 \n",
"L 289.932462 608.760334 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_131\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 298.602063 608.822281 \n",
"L 307.271665 608.822281 \n",
"L 307.271665 608.450601 \n",
"L 298.602063 608.450601 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_132\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 307.271665 608.822281 \n",
"L 315.941266 608.822281 \n",
"L 315.941266 608.512547 \n",
"L 307.271665 608.512547 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_133\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 315.941266 608.822281 \n",
"L 324.610868 608.822281 \n",
"L 324.610868 608.636441 \n",
"L 315.941266 608.636441 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_134\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 324.610868 608.822281 \n",
"L 333.280469 608.822281 \n",
"L 333.280469 608.760334 \n",
"L 324.610868 608.760334 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_135\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 333.280469 608.822281 \n",
"L 341.950071 608.822281 \n",
"L 341.950071 608.822281 \n",
"L 333.280469 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_136\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 341.950071 608.822281 \n",
"L 350.619672 608.822281 \n",
"L 350.619672 608.760334 \n",
"L 341.950071 608.760334 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_137\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 350.619672 608.822281 \n",
"L 359.289274 608.822281 \n",
"L 359.289274 608.822281 \n",
"L 350.619672 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_138\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 359.289274 608.822281 \n",
"L 367.958875 608.822281 \n",
"L 367.958875 608.822281 \n",
"L 359.289274 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_139\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 367.958875 608.822281 \n",
"L 376.628477 608.822281 \n",
"L 376.628477 608.636441 \n",
"L 367.958875 608.636441 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_140\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 376.628477 608.822281 \n",
"L 385.298079 608.822281 \n",
"L 385.298079 608.822281 \n",
"L 376.628477 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_141\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 385.298079 608.822281 \n",
"L 393.96768 608.822281 \n",
"L 393.96768 608.760334 \n",
"L 385.298079 608.760334 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_142\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 393.96768 608.822281 \n",
"L 402.637282 608.822281 \n",
"L 402.637282 608.822281 \n",
"L 393.96768 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_143\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 402.637282 608.822281 \n",
"L 411.306883 608.822281 \n",
"L 411.306883 608.822281 \n",
"L 402.637282 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_144\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 411.306883 608.822281 \n",
"L 419.976485 608.822281 \n",
"L 419.976485 608.822281 \n",
"L 411.306883 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_145\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 419.976485 608.822281 \n",
"L 428.646086 608.822281 \n",
"L 428.646086 608.698388 \n",
"L 419.976485 608.698388 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_146\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 428.646086 608.822281 \n",
"L 437.315688 608.822281 \n",
"L 437.315688 608.822281 \n",
"L 428.646086 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_147\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 437.315688 608.822281 \n",
"L 445.985289 608.822281 \n",
"L 445.985289 608.822281 \n",
"L 437.315688 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_148\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 445.985289 608.822281 \n",
"L 454.654891 608.822281 \n",
"L 454.654891 608.822281 \n",
"L 445.985289 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_149\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 454.654891 608.822281 \n",
"L 463.324492 608.822281 \n",
"L 463.324492 608.822281 \n",
"L 454.654891 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_150\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 463.324492 608.822281 \n",
"L 471.994094 608.822281 \n",
"L 471.994094 608.822281 \n",
"L 463.324492 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_151\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 471.994094 608.822281 \n",
"L 480.663696 608.822281 \n",
"L 480.663696 608.822281 \n",
"L 471.994094 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_152\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 480.663696 608.822281 \n",
"L 489.333297 608.822281 \n",
"L 489.333297 608.822281 \n",
"L 480.663696 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_153\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 489.333297 608.822281 \n",
"L 498.002899 608.822281 \n",
"L 498.002899 608.822281 \n",
"L 489.333297 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_154\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 498.002899 608.822281 \n",
"L 506.6725 608.822281 \n",
"L 506.6725 608.822281 \n",
"L 498.002899 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_155\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 506.6725 608.822281 \n",
"L 515.342102 608.822281 \n",
"L 515.342102 608.822281 \n",
"L 506.6725 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_156\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 515.342102 608.822281 \n",
"L 524.011703 608.822281 \n",
"L 524.011703 608.822281 \n",
"L 515.342102 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_157\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 524.011703 608.822281 \n",
"L 532.681305 608.822281 \n",
"L 532.681305 608.822281 \n",
"L 524.011703 608.822281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_158\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 532.681305 608.822281 \n",
"L 541.350906 608.822281 \n",
"L 541.350906 608.636441 \n",
"L 532.681305 608.636441 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_83\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 97.435146 608.821596 \n",
"L 102.024554 608.807275 \n",
"L 106.613963 608.764345 \n",
"L 111.203371 608.76849 \n",
"L 115.79278 608.654584 \n",
"L 120.382188 608.467212 \n",
"L 124.971597 608.50786 \n",
"L 129.561005 608.453477 \n",
"L 134.150414 608.313729 \n",
"L 138.739822 608.252642 \n",
"L 143.329231 608.14921 \n",
"L 147.91864 607.861328 \n",
"L 152.508048 607.574367 \n",
"L 157.097457 607.282246 \n",
"L 161.686865 607.406635 \n",
"L 166.276274 607.79538 \n",
"L 170.865682 607.450267 \n",
"L 175.455091 606.042161 \n",
"L 180.044499 604.58327 \n",
"L 184.633908 601.397613 \n",
"L 189.223316 593.105218 \n",
"L 193.812725 571.670364 \n",
"L 198.402133 510.448232 \n",
"L 202.991542 448.422489 \n",
"L 207.58095 517.069667 \n",
"L 212.170359 576.974969 \n",
"L 216.759767 593.941897 \n",
"L 221.349176 600.061889 \n",
"L 225.938584 603.660463 \n",
"L 230.527993 605.677958 \n",
"L 235.117402 606.660647 \n",
"L 239.70681 607.290698 \n",
"L 244.296219 607.459078 \n",
"L 248.885627 607.69455 \n",
"L 253.475036 607.928885 \n",
"L 258.064444 608.025101 \n",
"L 262.653853 608.086659 \n",
"L 267.243261 608.093798 \n",
"L 271.83267 608.233534 \n",
"L 276.422078 608.485773 \n",
"L 281.011487 608.491933 \n",
"L 285.600895 608.363077 \n",
"L 290.190304 608.579148 \n",
"L 294.779712 608.730264 \n",
"L 299.369121 608.599599 \n",
"L 303.958529 608.447585 \n",
"L 308.547938 608.588105 \n",
"L 313.137346 608.490801 \n",
"L 317.726755 608.532484 \n",
"L 322.316163 608.68067 \n",
"L 326.905572 608.768956 \n",
"L 331.494981 608.759463 \n",
"L 336.084389 608.791624 \n",
"L 340.673798 608.815738 \n",
"L 345.263206 608.786187 \n",
"L 349.852615 608.763136 \n",
"L 354.442023 608.805247 \n",
"L 359.031432 608.820289 \n",
"L 363.62084 608.794771 \n",
"L 368.210249 608.695724 \n",
"L 372.799657 608.682837 \n",
"L 377.389066 608.771255 \n",
"L 381.978474 608.816748 \n",
"L 386.567883 608.813671 \n",
"L 391.157291 608.773109 \n",
"L 395.7467 608.772365 \n",
"L 400.336108 608.81339 \n",
"L 404.925517 608.822003 \n",
"L 409.514925 608.822275 \n",
"L 414.104334 608.821539 \n",
"L 418.693742 608.801164 \n",
"L 423.283151 608.716916 \n",
"L 427.87256 608.730032 \n",
"L 432.461968 608.808109 \n",
"L 437.051377 608.821899 \n",
"L 441.640785 608.822279 \n",
"L 446.230194 608.822281 \n",
"L 450.819602 608.822281 \n",
"L 455.409011 608.822281 \n",
"L 459.998419 608.822281 \n",
"L 464.587828 608.822281 \n",
"L 469.177236 608.822281 \n",
"L 473.766645 608.822281 \n",
"L 478.356053 608.822281 \n",
"L 482.945462 608.822281 \n",
"L 487.53487 608.822281 \n",
"L 492.124279 608.822281 \n",
"L 496.713687 608.822281 \n",
"L 501.303096 608.822281 \n",
"L 505.892504 608.822281 \n",
"L 510.481913 608.822281 \n",
"L 515.071322 608.822281 \n",
"L 519.66073 608.82228 \n",
"L 524.250139 608.821976 \n",
"L 528.839547 608.809844 \n",
"L 533.428956 608.730092 \n",
"L 538.018364 608.674299 \n",
"L 542.607773 608.740757 \n",
"L 547.197181 608.806362 \n",
"L 551.78659 608.82159 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_84\">\n",
" <path clip-path=\"url(#p69cd78cd10)\" d=\"M 97.43394 608.822278 \n",
"L 138.531274 608.720397 \n",
"L 145.380829 608.473473 \n",
"L 149.9472 608.087663 \n",
"L 154.51357 607.365953 \n",
"L 156.796755 606.817789 \n",
"L 159.079941 606.104715 \n",
"L 161.363126 605.193282 \n",
"L 163.646311 604.048921 \n",
"L 165.929496 602.637954 \n",
"L 168.212681 600.9302 \n",
"L 170.495867 598.90206 \n",
"L 172.779052 596.539916 \n",
"L 175.062237 593.843604 \n",
"L 177.345422 590.829607 \n",
"L 179.628607 587.5336 \n",
"L 184.194978 580.341803 \n",
"L 188.761348 572.957432 \n",
"L 191.044533 569.478502 \n",
"L 193.327719 566.310046 \n",
"L 195.610904 563.576028 \n",
"L 197.894089 561.389117 \n",
"L 200.177274 559.843004 \n",
"L 202.460459 559.005753 \n",
"L 204.743645 558.914835 \n",
"L 207.02683 559.574345 \n",
"L 209.310015 560.954695 \n",
"L 211.5932 562.994818 \n",
"L 213.876385 565.606644 \n",
"L 216.159571 568.681408 \n",
"L 218.442756 572.097136 \n",
"L 229.858682 590.058987 \n",
"L 232.141867 593.145005 \n",
"L 234.425052 595.920106 \n",
"L 236.708237 598.36338 \n",
"L 238.991423 600.471252 \n",
"L 241.274608 602.254408 \n",
"L 243.557793 603.734361 \n",
"L 245.840978 604.940003 \n",
"L 248.124163 605.904426 \n",
"L 250.407349 606.662192 \n",
"L 252.690534 607.247173 \n",
"L 257.256904 608.021931 \n",
"L 261.823275 608.43948 \n",
"L 268.67283 608.709238 \n",
"L 280.088756 608.811342 \n",
"L 341.734757 608.822281 \n",
"L 551.787795 608.822281 \n",
"L 551.787795 608.822281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_159\">\n",
" <path d=\"M 36.465625 608.822281 \n",
"L 36.465625 441.374281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_160\">\n",
" <path d=\"M 36.465625 608.822281 \n",
"L 619.608125 608.822281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_42\">\n",
" <!-- ticker = VHC -->\n",
" <defs>\n",
" <path d=\"M 28.609375 0 \n",
"L 0.78125 72.90625 \n",
"L 11.078125 72.90625 \n",
"L 34.1875 11.53125 \n",
"L 57.328125 72.90625 \n",
"L 67.578125 72.90625 \n",
"L 39.796875 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-56\"/>\n",
" <path d=\"M 64.40625 67.28125 \n",
"L 64.40625 56.890625 \n",
"Q 59.421875 61.53125 53.78125 63.8125 \n",
"Q 48.140625 66.109375 41.796875 66.109375 \n",
"Q 29.296875 66.109375 22.65625 58.46875 \n",
"Q 16.015625 50.828125 16.015625 36.375 \n",
"Q 16.015625 21.96875 22.65625 14.328125 \n",
"Q 29.296875 6.6875 41.796875 6.6875 \n",
"Q 48.140625 6.6875 53.78125 8.984375 \n",
"Q 59.421875 11.28125 64.40625 15.921875 \n",
"L 64.40625 5.609375 \n",
"Q 59.234375 2.09375 53.4375 0.328125 \n",
"Q 47.65625 -1.421875 41.21875 -1.421875 \n",
"Q 24.65625 -1.421875 15.125 8.703125 \n",
"Q 5.609375 18.84375 5.609375 36.375 \n",
"Q 5.609375 53.953125 15.125 64.078125 \n",
"Q 24.65625 74.21875 41.21875 74.21875 \n",
"Q 47.75 74.21875 53.53125 72.484375 \n",
"Q 59.328125 70.75 64.40625 67.28125 \n",
"\" id=\"BitstreamVeraSans-Roman-43\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.657265625 436.37428125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-56\"/>\n",
" <use x=\"498.244140625\" xlink:href=\"#BitstreamVeraSans-Roman-48\"/>\n",
" <use x=\"573.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_4\">\n",
" <g id=\"patch_161\">\n",
" <path d=\"M 36.465625 819.230281 \n",
"L 619.608125 819.230281 \n",
"L 619.608125 651.782281 \n",
"L 36.465625 651.782281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_7\">\n",
" <g id=\"xtick_22\">\n",
" <g id=\"line2d_85\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 819.230281 \n",
"L 36.465625 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_86\"/>\n",
" <g id=\"text_43\">\n",
" <!-- −100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(22.73203125 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"211.03515625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_23\">\n",
" <g id=\"line2d_87\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 153.094125 819.230281 \n",
"L 153.094125 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_88\"/>\n",
" <g id=\"text_44\">\n",
" <!-- −50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(142.54178125 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_24\">\n",
" <g id=\"line2d_89\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 269.722625 819.230281 \n",
"L 269.722625 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_90\"/>\n",
" <g id=\"text_45\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(266.541375 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_25\">\n",
" <g id=\"line2d_91\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 386.351125 819.230281 \n",
"L 386.351125 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_92\"/>\n",
" <g id=\"text_46\">\n",
" <!-- 50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(379.988625 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_26\">\n",
" <g id=\"line2d_93\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 502.979625 819.230281 \n",
"L 502.979625 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_94\"/>\n",
" <g id=\"text_47\">\n",
" <!-- 100 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(493.435875 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_27\">\n",
" <g id=\"line2d_95\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 619.608125 819.230281 \n",
"L 619.608125 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_96\"/>\n",
" <g id=\"text_48\">\n",
" <!-- 150 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(610.064375 833.82871875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"127.24609375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_8\">\n",
" <g id=\"ytick_19\">\n",
" <g id=\"line2d_97\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 819.230281 \n",
"L 619.608125 819.230281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_98\"/>\n",
" <g id=\"text_49\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 821.98965625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_20\">\n",
" <g id=\"line2d_99\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 791.322281 \n",
"L 619.608125 791.322281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_100\"/>\n",
" <g id=\"text_50\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 794.08165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_21\">\n",
" <g id=\"line2d_101\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 763.414281 \n",
"L 619.608125 763.414281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_102\"/>\n",
" <g id=\"text_51\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 766.17365625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_22\">\n",
" <g id=\"line2d_103\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 735.506281 \n",
"L 619.608125 735.506281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_104\"/>\n",
" <g id=\"text_52\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 738.26565625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_23\">\n",
" <g id=\"line2d_105\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 707.598281 \n",
"L 619.608125 707.598281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_106\"/>\n",
" <g id=\"text_53\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 710.35765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_24\">\n",
" <g id=\"line2d_107\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 679.690281 \n",
"L 619.608125 679.690281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_108\"/>\n",
" <g id=\"text_54\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 682.44965625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_25\">\n",
" <g id=\"line2d_109\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 36.465625 651.782281 \n",
"L 619.608125 651.782281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_110\"/>\n",
" <g id=\"text_55\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 654.54165625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_162\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 113.713073 819.230281 \n",
"L 123.432596 819.230281 \n",
"L 123.432596 819.213687 \n",
"L 113.713073 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_163\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 123.432596 819.230281 \n",
"L 133.15212 819.230281 \n",
"L 133.15212 819.230281 \n",
"L 123.432596 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_164\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 133.15212 819.230281 \n",
"L 142.871643 819.230281 \n",
"L 142.871643 819.230281 \n",
"L 133.15212 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_165\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 142.871643 819.230281 \n",
"L 152.591166 819.230281 \n",
"L 152.591166 819.213687 \n",
"L 142.871643 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_166\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 152.591166 819.230281 \n",
"L 162.31069 819.230281 \n",
"L 162.31069 819.213687 \n",
"L 152.591166 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_167\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 162.31069 819.230281 \n",
"L 172.030213 819.230281 \n",
"L 172.030213 819.230281 \n",
"L 162.31069 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_168\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 172.030213 819.230281 \n",
"L 181.749737 819.230281 \n",
"L 181.749737 819.230281 \n",
"L 172.030213 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_169\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 181.749737 819.230281 \n",
"L 191.46926 819.230281 \n",
"L 191.46926 819.230281 \n",
"L 181.749737 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_170\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 191.46926 819.230281 \n",
"L 201.188783 819.230281 \n",
"L 201.188783 819.230281 \n",
"L 191.46926 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_171\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 201.188783 819.230281 \n",
"L 210.908307 819.230281 \n",
"L 210.908307 819.230281 \n",
"L 201.188783 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_172\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 210.908307 819.230281 \n",
"L 220.62783 819.230281 \n",
"L 220.62783 819.213687 \n",
"L 210.908307 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_173\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 220.62783 819.230281 \n",
"L 230.347353 819.230281 \n",
"L 230.347353 819.197092 \n",
"L 220.62783 819.197092 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_174\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 230.347353 819.230281 \n",
"L 240.066877 819.230281 \n",
"L 240.066877 819.213687 \n",
"L 230.347353 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_175\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 240.066877 819.230281 \n",
"L 249.7864 819.230281 \n",
"L 249.7864 818.997957 \n",
"L 240.066877 818.997957 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_176\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 249.7864 819.230281 \n",
"L 259.505923 819.230281 \n",
"L 259.505923 815.828384 \n",
"L 249.7864 815.828384 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_177\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 259.505923 819.230281 \n",
"L 269.225447 819.230281 \n",
"L 269.225447 770.773995 \n",
"L 259.505923 770.773995 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_178\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 269.225447 819.230281 \n",
"L 278.94497 819.230281 \n",
"L 278.94497 743.658388 \n",
"L 269.225447 743.658388 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_179\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 278.94497 819.230281 \n",
"L 288.664494 819.230281 \n",
"L 288.664494 813.687679 \n",
"L 278.94497 813.687679 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_180\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 288.664494 819.230281 \n",
"L 298.384017 819.230281 \n",
"L 298.384017 818.765632 \n",
"L 288.664494 818.765632 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_181\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 298.384017 819.230281 \n",
"L 308.10354 819.230281 \n",
"L 308.10354 819.097524 \n",
"L 298.384017 819.097524 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_182\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 308.10354 819.230281 \n",
"L 317.823064 819.230281 \n",
"L 317.823064 819.230281 \n",
"L 308.10354 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_183\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 317.823064 819.230281 \n",
"L 327.542587 819.230281 \n",
"L 327.542587 819.213687 \n",
"L 317.823064 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_184\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 327.542587 819.230281 \n",
"L 337.26211 819.230281 \n",
"L 337.26211 819.230281 \n",
"L 327.542587 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_185\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 337.26211 819.230281 \n",
"L 346.981634 819.230281 \n",
"L 346.981634 819.230281 \n",
"L 337.26211 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_186\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 346.981634 819.230281 \n",
"L 356.701157 819.230281 \n",
"L 356.701157 819.230281 \n",
"L 346.981634 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_187\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 356.701157 819.230281 \n",
"L 366.42068 819.230281 \n",
"L 366.42068 819.230281 \n",
"L 356.701157 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_188\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 366.42068 819.230281 \n",
"L 376.140204 819.230281 \n",
"L 376.140204 819.230281 \n",
"L 366.42068 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_189\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 376.140204 819.230281 \n",
"L 385.859727 819.230281 \n",
"L 385.859727 819.230281 \n",
"L 376.140204 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_190\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 385.859727 819.230281 \n",
"L 395.57925 819.230281 \n",
"L 395.57925 819.230281 \n",
"L 385.859727 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_191\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 395.57925 819.230281 \n",
"L 405.298774 819.230281 \n",
"L 405.298774 819.230281 \n",
"L 395.57925 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_192\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 405.298774 819.230281 \n",
"L 415.018297 819.230281 \n",
"L 415.018297 819.230281 \n",
"L 405.298774 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_193\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 415.018297 819.230281 \n",
"L 424.737821 819.230281 \n",
"L 424.737821 819.230281 \n",
"L 415.018297 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_194\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 424.737821 819.230281 \n",
"L 434.457344 819.230281 \n",
"L 434.457344 819.230281 \n",
"L 424.737821 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_195\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 434.457344 819.230281 \n",
"L 444.176867 819.230281 \n",
"L 444.176867 819.230281 \n",
"L 434.457344 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_196\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 444.176867 819.230281 \n",
"L 453.896391 819.230281 \n",
"L 453.896391 819.230281 \n",
"L 444.176867 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_197\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 453.896391 819.230281 \n",
"L 463.615914 819.230281 \n",
"L 463.615914 819.230281 \n",
"L 453.896391 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_198\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 463.615914 819.230281 \n",
"L 473.335437 819.230281 \n",
"L 473.335437 819.230281 \n",
"L 463.615914 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_199\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 473.335437 819.230281 \n",
"L 483.054961 819.230281 \n",
"L 483.054961 819.230281 \n",
"L 473.335437 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_200\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 483.054961 819.230281 \n",
"L 492.774484 819.230281 \n",
"L 492.774484 819.230281 \n",
"L 483.054961 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_201\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 492.774484 819.230281 \n",
"L 502.494007 819.230281 \n",
"L 502.494007 819.230281 \n",
"L 492.774484 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_202\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 502.494007 819.230281 \n",
"L 512.213531 819.230281 \n",
"L 512.213531 819.230281 \n",
"L 502.494007 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_203\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 512.213531 819.230281 \n",
"L 521.933054 819.230281 \n",
"L 521.933054 819.230281 \n",
"L 512.213531 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_204\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 521.933054 819.230281 \n",
"L 531.652578 819.230281 \n",
"L 531.652578 819.230281 \n",
"L 521.933054 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_205\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 531.652578 819.230281 \n",
"L 541.372101 819.230281 \n",
"L 541.372101 819.230281 \n",
"L 531.652578 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_206\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 541.372101 819.230281 \n",
"L 551.091624 819.230281 \n",
"L 551.091624 819.230281 \n",
"L 541.372101 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_207\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 551.091624 819.230281 \n",
"L 560.811148 819.230281 \n",
"L 560.811148 819.230281 \n",
"L 551.091624 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_208\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 560.811148 819.230281 \n",
"L 570.530671 819.230281 \n",
"L 570.530671 819.230281 \n",
"L 560.811148 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_209\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 570.530671 819.230281 \n",
"L 580.250194 819.230281 \n",
"L 580.250194 819.230281 \n",
"L 570.530671 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_210\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 580.250194 819.230281 \n",
"L 589.969718 819.230281 \n",
"L 589.969718 819.230281 \n",
"L 580.250194 819.230281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_211\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 589.969718 819.230281 \n",
"L 599.689241 819.230281 \n",
"L 599.689241 819.213687 \n",
"L 589.969718 819.213687 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_111\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 110.227251 819.229666 \n",
"L 115.206522 819.206036 \n",
"L 120.185793 819.230281 \n",
"L 125.165063 819.230281 \n",
"L 130.144334 819.230281 \n",
"L 135.123605 819.230281 \n",
"L 140.102876 819.230281 \n",
"L 145.082147 819.230118 \n",
"L 150.061418 819.192387 \n",
"L 155.040688 819.222739 \n",
"L 160.019959 819.226242 \n",
"L 164.99923 819.230281 \n",
"L 169.978501 819.230281 \n",
"L 174.957772 819.230281 \n",
"L 179.937042 819.230281 \n",
"L 184.916313 819.230281 \n",
"L 189.895584 819.230281 \n",
"L 194.874855 819.230281 \n",
"L 199.854126 819.230281 \n",
"L 204.833397 819.230281 \n",
"L 209.812667 819.230281 \n",
"L 214.791938 819.228689 \n",
"L 219.771209 819.209163 \n",
"L 224.75048 819.183142 \n",
"L 229.729751 819.230281 \n",
"L 234.709022 819.23009 \n",
"L 239.688292 819.19382 \n",
"L 244.667563 819.002671 \n",
"L 249.646834 818.529488 \n",
"L 254.626105 816.605456 \n",
"L 259.605376 807.643628 \n",
"L 264.584647 772.822893 \n",
"L 269.563917 662.516184 \n",
"L 274.543188 771.4073 \n",
"L 279.522459 804.252892 \n",
"L 284.50173 815.109591 \n",
"L 289.481001 818.17123 \n",
"L 294.460272 818.876975 \n",
"L 299.439542 819.121339 \n",
"L 304.418813 819.088031 \n",
"L 309.398084 819.224248 \n",
"L 314.377355 819.230281 \n",
"L 319.356626 819.204549 \n",
"L 324.335897 819.229748 \n",
"L 329.315167 819.230281 \n",
"L 334.294438 819.230281 \n",
"L 339.273709 819.230281 \n",
"L 344.25298 819.230281 \n",
"L 349.232251 819.230281 \n",
"L 354.211522 819.230281 \n",
"L 359.190792 819.230281 \n",
"L 364.170063 819.230281 \n",
"L 369.149334 819.230281 \n",
"L 374.128605 819.230281 \n",
"L 379.107876 819.230281 \n",
"L 384.087147 819.230281 \n",
"L 389.066417 819.230281 \n",
"L 394.045688 819.230281 \n",
"L 399.024959 819.230281 \n",
"L 404.00423 819.230281 \n",
"L 408.983501 819.230281 \n",
"L 413.962772 819.230281 \n",
"L 418.942042 819.230281 \n",
"L 423.921313 819.230281 \n",
"L 428.900584 819.230281 \n",
"L 433.879855 819.230281 \n",
"L 438.859126 819.230281 \n",
"L 443.838397 819.230281 \n",
"L 448.817667 819.230281 \n",
"L 453.796938 819.230281 \n",
"L 458.776209 819.230281 \n",
"L 463.75548 819.230281 \n",
"L 468.734751 819.230281 \n",
"L 473.714022 819.230281 \n",
"L 478.693292 819.230281 \n",
"L 483.672563 819.230281 \n",
"L 488.651834 819.230281 \n",
"L 493.631105 819.230281 \n",
"L 498.610376 819.230281 \n",
"L 503.589647 819.230281 \n",
"L 508.568917 819.230281 \n",
"L 513.548188 819.230281 \n",
"L 518.527459 819.230281 \n",
"L 523.50673 819.230281 \n",
"L 528.486001 819.230281 \n",
"L 533.465272 819.230281 \n",
"L 538.444542 819.230281 \n",
"L 543.423813 819.230281 \n",
"L 548.403084 819.230281 \n",
"L 553.382355 819.230281 \n",
"L 558.361626 819.230281 \n",
"L 563.340897 819.230281 \n",
"L 568.320167 819.230281 \n",
"L 573.299438 819.230281 \n",
"L 578.278709 819.230281 \n",
"L 583.25798 819.230281 \n",
"L 588.237251 819.230281 \n",
"L 593.216522 819.230281 \n",
"L 598.195792 819.206036 \n",
"L 603.175063 819.229666 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_112\">\n",
" <path clip-path=\"url(#p8c4d5c169b)\" d=\"M 110.227035 819.230281 \n",
"L 243.991885 819.14636 \n",
"L 246.469012 818.941268 \n",
"L 248.946139 818.351361 \n",
"L 251.423266 816.86999 \n",
"L 253.900393 813.633146 \n",
"L 256.377519 807.509668 \n",
"L 258.854646 797.557277 \n",
"L 261.331773 783.840967 \n",
"L 263.8089 768.202178 \n",
"L 266.286027 754.257575 \n",
"L 268.763154 746.177503 \n",
"L 271.240281 746.698762 \n",
"L 273.717407 755.63849 \n",
"L 276.194534 769.996907 \n",
"L 278.671661 785.57119 \n",
"L 281.148788 798.910013 \n",
"L 283.625915 808.397481 \n",
"L 286.103042 814.130679 \n",
"L 288.580169 817.110378 \n",
"L 291.057295 818.452101 \n",
"L 293.534422 818.978033 \n",
"L 296.011549 819.158077 \n",
"L 303.44293 819.229478 \n",
"L 603.175279 819.230281 \n",
"L 603.175279 819.230281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_212\">\n",
" <path d=\"M 36.465625 819.230281 \n",
"L 36.465625 651.782281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_213\">\n",
" <path d=\"M 36.465625 819.230281 \n",
"L 619.608125 819.230281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_56\">\n",
" <!-- ticker = BRC -->\n",
" <defs>\n",
" <path d=\"M 44.390625 34.1875 \n",
"Q 47.5625 33.109375 50.5625 29.59375 \n",
"Q 53.5625 26.078125 56.59375 19.921875 \n",
"L 66.609375 0 \n",
"L 56 0 \n",
"L 46.6875 18.703125 \n",
"Q 43.0625 26.03125 39.671875 28.421875 \n",
"Q 36.28125 30.8125 30.421875 30.8125 \n",
"L 19.671875 30.8125 \n",
"L 19.671875 0 \n",
"L 9.8125 0 \n",
"L 9.8125 72.90625 \n",
"L 32.078125 72.90625 \n",
"Q 44.578125 72.90625 50.734375 67.671875 \n",
"Q 56.890625 62.453125 56.890625 51.90625 \n",
"Q 56.890625 45.015625 53.6875 40.46875 \n",
"Q 50.484375 35.9375 44.390625 34.1875 \n",
"M 19.671875 64.796875 \n",
"L 19.671875 38.921875 \n",
"L 32.078125 38.921875 \n",
"Q 39.203125 38.921875 42.84375 42.21875 \n",
"Q 46.484375 45.515625 46.484375 51.90625 \n",
"Q 46.484375 58.296875 42.84375 61.546875 \n",
"Q 39.203125 64.796875 32.078125 64.796875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-52\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.964921875 646.78228125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"498.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-52\"/>\n",
" <use x=\"567.84375\" xlink:href=\"#BitstreamVeraSans-Roman-43\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"axes_5\">\n",
" <g id=\"patch_214\">\n",
" <path d=\"M 36.465625 1029.638281 \n",
"L 619.608125 1029.638281 \n",
"L 619.608125 862.190281 \n",
"L 36.465625 862.190281 \n",
"z\n",
"\" style=\"fill:#eaeaf2;\"/>\n",
" </g>\n",
" <g id=\"matplotlib.axis_9\">\n",
" <g id=\"xtick_28\">\n",
" <g id=\"line2d_113\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 1029.638281 \n",
"L 36.465625 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_114\"/>\n",
" <g id=\"text_57\">\n",
" <!-- −60 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(25.91328125 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-36\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_29\">\n",
" <g id=\"line2d_115\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 109.358437 1029.638281 \n",
"L 109.358437 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_116\"/>\n",
" <g id=\"text_58\">\n",
" <!-- −50 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(98.80609375 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_30\">\n",
" <g id=\"line2d_117\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 182.25125 1029.638281 \n",
"L 182.25125 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_118\"/>\n",
" <g id=\"text_59\">\n",
" <!-- −40 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(171.69890625 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-34\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_31\">\n",
" <g id=\"line2d_119\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 255.144063 1029.638281 \n",
"L 255.144063 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_120\"/>\n",
" <g id=\"text_60\">\n",
" <!-- −30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(244.59171875 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_32\">\n",
" <g id=\"line2d_121\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 328.036875 1029.638281 \n",
"L 328.036875 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_122\"/>\n",
" <g id=\"text_61\">\n",
" <!-- −20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(317.48453125 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_33\">\n",
" <g id=\"line2d_123\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 400.929688 1029.638281 \n",
"L 400.929688 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_124\"/>\n",
" <g id=\"text_62\">\n",
" <!-- −10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(390.37734375 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-2212\"/>\n",
" <use x=\"83.7890625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"147.412109375\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_34\">\n",
" <g id=\"line2d_125\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 473.8225 1029.638281 \n",
"L 473.8225 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_126\"/>\n",
" <g id=\"text_63\">\n",
" <!-- 0 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(470.64125 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_35\">\n",
" <g id=\"line2d_127\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 546.715313 1029.638281 \n",
"L 546.715313 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_128\"/>\n",
" <g id=\"text_64\">\n",
" <!-- 10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(540.3528125 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"xtick_36\">\n",
" <g id=\"line2d_129\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 619.608125 1029.638281 \n",
"L 619.608125 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_130\"/>\n",
" <g id=\"text_65\">\n",
" <!-- 20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(613.245625 1044.23671875)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"text_66\">\n",
" <!-- change -->\n",
" <defs>\n",
" <path d=\"M 34.28125 27.484375 \n",
"Q 23.390625 27.484375 19.1875 25 \n",
"Q 14.984375 22.515625 14.984375 16.5 \n",
"Q 14.984375 11.71875 18.140625 8.90625 \n",
"Q 21.296875 6.109375 26.703125 6.109375 \n",
"Q 34.1875 6.109375 38.703125 11.40625 \n",
"Q 43.21875 16.703125 43.21875 25.484375 \n",
"L 43.21875 27.484375 \n",
"z\n",
"M 52.203125 31.203125 \n",
"L 52.203125 0 \n",
"L 43.21875 0 \n",
"L 43.21875 8.296875 \n",
"Q 40.140625 3.328125 35.546875 0.953125 \n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \n",
"Q 15.921875 -1.421875 10.953125 3.296875 \n",
"Q 6 8.015625 6 15.921875 \n",
"Q 6 25.140625 12.171875 29.828125 \n",
"Q 18.359375 34.515625 30.609375 34.515625 \n",
"L 43.21875 34.515625 \n",
"L 43.21875 35.40625 \n",
"Q 43.21875 41.609375 39.140625 45 \n",
"Q 35.0625 48.390625 27.6875 48.390625 \n",
"Q 23 48.390625 18.546875 47.265625 \n",
"Q 14.109375 46.140625 10.015625 43.890625 \n",
"L 10.015625 52.203125 \n",
"Q 14.9375 54.109375 19.578125 55.046875 \n",
"Q 24.21875 56 28.609375 56 \n",
"Q 40.484375 56 46.34375 49.84375 \n",
"Q 52.203125 43.703125 52.203125 31.203125 \n",
"\" id=\"BitstreamVeraSans-Roman-61\"/>\n",
" <path d=\"M 45.40625 27.984375 \n",
"Q 45.40625 37.75 41.375 43.109375 \n",
"Q 37.359375 48.484375 30.078125 48.484375 \n",
"Q 22.859375 48.484375 18.828125 43.109375 \n",
"Q 14.796875 37.75 14.796875 27.984375 \n",
"Q 14.796875 18.265625 18.828125 12.890625 \n",
"Q 22.859375 7.515625 30.078125 7.515625 \n",
"Q 37.359375 7.515625 41.375 12.890625 \n",
"Q 45.40625 18.265625 45.40625 27.984375 \n",
"M 54.390625 6.78125 \n",
"Q 54.390625 -7.171875 48.1875 -13.984375 \n",
"Q 42 -20.796875 29.203125 -20.796875 \n",
"Q 24.46875 -20.796875 20.265625 -20.09375 \n",
"Q 16.0625 -19.390625 12.109375 -17.921875 \n",
"L 12.109375 -9.1875 \n",
"Q 16.0625 -11.328125 19.921875 -12.34375 \n",
"Q 23.78125 -13.375 27.78125 -13.375 \n",
"Q 36.625 -13.375 41.015625 -8.765625 \n",
"Q 45.40625 -4.15625 45.40625 5.171875 \n",
"L 45.40625 9.625 \n",
"Q 42.625 4.78125 38.28125 2.390625 \n",
"Q 33.9375 0 27.875 0 \n",
"Q 17.828125 0 11.671875 7.65625 \n",
"Q 5.515625 15.328125 5.515625 27.984375 \n",
"Q 5.515625 40.671875 11.671875 48.328125 \n",
"Q 17.828125 56 27.875 56 \n",
"Q 33.9375 56 38.28125 53.609375 \n",
"Q 42.625 51.21875 45.40625 46.390625 \n",
"L 45.40625 54.6875 \n",
"L 54.390625 54.6875 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-67\"/>\n",
" <path d=\"M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 75.984375 \n",
"L 18.109375 75.984375 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"\" id=\"BitstreamVeraSans-Roman-68\"/>\n",
" <path d=\"M 54.890625 33.015625 \n",
"L 54.890625 0 \n",
"L 45.90625 0 \n",
"L 45.90625 32.71875 \n",
"Q 45.90625 40.484375 42.875 44.328125 \n",
"Q 39.84375 48.1875 33.796875 48.1875 \n",
"Q 26.515625 48.1875 22.3125 43.546875 \n",
"Q 18.109375 38.921875 18.109375 30.90625 \n",
"L 18.109375 0 \n",
"L 9.078125 0 \n",
"L 9.078125 54.6875 \n",
"L 18.109375 54.6875 \n",
"L 18.109375 46.1875 \n",
"Q 21.34375 51.125 25.703125 53.5625 \n",
"Q 30.078125 56 35.796875 56 \n",
"Q 45.21875 56 50.046875 50.171875 \n",
"Q 54.890625 44.34375 54.890625 33.015625 \n",
"\" id=\"BitstreamVeraSans-Roman-6e\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(307.79515625 1059.6746875)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"54.98046875\" xlink:href=\"#BitstreamVeraSans-Roman-68\"/>\n",
" <use x=\"118.359375\" xlink:href=\"#BitstreamVeraSans-Roman-61\"/>\n",
" <use x=\"179.638671875\" xlink:href=\"#BitstreamVeraSans-Roman-6e\"/>\n",
" <use x=\"243.017578125\" xlink:href=\"#BitstreamVeraSans-Roman-67\"/>\n",
" <use x=\"306.494140625\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"matplotlib.axis_10\">\n",
" <g id=\"ytick_26\">\n",
" <g id=\"line2d_131\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 1029.638281 \n",
"L 619.608125 1029.638281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_132\"/>\n",
" <g id=\"text_67\">\n",
" <!-- 0.00 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 1032.39765625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_27\">\n",
" <g id=\"line2d_133\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 1005.717138 \n",
"L 619.608125 1005.717138 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_134\"/>\n",
" <g id=\"text_68\">\n",
" <!-- 0.05 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 1008.47651339)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_28\">\n",
" <g id=\"line2d_135\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 981.795996 \n",
"L 619.608125 981.795996 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_136\"/>\n",
" <g id=\"text_69\">\n",
" <!-- 0.10 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 984.555370536)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_29\">\n",
" <g id=\"line2d_137\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 957.874853 \n",
"L 619.608125 957.874853 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_138\"/>\n",
" <g id=\"text_70\">\n",
" <!-- 0.15 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 960.634227679)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-31\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_30\">\n",
" <g id=\"line2d_139\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 933.95371 \n",
"L 619.608125 933.95371 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_140\"/>\n",
" <g id=\"text_71\">\n",
" <!-- 0.20 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 936.713084821)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_31\">\n",
" <g id=\"line2d_141\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 910.032567 \n",
"L 619.608125 910.032567 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_142\"/>\n",
" <g id=\"text_72\">\n",
" <!-- 0.25 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 912.791941964)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-32\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_32\">\n",
" <g id=\"line2d_143\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 886.111424 \n",
"L 619.608125 886.111424 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_144\"/>\n",
" <g id=\"text_73\">\n",
" <!-- 0.30 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 888.870799107)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"ytick_33\">\n",
" <g id=\"line2d_145\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 36.465625 862.190281 \n",
"L 619.608125 862.190281 \n",
"\" style=\"fill:none;stroke:#ffffff;stroke-linecap:round;\"/>\n",
" </g>\n",
" <g id=\"line2d_146\"/>\n",
" <g id=\"text_74\">\n",
" <!-- 0.35 -->\n",
" <g style=\"fill:#262626;\" transform=\"translate(7.2 864.94965625)scale(0.1 -0.1)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-30\"/>\n",
" <use x=\"63.623046875\" xlink:href=\"#BitstreamVeraSans-Roman-2e\"/>\n",
" <use x=\"95.41015625\" xlink:href=\"#BitstreamVeraSans-Roman-33\"/>\n",
" <use x=\"159.033203125\" xlink:href=\"#BitstreamVeraSans-Roman-35\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <g id=\"patch_215\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 95.263142 1029.638281 \n",
"L 104.65665 1029.638281 \n",
"L 104.65665 1029.592482 \n",
"L 95.263142 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_216\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 104.65665 1029.638281 \n",
"L 114.050157 1029.638281 \n",
"L 114.050157 1029.500882 \n",
"L 104.65665 1029.500882 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_217\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 114.050157 1029.638281 \n",
"L 123.443665 1029.638281 \n",
"L 123.443665 1029.638281 \n",
"L 114.050157 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_218\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 123.443665 1029.638281 \n",
"L 132.837172 1029.638281 \n",
"L 132.837172 1029.638281 \n",
"L 123.443665 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_219\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 132.837172 1029.638281 \n",
"L 142.23068 1029.638281 \n",
"L 142.23068 1029.638281 \n",
"L 132.837172 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_220\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 142.23068 1029.638281 \n",
"L 151.624187 1029.638281 \n",
"L 151.624187 1029.638281 \n",
"L 142.23068 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_221\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 151.624187 1029.638281 \n",
"L 161.017695 1029.638281 \n",
"L 161.017695 1029.638281 \n",
"L 151.624187 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_222\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 161.017695 1029.638281 \n",
"L 170.411202 1029.638281 \n",
"L 170.411202 1029.638281 \n",
"L 161.017695 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_223\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 170.411202 1029.638281 \n",
"L 179.804709 1029.638281 \n",
"L 179.804709 1029.638281 \n",
"L 170.411202 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_224\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 179.804709 1029.638281 \n",
"L 189.198217 1029.638281 \n",
"L 189.198217 1029.638281 \n",
"L 179.804709 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_225\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 189.198217 1029.638281 \n",
"L 198.591724 1029.638281 \n",
"L 198.591724 1029.638281 \n",
"L 189.198217 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_226\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 198.591724 1029.638281 \n",
"L 207.985232 1029.638281 \n",
"L 207.985232 1029.638281 \n",
"L 198.591724 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_227\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 207.985232 1029.638281 \n",
"L 217.378739 1029.638281 \n",
"L 217.378739 1029.638281 \n",
"L 207.985232 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_228\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 217.378739 1029.638281 \n",
"L 226.772247 1029.638281 \n",
"L 226.772247 1029.638281 \n",
"L 217.378739 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_229\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 226.772247 1029.638281 \n",
"L 236.165754 1029.638281 \n",
"L 236.165754 1029.638281 \n",
"L 226.772247 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_230\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 236.165754 1029.638281 \n",
"L 245.559262 1029.638281 \n",
"L 245.559262 1029.638281 \n",
"L 236.165754 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_231\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 245.559262 1029.638281 \n",
"L 254.952769 1029.638281 \n",
"L 254.952769 1029.638281 \n",
"L 245.559262 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_232\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 254.952769 1029.638281 \n",
"L 264.346277 1029.638281 \n",
"L 264.346277 1029.638281 \n",
"L 254.952769 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_233\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 264.346277 1029.638281 \n",
"L 273.739784 1029.638281 \n",
"L 273.739784 1029.638281 \n",
"L 264.346277 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_234\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 273.739784 1029.638281 \n",
"L 283.133292 1029.638281 \n",
"L 283.133292 1029.638281 \n",
"L 273.739784 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_235\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 283.133292 1029.638281 \n",
"L 292.526799 1029.638281 \n",
"L 292.526799 1029.638281 \n",
"L 283.133292 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_236\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 292.526799 1029.638281 \n",
"L 301.920307 1029.638281 \n",
"L 301.920307 1029.638281 \n",
"L 292.526799 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_237\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 301.920307 1029.638281 \n",
"L 311.313814 1029.638281 \n",
"L 311.313814 1029.638281 \n",
"L 301.920307 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_238\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 311.313814 1029.638281 \n",
"L 320.707321 1029.638281 \n",
"L 320.707321 1029.638281 \n",
"L 311.313814 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_239\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 320.707321 1029.638281 \n",
"L 330.100829 1029.638281 \n",
"L 330.100829 1029.638281 \n",
"L 320.707321 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_240\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 330.100829 1029.638281 \n",
"L 339.494336 1029.638281 \n",
"L 339.494336 1029.638281 \n",
"L 330.100829 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_241\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 339.494336 1029.638281 \n",
"L 348.887844 1029.638281 \n",
"L 348.887844 1029.592482 \n",
"L 339.494336 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_242\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 348.887844 1029.638281 \n",
"L 358.281351 1029.638281 \n",
"L 358.281351 1029.638281 \n",
"L 348.887844 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_243\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 358.281351 1029.638281 \n",
"L 367.674859 1029.638281 \n",
"L 367.674859 1029.638281 \n",
"L 358.281351 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_244\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 367.674859 1029.638281 \n",
"L 377.068366 1029.638281 \n",
"L 377.068366 1029.638281 \n",
"L 367.674859 1029.638281 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_245\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 377.068366 1029.638281 \n",
"L 386.461874 1029.638281 \n",
"L 386.461874 1029.592482 \n",
"L 377.068366 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_246\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 386.461874 1029.638281 \n",
"L 395.855381 1029.638281 \n",
"L 395.855381 1029.592482 \n",
"L 386.461874 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_247\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 395.855381 1029.638281 \n",
"L 405.248889 1029.638281 \n",
"L 405.248889 1029.455083 \n",
"L 395.855381 1029.455083 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_248\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 405.248889 1029.638281 \n",
"L 414.642396 1029.638281 \n",
"L 414.642396 1029.500882 \n",
"L 405.248889 1029.500882 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_249\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 414.642396 1029.638281 \n",
"L 424.035904 1029.638281 \n",
"L 424.035904 1029.317684 \n",
"L 414.642396 1029.317684 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_250\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 424.035904 1029.638281 \n",
"L 433.429411 1029.638281 \n",
"L 433.429411 1028.584889 \n",
"L 424.035904 1028.584889 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_251\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 433.429411 1029.638281 \n",
"L 442.822919 1029.638281 \n",
"L 442.822919 1027.027701 \n",
"L 433.429411 1027.027701 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_252\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 442.822919 1029.638281 \n",
"L 452.216426 1029.638281 \n",
"L 452.216426 1020.249351 \n",
"L 442.822919 1020.249351 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_253\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 452.216426 1029.638281 \n",
"L 461.609933 1029.638281 \n",
"L 461.609933 1000.921895 \n",
"L 452.216426 1000.921895 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_254\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 461.609933 1029.638281 \n",
"L 471.003441 1029.638281 \n",
"L 471.003441 934.51239 \n",
"L 461.609933 934.51239 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_255\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 471.003441 1029.638281 \n",
"L 480.396948 1029.638281 \n",
"L 480.396948 890.727916 \n",
"L 471.003441 890.727916 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_256\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 480.396948 1029.638281 \n",
"L 489.790456 1029.638281 \n",
"L 489.790456 967.030148 \n",
"L 480.396948 967.030148 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_257\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 489.790456 1029.638281 \n",
"L 499.183963 1029.638281 \n",
"L 499.183963 1009.028435 \n",
"L 489.790456 1009.028435 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_258\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 499.183963 1029.638281 \n",
"L 508.577471 1029.638281 \n",
"L 508.577471 1022.493534 \n",
"L 499.183963 1022.493534 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_259\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 508.577471 1029.638281 \n",
"L 517.970978 1029.638281 \n",
"L 517.970978 1026.798702 \n",
"L 508.577471 1026.798702 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_260\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 517.970978 1029.638281 \n",
"L 527.364486 1029.638281 \n",
"L 527.364486 1028.905487 \n",
"L 517.970978 1028.905487 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_261\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 527.364486 1029.638281 \n",
"L 536.757993 1029.638281 \n",
"L 536.757993 1029.409283 \n",
"L 527.364486 1029.409283 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_262\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 536.757993 1029.638281 \n",
"L 546.151501 1029.638281 \n",
"L 546.151501 1029.409283 \n",
"L 536.757993 1029.409283 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_263\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 546.151501 1029.638281 \n",
"L 555.545008 1029.638281 \n",
"L 555.545008 1029.592482 \n",
"L 546.151501 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"patch_264\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 555.545008 1029.638281 \n",
"L 564.938516 1029.638281 \n",
"L 564.938516 1029.592482 \n",
"L 555.545008 1029.592482 \n",
"z\n",
"\" style=\"fill:#4c72b0;opacity:0.4;stroke:#1a1a1a;stroke-linejoin:miter;stroke-width:0.3;\"/>\n",
" </g>\n",
" <g id=\"line2d_147\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 87.796788 1029.637515 \n",
"L 92.691819 1029.597839 \n",
"L 97.58685 1029.591489 \n",
"L 102.481881 1029.520913 \n",
"L 107.376912 1029.499646 \n",
"L 112.271943 1029.634556 \n",
"L 117.166974 1029.638279 \n",
"L 122.062006 1029.638281 \n",
"L 126.957037 1029.638281 \n",
"L 131.852068 1029.638281 \n",
"L 136.747099 1029.638281 \n",
"L 141.64213 1029.638281 \n",
"L 146.537161 1029.638281 \n",
"L 151.432192 1029.638281 \n",
"L 156.327223 1029.638281 \n",
"L 161.222255 1029.638281 \n",
"L 166.117286 1029.638281 \n",
"L 171.012317 1029.638281 \n",
"L 175.907348 1029.638281 \n",
"L 180.802379 1029.638281 \n",
"L 185.69741 1029.638281 \n",
"L 190.592441 1029.638281 \n",
"L 195.487473 1029.638281 \n",
"L 200.382504 1029.638281 \n",
"L 205.277535 1029.638281 \n",
"L 210.172566 1029.638281 \n",
"L 215.067597 1029.638281 \n",
"L 219.962628 1029.638281 \n",
"L 224.857659 1029.638281 \n",
"L 229.752691 1029.638281 \n",
"L 234.647722 1029.638281 \n",
"L 239.542753 1029.638281 \n",
"L 244.437784 1029.638281 \n",
"L 249.332815 1029.638281 \n",
"L 254.227846 1029.638281 \n",
"L 259.122877 1029.638281 \n",
"L 264.017909 1029.638281 \n",
"L 268.91294 1029.638281 \n",
"L 273.807971 1029.638281 \n",
"L 278.703002 1029.638281 \n",
"L 283.598033 1029.638281 \n",
"L 288.493064 1029.638281 \n",
"L 293.388095 1029.638281 \n",
"L 298.283127 1029.638281 \n",
"L 303.178158 1029.638281 \n",
"L 308.073189 1029.638281 \n",
"L 312.96822 1029.638281 \n",
"L 317.863251 1029.638281 \n",
"L 322.758282 1029.638281 \n",
"L 327.653313 1029.638281 \n",
"L 332.548345 1029.638254 \n",
"L 337.443376 1029.62888 \n",
"L 342.338407 1029.569353 \n",
"L 347.233438 1029.627718 \n",
"L 352.128469 1029.638247 \n",
"L 357.0235 1029.638281 \n",
"L 361.918531 1029.638281 \n",
"L 366.813562 1029.638281 \n",
"L 371.708594 1029.638048 \n",
"L 376.603625 1029.612619 \n",
"L 381.498656 1029.579352 \n",
"L 386.393687 1029.633974 \n",
"L 391.288718 1029.58841 \n",
"L 396.183749 1029.596131 \n",
"L 401.07878 1029.485685 \n",
"L 405.973812 1029.444986 \n",
"L 410.868843 1029.47461 \n",
"L 415.763874 1029.331367 \n",
"L 420.658905 1029.271259 \n",
"L 425.553936 1028.659171 \n",
"L 430.448967 1028.666228 \n",
"L 435.343998 1027.965322 \n",
"L 440.23903 1026.060427 \n",
"L 445.134061 1022.646582 \n",
"L 450.029092 1017.05746 \n",
"L 454.924123 1007.891085 \n",
"L 459.819154 987.611071 \n",
"L 464.714185 952.376861 \n",
"L 469.609216 904.86526 \n",
"L 474.504248 881.669631 \n",
"L 479.399279 915.560599 \n",
"L 484.29431 960.46097 \n",
"L 489.189341 993.189686 \n",
"L 494.084372 1008.555453 \n",
"L 498.979403 1017.794514 \n",
"L 503.874434 1022.409402 \n",
"L 508.769466 1025.529191 \n",
"L 513.664497 1026.872509 \n",
"L 518.559528 1028.156382 \n",
"L 523.454559 1028.849224 \n",
"L 528.34959 1029.378291 \n",
"L 533.244621 1029.344642 \n",
"L 538.139652 1029.449962 \n",
"L 543.034684 1029.375204 \n",
"L 547.929715 1029.536661 \n",
"L 552.824746 1029.614254 \n",
"L 557.719777 1029.637058 \n",
"L 562.614808 1029.593683 \n",
"L 567.509839 1029.59784 \n",
"L 572.40487 1029.637515 \n",
"\" style=\"fill:none;stroke:#4c72b0;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"line2d_148\">\n",
" <path clip-path=\"url(#pec823e5429)\" d=\"M 87.796327 1029.638281 \n",
"L 416.551179 1029.575451 \n",
"L 421.421621 1029.433179 \n",
"L 426.292063 1029.035264 \n",
"L 428.727285 1028.644088 \n",
"L 431.162506 1028.041476 \n",
"L 433.597727 1027.139816 \n",
"L 436.032948 1025.829946 \n",
"L 438.468169 1023.983218 \n",
"L 440.90339 1021.457777 \n",
"L 443.338611 1018.11004 \n",
"L 445.773832 1013.811725 \n",
"L 448.209054 1008.471726 \n",
"L 450.644275 1002.060817 \n",
"L 453.079496 994.635798 \n",
"L 455.514717 986.358629 \n",
"L 462.82038 959.705506 \n",
"L 465.255601 951.758057 \n",
"L 467.690823 945.146589 \n",
"L 470.126044 940.34039 \n",
"L 472.561265 937.697376 \n",
"L 474.996486 937.420061 \n",
"L 477.431707 939.529924 \n",
"L 479.866928 943.864651 \n",
"L 482.302149 950.098774 \n",
"L 484.73737 957.784045 \n",
"L 489.607813 975.424152 \n",
"L 492.043034 984.358625 \n",
"L 494.478255 992.797051 \n",
"L 496.913476 1000.436757 \n",
"L 499.348697 1007.0898 \n",
"L 501.783918 1012.676579 \n",
"L 504.219139 1017.208543 \n",
"L 506.654361 1020.764782 \n",
"L 509.089582 1023.467102 \n",
"L 511.524803 1025.457265 \n",
"L 513.960024 1026.878746 \n",
"L 516.395245 1027.863968 \n",
"L 518.830466 1028.526895 \n",
"L 521.265687 1028.960108 \n",
"L 526.13613 1029.404822 \n",
"L 533.441793 1029.599527 \n",
"L 552.923562 1029.638179 \n",
"L 572.405331 1029.638281 \n",
"L 572.405331 1029.638281 \n",
"\" style=\"fill:none;stroke:#282828;stroke-linecap:round;stroke-width:1.75;\"/>\n",
" </g>\n",
" <g id=\"patch_265\">\n",
" <path d=\"M 36.465625 1029.638281 \n",
"L 36.465625 862.190281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"patch_266\">\n",
" <path d=\"M 36.465625 1029.638281 \n",
"L 619.608125 1029.638281 \n",
"\" style=\"fill:none;\"/>\n",
" </g>\n",
" <g id=\"text_75\">\n",
" <!-- ticker = BMS -->\n",
" <defs>\n",
" <path d=\"M 53.515625 70.515625 \n",
"L 53.515625 60.890625 \n",
"Q 47.90625 63.578125 42.921875 64.890625 \n",
"Q 37.9375 66.21875 33.296875 66.21875 \n",
"Q 25.25 66.21875 20.875 63.09375 \n",
"Q 16.5 59.96875 16.5 54.203125 \n",
"Q 16.5 49.359375 19.40625 46.890625 \n",
"Q 22.3125 44.4375 30.421875 42.921875 \n",
"L 36.375 41.703125 \n",
"Q 47.40625 39.59375 52.65625 34.296875 \n",
"Q 57.90625 29 57.90625 20.125 \n",
"Q 57.90625 9.515625 50.796875 4.046875 \n",
"Q 43.703125 -1.421875 29.984375 -1.421875 \n",
"Q 24.8125 -1.421875 18.96875 -0.25 \n",
"Q 13.140625 0.921875 6.890625 3.21875 \n",
"L 6.890625 13.375 \n",
"Q 12.890625 10.015625 18.65625 8.296875 \n",
"Q 24.421875 6.59375 29.984375 6.59375 \n",
"Q 38.421875 6.59375 43.015625 9.90625 \n",
"Q 47.609375 13.234375 47.609375 19.390625 \n",
"Q 47.609375 24.75 44.3125 27.78125 \n",
"Q 41.015625 30.8125 33.5 32.328125 \n",
"L 27.484375 33.5 \n",
"Q 16.453125 35.6875 11.515625 40.375 \n",
"Q 6.59375 45.0625 6.59375 53.421875 \n",
"Q 6.59375 63.09375 13.40625 68.65625 \n",
"Q 20.21875 74.21875 32.171875 74.21875 \n",
"Q 37.3125 74.21875 42.625 73.28125 \n",
"Q 47.953125 72.359375 53.515625 70.515625 \n",
"\" id=\"BitstreamVeraSans-Roman-53\"/>\n",
" <path d=\"M 9.8125 72.90625 \n",
"L 24.515625 72.90625 \n",
"L 43.109375 23.296875 \n",
"L 61.8125 72.90625 \n",
"L 76.515625 72.90625 \n",
"L 76.515625 0 \n",
"L 66.890625 0 \n",
"L 66.890625 64.015625 \n",
"L 48.09375 14.015625 \n",
"L 38.1875 14.015625 \n",
"L 19.390625 64.015625 \n",
"L 19.390625 0 \n",
"L 9.8125 0 \n",
"z\n",
"\" id=\"BitstreamVeraSans-Roman-4d\"/>\n",
" </defs>\n",
" <g style=\"fill:#262626;\" transform=\"translate(292.385703125 857.19028125)scale(0.11 -0.11)\">\n",
" <use xlink:href=\"#BitstreamVeraSans-Roman-74\"/>\n",
" <use x=\"39.208984375\" xlink:href=\"#BitstreamVeraSans-Roman-69\"/>\n",
" <use x=\"66.9921875\" xlink:href=\"#BitstreamVeraSans-Roman-63\"/>\n",
" <use x=\"121.97265625\" xlink:href=\"#BitstreamVeraSans-Roman-6b\"/>\n",
" <use x=\"179.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-65\"/>\n",
" <use x=\"241.359375\" xlink:href=\"#BitstreamVeraSans-Roman-72\"/>\n",
" <use x=\"282.47265625\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"314.259765625\" xlink:href=\"#BitstreamVeraSans-Roman-3d\"/>\n",
" <use x=\"398.048828125\" xlink:href=\"#BitstreamVeraSans-Roman-20\"/>\n",
" <use x=\"429.8359375\" xlink:href=\"#BitstreamVeraSans-Roman-42\"/>\n",
" <use x=\"498.439453125\" xlink:href=\"#BitstreamVeraSans-Roman-4d\"/>\n",
" <use x=\"584.71875\" xlink:href=\"#BitstreamVeraSans-Roman-53\"/>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" </g>\n",
" <defs>\n",
" <clipPath id=\"pec823e5429\">\n",
" <rect height=\"167.448\" width=\"583.1425\" x=\"36.465625\" y=\"862.19028125\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p8c4d5c169b\">\n",
" <rect height=\"167.448\" width=\"583.1425\" x=\"36.465625\" y=\"651.78228125\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p369efc8dc5\">\n",
" <rect height=\"167.448\" width=\"583.1425\" x=\"36.465625\" y=\"230.96628125\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p69cd78cd10\">\n",
" <rect height=\"167.448\" width=\"583.1425\" x=\"36.465625\" y=\"441.37428125\"/>\n",
" </clipPath>\n",
" <clipPath id=\"p91b1eb7ea1\">\n",
" <rect height=\"167.448\" width=\"583.1425\" x=\"36.465625\" y=\"20.55828125\"/>\n",
" </clipPath>\n",
" </defs>\n",
"</svg>\n"
],
"text/plain": [
"<matplotlib.figure.Figure at 0x7fa40bd69f98>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plot_returns(ddf, 0.001, stats.norm)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We have the intuition that the normal distribution isn't the best option, and this provides us an easy way to look for a better one. Start by seeing [what distributions are available in the SciPy `stats` module](https://docs.scipy.org/doc/scipy/reference/stats.html):"
]
},
{
"cell_type": "code",
"execution_count": 64,
"metadata": {
"collapsed": true
},
"outputs": [
{
"data": {
"text/plain": [
"['Tester',\n",
" '__all__',\n",
" '__builtins__',\n",
" '__cached__',\n",
" '__doc__',\n",
" '__file__',\n",
" '__loader__',\n",
" '__name__',\n",
" '__package__',\n",
" '__path__',\n",
" '__spec__',\n",
" '_binned_statistic',\n",
" '_constants',\n",
" '_continuous_distns',\n",
" '_discrete_distns',\n",
" '_distn_infrastructure',\n",
" '_distr_params',\n",
" '_multivariate',\n",
" '_rank',\n",
" '_stats_mstats_common',\n",
" '_tukeylambda_stats',\n",
" 'absolute_import',\n",
" 'alpha',\n",
" 'anderson',\n",
" 'anderson_ksamp',\n",
" 'anglit',\n",
" 'ansari',\n",
" 'arcsine',\n",
" 'bartlett',\n",
" 'bayes_mvs',\n",
" 'bernoulli',\n",
" 'beta',\n",
" 'betai',\n",
" 'betaprime',\n",
" 'binned_statistic',\n",
" 'binned_statistic_2d',\n",
" 'binned_statistic_dd',\n",
" 'binom',\n",
" 'binom_test',\n",
" 'boltzmann',\n",
" 'boxcox',\n",
" 'boxcox_llf',\n",
" 'boxcox_normmax',\n",
" 'boxcox_normplot',\n",
" 'bradford',\n",
" 'burr',\n",
" 'cauchy',\n",
" 'chi',\n",
" 'chi2',\n",
" 'chi2_contingency',\n",
" 'chisqprob',\n",
" 'chisquare',\n",
" 'circmean',\n",
" 'circstd',\n",
" 'circvar',\n",
" 'combine_pvalues',\n",
" 'contingency',\n",
" 'cosine',\n",
" 'cumfreq',\n",
" 'describe',\n",
" 'dgamma',\n",
" 'dirichlet',\n",
" 'distributions',\n",
" 'division',\n",
" 'dlaplace',\n",
" 'dweibull',\n",
" 'entropy',\n",
" 'erlang',\n",
" 'expon',\n",
" 'exponnorm',\n",
" 'exponpow',\n",
" 'exponweib',\n",
" 'f',\n",
" 'f_oneway',\n",
" 'f_value',\n",
" 'f_value_multivariate',\n",
" 'f_value_wilks_lambda',\n",
" 'fastsort',\n",
" 'fatiguelife',\n",
" 'find_repeats',\n",
" 'fisher_exact',\n",
" 'fisk',\n",
" 'fligner',\n",
" 'foldcauchy',\n",
" 'foldnorm',\n",
" 'frechet_l',\n",
" 'frechet_r',\n",
" 'friedmanchisquare',\n",
" 'gamma',\n",
" 'gausshyper',\n",
" 'gaussian_kde',\n",
" 'genexpon',\n",
" 'genextreme',\n",
" 'gengamma',\n",
" 'genhalflogistic',\n",
" 'genlogistic',\n",
" 'gennorm',\n",
" 'genpareto',\n",
" 'geom',\n",
" 'gilbrat',\n",
" 'gmean',\n",
" 'gompertz',\n",
" 'gumbel_l',\n",
" 'gumbel_r',\n",
" 'halfcauchy',\n",
" 'halfgennorm',\n",
" 'halflogistic',\n",
" 'halfnorm',\n",
" 'histogram',\n",
" 'histogram2',\n",
" 'hmean',\n",
" 'hypergeom',\n",
" 'hypsecant',\n",
" 'invgamma',\n",
" 'invgauss',\n",
" 'invweibull',\n",
" 'invwishart',\n",
" 'itemfreq',\n",
" 'jarque_bera',\n",
" 'johnsonsb',\n",
" 'johnsonsu',\n",
" 'kde',\n",
" 'kendalltau',\n",
" 'kruskal',\n",
" 'ks_2samp',\n",
" 'ksone',\n",
" 'kstat',\n",
" 'kstatvar',\n",
" 'kstest',\n",
" 'kstwobign',\n",
" 'kurtosis',\n",
" 'kurtosistest',\n",
" 'laplace',\n",
" 'levene',\n",
" 'levy',\n",
" 'levy_l',\n",
" 'levy_stable',\n",
" 'linregress',\n",
" 'loggamma',\n",
" 'logistic',\n",
" 'loglaplace',\n",
" 'lognorm',\n",
" 'logser',\n",
" 'lomax',\n",
" 'mannwhitneyu',\n",
" 'matrix_normal',\n",
" 'maxwell',\n",
" 'median_test',\n",
" 'mielke',\n",
" 'mode',\n",
" 'moment',\n",
" 'mood',\n",
" 'morestats',\n",
" 'mstats',\n",
" 'mstats_basic',\n",
" 'mstats_extras',\n",
" 'multivariate_normal',\n",
" 'mvn',\n",
" 'mvsdist',\n",
" 'nakagami',\n",
" 'nanmean',\n",
" 'nanmedian',\n",
" 'nanstd',\n",
" 'nbinom',\n",
" 'ncf',\n",
" 'nct',\n",
" 'ncx2',\n",
" 'norm',\n",
" 'normaltest',\n",
" 'obrientransform',\n",
" 'pareto',\n",
" 'pdf_fromgamma',\n",
" 'pearson3',\n",
" 'pearsonr',\n",
" 'percentileofscore',\n",
" 'planck',\n",
" 'pointbiserialr',\n",
" 'poisson',\n",
" 'power_divergence',\n",
" 'powerlaw',\n",
" 'powerlognorm',\n",
" 'powernorm',\n",
" 'ppcc_max',\n",
" 'ppcc_plot',\n",
" 'print_function',\n",
" 'probplot',\n",
" 'randint',\n",
" 'rankdata',\n",
" 'ranksums',\n",
" 'rayleigh',\n",
" 'rdist',\n",
" 'recipinvgauss',\n",
" 'reciprocal',\n",
" 'relfreq',\n",
" 'rice',\n",
" 'rv_continuous',\n",
" 'rv_discrete',\n",
" 'scoreatpercentile',\n",
" 'sem',\n",
" 'semicircular',\n",
" 'shapiro',\n",
" 'sigmaclip',\n",
" 'signaltonoise',\n",
" 'skellam',\n",
" 'skew',\n",
" 'skewtest',\n",
" 'spearmanr',\n",
" 'square_of_sums',\n",
" 'ss',\n",
" 'statlib',\n",
" 'stats',\n",
" 't',\n",
" 'test',\n",
" 'theilslopes',\n",
" 'threshold',\n",
" 'tiecorrect',\n",
" 'tmax',\n",
" 'tmean',\n",
" 'tmin',\n",
" 'triang',\n",
" 'trim1',\n",
" 'trim_mean',\n",
" 'trimboth',\n",
" 'truncexpon',\n",
" 'truncnorm',\n",
" 'tsem',\n",
" 'tstd',\n",
" 'ttest_1samp',\n",
" 'ttest_ind',\n",
" 'ttest_ind_from_stats',\n",
" 'ttest_rel',\n",
" 'tukeylambda',\n",
" 'tvar',\n",
" 'uniform',\n",
" 'variation',\n",
" 'vonmises',\n",
" 'vonmises_cython',\n",
" 'vonmises_line',\n",
" 'wald',\n",
" 'weibull_max',\n",
" 'weibull_min',\n",
" 'wilcoxon',\n",
" 'wishart',\n",
" 'wrapcauchy',\n",
" 'zipf',\n",
" 'zmap',\n",
" 'zscore']"
]
},
"execution_count": 64,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"dir(stats)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now you can try some different distributions and see if one looks like a good option. What distributions seem to be good fits? With some more exploratory work, you're able to turn this example code into a more realistic simulation.\n",
"\n",
"# Exercises\n",
"\n",
"1. Find a distribution that is a better fit for the stock returns data.\n",
"2. Use this distribution to fit models to each ticker symbol and develop a new `simulate` method to sample from these distributions rather than from normal distributions. Compare the results of this simulation to the results of the simulation\n",
"3. &starf; Implement a goodness-of-fit test of your choice.\n",
"4. Using the test you developed above, evaluate the distribution fits for every symbol. Are there any particularly bad fits?\n",
"5. &starf; Identify some additional distributions to use for modeling security returns that don't work well with the distribution you identified above. Build a more sophisticated simulation that chooses one of several possible distributions for each security to find the best fit.\n",
"6. &starf; Past performance is no guarantee of future results, but it's one of the best indicators we have. Nevertheless, we should be careful. What are some potential pitfalls and limitations of this general approach?"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Python [conda root]",
"language": "python",
"name": "conda-root-py"
},
"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.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment