{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Structure\n",
    "\n",
    "In order to carry out any simulations using the `udkm1Dsim` package, an according one-dimensional `Structure` needs to be created in advance.\n",
    "\n",
    "This `Structure` object can consists of one or many sub-structures and/or `Layers` of type `UnitCell` or `AmorphousLayer`.\n",
    "\n",
    "`UnitCell`s and `AmorphousLayer`s consist of the fundamental building blocks, namely `Atom`s and `AtomMixed`.\n",
    "\n",
    "In this example the basic concepts of creating the above mentioned objects are introduced. Furthermore one should easily see how to set and access all the physical properties of these physical objects."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Setup\n",
    "\n",
    "Do all necessary imports and settings."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "import udkm1Dsim as ud\n",
    "u = ud.u  # import the pint unit registry from udkm1Dsim\n",
    "import scipy.constants as constants\n",
    "import numpy as np\n",
    "import matplotlib.pyplot as plt\n",
    "%matplotlib inline\n",
    "u.setup_matplotlib()  # use matplotlib with pint units"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Atoms\n",
    "\n",
    "The `atoms` module contains two classes: `Atom` and `AtomMixed`."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Atom\n",
    "\n",
    "The `Atom` object represents a real physical atom as it can be found in the periodic table.\n",
    "Accordingly, it is initialized with the required `symbol` of the element.\n",
    "Then all necessary data are loaded from parameter files linked to this element.\n",
    "\n",
    "An optional `ID` can be given as _keyword parameter_ if atoms of the same element but with different properties are used.\n",
    "Another keyword argument is the `ionicity` of the atom, which has to be present in the parameter files.\n",
    "\n",
    "The magnetization of every atom can be set by the three _keyword parameters_\n",
    "* `mag_amplitude`\n",
    "* `mag_phi`\n",
    "* `mag_gamma`\n",
    "\n",
    "If no individual paths to the atomic- and/or magnetic scattering factors are given, by `atomic_form_factor_path` and `magnetic_form_factor_path`, respectively, the defaults parameters are used from the \n",
    "_Chantler tables_:\n",
    "\n",
    "C.T. Chantler, K. Olsen, R.A. Dragoset, J. Chang, A.R. Kishore, S.A. Kotochigova, & D.S. Zucker,  \n",
    "*Detailed Tabulation of Atomic Form Factors, Photoelectric Absorption and Scattering Cross Section, and Mass Attenuation Coefficients for Z = 1-92 from E = 1-10 eV to E = 0.4-1.0 MeV*  \n",
    "[NIST Standard Reference Database 66.](https://dx.doi.org/10.18434/T4HS32)\n",
    "\n",
    "as well as [Project Dyna](https://neel.cnrs.frspip.php/?rubrique1008&lang=en), respectively"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "O = ud.Atom('O')\n",
    "Om1 = ud.Atom('O', id='Om1', ionicity=-1)\n",
    "Om2 = ud.Atom('O', id='Om2', ionicity=-2)\n",
    "Fe = ud.Atom('Fe', mag_amplitude=1, mag_phi=0*u.deg, mag_gamma=90*u.deg)\n",
    "Cr = ud.Atom('Cr')\n",
    "Ti = ud.Atom('Ti')\n",
    "Sr = ud.Atom('Sr')\n",
    "Ru = ud.Atom('Ru')\n",
    "Pb = ud.Atom('Pb')\n",
    "Zr = ud.Atom('Zr')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "One can easily print all properties of a single atom:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Atom with the following properties\n",
      "=================  =================================\n",
      "               id  Sr\n",
      "           symbol  Sr\n",
      "             name  Strontium\n",
      "  atomic number Z  38\n",
      "    mass number A  87.62\n",
      "             mass  1.455×10⁻²⁵ kg\n",
      "         ionicity  0\n",
      "Cromer Mann coeff  [38.      0.     17.5663  9.8184]\n",
      "               ..  [ 5.422   2.6694  1.5564 14.0988]\n",
      "               ..  [  0.1664 132.376    2.5064]\n",
      "  magn. amplitude  0\n",
      "        magn. phi  0.0 deg\n",
      "      magn. gamma  0.0 deg\n",
      "=================  =================================\n"
     ]
    }
   ],
   "source": [
    "print(Sr)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Or just a single property:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "7.948502350094219×10⁻²⁶ kg\n"
     ]
    }
   ],
   "source": [
    "print(Ti.mass)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Mixed Atom\n",
    "\n",
    "The `AtomMixed` class allows for solid solutions that can easily achieved by the following lines of code.\n",
    "The input for the initialization of the `AtomMixed` object are the `symbol`, `id`, and `name`, whereas only the first is required."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "AtomMixed with the following properties\n",
      "===============  ====================\n",
      "             id  ZT\n",
      "         symbol  ZT\n",
      "           name  Zircon-Titan 0.2 0.8\n",
      "atomic number Z  25.6\n",
      "  mass number A  56.538399999999996\n",
      "           mass  9.388×10⁻²⁶ kg\n",
      "       ionicity  0.0\n",
      "magn. amplitude  0\n",
      "      magn. phi  0.0 deg\n",
      "    magn. gamma  0.0 deg\n",
      "===============  ====================\n",
      "2 Constituents:\n",
      "---------  ------\n",
      "Zirconium  20.0 %\n",
      " Titanium  80.0 %\n",
      "---------  ------\n"
     ]
    }
   ],
   "source": [
    "ZT = ud.AtomMixed('ZT', id='ZT', name='Zircon-Titan 0.2 0.8')\n",
    "ZT.add_atom(Zr, 0.2)\n",
    "ZT.add_atom(Ti, 0.8)\n",
    "print(ZT)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Layers\n",
    "\n",
    "The atoms created above can be used to build `Layer`s.\n",
    "There are two types of layers available: `AmorphousLayer` and crystalline `UnitCell`.\n",
    "Both share many common physical properties which are relevant for the later simulations.\n",
    "Please refer to a complete list or properties and methods in the __API documentation__."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Amorphous Layers\n",
    "\n",
    "The `AmorphousLayer` must be initialized with an `id`, `name`, `thickness`, and `density`.\n",
    "All other properties are optional and must be set to carry out the according simulations."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Amorphous layer with the following properties\n",
      "\n",
      "========================  ===============\n",
      "               parameter  value\n",
      "========================  ===============\n",
      "                      id  amorph_Fe\n",
      "                    name  amorph_Fe\n",
      "               thickness  20.0 nm\n",
      "                    area  0.01 nm²\n",
      "                  volume  0.2 nm³\n",
      "                    mass  1.5748×10⁻²⁴ kg\n",
      "      mass per unit area  1.5748×10⁻²⁴ kg\n",
      "                 density  7.874×10³ kg/m³\n",
      "               roughness  0.0 nm\n",
      "     Debye Waller Factor  0 m²\n",
      "          sound velocity  0.0 m/s\n",
      "         spring constant  [0.0] kg/s²\n",
      "          phonon damping  0.0 kg/s\n",
      "         opt. pen. depth  0.0 nm\n",
      "   opt. refractive index  0\n",
      "  opt. ref. index/strain  0\n",
      "        thermal conduct.  0 W/(m K)\n",
      "linear thermal expansion  0\n",
      "           heat capacity  0 J/(kg K)\n",
      "      subsystem coupling  0 W/m³\n",
      "             no atom set\n",
      "========================  ===============\n"
     ]
    }
   ],
   "source": [
    "amorph_Fe = ud.AmorphousLayer('amorph_Fe', 'amorph_Fe', 20*u.nm, 7.874*u.g/u.cm**3)\n",
    "# print the layer properties\n",
    "print(amorph_Fe)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The physical properties can be also given during initialization using a `dict`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Amorphous layer with the following properties\n",
      "\n",
      "========================  ===========================\n",
      "               parameter  value\n",
      "========================  ===========================\n",
      "                      id  amorph_Cr\n",
      "                    name  amorph_Cr\n",
      "               thickness  40.0 nm\n",
      "                    area  0.01 nm²\n",
      "                  volume  0.4 nm³\n",
      "                    mass  2.856×10⁻²⁴ kg\n",
      "      mass per unit area  2.856×10⁻²⁴ kg\n",
      "                 density  7.14×10³ kg/m³\n",
      "               roughness  0.0 nm\n",
      "     Debye Waller Factor  0 m²\n",
      "          sound velocity  5×10³ m/s\n",
      "         spring constant  [0.04462500000000001] kg/s²\n",
      "          phonon damping  0.0 kg/s\n",
      "         opt. pen. depth  9.999999999999998 nm\n",
      "   opt. refractive index  0\n",
      "  opt. ref. index/strain  0\n",
      "        thermal conduct.  0 W/(m K)\n",
      "linear thermal expansion  0\n",
      "           heat capacity  0 J/(kg K)\n",
      "      subsystem coupling  0 W/m³\n",
      "                    atom  Chromium\n",
      "           magnetization\n",
      "               amplitude  0\n",
      "                 phi [°]  0.0 deg\n",
      "               gamma [°]  0.0 deg\n",
      "========================  ===========================\n"
     ]
    }
   ],
   "source": [
    "params = {\n",
    "    'opt_pen_depth': 10*u.nm,\n",
    "    'sound_vel': 5*(u.nm/u.ps),\n",
    "}\n",
    "\n",
    "amorph_Cr = ud.AmorphousLayer('amorph_Cr', 'amorph_Cr', 40*u.nm, 7.14*u.g/u.cm**3, atom=Cr, **params)\n",
    "# print the layer properties\n",
    "print(amorph_Cr)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Unit Cells\n",
    "\n",
    "The `UnitCell` requires an `id`, `name`, and `c_axis` upon initialization.\n",
    "Multiple atoms can be added to relative positions along the _c_-Axis in the 1D `UnitCell`.\n",
    "Note that all temperature-dependent properties can be given either as scalar (constant) value or as string that represents a temperature-dependent _lambda_-function:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Unit Cell with the following properties\n",
      "\n",
      "========================  =========================================\n",
      "               parameter  value\n",
      "========================  =========================================\n",
      "                      id  SRO\n",
      "                    name  Strontium Ruthenate\n",
      "                  a-axis  0.3905 nm\n",
      "                  b-axis  0.3905 nm\n",
      "                  c-axis  0.3949 nm\n",
      "                    area  0.1525 nm²\n",
      "                  volume  0.06022 nm³\n",
      "                    mass  3.93×10⁻²⁵ kg\n",
      "      mass per unit area  2.577×10⁻²⁶ kg\n",
      "                    area  0.1525 nm²\n",
      "                  volume  0.06022 nm³\n",
      "                    mass  3.930300027032341×10⁻²⁵ kg\n",
      "      mass per unit area  2.5774107046400294×10⁻²⁶ kg\n",
      "                 density  6.527×10³ kg/m³\n",
      "               roughness  0.0 nm\n",
      "     Debye Waller Factor  0 m²\n",
      "          sound velocity  0.0 m/s\n",
      "         spring constant  [0.0] kg/s²\n",
      "          phonon damping  0.0 kg/s\n",
      "         opt. pen. depth  0.0 nm\n",
      "   opt. refractive index  (2.44+4.32j)\n",
      "  opt. ref. index/strain  0\n",
      "        thermal conduct.  5.72 W/(m K)\n",
      "linear thermal expansion  0\n",
      "           heat capacity  455.2 + 0.112*T  - 2.1935e6/T**2 J/(kg K)\n",
      "      subsystem coupling  0 W/m³\n",
      "========================  =========================================\n",
      "\n",
      "5 Constituents:\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n",
      "atom         position    position function  magn.      amplitude    phi [°]    gamma [°]\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n",
      "Oxygen            0                    0                       0          0            0\n",
      "Strontium         0                    0                       0          0            0\n",
      "Oxygen            0.5                  0.5                     0          0            0\n",
      "Oxygen            0.5                  0.5                     0          0            0\n",
      "Ruthenium         0.5                  0.5                     0          0            0\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n"
     ]
    }
   ],
   "source": [
    "# c-axis lattice constants of the two layers\n",
    "c_STO_sub = 3.905*u.angstrom\n",
    "c_SRO = 3.94897*u.angstrom\n",
    "# sound velocities [nm/ps] of the two layers\n",
    "sv_SRO = 6.312*u.nm/u.ps\n",
    "sv_STO = 7.800*u.nm/u.ps\n",
    "\n",
    "# SRO layer\n",
    "prop_SRO = {}\n",
    "prop_SRO['a_axis'] = c_STO_sub  # a-Axis\n",
    "prop_SRO['b_axis'] = c_STO_sub  # b-Axis\n",
    "prop_SRO['deb_Wa l_Fac'] = 0  # Debye-Waller factor\n",
    "prop_SRO['sound_ve l'] = sv_SRO  # sound velocity\n",
    "prop_SRO['opt_ref_index'] = 2.44+4.32j\n",
    "prop_SRO['therm_ond'] = 5.72*u.W/(u.m*u.K)  # heat conductivity\n",
    "prop_SRO['lin_therm_ exp'] = 1.03e-5  # linear thermal expansion\n",
    "prop_SRO['heat_capacity'] = '455.2 + 0.112*T  - 2.1935e6/T**2'  # heat capacity [J/kg K]\n",
    "\n",
    "SRO = ud.UnitCell('SRO', 'Strontium Ruthenate', c_SRO, **prop_SRO)\n",
    "SRO.add_atom(O, 0)\n",
    "SRO.add_atom(Sr, 0)\n",
    "SRO.add_atom(O, 0.5)\n",
    "SRO.add_atom(O, 0.5)\n",
    "SRO.add_atom(Ru, 0.5)\n",
    "\n",
    "print(SRO)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### Non-Linear Strain Dependence\n",
    "In general the position of each atom in a unit cell depends linearly from an external strain.\n",
    "In some cases this linear behavior has to be altered.\n",
    "This can be easily achieved by providing a string representation of a strain-dependent _lambda_-function for the atom position when the atom is added to the unit cell."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Unit Cell with the following properties\n",
      "\n",
      "========================  =========================================\n",
      "               parameter  value\n",
      "========================  =========================================\n",
      "                      id  STOsub\n",
      "                    name  Strontium Titanate Substrate\n",
      "                  a-axis  0.3905 nm\n",
      "                  b-axis  0.3905 nm\n",
      "                  c-axis  0.3905 nm\n",
      "                    area  0.1525 nm²\n",
      "                  volume  0.05955 nm³\n",
      "                    mass  3.047×10⁻²⁵ kg\n",
      "      mass per unit area  1.998×10⁻²⁶ kg\n",
      "                    area  0.1525 nm²\n",
      "                  volume  0.05955 nm³\n",
      "                    mass  3.046843427429143×10⁻²⁵ kg\n",
      "      mass per unit area  1.9980578610298977×10⁻²⁶ kg\n",
      "                 density  5.117×10³ kg/m³\n",
      "               roughness  0.0 nm\n",
      "     Debye Waller Factor  0 m²\n",
      "          sound velocity  7.8×10³ m/s\n",
      "         spring constant  [7.971777885147345] kg/s²\n",
      "          phonon damping  0.0 kg/s\n",
      "         opt. pen. depth  0.0 nm\n",
      "   opt. refractive index  (2.1+0j)\n",
      "  opt. ref. index/strain  0\n",
      "        thermal conduct.  12.0 W/(m K)\n",
      "linear thermal expansion  1e-05\n",
      "           heat capacity  733.73 + 0.0248*T - 6.531e6/T**2 J/(kg K)\n",
      "      subsystem coupling  0 W/m³\n",
      "========================  =========================================\n",
      "\n",
      "5 Constituents:\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n",
      "atom         position  position function    magn.      amplitude    phi [°]    gamma [°]\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n",
      "Strontium         0    0                                       0          0            0\n",
      "Oxygen            0.1  0.1*(s**2+1)                            0          0            0\n",
      "Oxygen            0.5  0.5                                     0          0            0\n",
      "Oxygen            0.5  0.5                                     0          0            0\n",
      "Titanium          0.5  0.5                                     0          0            0\n",
      "=========  ==========  ===================  =======  ===========  =========  ===========\n"
     ]
    }
   ],
   "source": [
    "# STO substrate\n",
    "prop_STO_sub = {}\n",
    "prop_STO_sub['a_axis'] = c_STO_sub  # a-Axis\n",
    "prop_STO_sub['b_axis'] = c_STO_sub  # b-Axis\n",
    "prop_STO_sub['deb_Wal_Fac'] = 0  # Debye-Waller factor\n",
    "prop_STO_sub['sound_vel'] = sv_STO  # sound velocity\n",
    "prop_STO_sub['opt_ref_index'] = 2.1+0j\n",
    "prop_STO_sub['therm_cond'] = 12*u.W/(u.m *u.K)  # heat conductivity\n",
    "prop_STO_sub['lin_therm_exp'] = 1e-5  # linear thermal expansion\n",
    "prop_STO_sub['heat_capacity'] = '733.73 + 0.0248*T - 6.531e6/T**2'  # heat capacity [J/kg K]\n",
    "\n",
    "STO_sub = ud.UnitCell('STOsub', 'Strontium Titanate Substrate', c_STO_sub, **prop_STO_sub)\n",
    "STO_sub.add_atom(O, '0.1*(s**2+1)')\n",
    "STO_sub.add_atom(Sr, 0)\n",
    "STO_sub.add_atom(O, 0.5)\n",
    "STO_sub.add_atom(O, 0.5)\n",
    "STO_sub.add_atom(Ti, 0.5)\n",
    "\n",
    "print(STO_sub)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "A simple visualization is also available:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEWCAYAAABrDZDcAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Z1A+gAAAACXBIWXMAAAsTAAALEwEAmpwYAAAlB0lEQVR4nO3de3RV9Zn/8fdjIIBAEpJgloKKjbEoVNCAWmGGeEGlHcVWrYTQ+Wmnw0+LAbTtrxc7nZnepl3tKEStlul4KwFaWu1Yx4xXQgteBoJAuSgkVkvQqlxCiBci8fn9cQ72GE4OJyfZ55izP6+1zuLsvb/ne57HtTxPvvu793ebuyMiIuF1VKYDEBGRzFIhEBEJORUCEZGQUyEQEQk5FQIRkZBTIRARCTkVApEYZnaCmbWZWU6mYxFJFxUC6VPMbLKZPW1m+8xsj5mtNrOJ0WPXmNmqnvTv7n929yHu3tFL8V5gZi+Y2dtmtsLMTkzQttDMHjSzt8zsFTObmWxfZjbTzF4zsz+ZWUXM/tLofy8VNumSCoH0GWaWBzwM3AYUAiOAfwUOdKOPtP0gmlkx8ADwT0TiXQv8MsFH7gDagRKgCrjTzMYcqS8z6wf8EDgTqAZuj+mzBriptwqbZCfTncXSV5jZBOAJdy+Ic+xU4HmgP/AOcNDdC8zs3uj2icAUYDowAPgeUArsA/7T3f8l2s8o4E9Af3c/aGb1wB+A84HTgWeAme6+K4l4ZwPXuPu50e3BwC7gDHd/oVPbwcBeYKy7b4vu+wWw092/nqiv6Od+6+6fNLOBwB53P9rMrgQucvfZR4pVwk0jAulLtgEdZnafmU0zs2GHDrj7VuA64JnoqZ2CmM/NBL4PDAVWAW8Bfw8UAJ8GrjezyxN870zgWuAYIBf4yqEDZrax8ymcGGOADTExvgU0Rfd3dgrQcagIRG2IaZuorzeBIjMbCUwFNpvZEOBbwDcS5CUCqBBIH+LurcBkwIH/AN40s4fMrOQIH/0vd1/t7u+7+7vuXu/uf4xubwSWEhktdOUed9/m7u8AvwLGx8R0ursv6eJzQ4iMOGLtI1KQutu2y+Pu/j5wPfBrIkXqH4HvEDmF9onofMKjZja26xQlzFQIpE9x963ufo27jwTGAscBC47wsR2xG2Z2dvTH8U0z20dkJFGc4PN/iXn/NpEf5WS0AXmd9uUB+1Nom/C4uz/p7ue4+xTgfWACcC/wC+Aa4LvAz5OMW0JGhUD6rOh59nuJFASIjBTiNu20vQR4CDje3fOBuwALIMTNwLhDG9Hz+qXR/Z1tA/qZWVnMvnExbZPqy8yMyGTxXCLFLcfdXwHWEJnjEDmMCoH0GWY22sy+HD0XjpkdD1QCz0abvA6MNLPcI3Q1lMiE6rtmdhaROYAgPAiMNbMropO43wY2dp4ohg/O+T8AfMfMBpvZJCIT27/oZl9fBJ539/XAbmCQmZ0GnAe81PspSjZQIZC+ZD9wNvCcmb1FpABsAr4cPf4Ukb+Q/2Jmia7q+RKRH9z9RH5Qf5VqQGa22cyq4h1z9zeBK4hMVO+Nxj4j5rPfNLO6TnENAt4gMm9xvbtvTqavaH/FwDwil5ji7geBG4j8d7mLyKWlIofR5aMiIiGnEYGISMipEIiIhJwKgYhIyKkQiIiEXL9MB9BdxcXFPmrUqEyH0WveeustBg8enOkwAqc8s0cYcoTsy7OhoWGXuw+Pd6zPFYJRo0axdu3aTIfRa+rr66moqMh0GIFTntkjDDlC9uVpZq90dUynhkREQk6FQEQk5FQIRERCrs/NEYiIBOm9996jubmZ/Px8tm7dmulwum3gwIGMHDmS/v37J/0ZFQIRkRjNzc0MHTqUoqIi8vI6r/z90ebu7N69m+bmZk466aSkP6dTQyIiMd59912KioqIrOjdt5gZRUVFvPvuu936nAqBiEgnfbEIHJJK7CoEIiIpampqYs7cavKLizgqJ4f84iLmzK2mqakp06F1iwqBiEgK6urqGDexnKUvP8+gr17JsT/7MoO+eiVLX36ecRPLqaurO3InCTQ3NzN9+nTKysooLS1l3rx5tLe391L0H6ZCICLSTU1NTVxVVcmg6y/l6M9Mpt8xw7Cco+h3zDCO/sxkBl1/KVdVVaY8MnB3PvvZz3L55Zezfft2tm3bRltbGzfffHMvZxKhQiAi0k23LFxA7uSxDDh5RNzjA04eQe6kMdxaszCl/p966ikGDhzItddeC0BOTg633nord999N2+//XbKcXdFhUBEpJsWL1lC7qQxCdvkTh7L4iW1KfW/efNmysvLP7QvLy+PE044gcbGxpT6TESFQESkm/bvbSGnKD9hm5zCPPbvbUmpf3ePe/VPV/t7KrBCYGZ3m9kbZrapi+NmZjVm1mhmG83szKBiERHpTUOHFdCxe1/CNh17Whk6rCCl/seMGXPYKsutra3s2LGD0tLSlPpMJMgRwb3AJQmOTwPKoq/ZwJ0BxiIi0mtmzZxJ++rNCdu0r9rErJlVKfV/wQUX8Pbbb3P//fcD0NHRwZe//GWuueYajj766JT6TCSwQuDuvwf2JGgyHbjfI54FCszs2KDiERHpLTfNm0/7qk0caNwZ9/iBxp20r97MjXPnpdS/mfHggw+yfPlyysrKOOWUUxg4cCA/+MEPehJ219/n7oF0DGBmo4CH3X1snGMPAz9091XR7SeBr7n7YU+dMbPZREYNlJSUlC9btiywmNOtra2NIUOGZDqMwCnP7JHtOebn53PyySfT0dFBTk5Ol+0ee+wx/s8Xv0DupLHk/s1Ycgrz6NjTSvsfNtG+ehP3/fxuLrroojRG/leNjY3s2/fhU1fnnXdeg7tPiPsBdw/sBYwCNnVx7L+ByTHbTwLlR+qzvLzcs8mKFSsyHUJaKM/ske05btmyxd3dW1tbj9i2sbHR58yt9vziQj8q5yjPLy70OXOrvbGxMegwEzqUQyxgrXfxu5rJ1UebgeNjtkcCr2YoFhGRbistLeX2hTXcvrAm06H0SCYvH30I+Pvo1UPnAPvc/bUMxiMiEkqBjQjMbClQARSbWTPwz0B/AHe/C3gE+BTQCLwNXBtULCIi0rXACoG7Vx7huANzgvp+ERFJju4sFhFJUVNTE9XV8ygsHE5OTg6FhcOprp6nZahFRMKgrq6O8vKJrFv7F66Y/gNuvOEBrpj+A9at/Qvl5RN7vAz197//fcaMGcPpp5/O+PHjee6553op8sPpmcUiIt3U1NREZWUVn774m4w4bvQH+4cVHMukcz7PqBMmUllZRUPDmpSWhHjmmWd4+OGHWbduHQMGDGDXrl2HPYvgSPc5dIdGBCIi3bRgQQ1jTp36oSIQa8Rxoxkz+kIWLrwtpf5fe+01iouLGTBgAADFxcUcd9xxjBo1iu985ztMnjyZ5cuXpxx/ZyoEIiLdVFu7hNNGX5iwzWmnTqW2dklK/V900UXs2LGDU045hS996UusXLnyg2MDBw5k1apVzJgxI6W+41EhEBHppn379pCfd0zCNnlDh9PSkmi5ta4NGTKEhoYGFi1axPDhw7n66qu59957Abj66qtT6jMRzRGIiHRTfn4h+1rfYFhB1+tktu5/k4KCwpS/Iycnh4qKCioqKvjEJz7BfffdB8DgwYNT7rMrGhGIiHRTVdVMtrzwRMI2W7Y+TlXVzJT6f/HFF9m+ffsH2+vXr+fEE09Mqa9kaEQgItJN8+fPpbx8IqNOmBh3wnjnqy+w+YUnuL92TUr9t7W1UV1dTUtLC/369ePkk09m0aJFPPzwwz0NPS4VAhGRbiotLWXp0loqK6sYM/pCTjt1KnlDh9O6/022bH2czS88wdKltSk/Tay8vJynn376sP0vv/xyDyOPT4VARCQF06ZNo6FhDQsX3kZt7c20tOyhoKCQqqqZ3F+b2v0DmaJCICKSotLSUmpqFlBTsyDTofSIJotFREJOhUBEJORUCEREQk6FQEQkRU1NTVTPnUNhcT45OUdRWJxP9dw5WoZaRCQM6urqOHPiOJ7Z8Usu/tZgvnDfSC7+1mCe2fFLzpw4rkfLUOfk5DB+/HjGjh3LpZdeSktLS+8FHocKgYhINzU1NTGj6irOmzeE8s8NJq+kP0flGHkl/Sn/3GDOmzeEGVVXpTwyGDRoEOvXr2fTpk0UFhZyxx139HIGH6ZCICLSTQsW3kLZlIGUnDIg7vGSUwZQNmUAC2+7tcff9clPfpKdO3cCUFFRwdq1awHYtWsXo0aN6nH/oEIgItJttUsWUzYlN2GbsikDqK1d3KPv6ejo4Mknn+Syyy7rUT9HokIgItJN+/buZ0hx4vtxhxT1o2Xv/pT6f+eddxg/fjxFRUXs2bOHqVOnptRPslQIRES6KX/YUNp2HUzYpm33QQqGDU2p/0NzBK+88grt7e0fzBH069eP999/H4B33303pb7jUSEQEemmqpmz2L6yPWGb7SsPUFU1q0ffk5+fT01NDT/5yU947733GDVqFA0NDQD8+te/7lHfsVQIRES6af68m9i+8l1e33Yg7vHXtx1g+8oDzKu+scffdcYZZzBu3DiWLVvGV77yFe68807OPfdcdu3a1eO+D9GicyIi3VRaWsqy2uXMqLqKsinvUTZlAEOK+tG2+yDbV0aKwLLa5SmvQNrW1vah7d/97ncfvN+4ceMH77/3ve+llkAnGhGIiKRg2rRprFuzgXNPrOSx77/N3dfu5LHvv825J1aybs0Gpk2blukQk6YRgYhIikpLS6lZcDs1C27PdCg9ohGBiEgn7p7pEFKWSuyBFgIzu8TMXjSzRjP7epzj+Wb2OzPbYGabzezaIOMRETmSgQMHsnv37j5ZDNyd3bt3M3DgwG59LrBTQ2aWA9wBTAWagTVm9pC7b4lpNgfY4u6Xmtlw4EUzq3X3xNdliYgEZOTIkTQ3N9PS0tLtH9SPgoEDBzJy5MhufSbIOYKzgEZ3fwnAzJYB04HYQuDAUDMzYAiwB0h8l4aISID69+/PSSedRH19PWeccUamw0mLIAvBCGBHzHYzcHanNrcDDwGvAkOBq939/c4dmdlsYDZASUkJ9fX1QcSbEW1tbVmVT1eUZ/YIQ44Qnjwh2EJgcfZ1Pul2MbAeOB8oBR43sz+4e+uHPuS+CFgEMGHCBK+oqOj1YDOlvr6ebMqnK8oze4QhRwhPnhDsZHEzcHzM9kgif/nHuhZ4wCMagT8BowOMSUREOgmyEKwByszsJDPLBWYQOQ0U68/ABQBmVgJ8HHgpwJhERKSTwE4NuftBM7sBeBTIAe52981mdl30+F3Ad4F7zeyPRE4lfc3de28BDREROaJA7yx290eARzrtuyvm/avARUHGICIiienOYhGRkFMhEBEJORUCEZGQUyEQEQk5FQIRkZBTIRARCTkVAhGRkFMhEBEJORUCEZGQUyEQEQk5FQIRkZA74lpDZjYJ+BfgxGh7A9zdPxZsaCIikg7JLDr3n8CNQAPQEWw4IiKSbskUgn3uXhd4JCIikhHJFIIVZvZj4AHgwKGd7r4usKhERCRtkikEhx44PyFmnxN5zrCIiPRxRywE7n5eOgIREZHMOOLlo2aWb2a3mNna6OvfzSw/HcGJiEjwkrmP4G5gP/C56KsVuCfIoEREJH2SmSModfcrYrb/1czWBxSPiIikWTIjgnfMbPKhjegNZu8EF5KIiKRTMiOC64H7ovMCBuwBrgkyKBERSZ9krhpaD4wzs7zodmvQQYmISPp0WQjMbJa7LzazmzrtB8Ddbwk4NhERSYNEI4LB0X+HxjnmAcQiIiIZ0GUhcPefRd8+4e6rY49FJ4xFRCQLJHPV0G1J7hMRkT4o0RzBJ4FzgeGd5gnygJxkOjezS4CF0fY/d/cfxmlTASwA+gO73H1KkrGLiEgvSDRHkAsMibaJnSdoBa48UsdmlgPcAUwFmoE1ZvaQu2+JaVMA/BS4xN3/bGbHdDsDERHpkURzBCuBlWZ2r7u/kkLfZwGN7v4SgJktA6YDW2LazAQecPc/R7/zjRS+R0REeiDRqaEF7j4fuN3MDrtKyN0vO0LfI4AdMdvN/HVJ60NOAfqbWT2RUcdCd78/TiyzgdkAJSUl1NfXH+Gr+462trasyqcryjN7hCFHCE+ekPjU0C+i//4kxb4tzr7OBaUfUA5cAAwCnjGzZ91924c+5L4IWAQwYcIEr6ioSDGkj576+nqyKZ+uKM/sEYYcITx5QuJTQw3Rf1ce2mdmw4Dj3X1jEn03A8fHbI8EXo3TZpe7vwW8ZWa/B8YB2xARkbRI5nkE9WaWZ2aFwAbgHjNL5q7iNUCZmZ1kZrnADOChTm3+C/gbM+tnZkcTOXW0tXspiIhITyRzH0F+dH2hzwL3uHs5cOGRPuTuB4EbgEeJ/Lj/yt03m9l1ZnZdtM1W4H+AjcD/ErnEdFNqqYiISCqSWX20n5kdS+ShNDd3p3N3fwR4pNO+uzpt/xj4cXf6FRGR3pPMiOA7RP6qb3L3NWb2MWB7sGGJiEi6JLMM9XJgecz2S8AVXX9CRET6kmQmi0ea2YNm9oaZvW5mvzGzkekITkREgpfMqaF7iFztcxyRm8R+hx5eLyKSNZIpBMPd/R53Pxh93QsMDzguERFJk2QKwS4zm2VmOdHXLGB30IGJiEh6JFMIvkDk0tG/AK8RWXn0C0EGJSIi6ZOwEJjZ5USKwB3uPtzdj3H3y1NcjVQkKzU1NTFnbjX5xUWcf8H55BcXMWduNU1NTZkOrdeEIUeI5Fk9dw6Fxfmcf8H5FBbnUz13Ttbl2VmXhcDMfgrcCBQB3zWzf0pbVCJ9RF1dHeMmlrP05ecZ9NUrOfZnX2HQV69k6cvPM25iOXV1dZkOscfCkCNE8jxz4jie2fFLLv7WYP7hvpFc/K3BPLPjl5w5cVzW5BmPucd/Dr2ZbQLGuXtHdB2gP0SXl8ioCRMm+Nq1azMdRq8JywqH2ZhnU1MT4yaWM+j6Sxlw8ojDjh9o3Mk7d/6ODWsaKC0tzUCEPReGHCGS55kTx3HevCGUnDLgsOOvbzvAioVtrFuzoc/maWYN7j4h3rFEp4ba3b0DwN3fJv6y0iKhdcvCBeROHhv3BxJgwMkjyJ00hltrFqY5st4ThhwBFiy8hbIpA+MWAYCSUwZQNmUAC2+7Nc2RpUeiQjDazDZGX3+M2f6jmSWzDLVIVlu8ZAm5k8YkbJM7eSyLl9SmKaLeF4YcAWqXLKZsSm7CNmVTBlBbuzhNEaVXoiUmTk1bFCJ90P69LQwpyk/YJqcwj/17W9ITUADCkCPAvr37GVKcOM8hRf1o2bs/TRGlV6IH0+jKIJEEhg4roGP3PvodM6zLNh17Whk6rCB9QfWyMOQIkD9sKG27DpJX0r/LNm27D1IwbGgao0qfZO4jEJE4Zs2cSfvqzQnbtK/axKyZVWmKqPeFIUeAqpmz2L6yPWGb7SsPUFU1K00RpZcKgUiKbpo3n/ZVmzjQuDPu8QONO2lfvZkb585Lc2S9Jww5AsyfdxPbV77L69sOxD3++rYDbF95gHnVN6Y5svRI5sE0mNkg4AR3fzHgeET6jNLSUpbXLuWqqko6Jo0hd/JYcgrz6NjTSvuqTbSv3szy2qV99nJDCEeOEMlzWe1yZlRdRdmU9yibMoAhRf1o232Q7SsjRWBZ7fI+n2eX3D3hC7gUeBH4U3R7PPDQkT4X1Ku8vNyzyYoVKzIdQlpkc56NjY0+Z2615xcXuh11lOcXF/qcudXe2NiY6dB6TRhydI/kWT1vjhcW5/tRR5kXFud79bw5WZEnsNa7+F3t8oayQ8ysATgfqHf3M6L7Nrr76cGVp67phrK+SXlmjzDkCNmXZ6o3lB1y0N339XJMIiLyEZHMHMEmM5sJ5JhZGTAXeDrYsEREJF2SGRFUA2OAA8ASYB8wP8CYREQkjZIZEXzc3W8Gbg46GBERSb9kRgS3mNkLZvZdM0u86IiIiPQ5RywE7n4eUAG8CSyKLjr3raADExGR9EjqzmJ3/4u71wDXAeuBbwcZlIiIpM8RC4GZnWpm/xJ9UM3tRK4YGhl4ZCIikhbJjAjuAfYCF7n7FHe/093fSKZzM7vEzF40s0Yz+3qCdhPNrMPMrkwybhER6SVHvGrI3c9JpWMzywHuAKYCzcAaM3vI3bfEafcj4NFUvkdERHqmy0JgZr9y989Fn04Wuw6FAZ7EEhNnAY3u/lK0v2XAdGBLp3bVwG+Aid0NXkREei7RiODQurJ/l2LfI4AdMdvNwNmxDcxsBPAZImsZdVkIzGw2MBugpKSE+vr6FEP66Glra8uqfLqiPLNHGHKE8OQJiZ9Q9lr07Zfc/Wuxx8zsR8DXDv/Uh8R72H3nFe4WAF9z9w6zeM0/iGURsAgii85l00JQ2bawVVeUZ/YIQ44QnjwhucniqXH2TUvic83A8THbI4FXO7WZACwzs5eBK4GfmtnlSfQtIiK9JNEcwfXAl4CPmdnGmENDgdVJ9L0GKDOzk4CdwAxgZmwDdz8p5vvuBR52998mG7yIiPRcojmCJUAd8G9A7KWf+919z5E6dveDZnYDkauBcoC73X2zmV0XPX5X6mGLiEhvSTRHsI/ISqOVAGZ2DDAQGGJmQ9z9z0fq3N0fAR7ptC9uAXD3a5IPW0REeksydxZfambbgT8BK4GXiYwUREQkCyQzWfw94BxgW/Sc/gUkN0cgIiJ9QDKF4D133w0cZWZHufsKIg+wFxGRLJDMg2lazGwI8Hug1szeAA4GG5aIiKRLMiOC6cA7wI3A/wBNwKVBBiUiIumTzKJzb8Vs3hdgLCIikgGJbijbT5zF5vjronN5AccmIiJpkOg+gqHpDERERDIjqUdVmtlkM7s2+r44umyEiIhkgWRuKPtnIiuNfiO6KxdYHGRQIiKSPsmMCD4DXAa8BeDurxJZeE5ERLJAMoWg3d2d6MSxmQ0ONiQREUmnZArBr8zsZ0CBmf0j8ATwH8GGJSIi6ZLwPgKLPDbsl8BooBX4OPBtd388DbGJiEgaJCwE7u5m9lt3Lwf04y8ikoWSOTX0rJl1+WB5ERHp25JZdO484P+a2StErhw6dGfx6YFGJiIiaZFMIUjmQfUiItJHJbPo3CvpCERERDIjqSUmREQke6kQiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKgYhIyKkQiIiEXKCFwMwuMbMXzazRzL4e53iVmW2Mvp42s3FBxiMiIocLrBCYWQ5wB5ElKk4DKs3stE7N/gRMia5b9F1gUVDxiIhIfEGOCM4CGt39JXdvB5YB02MbuPvT7r43uvksMDLAeEREJI5kFp1L1QhgR8x2M3B2gvb/ANTFO2Bms4HZACUlJdTX1/dSiJnX1taWVfl0RXlmjzDkCOHJE4ItBBZnn8dtaHYekUIwOd5xd19E9LTRhAkTvKKiopdCzLz6+nqyKZ+uKM/sEYYcITx5QrCFoBk4PmZ7JPBq50Zmdjrwc2Cau+8OMB4REYkjyDmCNUCZmZ1kZrnADOCh2AZmdgLwAPB5d98WYCwiItKFwEYE7n7QzG4AHgVygLvdfbOZXRc9fhfwbaAI+KmZARx09wlBxSQiIocL8tQQ7v4I8EinfXfFvP8i8MUgYxARkcR0Z7GISMipEIiIhJwKgYhIyKkQiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKgYhIyKkQiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKgYhIyKkQiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKgYhIyKkQiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKQQY0NTUxZ241+cVFnH/B+eQXFzFnbjVNTU2ZDq1XNTU1UV09j8LC4Zx//gUUFg6nunpe1uUp0tf1y3QAYVNXV8dVVZXkTh7LoK9eyZCifDp272Pp6ue5b2I5y2uXMm3atEyH2WN1dXVUVlYx5tSpXDH9B+TnHcO+1jdYt/YJyssnsnRpbVbkKZINAi0EZnYJsBDIAX7u7j/sdNyixz8FvA1c4+7rgowpk5qamriqqpJB11/KgJNHfLC/3zHD6PeZyeR84iSuqqpkw5oGSktLMxhpzzQ1NVFZWcWnL/4mI44b/cH+YQXHMumczzPqhIlUVlbR0LCmT+cpki0COzVkZjnAHcA04DSg0sxO69RsGlAWfc0G7gwqno+CWxYuIHfy2A8VgVgDTh5B7qQx3FqzMM2R9a4FC2oYc+rUDxWBWCOOG82Y0ReycOFtaY5MROIJco7gLKDR3V9y93ZgGTC9U5vpwP0e8SxQYGbHBhhTRi1esoTcSWMStsmdPJbFS2rTFFEwamuXcNroCxO2Oe3UqdTWLklTRCKSSJCnhkYAO2K2m4Gzk2gzAngttpGZzSYyYqCkpIT6+vrejjUt9u/dy5Ci/IRtcgrzaN3T0mdzBGhp2UN+3jEJ2+QNHU5Ly+4+nWc8bW1tWZdTZ2HIEcKTJwRbCCzOPk+hDe6+CFgEMGHCBK+oqOhxcJkwdNgwOnbvo98xw7ps07GnlbzCAvpqjgAFBYXsa32DYQVdD+5a979JQUFRn84znvr6+qzLqbMw5AjhyROCPTXUDBwfsz0SeDWFNllj1syZtK/enLBN+6pNzJpZlaaIglFVNZMtLzyRsM2WrY9TVTUzTRGJSCJBFoI1QJmZnWRmucAM4KFObR4C/t4izgH2uftrnTvKFjfNm0/7qk0caNwZ9/iBxp20r97MjXPnpTmy3jV//lw2b32cna++EPf4zldfYPMLTzBvXnWaIxOReAI7NeTuB83sBuBRIpeP3u3um83suujxu4BHiFw62kjk8tFrg4rno6C0tJTltUu5qqqSjkljyJ08lpzCPDr2tNK+ahPtqzezvHZpn7+ksrS0lKVLayP3EYy+kNNOnUre0OG07n+TLVsfZ/MLT7B0aW2fz1MkWwR6H4G7P0Lkxz52310x7x2YE2QMHzXTpk1jw5oGbq1ZyOKf1NK6p4W8wgJmzazixgX3Z82P47Rp02hoWMPChbdRW3szLS27KSgooqpqJvfX6v4BkY8S3VmcAaWlpdy+sIbbF9Zk9YRUaWkpNTULqKlZkNV5ivR1WmtIRCTkVAhEREJOhUBEJORUCEREQk6FQEQk5FQIRERCToVARCTkVAhEREJOhUBEJORUCEREQk6FQEQk5Cyy7lvfYWZvAq9kOo5eVAzsynQQaaA8s0cYcoTsy/NEdx8e70CfKwTZxszWuvuETMcRNOWZPcKQI4QnT9CpIRGR0FMhEBEJORWCzFuU6QDSRHlmjzDkCOHJU3MEIiJhpxGBiEjIqRCIiIScCkGGmNndZvaGmW3KdCxBMbPjzWyFmW01s81mNi/TMQXBzAaa2f+a2YZonv+a6ZiCZGY5Zva8mT2c6ViCYmYvm9kfzWy9ma3NdDxB0xxBhpjZ3wJtwP3uPjbT8QTBzI4FjnX3dWY2FGgALnf3LRkOrVeZmQGD3b3NzPoDq4B57v5shkMLhJndBEwA8tz97zIdTxDM7GVggrtn0w1lXdKIIEPc/ffAnkzHESR3f83d10Xf7we2AiMyG1Xv84i26Gb/6Csr/8Iys5HAp4GfZzoW6T0qBJIWZjYKOAN4LsOhBCJ6umQ98AbwuLtnZZ7AAuD/Ae9nOI6gOfCYmTWY2exMBxM0FQIJnJkNAX4DzHf31kzHEwR373D38cBI4Cwzy7rTfWb2d8Ab7t6Q6VjSYJK7nwlMA+ZET+VmLRUCCVT0nPlvgFp3fyDT8QTN3VuAeuCSzEYSiEnAZdHz58uA881scWZDCoa7vxr99w3gQeCszEYULBUCCUx0EvU/ga3ufkum4wmKmQ03s4Lo+0HAhcALGQ0qAO7+DXcf6e6jgBnAU+4+K8Nh9TozGxy9uAEzGwxcBGTt1X2gQpAxZrYUeAb4uJk1m9k/ZDqmAEwCPk/kL8f10denMh1UAI4FVpjZRmANkTmCrL20MgRKgFVmtgH4X+C/3f1/MhxToHT5qIhIyGlEICIScioEIiIhp0IgIhJyKgQiIiGnQiAiEnIqBBJ6ZvZvZlZhZpeb2deP0HZD9NLf2H3zzezoYKMUCY4KgQicTWQNpCnAH7pqZGanEvl/5m+jNxodMh9QIZA+S4VAQsvMfhy9CWwikZv7vgjcaWbf7uIjM4FfAI8Bl0X7mAscR+SGshXRfZXRtew3mdmPYr6vzcx+FF3I7AkzO8vM6s3sJTM71N+Y6LMN1pvZRjMrCyp/kUN0Q5mEmpmdReTu55uAeneflKDtNmAq8HHgBnc/9OP9MtG1683sOOBZoBzYS6Ro1Lj7b83MgU+5e52ZPQgMJrKk82nAfe4+3sxuA55191ozywVy3P2dYLIXidCIQMLuDGA9MBro8oE5ZjYReNPdXwGeBM40s2Fxmk4kUlDedPeDQC1waOXKduDQUgV/BFa6+3vR96Oi+58BvmlmXwNOVBGQdOiX6QBEMsHMxgP3Elk2eheRc/wWfabAJ+P8AFcCo6N//QPkAVdw+ANaLMHXvud/HYK/DxwAcPf3zaxf9P0SM3uOyEjhUTP7ors/1e0ERbpBIwIJJXdfH31+wDYip2aeAi529/Gdi4CZHQVcBZzu7qOiq29OJ1IcAPYDQ6PvnwOmmFmxmeVE26xMNi4z+xjwkrvXAA8Bp6eYokjSVAgktMxsOLDX3d8HRid4lvLfAjvdfWfMvt8Dp0Wfy7wIqDOzFe7+GvANYAWwAVjn7v/VjbCuBjZFRyajgfu7lZRICjRZLCISchoRiIiEnAqBiEjIqRCIiIScCoGISMipEIiIhJwKgYhIyKkQiIiE3P8HiftjbZGDczQAAAAASUVORK5CYII=",
      "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",
       "<svg height=\"277.314375pt\" version=\"1.1\" viewBox=\"0 0 385.78125 277.314375\" width=\"385.78125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-07-15T17:36:56.061622</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.4.1, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 277.314375 \n",
       "L 385.78125 277.314375 \n",
       "L 385.78125 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 43.78125 239.758125 \n",
       "L 378.58125 239.758125 \n",
       "L 378.58125 22.318125 \n",
       "L 43.78125 22.318125 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 95.732974 239.758125 \n",
       "L 95.732974 22.318125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_2\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"ma8adef649a\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"95.732974\" xlink:href=\"#ma8adef649a\" y=\"239.758125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 1 -->\n",
       "      <g transform=\"translate(92.551724 254.356562)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 794 531 \n",
       "L 1825 531 \n",
       "L 1825 4091 \n",
       "L 703 3866 \n",
       "L 703 4441 \n",
       "L 1819 4666 \n",
       "L 2450 4666 \n",
       "L 2450 531 \n",
       "L 3481 531 \n",
       "L 3481 0 \n",
       "L 794 0 \n",
       "L 794 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-31\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 153.457112 239.758125 \n",
       "L 153.457112 22.318125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"153.457112\" xlink:href=\"#ma8adef649a\" y=\"239.758125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 2 -->\n",
       "      <g transform=\"translate(150.275862 254.356562)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 1228 531 \n",
       "L 3431 531 \n",
       "L 3431 0 \n",
       "L 469 0 \n",
       "L 469 531 \n",
       "Q 828 903 1448 1529 \n",
       "Q 2069 2156 2228 2338 \n",
       "Q 2531 2678 2651 2914 \n",
       "Q 2772 3150 2772 3378 \n",
       "Q 2772 3750 2511 3984 \n",
       "Q 2250 4219 1831 4219 \n",
       "Q 1534 4219 1204 4116 \n",
       "Q 875 4013 500 3803 \n",
       "L 500 4441 \n",
       "Q 881 4594 1212 4672 \n",
       "Q 1544 4750 1819 4750 \n",
       "Q 2544 4750 2975 4387 \n",
       "Q 3406 4025 3406 3419 \n",
       "Q 3406 3131 3298 2873 \n",
       "Q 3191 2616 2906 2266 \n",
       "Q 2828 2175 2409 1742 \n",
       "Q 1991 1309 1228 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-32\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 211.18125 239.758125 \n",
       "L 211.18125 22.318125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"211.18125\" xlink:href=\"#ma8adef649a\" y=\"239.758125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 3 -->\n",
       "      <g transform=\"translate(208 254.356562)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2597 2516 \n",
       "Q 3050 2419 3304 2112 \n",
       "Q 3559 1806 3559 1356 \n",
       "Q 3559 666 3084 287 \n",
       "Q 2609 -91 1734 -91 \n",
       "Q 1441 -91 1130 -33 \n",
       "Q 819 25 488 141 \n",
       "L 488 750 \n",
       "Q 750 597 1062 519 \n",
       "Q 1375 441 1716 441 \n",
       "Q 2309 441 2620 675 \n",
       "Q 2931 909 2931 1356 \n",
       "Q 2931 1769 2642 2001 \n",
       "Q 2353 2234 1838 2234 \n",
       "L 1294 2234 \n",
       "L 1294 2753 \n",
       "L 1863 2753 \n",
       "Q 2328 2753 2575 2939 \n",
       "Q 2822 3125 2822 3475 \n",
       "Q 2822 3834 2567 4026 \n",
       "Q 2313 4219 1838 4219 \n",
       "Q 1578 4219 1281 4162 \n",
       "Q 984 4106 628 3988 \n",
       "L 628 4550 \n",
       "Q 988 4650 1302 4700 \n",
       "Q 1616 4750 1894 4750 \n",
       "Q 2613 4750 3031 4423 \n",
       "Q 3450 4097 3450 3541 \n",
       "Q 3450 3153 3228 2886 \n",
       "Q 3006 2619 2597 2516 \n",
       "z\n",
       "\" id=\"DejaVuSans-33\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-33\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 268.905388 239.758125 \n",
       "L 268.905388 22.318125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"268.905388\" xlink:href=\"#ma8adef649a\" y=\"239.758125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 4 -->\n",
       "      <g transform=\"translate(265.724138 254.356562)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2419 4116 \n",
       "L 825 1625 \n",
       "L 2419 1625 \n",
       "L 2419 4116 \n",
       "z\n",
       "M 2253 4666 \n",
       "L 3047 4666 \n",
       "L 3047 1625 \n",
       "L 3713 1625 \n",
       "L 3713 1100 \n",
       "L 3047 1100 \n",
       "L 3047 0 \n",
       "L 2419 0 \n",
       "L 2419 1100 \n",
       "L 313 1100 \n",
       "L 313 1709 \n",
       "L 2253 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-34\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-34\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 326.629526 239.758125 \n",
       "L 326.629526 22.318125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_10\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"326.629526\" xlink:href=\"#ma8adef649a\" y=\"239.758125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 5 -->\n",
       "      <g transform=\"translate(323.448276 254.356562)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 691 4666 \n",
       "L 3169 4666 \n",
       "L 3169 4134 \n",
       "L 1269 4134 \n",
       "L 1269 2991 \n",
       "Q 1406 3038 1543 3061 \n",
       "Q 1681 3084 1819 3084 \n",
       "Q 2600 3084 3056 2656 \n",
       "Q 3513 2228 3513 1497 \n",
       "Q 3513 744 3044 326 \n",
       "Q 2575 -91 1722 -91 \n",
       "Q 1428 -91 1123 -41 \n",
       "Q 819 9 494 109 \n",
       "L 494 744 \n",
       "Q 775 591 1075 516 \n",
       "Q 1375 441 1709 441 \n",
       "Q 2250 441 2565 725 \n",
       "Q 2881 1009 2881 1497 \n",
       "Q 2881 1984 2565 2268 \n",
       "Q 2250 2553 1709 2553 \n",
       "Q 1456 2553 1204 2497 \n",
       "Q 953 2441 691 2322 \n",
       "L 691 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-35\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-35\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_6\">\n",
       "     <!-- # Atoms -->\n",
       "     <g transform=\"translate(189.575 268.034687)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 3272 2816 \n",
       "L 2363 2816 \n",
       "L 2100 1772 \n",
       "L 3016 1772 \n",
       "L 3272 2816 \n",
       "z\n",
       "M 2803 4594 \n",
       "L 2478 3297 \n",
       "L 3391 3297 \n",
       "L 3719 4594 \n",
       "L 4219 4594 \n",
       "L 3897 3297 \n",
       "L 4872 3297 \n",
       "L 4872 2816 \n",
       "L 3775 2816 \n",
       "L 3519 1772 \n",
       "L 4513 1772 \n",
       "L 4513 1294 \n",
       "L 3397 1294 \n",
       "L 3072 0 \n",
       "L 2572 0 \n",
       "L 2894 1294 \n",
       "L 1978 1294 \n",
       "L 1656 0 \n",
       "L 1153 0 \n",
       "L 1478 1294 \n",
       "L 494 1294 \n",
       "L 494 1772 \n",
       "L 1594 1772 \n",
       "L 1856 2816 \n",
       "L 850 2816 \n",
       "L 850 3297 \n",
       "L 1978 3297 \n",
       "L 2297 4594 \n",
       "L 2803 4594 \n",
       "z\n",
       "\" id=\"DejaVuSans-23\" transform=\"scale(0.015625)\"/>\n",
       "       <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2188 4044 \n",
       "L 1331 1722 \n",
       "L 3047 1722 \n",
       "L 2188 4044 \n",
       "z\n",
       "M 1831 4666 \n",
       "L 2547 4666 \n",
       "L 4325 0 \n",
       "L 3669 0 \n",
       "L 3244 1197 \n",
       "L 1141 1197 \n",
       "L 716 0 \n",
       "L 50 0 \n",
       "L 1831 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-41\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1172 4494 \n",
       "L 1172 3500 \n",
       "L 2356 3500 \n",
       "L 2356 3053 \n",
       "L 1172 3053 \n",
       "L 1172 1153 \n",
       "Q 1172 725 1289 603 \n",
       "Q 1406 481 1766 481 \n",
       "L 2356 481 \n",
       "L 2356 0 \n",
       "L 1766 0 \n",
       "Q 1100 0 847 248 \n",
       "Q 594 497 594 1153 \n",
       "L 594 3053 \n",
       "L 172 3053 \n",
       "L 172 3500 \n",
       "L 594 3500 \n",
       "L 594 4494 \n",
       "L 1172 4494 \n",
       "z\n",
       "\" id=\"DejaVuSans-74\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1959 3097 \n",
       "Q 1497 3097 1228 2736 \n",
       "Q 959 2375 959 1747 \n",
       "Q 959 1119 1226 758 \n",
       "Q 1494 397 1959 397 \n",
       "Q 2419 397 2687 759 \n",
       "Q 2956 1122 2956 1747 \n",
       "Q 2956 2369 2687 2733 \n",
       "Q 2419 3097 1959 3097 \n",
       "z\n",
       "M 1959 3584 \n",
       "Q 2709 3584 3137 3096 \n",
       "Q 3566 2609 3566 1747 \n",
       "Q 3566 888 3137 398 \n",
       "Q 2709 -91 1959 -91 \n",
       "Q 1206 -91 779 398 \n",
       "Q 353 888 353 1747 \n",
       "Q 353 2609 779 3096 \n",
       "Q 1206 3584 1959 3584 \n",
       "z\n",
       "\" id=\"DejaVuSans-6f\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3328 2828 \n",
       "Q 3544 3216 3844 3400 \n",
       "Q 4144 3584 4550 3584 \n",
       "Q 5097 3584 5394 3201 \n",
       "Q 5691 2819 5691 2113 \n",
       "L 5691 0 \n",
       "L 5113 0 \n",
       "L 5113 2094 \n",
       "Q 5113 2597 4934 2840 \n",
       "Q 4756 3084 4391 3084 \n",
       "Q 3944 3084 3684 2787 \n",
       "Q 3425 2491 3425 1978 \n",
       "L 3425 0 \n",
       "L 2847 0 \n",
       "L 2847 2094 \n",
       "Q 2847 2600 2669 2842 \n",
       "Q 2491 3084 2119 3084 \n",
       "Q 1678 3084 1418 2786 \n",
       "Q 1159 2488 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1356 3278 1631 3431 \n",
       "Q 1906 3584 2284 3584 \n",
       "Q 2666 3584 2933 3390 \n",
       "Q 3200 3197 3328 2828 \n",
       "z\n",
       "\" id=\"DejaVuSans-6d\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2834 3397 \n",
       "L 2834 2853 \n",
       "Q 2591 2978 2328 3040 \n",
       "Q 2066 3103 1784 3103 \n",
       "Q 1356 3103 1142 2972 \n",
       "Q 928 2841 928 2578 \n",
       "Q 928 2378 1081 2264 \n",
       "Q 1234 2150 1697 2047 \n",
       "L 1894 2003 \n",
       "Q 2506 1872 2764 1633 \n",
       "Q 3022 1394 3022 966 \n",
       "Q 3022 478 2636 193 \n",
       "Q 2250 -91 1575 -91 \n",
       "Q 1294 -91 989 -36 \n",
       "Q 684 19 347 128 \n",
       "L 347 722 \n",
       "Q 666 556 975 473 \n",
       "Q 1284 391 1588 391 \n",
       "Q 1994 391 2212 530 \n",
       "Q 2431 669 2431 922 \n",
       "Q 2431 1156 2273 1281 \n",
       "Q 2116 1406 1581 1522 \n",
       "L 1381 1569 \n",
       "Q 847 1681 609 1914 \n",
       "Q 372 2147 372 2553 \n",
       "Q 372 3047 722 3315 \n",
       "Q 1072 3584 1716 3584 \n",
       "Q 2034 3584 2315 3537 \n",
       "Q 2597 3491 2834 3397 \n",
       "z\n",
       "\" id=\"DejaVuSans-73\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-23\"/>\n",
       "      <use x=\"83.789062\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "      <use x=\"115.576172\" xlink:href=\"#DejaVuSans-41\"/>\n",
       "      <use x=\"182.234375\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"221.443359\" xlink:href=\"#DejaVuSans-6f\"/>\n",
       "      <use x=\"282.625\" xlink:href=\"#DejaVuSans-6d\"/>\n",
       "      <use x=\"380.037109\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 221.638125 \n",
       "L 378.58125 221.638125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_12\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"mc3ad6d5d4d\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"221.638125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(20.878125 225.437344)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2034 4250 \n",
       "Q 1547 4250 1301 3770 \n",
       "Q 1056 3291 1056 2328 \n",
       "Q 1056 1369 1301 889 \n",
       "Q 1547 409 2034 409 \n",
       "Q 2525 409 2770 889 \n",
       "Q 3016 1369 3016 2328 \n",
       "Q 3016 3291 2770 3770 \n",
       "Q 2525 4250 2034 4250 \n",
       "z\n",
       "M 2034 4750 \n",
       "Q 2819 4750 3233 4129 \n",
       "Q 3647 3509 3647 2328 \n",
       "Q 3647 1150 3233 529 \n",
       "Q 2819 -91 2034 -91 \n",
       "Q 1250 -91 836 529 \n",
       "Q 422 1150 422 2328 \n",
       "Q 422 3509 836 4129 \n",
       "Q 1250 4750 2034 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-30\" transform=\"scale(0.015625)\"/>\n",
       "        <path d=\"M 684 794 \n",
       "L 1344 794 \n",
       "L 1344 0 \n",
       "L 684 0 \n",
       "L 684 794 \n",
       "z\n",
       "\" id=\"DejaVuSans-2e\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 185.398125 \n",
       "L 378.58125 185.398125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"185.398125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 0.2 -->\n",
       "      <g transform=\"translate(20.878125 189.197344)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-32\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 149.158125 \n",
       "L 378.58125 149.158125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_16\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"149.158125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 0.4 -->\n",
       "      <g transform=\"translate(20.878125 152.957344)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-34\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_17\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 112.918125 \n",
       "L 378.58125 112.918125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_18\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"112.918125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_10\">\n",
       "      <!-- 0.6 -->\n",
       "      <g transform=\"translate(20.878125 116.717344)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2113 2584 \n",
       "Q 1688 2584 1439 2293 \n",
       "Q 1191 2003 1191 1497 \n",
       "Q 1191 994 1439 701 \n",
       "Q 1688 409 2113 409 \n",
       "Q 2538 409 2786 701 \n",
       "Q 3034 994 3034 1497 \n",
       "Q 3034 2003 2786 2293 \n",
       "Q 2538 2584 2113 2584 \n",
       "z\n",
       "M 3366 4563 \n",
       "L 3366 3988 \n",
       "Q 3128 4100 2886 4159 \n",
       "Q 2644 4219 2406 4219 \n",
       "Q 1781 4219 1451 3797 \n",
       "Q 1122 3375 1075 2522 \n",
       "Q 1259 2794 1537 2939 \n",
       "Q 1816 3084 2150 3084 \n",
       "Q 2853 3084 3261 2657 \n",
       "Q 3669 2231 3669 1497 \n",
       "Q 3669 778 3244 343 \n",
       "Q 2819 -91 2113 -91 \n",
       "Q 1303 -91 875 529 \n",
       "Q 447 1150 447 2328 \n",
       "Q 447 3434 972 4092 \n",
       "Q 1497 4750 2381 4750 \n",
       "Q 2619 4750 2861 4703 \n",
       "Q 3103 4656 3366 4563 \n",
       "z\n",
       "\" id=\"DejaVuSans-36\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-36\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_19\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 76.678125 \n",
       "L 378.58125 76.678125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_20\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"76.678125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 0.8 -->\n",
       "      <g transform=\"translate(20.878125 80.477344)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2034 2216 \n",
       "Q 1584 2216 1326 1975 \n",
       "Q 1069 1734 1069 1313 \n",
       "Q 1069 891 1326 650 \n",
       "Q 1584 409 2034 409 \n",
       "Q 2484 409 2743 651 \n",
       "Q 3003 894 3003 1313 \n",
       "Q 3003 1734 2745 1975 \n",
       "Q 2488 2216 2034 2216 \n",
       "z\n",
       "M 1403 2484 \n",
       "Q 997 2584 770 2862 \n",
       "Q 544 3141 544 3541 \n",
       "Q 544 4100 942 4425 \n",
       "Q 1341 4750 2034 4750 \n",
       "Q 2731 4750 3128 4425 \n",
       "Q 3525 4100 3525 3541 \n",
       "Q 3525 3141 3298 2862 \n",
       "Q 3072 2584 2669 2484 \n",
       "Q 3125 2378 3379 2068 \n",
       "Q 3634 1759 3634 1313 \n",
       "Q 3634 634 3220 271 \n",
       "Q 2806 -91 2034 -91 \n",
       "Q 1263 -91 848 271 \n",
       "Q 434 634 434 1313 \n",
       "Q 434 1759 690 2068 \n",
       "Q 947 2378 1403 2484 \n",
       "z\n",
       "M 1172 3481 \n",
       "Q 1172 3119 1398 2916 \n",
       "Q 1625 2713 2034 2713 \n",
       "Q 2441 2713 2670 2916 \n",
       "Q 2900 3119 2900 3481 \n",
       "Q 2900 3844 2670 4047 \n",
       "Q 2441 4250 2034 4250 \n",
       "Q 1625 4250 1398 4047 \n",
       "Q 1172 3844 1172 3481 \n",
       "z\n",
       "\" id=\"DejaVuSans-38\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-38\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_21\">\n",
       "      <path clip-path=\"url(#p972bebbf49)\" d=\"M 43.78125 40.438125 \n",
       "L 378.58125 40.438125 \n",
       "\" style=\"fill:none;stroke:#b0b0b0;stroke-linecap:square;stroke-width:0.8;\"/>\n",
       "     </g>\n",
       "     <g id=\"line2d_22\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#mc3ad6d5d4d\" y=\"40.438125\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(20.878125 44.237344)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_13\">\n",
       "     <!-- relative Position -->\n",
       "     <g transform=\"translate(14.798438 170.949062)rotate(-90)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 2631 2963 \n",
       "Q 2534 3019 2420 3045 \n",
       "Q 2306 3072 2169 3072 \n",
       "Q 1681 3072 1420 2755 \n",
       "Q 1159 2438 1159 1844 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1341 3275 1631 3429 \n",
       "Q 1922 3584 2338 3584 \n",
       "Q 2397 3584 2469 3576 \n",
       "Q 2541 3569 2628 3553 \n",
       "L 2631 2963 \n",
       "z\n",
       "\" id=\"DejaVuSans-72\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3597 1894 \n",
       "L 3597 1613 \n",
       "L 953 1613 \n",
       "Q 991 1019 1311 708 \n",
       "Q 1631 397 2203 397 \n",
       "Q 2534 397 2845 478 \n",
       "Q 3156 559 3463 722 \n",
       "L 3463 178 \n",
       "Q 3153 47 2828 -22 \n",
       "Q 2503 -91 2169 -91 \n",
       "Q 1331 -91 842 396 \n",
       "Q 353 884 353 1716 \n",
       "Q 353 2575 817 3079 \n",
       "Q 1281 3584 2069 3584 \n",
       "Q 2775 3584 3186 3129 \n",
       "Q 3597 2675 3597 1894 \n",
       "z\n",
       "M 3022 2063 \n",
       "Q 3016 2534 2758 2815 \n",
       "Q 2500 3097 2075 3097 \n",
       "Q 1594 3097 1305 2825 \n",
       "Q 1016 2553 972 2059 \n",
       "L 3022 2063 \n",
       "z\n",
       "\" id=\"DejaVuSans-65\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 603 4863 \n",
       "L 1178 4863 \n",
       "L 1178 0 \n",
       "L 603 0 \n",
       "L 603 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-6c\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2194 1759 \n",
       "Q 1497 1759 1228 1600 \n",
       "Q 959 1441 959 1056 \n",
       "Q 959 750 1161 570 \n",
       "Q 1363 391 1709 391 \n",
       "Q 2188 391 2477 730 \n",
       "Q 2766 1069 2766 1631 \n",
       "L 2766 1759 \n",
       "L 2194 1759 \n",
       "z\n",
       "M 3341 1997 \n",
       "L 3341 0 \n",
       "L 2766 0 \n",
       "L 2766 531 \n",
       "Q 2569 213 2275 61 \n",
       "Q 1981 -91 1556 -91 \n",
       "Q 1019 -91 701 211 \n",
       "Q 384 513 384 1019 \n",
       "Q 384 1609 779 1909 \n",
       "Q 1175 2209 1959 2209 \n",
       "L 2766 2209 \n",
       "L 2766 2266 \n",
       "Q 2766 2663 2505 2880 \n",
       "Q 2244 3097 1772 3097 \n",
       "Q 1472 3097 1187 3025 \n",
       "Q 903 2953 641 2809 \n",
       "L 641 3341 \n",
       "Q 956 3463 1253 3523 \n",
       "Q 1550 3584 1831 3584 \n",
       "Q 2591 3584 2966 3190 \n",
       "Q 3341 2797 3341 1997 \n",
       "z\n",
       "\" id=\"DejaVuSans-61\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 603 3500 \n",
       "L 1178 3500 \n",
       "L 1178 0 \n",
       "L 603 0 \n",
       "L 603 3500 \n",
       "z\n",
       "M 603 4863 \n",
       "L 1178 4863 \n",
       "L 1178 4134 \n",
       "L 603 4134 \n",
       "L 603 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-69\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 191 3500 \n",
       "L 800 3500 \n",
       "L 1894 563 \n",
       "L 2988 3500 \n",
       "L 3597 3500 \n",
       "L 2284 0 \n",
       "L 1503 0 \n",
       "L 191 3500 \n",
       "z\n",
       "\" id=\"DejaVuSans-76\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1259 4147 \n",
       "L 1259 2394 \n",
       "L 2053 2394 \n",
       "Q 2494 2394 2734 2622 \n",
       "Q 2975 2850 2975 3272 \n",
       "Q 2975 3691 2734 3919 \n",
       "Q 2494 4147 2053 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "M 628 4666 \n",
       "L 2053 4666 \n",
       "Q 2838 4666 3239 4311 \n",
       "Q 3641 3956 3641 3272 \n",
       "Q 3641 2581 3239 2228 \n",
       "Q 2838 1875 2053 1875 \n",
       "L 1259 1875 \n",
       "L 1259 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3513 2113 \n",
       "L 3513 0 \n",
       "L 2938 0 \n",
       "L 2938 2094 \n",
       "Q 2938 2591 2744 2837 \n",
       "Q 2550 3084 2163 3084 \n",
       "Q 1697 3084 1428 2787 \n",
       "Q 1159 2491 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1366 3272 1645 3428 \n",
       "Q 1925 3584 2291 3584 \n",
       "Q 2894 3584 3203 3211 \n",
       "Q 3513 2838 3513 2113 \n",
       "z\n",
       "\" id=\"DejaVuSans-6e\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-72\"/>\n",
       "      <use x=\"38.863281\" xlink:href=\"#DejaVuSans-65\"/>\n",
       "      <use x=\"100.386719\" xlink:href=\"#DejaVuSans-6c\"/>\n",
       "      <use x=\"128.169922\" xlink:href=\"#DejaVuSans-61\"/>\n",
       "      <use x=\"189.449219\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"228.658203\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"256.441406\" xlink:href=\"#DejaVuSans-76\"/>\n",
       "      <use x=\"315.621094\" xlink:href=\"#DejaVuSans-65\"/>\n",
       "      <use x=\"377.144531\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "      <use x=\"408.931641\" xlink:href=\"#DejaVuSans-50\"/>\n",
       "      <use x=\"465.609375\" xlink:href=\"#DejaVuSans-6f\"/>\n",
       "      <use x=\"526.791016\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"578.890625\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"606.673828\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"645.882812\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"673.666016\" xlink:href=\"#DejaVuSans-6f\"/>\n",
       "      <use x=\"734.847656\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"line2d_23\">\n",
       "    <defs>\n",
       "     <path d=\"M 0 5 \n",
       "C 1.326016 5 2.597899 4.473168 3.535534 3.535534 \n",
       "C 4.473168 2.597899 5 1.326016 5 0 \n",
       "C 5 -1.326016 4.473168 -2.597899 3.535534 -3.535534 \n",
       "C 2.597899 -4.473168 1.326016 -5 0 -5 \n",
       "C -1.326016 -5 -2.597899 -4.473168 -3.535534 -3.535534 \n",
       "C -4.473168 -2.597899 -5 -1.326016 -5 0 \n",
       "C -5 1.326016 -4.473168 2.597899 -3.535534 3.535534 \n",
       "C -2.597899 4.473168 -1.326016 5 0 5 \n",
       "z\n",
       "\" id=\"m6fda9ecd38\" style=\"stroke:#000000;\"/>\n",
       "    </defs>\n",
       "    <g clip-path=\"url(#p972bebbf49)\">\n",
       "     <use style=\"fill:#1b9e77;stroke:#000000;\" x=\"95.732974\" xlink:href=\"#m6fda9ecd38\" y=\"221.638125\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"line2d_24\">\n",
       "    <defs>\n",
       "     <path d=\"M 0 5 \n",
       "C 1.326016 5 2.597899 4.473168 3.535534 3.535534 \n",
       "C 4.473168 2.597899 5 1.326016 5 0 \n",
       "C 5 -1.326016 4.473168 -2.597899 3.535534 -3.535534 \n",
       "C 2.597899 -4.473168 1.326016 -5 0 -5 \n",
       "C -1.326016 -5 -2.597899 -4.473168 -3.535534 -3.535534 \n",
       "C -4.473168 -2.597899 -5 -1.326016 -5 0 \n",
       "C -5 1.326016 -4.473168 2.597899 -3.535534 3.535534 \n",
       "C -2.597899 4.473168 -1.326016 5 0 5 \n",
       "z\n",
       "\" id=\"m43ecc64126\" style=\"stroke:#000000;\"/>\n",
       "    </defs>\n",
       "    <g clip-path=\"url(#p972bebbf49)\">\n",
       "     <use style=\"fill:#7570b3;stroke:#000000;\" x=\"153.457112\" xlink:href=\"#m43ecc64126\" y=\"221.638125\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"line2d_25\">\n",
       "    <g clip-path=\"url(#p972bebbf49)\">\n",
       "     <use style=\"fill:#1b9e77;stroke:#000000;\" x=\"211.18125\" xlink:href=\"#m6fda9ecd38\" y=\"131.038125\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"line2d_26\">\n",
       "    <g clip-path=\"url(#p972bebbf49)\">\n",
       "     <use style=\"fill:#1b9e77;stroke:#000000;\" x=\"268.905388\" xlink:href=\"#m6fda9ecd38\" y=\"131.038125\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"line2d_27\">\n",
       "    <defs>\n",
       "     <path d=\"M 0 5 \n",
       "C 1.326016 5 2.597899 4.473168 3.535534 3.535534 \n",
       "C 4.473168 2.597899 5 1.326016 5 0 \n",
       "C 5 -1.326016 4.473168 -2.597899 3.535534 -3.535534 \n",
       "C 2.597899 -4.473168 1.326016 -5 0 -5 \n",
       "C -1.326016 -5 -2.597899 -4.473168 -3.535534 -3.535534 \n",
       "C -4.473168 -2.597899 -5 -1.326016 -5 0 \n",
       "C -5 1.326016 -4.473168 2.597899 -3.535534 3.535534 \n",
       "C -2.597899 4.473168 -1.326016 5 0 5 \n",
       "z\n",
       "\" id=\"m7947e866a5\" style=\"stroke:#000000;\"/>\n",
       "    </defs>\n",
       "    <g clip-path=\"url(#p972bebbf49)\">\n",
       "     <use style=\"fill:#66a61e;stroke:#000000;\" x=\"326.629526\" xlink:href=\"#m7947e866a5\" y=\"131.038125\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path d=\"M 43.78125 239.758125 \n",
       "L 43.78125 22.318125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path d=\"M 378.58125 239.758125 \n",
       "L 378.58125 22.318125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path d=\"M 43.78125 239.758125 \n",
       "L 378.58125 239.758125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path d=\"M 43.78125 22.318125 \n",
       "L 378.58125 22.318125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"text_14\">\n",
       "    <!-- Strain: 0.00% -->\n",
       "    <g transform=\"translate(170.41875 16.318125)scale(0.12 -0.12)\">\n",
       "     <defs>\n",
       "      <path d=\"M 3425 4513 \n",
       "L 3425 3897 \n",
       "Q 3066 4069 2747 4153 \n",
       "Q 2428 4238 2131 4238 \n",
       "Q 1616 4238 1336 4038 \n",
       "Q 1056 3838 1056 3469 \n",
       "Q 1056 3159 1242 3001 \n",
       "Q 1428 2844 1947 2747 \n",
       "L 2328 2669 \n",
       "Q 3034 2534 3370 2195 \n",
       "Q 3706 1856 3706 1288 \n",
       "Q 3706 609 3251 259 \n",
       "Q 2797 -91 1919 -91 \n",
       "Q 1588 -91 1214 -16 \n",
       "Q 841 59 441 206 \n",
       "L 441 856 \n",
       "Q 825 641 1194 531 \n",
       "Q 1563 422 1919 422 \n",
       "Q 2459 422 2753 634 \n",
       "Q 3047 847 3047 1241 \n",
       "Q 3047 1584 2836 1778 \n",
       "Q 2625 1972 2144 2069 \n",
       "L 1759 2144 \n",
       "Q 1053 2284 737 2584 \n",
       "Q 422 2884 422 3419 \n",
       "Q 422 4038 858 4394 \n",
       "Q 1294 4750 2059 4750 \n",
       "Q 2388 4750 2728 4690 \n",
       "Q 3069 4631 3425 4513 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\" transform=\"scale(0.015625)\"/>\n",
       "      <path d=\"M 750 794 \n",
       "L 1409 794 \n",
       "L 1409 0 \n",
       "L 750 0 \n",
       "L 750 794 \n",
       "z\n",
       "M 750 3309 \n",
       "L 1409 3309 \n",
       "L 1409 2516 \n",
       "L 750 2516 \n",
       "L 750 3309 \n",
       "z\n",
       "\" id=\"DejaVuSans-3a\" transform=\"scale(0.015625)\"/>\n",
       "      <path d=\"M 4653 2053 \n",
       "Q 4381 2053 4226 1822 \n",
       "Q 4072 1591 4072 1178 \n",
       "Q 4072 772 4226 539 \n",
       "Q 4381 306 4653 306 \n",
       "Q 4919 306 5073 539 \n",
       "Q 5228 772 5228 1178 \n",
       "Q 5228 1588 5073 1820 \n",
       "Q 4919 2053 4653 2053 \n",
       "z\n",
       "M 4653 2450 \n",
       "Q 5147 2450 5437 2106 \n",
       "Q 5728 1763 5728 1178 \n",
       "Q 5728 594 5436 251 \n",
       "Q 5144 -91 4653 -91 \n",
       "Q 4153 -91 3862 251 \n",
       "Q 3572 594 3572 1178 \n",
       "Q 3572 1766 3864 2108 \n",
       "Q 4156 2450 4653 2450 \n",
       "z\n",
       "M 1428 4353 \n",
       "Q 1159 4353 1004 4120 \n",
       "Q 850 3888 850 3481 \n",
       "Q 850 3069 1003 2837 \n",
       "Q 1156 2606 1428 2606 \n",
       "Q 1700 2606 1854 2837 \n",
       "Q 2009 3069 2009 3481 \n",
       "Q 2009 3884 1853 4118 \n",
       "Q 1697 4353 1428 4353 \n",
       "z\n",
       "M 4250 4750 \n",
       "L 4750 4750 \n",
       "L 1831 -91 \n",
       "L 1331 -91 \n",
       "L 4250 4750 \n",
       "z\n",
       "M 1428 4750 \n",
       "Q 1922 4750 2215 4408 \n",
       "Q 2509 4066 2509 3481 \n",
       "Q 2509 2891 2217 2550 \n",
       "Q 1925 2209 1428 2209 \n",
       "Q 931 2209 642 2551 \n",
       "Q 353 2894 353 3481 \n",
       "Q 353 4063 643 4406 \n",
       "Q 934 4750 1428 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-25\" transform=\"scale(0.015625)\"/>\n",
       "     </defs>\n",
       "     <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "     <use x=\"63.476562\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "     <use x=\"102.685547\" xlink:href=\"#DejaVuSans-72\"/>\n",
       "     <use x=\"143.798828\" xlink:href=\"#DejaVuSans-61\"/>\n",
       "     <use x=\"205.078125\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "     <use x=\"232.861328\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "     <use x=\"296.240234\" xlink:href=\"#DejaVuSans-3a\"/>\n",
       "     <use x=\"329.931641\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "     <use x=\"361.71875\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "     <use x=\"425.341797\" xlink:href=\"#DejaVuSans-2e\"/>\n",
       "     <use x=\"457.128906\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "     <use x=\"520.751953\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "     <use x=\"584.375\" xlink:href=\"#DejaVuSans-25\"/>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"legend_1\">\n",
       "    <g id=\"patch_7\">\n",
       "     <path d=\"M 326.745313 74.3525 \n",
       "L 371.58125 74.3525 \n",
       "Q 373.58125 74.3525 373.58125 72.3525 \n",
       "L 373.58125 29.318125 \n",
       "Q 373.58125 27.318125 371.58125 27.318125 \n",
       "L 326.745313 27.318125 \n",
       "Q 324.745313 27.318125 324.745313 29.318125 \n",
       "L 324.745313 72.3525 \n",
       "Q 324.745313 74.3525 326.745313 74.3525 \n",
       "z\n",
       "\" style=\"fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_28\"/>\n",
       "    <g id=\"line2d_29\">\n",
       "     <g>\n",
       "      <use style=\"fill:#1b9e77;stroke:#000000;\" x=\"338.745313\" xlink:href=\"#m6fda9ecd38\" y=\"35.416562\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_15\">\n",
       "     <!-- O -->\n",
       "     <g transform=\"translate(356.745313 38.916562)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 2522 4238 \n",
       "Q 1834 4238 1429 3725 \n",
       "Q 1025 3213 1025 2328 \n",
       "Q 1025 1447 1429 934 \n",
       "Q 1834 422 2522 422 \n",
       "Q 3209 422 3611 934 \n",
       "Q 4013 1447 4013 2328 \n",
       "Q 4013 3213 3611 3725 \n",
       "Q 3209 4238 2522 4238 \n",
       "z\n",
       "M 2522 4750 \n",
       "Q 3503 4750 4090 4092 \n",
       "Q 4678 3434 4678 2328 \n",
       "Q 4678 1225 4090 567 \n",
       "Q 3503 -91 2522 -91 \n",
       "Q 1538 -91 948 565 \n",
       "Q 359 1222 359 2328 \n",
       "Q 359 3434 948 4092 \n",
       "Q 1538 4750 2522 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-4f\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-4f\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"line2d_30\"/>\n",
       "    <g id=\"line2d_31\">\n",
       "     <g>\n",
       "      <use style=\"fill:#7570b3;stroke:#000000;\" x=\"338.745313\" xlink:href=\"#m43ecc64126\" y=\"50.094687\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_16\">\n",
       "     <!-- Sr -->\n",
       "     <g transform=\"translate(356.745313 53.594687)scale(0.1 -0.1)\">\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-72\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"line2d_32\"/>\n",
       "    <g id=\"line2d_33\">\n",
       "     <g>\n",
       "      <use style=\"fill:#66a61e;stroke:#000000;\" x=\"338.745313\" xlink:href=\"#m7947e866a5\" y=\"64.772812\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_17\">\n",
       "     <!-- Ru -->\n",
       "     <g transform=\"translate(356.745313 68.272812)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 2841 2188 \n",
       "Q 3044 2119 3236 1894 \n",
       "Q 3428 1669 3622 1275 \n",
       "L 4263 0 \n",
       "L 3584 0 \n",
       "L 2988 1197 \n",
       "Q 2756 1666 2539 1819 \n",
       "Q 2322 1972 1947 1972 \n",
       "L 1259 1972 \n",
       "L 1259 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "L 2053 4666 \n",
       "Q 2853 4666 3247 4331 \n",
       "Q 3641 3997 3641 3322 \n",
       "Q 3641 2881 3436 2590 \n",
       "Q 3231 2300 2841 2188 \n",
       "z\n",
       "M 1259 4147 \n",
       "L 1259 2491 \n",
       "L 2053 2491 \n",
       "Q 2509 2491 2742 2702 \n",
       "Q 2975 2913 2975 3322 \n",
       "Q 2975 3731 2742 3939 \n",
       "Q 2509 4147 2053 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 544 1381 \n",
       "L 544 3500 \n",
       "L 1119 3500 \n",
       "L 1119 1403 \n",
       "Q 1119 906 1312 657 \n",
       "Q 1506 409 1894 409 \n",
       "Q 2359 409 2629 706 \n",
       "Q 2900 1003 2900 1516 \n",
       "L 2900 3500 \n",
       "L 3475 3500 \n",
       "L 3475 0 \n",
       "L 2900 0 \n",
       "L 2900 538 \n",
       "Q 2691 219 2414 64 \n",
       "Q 2138 -91 1772 -91 \n",
       "Q 1169 -91 856 284 \n",
       "Q 544 659 544 1381 \n",
       "z\n",
       "M 1991 3584 \n",
       "L 1991 3584 \n",
       "z\n",
       "\" id=\"DejaVuSans-75\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "      <use x=\"64.982422\" xlink:href=\"#DejaVuSans-75\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"p972bebbf49\">\n",
       "   <rect height=\"217.44\" width=\"334.8\" x=\"43.78125\" y=\"22.318125\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "SRO.visualize()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Structure\n",
    "\n",
    "The `AmorphousLayer` and `UnitCell` can now be added to an actual structure:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Structure properties:\n",
      "\n",
      "Name   : Single Layer\n",
      "Thickness : 429.99 nanometer\n",
      "Roughness : 0.00 nanometer\n",
      "----\n",
      "100 times Strontium Ruthenate: 39.49 nanometer\n",
      "1000 times Strontium Titanate Substrate: 390.50 nanometer\n",
      "----\n",
      "no substrate\n",
      "\n"
     ]
    },
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAABG0AAAB/CAYAAABVPz9EAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Z1A+gAAAACXBIWXMAAAsTAAALEwEAmpwYAAAPwUlEQVR4nO3de6xlZXkH4N/LDCgi4gUkCESsQqtSQcV7VGpQqZKitd7rLUZNI8ZLSNVqBKpJtSraam3jrcW7pGIxmio2QrRUy3UQAVFUVISI1FTFDiAzb//Ya+rpcc6cPc7Zc9ac/TzJZPb51tprf/vdb745/Fhr7eruAAAAADAuu632BAAAAAD4TUIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAEVoToU1Vva6qLquqr1fVhqp6SFWdU1VXVtUlVXV+VR25YP99qupDVfWd4c+HqmqfVXwLK24rNTl7+PuqqvrZ8HhDVT28qvaoqncOtfh2VZ1ZVQf9lq97clWduNLvBwAAAObN+h09wI8OPLhXYiLTOvBHP6yFP1fVw5Icl+QB3X1zVe2bZI9h87O7+4KqekGStyZ57DD+gSTf6O7nDsc4Jcn7kzx1Jeb40JO+sFNr8rVTHj9VTbr72qo6OsmJ3X3cgv3flmTvJId196ahXmdU1UO6e6e+FwAAAGBiLZxpc0CSG7r75iTp7hu6+9pF+3w1yYFJUlX3SvLAJG9csP0vkxxVVffcCfPdGaapSZKkqm6X5AVJXtndm4b9/zHJzUkeU1V7VdXnhjOWvlFVTx+ed/UQBqWqjqqqcxYc9oiq+tJw1s6LZvYuAQAAYA1bC6HNWUkOrqpvVdV7qurRW9nn2CT/Mjy+T5INWwKKJBkeb0hy3xnPdWeZpiZb3CvJD7r754vGL8ikHscmuba7j+juw5N8forXv1+SJyZ5WJI3VNXdtv8tAAAAwHzb5UOb7r4xkzNnXpzkJ0k+WVXPHzZ/tKquSfLqJO8axirJ1i75WWp8l7NMTRZbrh6XJjmmqt5SVY/s7p9NMYUzu3tjd9+Q5OwkD97e9wAAAADzbpcPbZLJmTLdfU53n5TkhCRPGTY9O8k9knwsyd8NY5cluX9V/d97Hx4fkeSKnTfr2dpGTRa7Ksndq2rvReMPSHJ5d38rkwDo0iR/VVVvGLbfml/3z20Xv/wyPwMAAADL2OVDm6r63ao6dMHQkUm+v+WH7v5VktcneWhV3bu7r0py8TC2xeuTXDRs2+UtV5OFuvuXSU5LcmpVrRue/9wkt0vypeHSpv/p7o8keVsmYU6SXJ1JmJP8ZiB0fFXdtqrukuToJOfv6HsCAACAebPLhzZJbp/ktKq6vKq+nsk9a05euEN3b0zy9iRbvor6hUkOG77++jtJDhvG1opla7LIa5PclORbVfXtTL5F68nDN0f9fpLzqmpDktcledPwnFOS/E1VfSXJpkXHOy/J55J8Lckbl7oJMgAAALC02tFvdF7tr/weo9X+ym8AAABg17fDoQ0AAAAAK28tXB4FAAAAsOYIbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACM0Prt2Xmf3Xbr/detm9VclrU+lc3pbF61GSxvNeb4wzseMJPj1m7rk96c7jFXfBzUanpqNT21mp5aTU+tpqdW20e9pqdW01Or6anV9NRqemo1vR2pVdVu2fiT79/Q3fst3rZdoc0B69blvXe6y3ZPYKXsv25dbty8Ob/sXrU5LGc15viyp500k+Pucfs7Z9PNG7PpVxtncvy1RK2mp1bTU6vpqdX01Gp6arV91Gt6ajU9tZqeWk1PraanVtPbkVqt22PPXPyOZ39/a9tcHgUAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYITWb8/Om5Ns7M0zmsrybuzd8svuVZ3DclZjjptuuWlGx92YTb/aOLPjryVqNT21mp5aTU+tpqdW01Or7aNe01Or6anV9NRqemo1PbWa3qxqVd09/c5Vv0hy5YrOgF3NvkluWO1JsOr0AYk+YEIfkOgD9AAT+oBEH/y27t7d+y0e3K4zbZJc2d1HrdCE2AVV1QV6AH1Aog+Y0Ack+gA9wIQ+INEHK809bQAAAABGSGgDAAAAMELbG9q8dyazYFeiB0j0ARP6gEQfMKEP0AMk+oAJfbCCtutGxAAAAADsHC6PAgAAABihqUKbqjq2qq6sqquq6jWznhTjUVVXV9WlVbWhqi4Yxu5cVV+sqm8Pf99ptefJyqqqD1bV9VX1jQVjS37uVfXaYX24sqoevzqzZqUt0QcnV9WPhjVhQ1U9YcE2fbDGVNXBVXV2VV1RVZdV1cuHcevBHNlGH1gP5kRV3baqzquqS4YeOGUYtxbMkW30gbVgDlXVuqq6uKo+O/xsPZiRZS+Pqqp1Sb6V5LFJrklyfpJndvfls58eq62qrk5yVHffsGDsr5P8tLvfPIR4d+ruV6/WHFl5VfWoJDcm+VB3Hz6MbfVzr6r7JPl4kgcnuVuSf0tyWHdvWqXps0KW6IOTk9zY3W9btK8+WIOq6oAkB3T3RVW1d5ILkzwpyfNjPZgb2+iDp8V6MBeqqpLs1d03VtXuSf49ycuT/HGsBXNjG31wbKwFc6eqXpXkqCR36O7j/LfC7Exzps2Dk1zV3d/t7luSfCLJ8bOdFiN3fJLThsenZfKLG2tId385yU8XDS/1uR+f5BPdfXN3fy/JVZmsG+ziluiDpeiDNai7r+vui4bHv0hyRZIDYz2YK9vog6XogzWmJ24cftx9+NOxFsyVbfTBUvTBGlVVByV5YpL3Lxi2HszINKHNgUl+uODna7Ltf6hZWzrJWVV1YVW9eBjbv7uvSya/yCW566rNjp1pqc/dGjF/Tqiqrw+XT2059VUfrHFVdUiS+yf5z1gP5taiPkisB3NjuBRiQ5Lrk3yxu60Fc2iJPkisBfPmnUn+PMnmBWPWgxmZJrSprYz5yqn58YjufkCSP0zy0uFyCVjIGjFf/j7JPZMcmeS6JG8fxvXBGlZVt0/yqSSv6O6fb2vXrYzpgzViK31gPZgj3b2pu49MclCSB1fV4dvYXQ+sUUv0gbVgjlTVcUmu7+4Lp33KVsb0wXaYJrS5JsnBC34+KMm1s5kOY9Pd1w5/X5/k05mcyvbj4fr2Lde5X796M2QnWupzt0bMke7+8fAL2+Yk78uvT2/VB2vUcN+CTyX5aHefMQxbD+bM1vrAejCfuvu/k5yTyX1MrAVzamEfWAvmziOS/NFw79NPJHlMVX0k1oOZmSa0OT/JoVV1j6raI8kzknxmttNiDKpqr+GGg6mqvZI8Lsk3Mvn8nzfs9rwkZ67ODNnJlvrcP5PkGVV1m6q6R5JDk5y3CvNjJ9jyj/HgyZmsCYk+WJOGm05+IMkV3X3qgk3WgzmyVB9YD+ZHVe1XVXccHu+Z5Jgk34y1YK4s1QfWgvnS3a/t7oO6+5BMsoEvdfefxnowM+uX26G7b62qE5J8Icm6JB/s7stmPjPGYP8kn578rpb1ST7W3Z+vqvOTnF5VL0zygyRPXcU5MgNV9fEkRyfZt6quSXJSkjdnK597d19WVacnuTzJrUle6m7wa8MSfXB0VR2ZyWmtVyd5SaIP1rBHJHlOkkuHexgkyV/EejBvluqDZ1oP5sYBSU4bvlV2tySnd/dnq+qrsRbMk6X64MPWAuJ3g5lZ9iu/AQAAANj5prk8CgAAAICdTGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQBWTFVtqqoNVXVZVV1SVa+qqt2GbUdV1d9u47mHVNWzdt5sf+O1N1bVhhU63p5DHW6pqn1X4pgAwPxZv9oTAADWlI3dfWSSVNVdk3wsyT5JTuruC5JcsI3nHpLkWcNzVsN3tsx9R3X3xiRHVtXVK3E8AGA+OdMGAJiJ7r4+yYuTnFATR1fVZ5Okqh49nImyoaourqq9k7w5ySOHsVcOZ798paouGv48fHju0VV1TlX9c1V9s6o+WlU1bHtQVf3HcJbPeVW1d1Wtq6q3VtX5VfX1qnrJcnMfXvuKqnrfcNbQWVW157DtnKp6R1V9edjnQVV1RlV9u6reNKt6AgDzx5k2AMDMdPd3h8uj7rpo04lJXtrd51bV7ZPclOQ1SU7s7uOSpKpul+Sx3X1TVR2a5ONJjhqef/8k901ybZJzkzyiqs5L8skkT+/u86vqDkk2Jnlhkp9194Oq6jZJzq2qs7r7e8tM/9Akz+zuF1XV6UmekuQjw7ZbuvtRVfXyJGcmeWCSnyb5TlW9o7v/67coFwDA/yO0AQBmrbYydm6SU6vqo0nO6O5rhpNlFto9ybur6sgkm5IctmDbed19TZIM96E5JMnPklzX3ecnSXf/fNj+uCT3q6o/GZ67TyaBzHKhzfe6e8Pw+MLhNbb4zPD3pUku6+7rhtf6bpKDkwhtAIAdJrQBAGamqn4nk8Dl+iT33jLe3W+uqs8leUKSr1XVMVt5+iuT/DjJEZlc0n3Tgm03L3i8KZPfaSpJb20aSV7W3V/Yzukvfo09t7Jt86L9NsfvVwDACnFPGwBgJqpqvyT/kOTd3d2Ltt2zuy/t7rdkcnPi30vyiyR7L9htn0zOnNmc5DlJ1i3zkt9McreqetDwGntX1fokX0jyZ1W1+zB+WFXttePvEABgtvyfIABgJe05XK60e5Jbk3w4yalb2e8VVfUHmZzBcnmSf83kLJVbq+qSJP+U5D1JPlVVT01ydpJfbuuFu/uWqnp6kncNNw3emOSYJO/P5NKmi4YbFv8kyZN26F0CAOwEteh/fAEAzJ2qOiTJZ7v78BU+7tVJjuruG1byuADAfHB5FADA5IyffYazhHZYVS0842jzShwTAJg/zrQBAAAAGCFn2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAI/S8JTbWBZM4OfgAAAABJRU5ErkJggg==",
      "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",
       "<svg height=\"126.143175pt\" version=\"1.1\" viewBox=\"0 0 1133.9 126.143175\" width=\"1133.9pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-07-15T17:36:57.385959</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.4.1, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 126.143175 \n",
       "L 1133.9 126.143175 \n",
       "L 1133.9 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 10.7 88.586925 \n",
       "L 11.72492 88.586925 \n",
       "L 11.72492 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 11.72492 88.586925 \n",
       "L 12.74984 88.586925 \n",
       "L 12.74984 34.226925 \n",
       "L 11.72492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 12.74984 88.586925 \n",
       "L 13.77476 88.586925 \n",
       "L 13.77476 34.226925 \n",
       "L 12.74984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 13.77476 88.586925 \n",
       "L 14.79968 88.586925 \n",
       "L 14.79968 34.226925 \n",
       "L 13.77476 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_7\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 14.79968 88.586925 \n",
       "L 15.8246 88.586925 \n",
       "L 15.8246 34.226925 \n",
       "L 14.79968 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_8\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 15.8246 88.586925 \n",
       "L 16.84952 88.586925 \n",
       "L 16.84952 34.226925 \n",
       "L 15.8246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_9\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 16.84952 88.586925 \n",
       "L 17.87444 88.586925 \n",
       "L 17.87444 34.226925 \n",
       "L 16.84952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_10\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 17.87444 88.586925 \n",
       "L 18.89936 88.586925 \n",
       "L 18.89936 34.226925 \n",
       "L 17.87444 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_11\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 18.89936 88.586925 \n",
       "L 19.92428 88.586925 \n",
       "L 19.92428 34.226925 \n",
       "L 18.89936 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_12\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 19.92428 88.586925 \n",
       "L 20.9492 88.586925 \n",
       "L 20.9492 34.226925 \n",
       "L 19.92428 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_13\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 20.9492 88.586925 \n",
       "L 21.97412 88.586925 \n",
       "L 21.97412 34.226925 \n",
       "L 20.9492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_14\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 21.97412 88.586925 \n",
       "L 22.99904 88.586925 \n",
       "L 22.99904 34.226925 \n",
       "L 21.97412 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_15\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 22.99904 88.586925 \n",
       "L 24.02396 88.586925 \n",
       "L 24.02396 34.226925 \n",
       "L 22.99904 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_16\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 24.02396 88.586925 \n",
       "L 25.04888 88.586925 \n",
       "L 25.04888 34.226925 \n",
       "L 24.02396 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_17\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 25.04888 88.586925 \n",
       "L 26.0738 88.586925 \n",
       "L 26.0738 34.226925 \n",
       "L 25.04888 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_18\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 26.0738 88.586925 \n",
       "L 27.09872 88.586925 \n",
       "L 27.09872 34.226925 \n",
       "L 26.0738 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_19\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 27.09872 88.586925 \n",
       "L 28.12364 88.586925 \n",
       "L 28.12364 34.226925 \n",
       "L 27.09872 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_20\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 28.12364 88.586925 \n",
       "L 29.14856 88.586925 \n",
       "L 29.14856 34.226925 \n",
       "L 28.12364 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_21\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 29.14856 88.586925 \n",
       "L 30.17348 88.586925 \n",
       "L 30.17348 34.226925 \n",
       "L 29.14856 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_22\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 30.17348 88.586925 \n",
       "L 31.1984 88.586925 \n",
       "L 31.1984 34.226925 \n",
       "L 30.17348 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_23\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 31.1984 88.586925 \n",
       "L 32.22332 88.586925 \n",
       "L 32.22332 34.226925 \n",
       "L 31.1984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_24\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 32.22332 88.586925 \n",
       "L 33.24824 88.586925 \n",
       "L 33.24824 34.226925 \n",
       "L 32.22332 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_25\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 33.24824 88.586925 \n",
       "L 34.27316 88.586925 \n",
       "L 34.27316 34.226925 \n",
       "L 33.24824 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_26\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 34.27316 88.586925 \n",
       "L 35.29808 88.586925 \n",
       "L 35.29808 34.226925 \n",
       "L 34.27316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_27\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 35.29808 88.586925 \n",
       "L 36.323001 88.586925 \n",
       "L 36.323001 34.226925 \n",
       "L 35.29808 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_28\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 36.323001 88.586925 \n",
       "L 37.347921 88.586925 \n",
       "L 37.347921 34.226925 \n",
       "L 36.323001 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_29\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 37.347921 88.586925 \n",
       "L 38.372841 88.586925 \n",
       "L 38.372841 34.226925 \n",
       "L 37.347921 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_30\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 38.372841 88.586925 \n",
       "L 39.397761 88.586925 \n",
       "L 39.397761 34.226925 \n",
       "L 38.372841 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_31\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 39.397761 88.586925 \n",
       "L 40.422681 88.586925 \n",
       "L 40.422681 34.226925 \n",
       "L 39.397761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_32\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 40.422681 88.586925 \n",
       "L 41.447601 88.586925 \n",
       "L 41.447601 34.226925 \n",
       "L 40.422681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_33\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 41.447601 88.586925 \n",
       "L 42.472521 88.586925 \n",
       "L 42.472521 34.226925 \n",
       "L 41.447601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_34\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 42.472521 88.586925 \n",
       "L 43.497441 88.586925 \n",
       "L 43.497441 34.226925 \n",
       "L 42.472521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_35\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 43.497441 88.586925 \n",
       "L 44.522361 88.586925 \n",
       "L 44.522361 34.226925 \n",
       "L 43.497441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_36\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 44.522361 88.586925 \n",
       "L 45.547281 88.586925 \n",
       "L 45.547281 34.226925 \n",
       "L 44.522361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_37\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 45.547281 88.586925 \n",
       "L 46.572201 88.586925 \n",
       "L 46.572201 34.226925 \n",
       "L 45.547281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_38\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 46.572201 88.586925 \n",
       "L 47.597121 88.586925 \n",
       "L 47.597121 34.226925 \n",
       "L 46.572201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_39\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 47.597121 88.586925 \n",
       "L 48.622041 88.586925 \n",
       "L 48.622041 34.226925 \n",
       "L 47.597121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_40\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 48.622041 88.586925 \n",
       "L 49.646961 88.586925 \n",
       "L 49.646961 34.226925 \n",
       "L 48.622041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_41\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 49.646961 88.586925 \n",
       "L 50.671881 88.586925 \n",
       "L 50.671881 34.226925 \n",
       "L 49.646961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_42\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 50.671881 88.586925 \n",
       "L 51.696801 88.586925 \n",
       "L 51.696801 34.226925 \n",
       "L 50.671881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_43\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 51.696801 88.586925 \n",
       "L 52.721721 88.586925 \n",
       "L 52.721721 34.226925 \n",
       "L 51.696801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_44\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 52.721721 88.586925 \n",
       "L 53.746641 88.586925 \n",
       "L 53.746641 34.226925 \n",
       "L 52.721721 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_45\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 53.746641 88.586925 \n",
       "L 54.771561 88.586925 \n",
       "L 54.771561 34.226925 \n",
       "L 53.746641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_46\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 54.771561 88.586925 \n",
       "L 55.796481 88.586925 \n",
       "L 55.796481 34.226925 \n",
       "L 54.771561 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_47\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 55.796481 88.586925 \n",
       "L 56.821401 88.586925 \n",
       "L 56.821401 34.226925 \n",
       "L 55.796481 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_48\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 56.821401 88.586925 \n",
       "L 57.846321 88.586925 \n",
       "L 57.846321 34.226925 \n",
       "L 56.821401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_49\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 57.846321 88.586925 \n",
       "L 58.871241 88.586925 \n",
       "L 58.871241 34.226925 \n",
       "L 57.846321 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_50\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 58.871241 88.586925 \n",
       "L 59.896161 88.586925 \n",
       "L 59.896161 34.226925 \n",
       "L 58.871241 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_51\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 59.896161 88.586925 \n",
       "L 60.921081 88.586925 \n",
       "L 60.921081 34.226925 \n",
       "L 59.896161 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_52\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 60.921081 88.586925 \n",
       "L 61.946001 88.586925 \n",
       "L 61.946001 34.226925 \n",
       "L 60.921081 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_53\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 61.946001 88.586925 \n",
       "L 62.970921 88.586925 \n",
       "L 62.970921 34.226925 \n",
       "L 61.946001 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_54\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 62.970921 88.586925 \n",
       "L 63.995841 88.586925 \n",
       "L 63.995841 34.226925 \n",
       "L 62.970921 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_55\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 63.995841 88.586925 \n",
       "L 65.020761 88.586925 \n",
       "L 65.020761 34.226925 \n",
       "L 63.995841 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_56\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 65.020761 88.586925 \n",
       "L 66.045681 88.586925 \n",
       "L 66.045681 34.226925 \n",
       "L 65.020761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_57\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 66.045681 88.586925 \n",
       "L 67.070601 88.586925 \n",
       "L 67.070601 34.226925 \n",
       "L 66.045681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_58\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 67.070601 88.586925 \n",
       "L 68.095521 88.586925 \n",
       "L 68.095521 34.226925 \n",
       "L 67.070601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_59\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 68.095521 88.586925 \n",
       "L 69.120441 88.586925 \n",
       "L 69.120441 34.226925 \n",
       "L 68.095521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_60\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 69.120441 88.586925 \n",
       "L 70.145361 88.586925 \n",
       "L 70.145361 34.226925 \n",
       "L 69.120441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_61\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 70.145361 88.586925 \n",
       "L 71.170281 88.586925 \n",
       "L 71.170281 34.226925 \n",
       "L 70.145361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_62\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 71.170281 88.586925 \n",
       "L 72.195201 88.586925 \n",
       "L 72.195201 34.226925 \n",
       "L 71.170281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_63\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 72.195201 88.586925 \n",
       "L 73.220121 88.586925 \n",
       "L 73.220121 34.226925 \n",
       "L 72.195201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_64\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 73.220121 88.586925 \n",
       "L 74.245041 88.586925 \n",
       "L 74.245041 34.226925 \n",
       "L 73.220121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_65\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 74.245041 88.586925 \n",
       "L 75.269961 88.586925 \n",
       "L 75.269961 34.226925 \n",
       "L 74.245041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_66\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 75.269961 88.586925 \n",
       "L 76.294881 88.586925 \n",
       "L 76.294881 34.226925 \n",
       "L 75.269961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_67\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 76.294881 88.586925 \n",
       "L 77.319801 88.586925 \n",
       "L 77.319801 34.226925 \n",
       "L 76.294881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_68\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 77.319801 88.586925 \n",
       "L 78.344721 88.586925 \n",
       "L 78.344721 34.226925 \n",
       "L 77.319801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_69\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 78.344721 88.586925 \n",
       "L 79.369641 88.586925 \n",
       "L 79.369641 34.226925 \n",
       "L 78.344721 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_70\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 79.369641 88.586925 \n",
       "L 80.394561 88.586925 \n",
       "L 80.394561 34.226925 \n",
       "L 79.369641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_71\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 80.394561 88.586925 \n",
       "L 81.419481 88.586925 \n",
       "L 81.419481 34.226925 \n",
       "L 80.394561 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_72\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 81.419481 88.586925 \n",
       "L 82.444401 88.586925 \n",
       "L 82.444401 34.226925 \n",
       "L 81.419481 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_73\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 82.444401 88.586925 \n",
       "L 83.469321 88.586925 \n",
       "L 83.469321 34.226925 \n",
       "L 82.444401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_74\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 83.469321 88.586925 \n",
       "L 84.494241 88.586925 \n",
       "L 84.494241 34.226925 \n",
       "L 83.469321 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_75\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 84.494241 88.586925 \n",
       "L 85.519161 88.586925 \n",
       "L 85.519161 34.226925 \n",
       "L 84.494241 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_76\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 85.519161 88.586925 \n",
       "L 86.544081 88.586925 \n",
       "L 86.544081 34.226925 \n",
       "L 85.519161 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_77\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 86.544081 88.586925 \n",
       "L 87.569002 88.586925 \n",
       "L 87.569002 34.226925 \n",
       "L 86.544081 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_78\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 87.569002 88.586925 \n",
       "L 88.593922 88.586925 \n",
       "L 88.593922 34.226925 \n",
       "L 87.569002 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_79\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 88.593922 88.586925 \n",
       "L 89.618842 88.586925 \n",
       "L 89.618842 34.226925 \n",
       "L 88.593922 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_80\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 89.618842 88.586925 \n",
       "L 90.643762 88.586925 \n",
       "L 90.643762 34.226925 \n",
       "L 89.618842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_81\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 90.643762 88.586925 \n",
       "L 91.668682 88.586925 \n",
       "L 91.668682 34.226925 \n",
       "L 90.643762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_82\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 91.668682 88.586925 \n",
       "L 92.693602 88.586925 \n",
       "L 92.693602 34.226925 \n",
       "L 91.668682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_83\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 92.693602 88.586925 \n",
       "L 93.718522 88.586925 \n",
       "L 93.718522 34.226925 \n",
       "L 92.693602 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_84\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 93.718522 88.586925 \n",
       "L 94.743442 88.586925 \n",
       "L 94.743442 34.226925 \n",
       "L 93.718522 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_85\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 94.743442 88.586925 \n",
       "L 95.768362 88.586925 \n",
       "L 95.768362 34.226925 \n",
       "L 94.743442 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_86\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 95.768362 88.586925 \n",
       "L 96.793282 88.586925 \n",
       "L 96.793282 34.226925 \n",
       "L 95.768362 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_87\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 96.793282 88.586925 \n",
       "L 97.818202 88.586925 \n",
       "L 97.818202 34.226925 \n",
       "L 96.793282 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_88\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 97.818202 88.586925 \n",
       "L 98.843122 88.586925 \n",
       "L 98.843122 34.226925 \n",
       "L 97.818202 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_89\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 98.843122 88.586925 \n",
       "L 99.868042 88.586925 \n",
       "L 99.868042 34.226925 \n",
       "L 98.843122 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_90\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 99.868042 88.586925 \n",
       "L 100.892962 88.586925 \n",
       "L 100.892962 34.226925 \n",
       "L 99.868042 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_91\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 100.892962 88.586925 \n",
       "L 101.917882 88.586925 \n",
       "L 101.917882 34.226925 \n",
       "L 100.892962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_92\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 101.917882 88.586925 \n",
       "L 102.942802 88.586925 \n",
       "L 102.942802 34.226925 \n",
       "L 101.917882 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_93\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 102.942802 88.586925 \n",
       "L 103.967722 88.586925 \n",
       "L 103.967722 34.226925 \n",
       "L 102.942802 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_94\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 103.967722 88.586925 \n",
       "L 104.992642 88.586925 \n",
       "L 104.992642 34.226925 \n",
       "L 103.967722 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_95\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 104.992642 88.586925 \n",
       "L 106.017562 88.586925 \n",
       "L 106.017562 34.226925 \n",
       "L 104.992642 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_96\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 106.017562 88.586925 \n",
       "L 107.042482 88.586925 \n",
       "L 107.042482 34.226925 \n",
       "L 106.017562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_97\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 107.042482 88.586925 \n",
       "L 108.067402 88.586925 \n",
       "L 108.067402 34.226925 \n",
       "L 107.042482 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_98\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 108.067402 88.586925 \n",
       "L 109.092322 88.586925 \n",
       "L 109.092322 34.226925 \n",
       "L 108.067402 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_99\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 109.092322 88.586925 \n",
       "L 110.117242 88.586925 \n",
       "L 110.117242 34.226925 \n",
       "L 109.092322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_100\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 110.117242 88.586925 \n",
       "L 111.142162 88.586925 \n",
       "L 111.142162 34.226925 \n",
       "L 110.117242 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_101\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 111.142162 88.586925 \n",
       "L 112.167082 88.586925 \n",
       "L 112.167082 34.226925 \n",
       "L 111.142162 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_102\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 112.167082 88.586925 \n",
       "L 113.192002 88.586925 \n",
       "L 113.192002 34.226925 \n",
       "L 112.167082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_103\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 113.192002 88.586925 \n",
       "L 114.20551 88.586925 \n",
       "L 114.20551 34.226925 \n",
       "L 113.192002 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_104\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 114.20551 88.586925 \n",
       "L 115.219018 88.586925 \n",
       "L 115.219018 34.226925 \n",
       "L 114.20551 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_105\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 115.219018 88.586925 \n",
       "L 116.232526 88.586925 \n",
       "L 116.232526 34.226925 \n",
       "L 115.219018 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_106\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 116.232526 88.586925 \n",
       "L 117.246034 88.586925 \n",
       "L 117.246034 34.226925 \n",
       "L 116.232526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_107\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 117.246034 88.586925 \n",
       "L 118.259542 88.586925 \n",
       "L 118.259542 34.226925 \n",
       "L 117.246034 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_108\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 118.259542 88.586925 \n",
       "L 119.27305 88.586925 \n",
       "L 119.27305 34.226925 \n",
       "L 118.259542 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_109\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 119.27305 88.586925 \n",
       "L 120.286558 88.586925 \n",
       "L 120.286558 34.226925 \n",
       "L 119.27305 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_110\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 120.286558 88.586925 \n",
       "L 121.300066 88.586925 \n",
       "L 121.300066 34.226925 \n",
       "L 120.286558 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_111\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 121.300066 88.586925 \n",
       "L 122.313574 88.586925 \n",
       "L 122.313574 34.226925 \n",
       "L 121.300066 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_112\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 122.313574 88.586925 \n",
       "L 123.327082 88.586925 \n",
       "L 123.327082 34.226925 \n",
       "L 122.313574 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_113\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 123.327082 88.586925 \n",
       "L 124.34059 88.586925 \n",
       "L 124.34059 34.226925 \n",
       "L 123.327082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_114\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 124.34059 88.586925 \n",
       "L 125.354098 88.586925 \n",
       "L 125.354098 34.226925 \n",
       "L 124.34059 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_115\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 125.354098 88.586925 \n",
       "L 126.367606 88.586925 \n",
       "L 126.367606 34.226925 \n",
       "L 125.354098 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_116\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 126.367606 88.586925 \n",
       "L 127.381114 88.586925 \n",
       "L 127.381114 34.226925 \n",
       "L 126.367606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_117\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 127.381114 88.586925 \n",
       "L 128.394622 88.586925 \n",
       "L 128.394622 34.226925 \n",
       "L 127.381114 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_118\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 128.394622 88.586925 \n",
       "L 129.40813 88.586925 \n",
       "L 129.40813 34.226925 \n",
       "L 128.394622 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_119\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 129.40813 88.586925 \n",
       "L 130.421638 88.586925 \n",
       "L 130.421638 34.226925 \n",
       "L 129.40813 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_120\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 130.421638 88.586925 \n",
       "L 131.435146 88.586925 \n",
       "L 131.435146 34.226925 \n",
       "L 130.421638 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_121\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 131.435146 88.586925 \n",
       "L 132.448654 88.586925 \n",
       "L 132.448654 34.226925 \n",
       "L 131.435146 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_122\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 132.448654 88.586925 \n",
       "L 133.462162 88.586925 \n",
       "L 133.462162 34.226925 \n",
       "L 132.448654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_123\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 133.462162 88.586925 \n",
       "L 134.47567 88.586925 \n",
       "L 134.47567 34.226925 \n",
       "L 133.462162 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_124\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 134.47567 88.586925 \n",
       "L 135.489178 88.586925 \n",
       "L 135.489178 34.226925 \n",
       "L 134.47567 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_125\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 135.489178 88.586925 \n",
       "L 136.502686 88.586925 \n",
       "L 136.502686 34.226925 \n",
       "L 135.489178 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_126\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 136.502686 88.586925 \n",
       "L 137.516194 88.586925 \n",
       "L 137.516194 34.226925 \n",
       "L 136.502686 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_127\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 137.516194 88.586925 \n",
       "L 138.529702 88.586925 \n",
       "L 138.529702 34.226925 \n",
       "L 137.516194 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_128\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 138.529702 88.586925 \n",
       "L 139.54321 88.586925 \n",
       "L 139.54321 34.226925 \n",
       "L 138.529702 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_129\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 139.54321 88.586925 \n",
       "L 140.556718 88.586925 \n",
       "L 140.556718 34.226925 \n",
       "L 139.54321 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_130\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 140.556718 88.586925 \n",
       "L 141.570226 88.586925 \n",
       "L 141.570226 34.226925 \n",
       "L 140.556718 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_131\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 141.570226 88.586925 \n",
       "L 142.583734 88.586925 \n",
       "L 142.583734 34.226925 \n",
       "L 141.570226 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_132\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 142.583734 88.586925 \n",
       "L 143.597242 88.586925 \n",
       "L 143.597242 34.226925 \n",
       "L 142.583734 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_133\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 143.597242 88.586925 \n",
       "L 144.61075 88.586925 \n",
       "L 144.61075 34.226925 \n",
       "L 143.597242 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_134\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 144.61075 88.586925 \n",
       "L 145.624258 88.586925 \n",
       "L 145.624258 34.226925 \n",
       "L 144.61075 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_135\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 145.624258 88.586925 \n",
       "L 146.637766 88.586925 \n",
       "L 146.637766 34.226925 \n",
       "L 145.624258 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_136\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 146.637766 88.586925 \n",
       "L 147.651274 88.586925 \n",
       "L 147.651274 34.226925 \n",
       "L 146.637766 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_137\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 147.651274 88.586925 \n",
       "L 148.664782 88.586925 \n",
       "L 148.664782 34.226925 \n",
       "L 147.651274 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_138\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 148.664782 88.586925 \n",
       "L 149.67829 88.586925 \n",
       "L 149.67829 34.226925 \n",
       "L 148.664782 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_139\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 149.67829 88.586925 \n",
       "L 150.691798 88.586925 \n",
       "L 150.691798 34.226925 \n",
       "L 149.67829 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_140\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 150.691798 88.586925 \n",
       "L 151.705306 88.586925 \n",
       "L 151.705306 34.226925 \n",
       "L 150.691798 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_141\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 151.705306 88.586925 \n",
       "L 152.718814 88.586925 \n",
       "L 152.718814 34.226925 \n",
       "L 151.705306 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_142\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 152.718814 88.586925 \n",
       "L 153.732322 88.586925 \n",
       "L 153.732322 34.226925 \n",
       "L 152.718814 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_143\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 153.732322 88.586925 \n",
       "L 154.74583 88.586925 \n",
       "L 154.74583 34.226925 \n",
       "L 153.732322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_144\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 154.74583 88.586925 \n",
       "L 155.759338 88.586925 \n",
       "L 155.759338 34.226925 \n",
       "L 154.74583 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_145\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 155.759338 88.586925 \n",
       "L 156.772846 88.586925 \n",
       "L 156.772846 34.226925 \n",
       "L 155.759338 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_146\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 156.772846 88.586925 \n",
       "L 157.786354 88.586925 \n",
       "L 157.786354 34.226925 \n",
       "L 156.772846 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_147\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 157.786354 88.586925 \n",
       "L 158.799862 88.586925 \n",
       "L 158.799862 34.226925 \n",
       "L 157.786354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_148\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 158.799862 88.586925 \n",
       "L 159.81337 88.586925 \n",
       "L 159.81337 34.226925 \n",
       "L 158.799862 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_149\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 159.81337 88.586925 \n",
       "L 160.826878 88.586925 \n",
       "L 160.826878 34.226925 \n",
       "L 159.81337 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_150\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 160.826878 88.586925 \n",
       "L 161.840386 88.586925 \n",
       "L 161.840386 34.226925 \n",
       "L 160.826878 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_151\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 161.840386 88.586925 \n",
       "L 162.853894 88.586925 \n",
       "L 162.853894 34.226925 \n",
       "L 161.840386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_152\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 162.853894 88.586925 \n",
       "L 163.867402 88.586925 \n",
       "L 163.867402 34.226925 \n",
       "L 162.853894 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_153\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 163.867402 88.586925 \n",
       "L 164.88091 88.586925 \n",
       "L 164.88091 34.226925 \n",
       "L 163.867402 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_154\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 164.88091 88.586925 \n",
       "L 165.894418 88.586925 \n",
       "L 165.894418 34.226925 \n",
       "L 164.88091 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_155\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 165.894418 88.586925 \n",
       "L 166.907926 88.586925 \n",
       "L 166.907926 34.226925 \n",
       "L 165.894418 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_156\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 166.907926 88.586925 \n",
       "L 167.921434 88.586925 \n",
       "L 167.921434 34.226925 \n",
       "L 166.907926 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_157\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 167.921434 88.586925 \n",
       "L 168.934942 88.586925 \n",
       "L 168.934942 34.226925 \n",
       "L 167.921434 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_158\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 168.934942 88.586925 \n",
       "L 169.94845 88.586925 \n",
       "L 169.94845 34.226925 \n",
       "L 168.934942 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_159\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 169.94845 88.586925 \n",
       "L 170.961958 88.586925 \n",
       "L 170.961958 34.226925 \n",
       "L 169.94845 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_160\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 170.961958 88.586925 \n",
       "L 171.975466 88.586925 \n",
       "L 171.975466 34.226925 \n",
       "L 170.961958 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_161\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 171.975466 88.586925 \n",
       "L 172.988974 88.586925 \n",
       "L 172.988974 34.226925 \n",
       "L 171.975466 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_162\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 172.988974 88.586925 \n",
       "L 174.002482 88.586925 \n",
       "L 174.002482 34.226925 \n",
       "L 172.988974 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_163\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 174.002482 88.586925 \n",
       "L 175.01599 88.586925 \n",
       "L 175.01599 34.226925 \n",
       "L 174.002482 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_164\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 175.01599 88.586925 \n",
       "L 176.029498 88.586925 \n",
       "L 176.029498 34.226925 \n",
       "L 175.01599 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_165\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 176.029498 88.586925 \n",
       "L 177.043006 88.586925 \n",
       "L 177.043006 34.226925 \n",
       "L 176.029498 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_166\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 177.043006 88.586925 \n",
       "L 178.056514 88.586925 \n",
       "L 178.056514 34.226925 \n",
       "L 177.043006 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_167\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 178.056514 88.586925 \n",
       "L 179.070022 88.586925 \n",
       "L 179.070022 34.226925 \n",
       "L 178.056514 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_168\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 179.070022 88.586925 \n",
       "L 180.08353 88.586925 \n",
       "L 180.08353 34.226925 \n",
       "L 179.070022 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_169\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 180.08353 88.586925 \n",
       "L 181.097038 88.586925 \n",
       "L 181.097038 34.226925 \n",
       "L 180.08353 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_170\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 181.097038 88.586925 \n",
       "L 182.110546 88.586925 \n",
       "L 182.110546 34.226925 \n",
       "L 181.097038 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_171\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 182.110546 88.586925 \n",
       "L 183.124054 88.586925 \n",
       "L 183.124054 34.226925 \n",
       "L 182.110546 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_172\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 183.124054 88.586925 \n",
       "L 184.137562 88.586925 \n",
       "L 184.137562 34.226925 \n",
       "L 183.124054 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_173\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 184.137562 88.586925 \n",
       "L 185.15107 88.586925 \n",
       "L 185.15107 34.226925 \n",
       "L 184.137562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_174\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 185.15107 88.586925 \n",
       "L 186.164578 88.586925 \n",
       "L 186.164578 34.226925 \n",
       "L 185.15107 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_175\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 186.164578 88.586925 \n",
       "L 187.178086 88.586925 \n",
       "L 187.178086 34.226925 \n",
       "L 186.164578 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_176\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 187.178086 88.586925 \n",
       "L 188.191594 88.586925 \n",
       "L 188.191594 34.226925 \n",
       "L 187.178086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_177\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 188.191594 88.586925 \n",
       "L 189.205102 88.586925 \n",
       "L 189.205102 34.226925 \n",
       "L 188.191594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_178\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 189.205102 88.586925 \n",
       "L 190.21861 88.586925 \n",
       "L 190.21861 34.226925 \n",
       "L 189.205102 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_179\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 190.21861 88.586925 \n",
       "L 191.232118 88.586925 \n",
       "L 191.232118 34.226925 \n",
       "L 190.21861 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_180\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 191.232118 88.586925 \n",
       "L 192.245626 88.586925 \n",
       "L 192.245626 34.226925 \n",
       "L 191.232118 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_181\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 192.245626 88.586925 \n",
       "L 193.259134 88.586925 \n",
       "L 193.259134 34.226925 \n",
       "L 192.245626 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_182\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 193.259134 88.586925 \n",
       "L 194.272642 88.586925 \n",
       "L 194.272642 34.226925 \n",
       "L 193.259134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_183\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 194.272642 88.586925 \n",
       "L 195.28615 88.586925 \n",
       "L 195.28615 34.226925 \n",
       "L 194.272642 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_184\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 195.28615 88.586925 \n",
       "L 196.299658 88.586925 \n",
       "L 196.299658 34.226925 \n",
       "L 195.28615 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_185\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 196.299658 88.586925 \n",
       "L 197.313166 88.586925 \n",
       "L 197.313166 34.226925 \n",
       "L 196.299658 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_186\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 197.313166 88.586925 \n",
       "L 198.326674 88.586925 \n",
       "L 198.326674 34.226925 \n",
       "L 197.313166 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_187\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 198.326674 88.586925 \n",
       "L 199.340182 88.586925 \n",
       "L 199.340182 34.226925 \n",
       "L 198.326674 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_188\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 199.340182 88.586925 \n",
       "L 200.35369 88.586925 \n",
       "L 200.35369 34.226925 \n",
       "L 199.340182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_189\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 200.35369 88.586925 \n",
       "L 201.367198 88.586925 \n",
       "L 201.367198 34.226925 \n",
       "L 200.35369 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_190\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 201.367198 88.586925 \n",
       "L 202.380706 88.586925 \n",
       "L 202.380706 34.226925 \n",
       "L 201.367198 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_191\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 202.380706 88.586925 \n",
       "L 203.394214 88.586925 \n",
       "L 203.394214 34.226925 \n",
       "L 202.380706 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_192\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 203.394214 88.586925 \n",
       "L 204.407722 88.586925 \n",
       "L 204.407722 34.226925 \n",
       "L 203.394214 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_193\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 204.407722 88.586925 \n",
       "L 205.42123 88.586925 \n",
       "L 205.42123 34.226925 \n",
       "L 204.407722 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_194\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 205.42123 88.586925 \n",
       "L 206.434738 88.586925 \n",
       "L 206.434738 34.226925 \n",
       "L 205.42123 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_195\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 206.434738 88.586925 \n",
       "L 207.448246 88.586925 \n",
       "L 207.448246 34.226925 \n",
       "L 206.434738 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_196\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 207.448246 88.586925 \n",
       "L 208.461754 88.586925 \n",
       "L 208.461754 34.226925 \n",
       "L 207.448246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_197\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 208.461754 88.586925 \n",
       "L 209.475262 88.586925 \n",
       "L 209.475262 34.226925 \n",
       "L 208.461754 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_198\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 209.475262 88.586925 \n",
       "L 210.48877 88.586925 \n",
       "L 210.48877 34.226925 \n",
       "L 209.475262 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_199\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 210.48877 88.586925 \n",
       "L 211.502278 88.586925 \n",
       "L 211.502278 34.226925 \n",
       "L 210.48877 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_200\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 211.502278 88.586925 \n",
       "L 212.515786 88.586925 \n",
       "L 212.515786 34.226925 \n",
       "L 211.502278 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_201\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 212.515786 88.586925 \n",
       "L 213.529294 88.586925 \n",
       "L 213.529294 34.226925 \n",
       "L 212.515786 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_202\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 213.529294 88.586925 \n",
       "L 214.542802 88.586925 \n",
       "L 214.542802 34.226925 \n",
       "L 213.529294 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_203\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 214.542802 88.586925 \n",
       "L 215.55631 88.586925 \n",
       "L 215.55631 34.226925 \n",
       "L 214.542802 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_204\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 215.55631 88.586925 \n",
       "L 216.569818 88.586925 \n",
       "L 216.569818 34.226925 \n",
       "L 215.55631 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_205\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 216.569818 88.586925 \n",
       "L 217.583326 88.586925 \n",
       "L 217.583326 34.226925 \n",
       "L 216.569818 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_206\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 217.583326 88.586925 \n",
       "L 218.596834 88.586925 \n",
       "L 218.596834 34.226925 \n",
       "L 217.583326 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_207\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 218.596834 88.586925 \n",
       "L 219.610342 88.586925 \n",
       "L 219.610342 34.226925 \n",
       "L 218.596834 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_208\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 219.610342 88.586925 \n",
       "L 220.62385 88.586925 \n",
       "L 220.62385 34.226925 \n",
       "L 219.610342 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_209\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 220.62385 88.586925 \n",
       "L 221.637358 88.586925 \n",
       "L 221.637358 34.226925 \n",
       "L 220.62385 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_210\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 221.637358 88.586925 \n",
       "L 222.650866 88.586925 \n",
       "L 222.650866 34.226925 \n",
       "L 221.637358 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_211\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 222.650866 88.586925 \n",
       "L 223.664374 88.586925 \n",
       "L 223.664374 34.226925 \n",
       "L 222.650866 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_212\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 223.664374 88.586925 \n",
       "L 224.677882 88.586925 \n",
       "L 224.677882 34.226925 \n",
       "L 223.664374 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_213\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 224.677882 88.586925 \n",
       "L 225.69139 88.586925 \n",
       "L 225.69139 34.226925 \n",
       "L 224.677882 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_214\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 225.69139 88.586925 \n",
       "L 226.704898 88.586925 \n",
       "L 226.704898 34.226925 \n",
       "L 225.69139 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_215\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 226.704898 88.586925 \n",
       "L 227.718406 88.586925 \n",
       "L 227.718406 34.226925 \n",
       "L 226.704898 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_216\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 227.718406 88.586925 \n",
       "L 228.731914 88.586925 \n",
       "L 228.731914 34.226925 \n",
       "L 227.718406 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_217\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 228.731914 88.586925 \n",
       "L 229.745422 88.586925 \n",
       "L 229.745422 34.226925 \n",
       "L 228.731914 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_218\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 229.745422 88.586925 \n",
       "L 230.75893 88.586925 \n",
       "L 230.75893 34.226925 \n",
       "L 229.745422 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_219\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 230.75893 88.586925 \n",
       "L 231.772438 88.586925 \n",
       "L 231.772438 34.226925 \n",
       "L 230.75893 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_220\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 231.772438 88.586925 \n",
       "L 232.785946 88.586925 \n",
       "L 232.785946 34.226925 \n",
       "L 231.772438 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_221\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 232.785946 88.586925 \n",
       "L 233.799454 88.586925 \n",
       "L 233.799454 34.226925 \n",
       "L 232.785946 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_222\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 233.799454 88.586925 \n",
       "L 234.812962 88.586925 \n",
       "L 234.812962 34.226925 \n",
       "L 233.799454 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_223\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 234.812962 88.586925 \n",
       "L 235.82647 88.586925 \n",
       "L 235.82647 34.226925 \n",
       "L 234.812962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_224\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 235.82647 88.586925 \n",
       "L 236.839978 88.586925 \n",
       "L 236.839978 34.226925 \n",
       "L 235.82647 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_225\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 236.839978 88.586925 \n",
       "L 237.853486 88.586925 \n",
       "L 237.853486 34.226925 \n",
       "L 236.839978 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_226\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 237.853486 88.586925 \n",
       "L 238.866994 88.586925 \n",
       "L 238.866994 34.226925 \n",
       "L 237.853486 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_227\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 238.866994 88.586925 \n",
       "L 239.880502 88.586925 \n",
       "L 239.880502 34.226925 \n",
       "L 238.866994 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_228\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 239.880502 88.586925 \n",
       "L 240.89401 88.586925 \n",
       "L 240.89401 34.226925 \n",
       "L 239.880502 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_229\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 240.89401 88.586925 \n",
       "L 241.907518 88.586925 \n",
       "L 241.907518 34.226925 \n",
       "L 240.89401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_230\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 241.907518 88.586925 \n",
       "L 242.921026 88.586925 \n",
       "L 242.921026 34.226925 \n",
       "L 241.907518 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_231\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 242.921026 88.586925 \n",
       "L 243.934534 88.586925 \n",
       "L 243.934534 34.226925 \n",
       "L 242.921026 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_232\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 243.934534 88.586925 \n",
       "L 244.948042 88.586925 \n",
       "L 244.948042 34.226925 \n",
       "L 243.934534 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_233\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 244.948042 88.586925 \n",
       "L 245.96155 88.586925 \n",
       "L 245.96155 34.226925 \n",
       "L 244.948042 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_234\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 245.96155 88.586925 \n",
       "L 246.975058 88.586925 \n",
       "L 246.975058 34.226925 \n",
       "L 245.96155 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_235\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 246.975058 88.586925 \n",
       "L 247.988566 88.586925 \n",
       "L 247.988566 34.226925 \n",
       "L 246.975058 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_236\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 247.988566 88.586925 \n",
       "L 249.002074 88.586925 \n",
       "L 249.002074 34.226925 \n",
       "L 247.988566 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_237\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 249.002074 88.586925 \n",
       "L 250.015582 88.586925 \n",
       "L 250.015582 34.226925 \n",
       "L 249.002074 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_238\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 250.015582 88.586925 \n",
       "L 251.02909 88.586925 \n",
       "L 251.02909 34.226925 \n",
       "L 250.015582 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_239\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 251.02909 88.586925 \n",
       "L 252.042598 88.586925 \n",
       "L 252.042598 34.226925 \n",
       "L 251.02909 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_240\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 252.042598 88.586925 \n",
       "L 253.056106 88.586925 \n",
       "L 253.056106 34.226925 \n",
       "L 252.042598 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_241\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 253.056106 88.586925 \n",
       "L 254.069614 88.586925 \n",
       "L 254.069614 34.226925 \n",
       "L 253.056106 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_242\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 254.069614 88.586925 \n",
       "L 255.083122 88.586925 \n",
       "L 255.083122 34.226925 \n",
       "L 254.069614 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_243\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 255.083122 88.586925 \n",
       "L 256.09663 88.586925 \n",
       "L 256.09663 34.226925 \n",
       "L 255.083122 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_244\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 256.09663 88.586925 \n",
       "L 257.110138 88.586925 \n",
       "L 257.110138 34.226925 \n",
       "L 256.09663 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_245\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 257.110138 88.586925 \n",
       "L 258.123646 88.586925 \n",
       "L 258.123646 34.226925 \n",
       "L 257.110138 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_246\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 258.123646 88.586925 \n",
       "L 259.137154 88.586925 \n",
       "L 259.137154 34.226925 \n",
       "L 258.123646 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_247\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 259.137154 88.586925 \n",
       "L 260.150662 88.586925 \n",
       "L 260.150662 34.226925 \n",
       "L 259.137154 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_248\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 260.150662 88.586925 \n",
       "L 261.16417 88.586925 \n",
       "L 261.16417 34.226925 \n",
       "L 260.150662 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_249\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 261.16417 88.586925 \n",
       "L 262.177678 88.586925 \n",
       "L 262.177678 34.226925 \n",
       "L 261.16417 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_250\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 262.177678 88.586925 \n",
       "L 263.191186 88.586925 \n",
       "L 263.191186 34.226925 \n",
       "L 262.177678 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_251\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 263.191186 88.586925 \n",
       "L 264.204694 88.586925 \n",
       "L 264.204694 34.226925 \n",
       "L 263.191186 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_252\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 264.204694 88.586925 \n",
       "L 265.218202 88.586925 \n",
       "L 265.218202 34.226925 \n",
       "L 264.204694 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_253\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 265.218202 88.586925 \n",
       "L 266.23171 88.586925 \n",
       "L 266.23171 34.226925 \n",
       "L 265.218202 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_254\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 266.23171 88.586925 \n",
       "L 267.245218 88.586925 \n",
       "L 267.245218 34.226925 \n",
       "L 266.23171 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_255\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 267.245218 88.586925 \n",
       "L 268.258726 88.586925 \n",
       "L 268.258726 34.226925 \n",
       "L 267.245218 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_256\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 268.258726 88.586925 \n",
       "L 269.272234 88.586925 \n",
       "L 269.272234 34.226925 \n",
       "L 268.258726 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_257\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 269.272234 88.586925 \n",
       "L 270.285742 88.586925 \n",
       "L 270.285742 34.226925 \n",
       "L 269.272234 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_258\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 270.285742 88.586925 \n",
       "L 271.29925 88.586925 \n",
       "L 271.29925 34.226925 \n",
       "L 270.285742 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_259\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 271.29925 88.586925 \n",
       "L 272.312758 88.586925 \n",
       "L 272.312758 34.226925 \n",
       "L 271.29925 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_260\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 272.312758 88.586925 \n",
       "L 273.326266 88.586925 \n",
       "L 273.326266 34.226925 \n",
       "L 272.312758 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_261\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 273.326266 88.586925 \n",
       "L 274.339774 88.586925 \n",
       "L 274.339774 34.226925 \n",
       "L 273.326266 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_262\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 274.339774 88.586925 \n",
       "L 275.353282 88.586925 \n",
       "L 275.353282 34.226925 \n",
       "L 274.339774 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_263\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 275.353282 88.586925 \n",
       "L 276.36679 88.586925 \n",
       "L 276.36679 34.226925 \n",
       "L 275.353282 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_264\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 276.36679 88.586925 \n",
       "L 277.380298 88.586925 \n",
       "L 277.380298 34.226925 \n",
       "L 276.36679 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_265\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 277.380298 88.586925 \n",
       "L 278.393806 88.586925 \n",
       "L 278.393806 34.226925 \n",
       "L 277.380298 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_266\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 278.393806 88.586925 \n",
       "L 279.407314 88.586925 \n",
       "L 279.407314 34.226925 \n",
       "L 278.393806 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_267\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 279.407314 88.586925 \n",
       "L 280.420822 88.586925 \n",
       "L 280.420822 34.226925 \n",
       "L 279.407314 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_268\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 280.420822 88.586925 \n",
       "L 281.43433 88.586925 \n",
       "L 281.43433 34.226925 \n",
       "L 280.420822 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_269\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 281.43433 88.586925 \n",
       "L 282.447838 88.586925 \n",
       "L 282.447838 34.226925 \n",
       "L 281.43433 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_270\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 282.447838 88.586925 \n",
       "L 283.461346 88.586925 \n",
       "L 283.461346 34.226925 \n",
       "L 282.447838 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_271\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 283.461346 88.586925 \n",
       "L 284.474854 88.586925 \n",
       "L 284.474854 34.226925 \n",
       "L 283.461346 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_272\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 284.474854 88.586925 \n",
       "L 285.488362 88.586925 \n",
       "L 285.488362 34.226925 \n",
       "L 284.474854 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_273\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 285.488362 88.586925 \n",
       "L 286.50187 88.586925 \n",
       "L 286.50187 34.226925 \n",
       "L 285.488362 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_274\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 286.50187 88.586925 \n",
       "L 287.515378 88.586925 \n",
       "L 287.515378 34.226925 \n",
       "L 286.50187 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_275\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 287.515378 88.586925 \n",
       "L 288.528886 88.586925 \n",
       "L 288.528886 34.226925 \n",
       "L 287.515378 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_276\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 288.528886 88.586925 \n",
       "L 289.542394 88.586925 \n",
       "L 289.542394 34.226925 \n",
       "L 288.528886 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_277\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 289.542394 88.586925 \n",
       "L 290.555902 88.586925 \n",
       "L 290.555902 34.226925 \n",
       "L 289.542394 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_278\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 290.555902 88.586925 \n",
       "L 291.56941 88.586925 \n",
       "L 291.56941 34.226925 \n",
       "L 290.555902 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_279\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 291.56941 88.586925 \n",
       "L 292.582918 88.586925 \n",
       "L 292.582918 34.226925 \n",
       "L 291.56941 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_280\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 292.582918 88.586925 \n",
       "L 293.596426 88.586925 \n",
       "L 293.596426 34.226925 \n",
       "L 292.582918 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_281\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 293.596426 88.586925 \n",
       "L 294.609934 88.586925 \n",
       "L 294.609934 34.226925 \n",
       "L 293.596426 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_282\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 294.609934 88.586925 \n",
       "L 295.623442 88.586925 \n",
       "L 295.623442 34.226925 \n",
       "L 294.609934 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_283\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 295.623442 88.586925 \n",
       "L 296.63695 88.586925 \n",
       "L 296.63695 34.226925 \n",
       "L 295.623442 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_284\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 296.63695 88.586925 \n",
       "L 297.650458 88.586925 \n",
       "L 297.650458 34.226925 \n",
       "L 296.63695 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_285\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 297.650458 88.586925 \n",
       "L 298.663966 88.586925 \n",
       "L 298.663966 34.226925 \n",
       "L 297.650458 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_286\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 298.663966 88.586925 \n",
       "L 299.677474 88.586925 \n",
       "L 299.677474 34.226925 \n",
       "L 298.663966 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_287\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 299.677474 88.586925 \n",
       "L 300.690982 88.586925 \n",
       "L 300.690982 34.226925 \n",
       "L 299.677474 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_288\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 300.690982 88.586925 \n",
       "L 301.70449 88.586925 \n",
       "L 301.70449 34.226925 \n",
       "L 300.690982 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_289\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 301.70449 88.586925 \n",
       "L 302.717998 88.586925 \n",
       "L 302.717998 34.226925 \n",
       "L 301.70449 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_290\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 302.717998 88.586925 \n",
       "L 303.731506 88.586925 \n",
       "L 303.731506 34.226925 \n",
       "L 302.717998 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_291\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 303.731506 88.586925 \n",
       "L 304.745014 88.586925 \n",
       "L 304.745014 34.226925 \n",
       "L 303.731506 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_292\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 304.745014 88.586925 \n",
       "L 305.758522 88.586925 \n",
       "L 305.758522 34.226925 \n",
       "L 304.745014 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_293\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 305.758522 88.586925 \n",
       "L 306.77203 88.586925 \n",
       "L 306.77203 34.226925 \n",
       "L 305.758522 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_294\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 306.77203 88.586925 \n",
       "L 307.785538 88.586925 \n",
       "L 307.785538 34.226925 \n",
       "L 306.77203 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_295\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 307.785538 88.586925 \n",
       "L 308.799046 88.586925 \n",
       "L 308.799046 34.226925 \n",
       "L 307.785538 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_296\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 308.799046 88.586925 \n",
       "L 309.812554 88.586925 \n",
       "L 309.812554 34.226925 \n",
       "L 308.799046 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_297\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 309.812554 88.586925 \n",
       "L 310.826062 88.586925 \n",
       "L 310.826062 34.226925 \n",
       "L 309.812554 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_298\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 310.826062 88.586925 \n",
       "L 311.83957 88.586925 \n",
       "L 311.83957 34.226925 \n",
       "L 310.826062 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_299\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 311.83957 88.586925 \n",
       "L 312.853078 88.586925 \n",
       "L 312.853078 34.226925 \n",
       "L 311.83957 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_300\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 312.853078 88.586925 \n",
       "L 313.866586 88.586925 \n",
       "L 313.866586 34.226925 \n",
       "L 312.853078 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_301\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 313.866586 88.586925 \n",
       "L 314.880094 88.586925 \n",
       "L 314.880094 34.226925 \n",
       "L 313.866586 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_302\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 314.880094 88.586925 \n",
       "L 315.893602 88.586925 \n",
       "L 315.893602 34.226925 \n",
       "L 314.880094 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_303\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 315.893602 88.586925 \n",
       "L 316.90711 88.586925 \n",
       "L 316.90711 34.226925 \n",
       "L 315.893602 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_304\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 316.90711 88.586925 \n",
       "L 317.920618 88.586925 \n",
       "L 317.920618 34.226925 \n",
       "L 316.90711 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_305\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 317.920618 88.586925 \n",
       "L 318.934126 88.586925 \n",
       "L 318.934126 34.226925 \n",
       "L 317.920618 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_306\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 318.934126 88.586925 \n",
       "L 319.947634 88.586925 \n",
       "L 319.947634 34.226925 \n",
       "L 318.934126 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_307\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 319.947634 88.586925 \n",
       "L 320.961142 88.586925 \n",
       "L 320.961142 34.226925 \n",
       "L 319.947634 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_308\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 320.961142 88.586925 \n",
       "L 321.97465 88.586925 \n",
       "L 321.97465 34.226925 \n",
       "L 320.961142 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_309\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 321.97465 88.586925 \n",
       "L 322.988158 88.586925 \n",
       "L 322.988158 34.226925 \n",
       "L 321.97465 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_310\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 322.988158 88.586925 \n",
       "L 324.001666 88.586925 \n",
       "L 324.001666 34.226925 \n",
       "L 322.988158 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_311\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 324.001666 88.586925 \n",
       "L 325.015174 88.586925 \n",
       "L 325.015174 34.226925 \n",
       "L 324.001666 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_312\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 325.015174 88.586925 \n",
       "L 326.028682 88.586925 \n",
       "L 326.028682 34.226925 \n",
       "L 325.015174 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_313\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 326.028682 88.586925 \n",
       "L 327.04219 88.586925 \n",
       "L 327.04219 34.226925 \n",
       "L 326.028682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_314\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 327.04219 88.586925 \n",
       "L 328.055698 88.586925 \n",
       "L 328.055698 34.226925 \n",
       "L 327.04219 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_315\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 328.055698 88.586925 \n",
       "L 329.069206 88.586925 \n",
       "L 329.069206 34.226925 \n",
       "L 328.055698 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_316\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 329.069206 88.586925 \n",
       "L 330.082714 88.586925 \n",
       "L 330.082714 34.226925 \n",
       "L 329.069206 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_317\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 330.082714 88.586925 \n",
       "L 331.096222 88.586925 \n",
       "L 331.096222 34.226925 \n",
       "L 330.082714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_318\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 331.096222 88.586925 \n",
       "L 332.10973 88.586925 \n",
       "L 332.10973 34.226925 \n",
       "L 331.096222 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_319\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 332.10973 88.586925 \n",
       "L 333.123238 88.586925 \n",
       "L 333.123238 34.226925 \n",
       "L 332.10973 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_320\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 333.123238 88.586925 \n",
       "L 334.136746 88.586925 \n",
       "L 334.136746 34.226925 \n",
       "L 333.123238 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_321\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 334.136746 88.586925 \n",
       "L 335.150254 88.586925 \n",
       "L 335.150254 34.226925 \n",
       "L 334.136746 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_322\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 335.150254 88.586925 \n",
       "L 336.163762 88.586925 \n",
       "L 336.163762 34.226925 \n",
       "L 335.150254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_323\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 336.163762 88.586925 \n",
       "L 337.17727 88.586925 \n",
       "L 337.17727 34.226925 \n",
       "L 336.163762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_324\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 337.17727 88.586925 \n",
       "L 338.190778 88.586925 \n",
       "L 338.190778 34.226925 \n",
       "L 337.17727 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_325\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 338.190778 88.586925 \n",
       "L 339.204286 88.586925 \n",
       "L 339.204286 34.226925 \n",
       "L 338.190778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_326\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 339.204286 88.586925 \n",
       "L 340.217794 88.586925 \n",
       "L 340.217794 34.226925 \n",
       "L 339.204286 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_327\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 340.217794 88.586925 \n",
       "L 341.231302 88.586925 \n",
       "L 341.231302 34.226925 \n",
       "L 340.217794 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_328\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 341.231302 88.586925 \n",
       "L 342.24481 88.586925 \n",
       "L 342.24481 34.226925 \n",
       "L 341.231302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_329\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 342.24481 88.586925 \n",
       "L 343.258318 88.586925 \n",
       "L 343.258318 34.226925 \n",
       "L 342.24481 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_330\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 343.258318 88.586925 \n",
       "L 344.271826 88.586925 \n",
       "L 344.271826 34.226925 \n",
       "L 343.258318 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_331\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 344.271826 88.586925 \n",
       "L 345.285334 88.586925 \n",
       "L 345.285334 34.226925 \n",
       "L 344.271826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_332\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 345.285334 88.586925 \n",
       "L 346.298842 88.586925 \n",
       "L 346.298842 34.226925 \n",
       "L 345.285334 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_333\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 346.298842 88.586925 \n",
       "L 347.31235 88.586925 \n",
       "L 347.31235 34.226925 \n",
       "L 346.298842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_334\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 347.31235 88.586925 \n",
       "L 348.325858 88.586925 \n",
       "L 348.325858 34.226925 \n",
       "L 347.31235 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_335\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 348.325858 88.586925 \n",
       "L 349.339366 88.586925 \n",
       "L 349.339366 34.226925 \n",
       "L 348.325858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_336\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 349.339366 88.586925 \n",
       "L 350.352874 88.586925 \n",
       "L 350.352874 34.226925 \n",
       "L 349.339366 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_337\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 350.352874 88.586925 \n",
       "L 351.366382 88.586925 \n",
       "L 351.366382 34.226925 \n",
       "L 350.352874 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_338\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 351.366382 88.586925 \n",
       "L 352.37989 88.586925 \n",
       "L 352.37989 34.226925 \n",
       "L 351.366382 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_339\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 352.37989 88.586925 \n",
       "L 353.393398 88.586925 \n",
       "L 353.393398 34.226925 \n",
       "L 352.37989 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_340\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 353.393398 88.586925 \n",
       "L 354.406906 88.586925 \n",
       "L 354.406906 34.226925 \n",
       "L 353.393398 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_341\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 354.406906 88.586925 \n",
       "L 355.420414 88.586925 \n",
       "L 355.420414 34.226925 \n",
       "L 354.406906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_342\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 355.420414 88.586925 \n",
       "L 356.433922 88.586925 \n",
       "L 356.433922 34.226925 \n",
       "L 355.420414 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_343\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 356.433922 88.586925 \n",
       "L 357.44743 88.586925 \n",
       "L 357.44743 34.226925 \n",
       "L 356.433922 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_344\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 357.44743 88.586925 \n",
       "L 358.460938 88.586925 \n",
       "L 358.460938 34.226925 \n",
       "L 357.44743 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_345\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 358.460938 88.586925 \n",
       "L 359.474446 88.586925 \n",
       "L 359.474446 34.226925 \n",
       "L 358.460938 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_346\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 359.474446 88.586925 \n",
       "L 360.487954 88.586925 \n",
       "L 360.487954 34.226925 \n",
       "L 359.474446 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_347\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 360.487954 88.586925 \n",
       "L 361.501462 88.586925 \n",
       "L 361.501462 34.226925 \n",
       "L 360.487954 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_348\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 361.501462 88.586925 \n",
       "L 362.51497 88.586925 \n",
       "L 362.51497 34.226925 \n",
       "L 361.501462 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_349\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 362.51497 88.586925 \n",
       "L 363.528478 88.586925 \n",
       "L 363.528478 34.226925 \n",
       "L 362.51497 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_350\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 363.528478 88.586925 \n",
       "L 364.541986 88.586925 \n",
       "L 364.541986 34.226925 \n",
       "L 363.528478 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_351\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 364.541986 88.586925 \n",
       "L 365.555494 88.586925 \n",
       "L 365.555494 34.226925 \n",
       "L 364.541986 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_352\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 365.555494 88.586925 \n",
       "L 366.569002 88.586925 \n",
       "L 366.569002 34.226925 \n",
       "L 365.555494 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_353\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 366.569002 88.586925 \n",
       "L 367.58251 88.586925 \n",
       "L 367.58251 34.226925 \n",
       "L 366.569002 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_354\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 367.58251 88.586925 \n",
       "L 368.596018 88.586925 \n",
       "L 368.596018 34.226925 \n",
       "L 367.58251 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_355\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 368.596018 88.586925 \n",
       "L 369.609526 88.586925 \n",
       "L 369.609526 34.226925 \n",
       "L 368.596018 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_356\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 369.609526 88.586925 \n",
       "L 370.623034 88.586925 \n",
       "L 370.623034 34.226925 \n",
       "L 369.609526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_357\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 370.623034 88.586925 \n",
       "L 371.636542 88.586925 \n",
       "L 371.636542 34.226925 \n",
       "L 370.623034 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_358\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 371.636542 88.586925 \n",
       "L 372.65005 88.586925 \n",
       "L 372.65005 34.226925 \n",
       "L 371.636542 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_359\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 372.65005 88.586925 \n",
       "L 373.663557 88.586925 \n",
       "L 373.663557 34.226925 \n",
       "L 372.65005 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_360\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 373.663557 88.586925 \n",
       "L 374.677065 88.586925 \n",
       "L 374.677065 34.226925 \n",
       "L 373.663557 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_361\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 374.677065 88.586925 \n",
       "L 375.690573 88.586925 \n",
       "L 375.690573 34.226925 \n",
       "L 374.677065 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_362\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 375.690573 88.586925 \n",
       "L 376.704081 88.586925 \n",
       "L 376.704081 34.226925 \n",
       "L 375.690573 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_363\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 376.704081 88.586925 \n",
       "L 377.717589 88.586925 \n",
       "L 377.717589 34.226925 \n",
       "L 376.704081 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_364\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 377.717589 88.586925 \n",
       "L 378.731097 88.586925 \n",
       "L 378.731097 34.226925 \n",
       "L 377.717589 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_365\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 378.731097 88.586925 \n",
       "L 379.744605 88.586925 \n",
       "L 379.744605 34.226925 \n",
       "L 378.731097 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_366\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 379.744605 88.586925 \n",
       "L 380.758113 88.586925 \n",
       "L 380.758113 34.226925 \n",
       "L 379.744605 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_367\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 380.758113 88.586925 \n",
       "L 381.771621 88.586925 \n",
       "L 381.771621 34.226925 \n",
       "L 380.758113 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_368\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 381.771621 88.586925 \n",
       "L 382.785129 88.586925 \n",
       "L 382.785129 34.226925 \n",
       "L 381.771621 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_369\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 382.785129 88.586925 \n",
       "L 383.798637 88.586925 \n",
       "L 383.798637 34.226925 \n",
       "L 382.785129 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_370\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 383.798637 88.586925 \n",
       "L 384.812145 88.586925 \n",
       "L 384.812145 34.226925 \n",
       "L 383.798637 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_371\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 384.812145 88.586925 \n",
       "L 385.825653 88.586925 \n",
       "L 385.825653 34.226925 \n",
       "L 384.812145 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_372\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 385.825653 88.586925 \n",
       "L 386.839161 88.586925 \n",
       "L 386.839161 34.226925 \n",
       "L 385.825653 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_373\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 386.839161 88.586925 \n",
       "L 387.852669 88.586925 \n",
       "L 387.852669 34.226925 \n",
       "L 386.839161 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_374\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 387.852669 88.586925 \n",
       "L 388.866177 88.586925 \n",
       "L 388.866177 34.226925 \n",
       "L 387.852669 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_375\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 388.866177 88.586925 \n",
       "L 389.879685 88.586925 \n",
       "L 389.879685 34.226925 \n",
       "L 388.866177 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_376\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 389.879685 88.586925 \n",
       "L 390.893193 88.586925 \n",
       "L 390.893193 34.226925 \n",
       "L 389.879685 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_377\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 390.893193 88.586925 \n",
       "L 391.906701 88.586925 \n",
       "L 391.906701 34.226925 \n",
       "L 390.893193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_378\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 391.906701 88.586925 \n",
       "L 392.920209 88.586925 \n",
       "L 392.920209 34.226925 \n",
       "L 391.906701 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_379\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 392.920209 88.586925 \n",
       "L 393.933717 88.586925 \n",
       "L 393.933717 34.226925 \n",
       "L 392.920209 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_380\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 393.933717 88.586925 \n",
       "L 394.947225 88.586925 \n",
       "L 394.947225 34.226925 \n",
       "L 393.933717 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_381\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 394.947225 88.586925 \n",
       "L 395.960733 88.586925 \n",
       "L 395.960733 34.226925 \n",
       "L 394.947225 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_382\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 395.960733 88.586925 \n",
       "L 396.974241 88.586925 \n",
       "L 396.974241 34.226925 \n",
       "L 395.960733 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_383\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 396.974241 88.586925 \n",
       "L 397.987749 88.586925 \n",
       "L 397.987749 34.226925 \n",
       "L 396.974241 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_384\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 397.987749 88.586925 \n",
       "L 399.001257 88.586925 \n",
       "L 399.001257 34.226925 \n",
       "L 397.987749 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_385\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 399.001257 88.586925 \n",
       "L 400.014765 88.586925 \n",
       "L 400.014765 34.226925 \n",
       "L 399.001257 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_386\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 400.014765 88.586925 \n",
       "L 401.028273 88.586925 \n",
       "L 401.028273 34.226925 \n",
       "L 400.014765 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_387\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 401.028273 88.586925 \n",
       "L 402.041781 88.586925 \n",
       "L 402.041781 34.226925 \n",
       "L 401.028273 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_388\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 402.041781 88.586925 \n",
       "L 403.055289 88.586925 \n",
       "L 403.055289 34.226925 \n",
       "L 402.041781 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_389\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 403.055289 88.586925 \n",
       "L 404.068797 88.586925 \n",
       "L 404.068797 34.226925 \n",
       "L 403.055289 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_390\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 404.068797 88.586925 \n",
       "L 405.082305 88.586925 \n",
       "L 405.082305 34.226925 \n",
       "L 404.068797 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_391\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 405.082305 88.586925 \n",
       "L 406.095813 88.586925 \n",
       "L 406.095813 34.226925 \n",
       "L 405.082305 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_392\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 406.095813 88.586925 \n",
       "L 407.109321 88.586925 \n",
       "L 407.109321 34.226925 \n",
       "L 406.095813 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_393\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 407.109321 88.586925 \n",
       "L 408.122829 88.586925 \n",
       "L 408.122829 34.226925 \n",
       "L 407.109321 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_394\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 408.122829 88.586925 \n",
       "L 409.136337 88.586925 \n",
       "L 409.136337 34.226925 \n",
       "L 408.122829 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_395\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 409.136337 88.586925 \n",
       "L 410.149845 88.586925 \n",
       "L 410.149845 34.226925 \n",
       "L 409.136337 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_396\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 410.149845 88.586925 \n",
       "L 411.163353 88.586925 \n",
       "L 411.163353 34.226925 \n",
       "L 410.149845 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_397\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 411.163353 88.586925 \n",
       "L 412.176861 88.586925 \n",
       "L 412.176861 34.226925 \n",
       "L 411.163353 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_398\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 412.176861 88.586925 \n",
       "L 413.190369 88.586925 \n",
       "L 413.190369 34.226925 \n",
       "L 412.176861 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_399\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 413.190369 88.586925 \n",
       "L 414.203877 88.586925 \n",
       "L 414.203877 34.226925 \n",
       "L 413.190369 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_400\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 414.203877 88.586925 \n",
       "L 415.217385 88.586925 \n",
       "L 415.217385 34.226925 \n",
       "L 414.203877 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_401\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 415.217385 88.586925 \n",
       "L 416.230893 88.586925 \n",
       "L 416.230893 34.226925 \n",
       "L 415.217385 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_402\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 416.230893 88.586925 \n",
       "L 417.244401 88.586925 \n",
       "L 417.244401 34.226925 \n",
       "L 416.230893 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_403\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 417.244401 88.586925 \n",
       "L 418.257909 88.586925 \n",
       "L 418.257909 34.226925 \n",
       "L 417.244401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_404\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 418.257909 88.586925 \n",
       "L 419.271417 88.586925 \n",
       "L 419.271417 34.226925 \n",
       "L 418.257909 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_405\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 419.271417 88.586925 \n",
       "L 420.284925 88.586925 \n",
       "L 420.284925 34.226925 \n",
       "L 419.271417 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_406\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 420.284925 88.586925 \n",
       "L 421.298433 88.586925 \n",
       "L 421.298433 34.226925 \n",
       "L 420.284925 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_407\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 421.298433 88.586925 \n",
       "L 422.311941 88.586925 \n",
       "L 422.311941 34.226925 \n",
       "L 421.298433 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_408\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 422.311941 88.586925 \n",
       "L 423.325449 88.586925 \n",
       "L 423.325449 34.226925 \n",
       "L 422.311941 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_409\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 423.325449 88.586925 \n",
       "L 424.338957 88.586925 \n",
       "L 424.338957 34.226925 \n",
       "L 423.325449 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_410\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 424.338957 88.586925 \n",
       "L 425.352465 88.586925 \n",
       "L 425.352465 34.226925 \n",
       "L 424.338957 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_411\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 425.352465 88.586925 \n",
       "L 426.365973 88.586925 \n",
       "L 426.365973 34.226925 \n",
       "L 425.352465 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_412\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 426.365973 88.586925 \n",
       "L 427.379481 88.586925 \n",
       "L 427.379481 34.226925 \n",
       "L 426.365973 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_413\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 427.379481 88.586925 \n",
       "L 428.392989 88.586925 \n",
       "L 428.392989 34.226925 \n",
       "L 427.379481 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_414\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 428.392989 88.586925 \n",
       "L 429.406497 88.586925 \n",
       "L 429.406497 34.226925 \n",
       "L 428.392989 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_415\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 429.406497 88.586925 \n",
       "L 430.420005 88.586925 \n",
       "L 430.420005 34.226925 \n",
       "L 429.406497 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_416\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 430.420005 88.586925 \n",
       "L 431.433513 88.586925 \n",
       "L 431.433513 34.226925 \n",
       "L 430.420005 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_417\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 431.433513 88.586925 \n",
       "L 432.447021 88.586925 \n",
       "L 432.447021 34.226925 \n",
       "L 431.433513 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_418\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 432.447021 88.586925 \n",
       "L 433.460529 88.586925 \n",
       "L 433.460529 34.226925 \n",
       "L 432.447021 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_419\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 433.460529 88.586925 \n",
       "L 434.474037 88.586925 \n",
       "L 434.474037 34.226925 \n",
       "L 433.460529 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_420\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 434.474037 88.586925 \n",
       "L 435.487545 88.586925 \n",
       "L 435.487545 34.226925 \n",
       "L 434.474037 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_421\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 435.487545 88.586925 \n",
       "L 436.501053 88.586925 \n",
       "L 436.501053 34.226925 \n",
       "L 435.487545 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_422\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 436.501053 88.586925 \n",
       "L 437.514561 88.586925 \n",
       "L 437.514561 34.226925 \n",
       "L 436.501053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_423\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 437.514561 88.586925 \n",
       "L 438.528069 88.586925 \n",
       "L 438.528069 34.226925 \n",
       "L 437.514561 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_424\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 438.528069 88.586925 \n",
       "L 439.541577 88.586925 \n",
       "L 439.541577 34.226925 \n",
       "L 438.528069 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_425\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 439.541577 88.586925 \n",
       "L 440.555085 88.586925 \n",
       "L 440.555085 34.226925 \n",
       "L 439.541577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_426\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 440.555085 88.586925 \n",
       "L 441.568593 88.586925 \n",
       "L 441.568593 34.226925 \n",
       "L 440.555085 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_427\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 441.568593 88.586925 \n",
       "L 442.582101 88.586925 \n",
       "L 442.582101 34.226925 \n",
       "L 441.568593 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_428\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 442.582101 88.586925 \n",
       "L 443.595609 88.586925 \n",
       "L 443.595609 34.226925 \n",
       "L 442.582101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_429\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 443.595609 88.586925 \n",
       "L 444.609117 88.586925 \n",
       "L 444.609117 34.226925 \n",
       "L 443.595609 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_430\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 444.609117 88.586925 \n",
       "L 445.622625 88.586925 \n",
       "L 445.622625 34.226925 \n",
       "L 444.609117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_431\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 445.622625 88.586925 \n",
       "L 446.636133 88.586925 \n",
       "L 446.636133 34.226925 \n",
       "L 445.622625 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_432\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 446.636133 88.586925 \n",
       "L 447.649641 88.586925 \n",
       "L 447.649641 34.226925 \n",
       "L 446.636133 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_433\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 447.649641 88.586925 \n",
       "L 448.663149 88.586925 \n",
       "L 448.663149 34.226925 \n",
       "L 447.649641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_434\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 448.663149 88.586925 \n",
       "L 449.676657 88.586925 \n",
       "L 449.676657 34.226925 \n",
       "L 448.663149 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_435\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 449.676657 88.586925 \n",
       "L 450.690165 88.586925 \n",
       "L 450.690165 34.226925 \n",
       "L 449.676657 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_436\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 450.690165 88.586925 \n",
       "L 451.703673 88.586925 \n",
       "L 451.703673 34.226925 \n",
       "L 450.690165 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_437\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 451.703673 88.586925 \n",
       "L 452.717181 88.586925 \n",
       "L 452.717181 34.226925 \n",
       "L 451.703673 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_438\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 452.717181 88.586925 \n",
       "L 453.730689 88.586925 \n",
       "L 453.730689 34.226925 \n",
       "L 452.717181 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_439\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 453.730689 88.586925 \n",
       "L 454.744197 88.586925 \n",
       "L 454.744197 34.226925 \n",
       "L 453.730689 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_440\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 454.744197 88.586925 \n",
       "L 455.757705 88.586925 \n",
       "L 455.757705 34.226925 \n",
       "L 454.744197 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_441\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 455.757705 88.586925 \n",
       "L 456.771213 88.586925 \n",
       "L 456.771213 34.226925 \n",
       "L 455.757705 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_442\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 456.771213 88.586925 \n",
       "L 457.784721 88.586925 \n",
       "L 457.784721 34.226925 \n",
       "L 456.771213 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_443\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 457.784721 88.586925 \n",
       "L 458.798229 88.586925 \n",
       "L 458.798229 34.226925 \n",
       "L 457.784721 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_444\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 458.798229 88.586925 \n",
       "L 459.811737 88.586925 \n",
       "L 459.811737 34.226925 \n",
       "L 458.798229 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_445\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 459.811737 88.586925 \n",
       "L 460.825245 88.586925 \n",
       "L 460.825245 34.226925 \n",
       "L 459.811737 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_446\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 460.825245 88.586925 \n",
       "L 461.838753 88.586925 \n",
       "L 461.838753 34.226925 \n",
       "L 460.825245 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_447\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 461.838753 88.586925 \n",
       "L 462.852261 88.586925 \n",
       "L 462.852261 34.226925 \n",
       "L 461.838753 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_448\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 462.852261 88.586925 \n",
       "L 463.865769 88.586925 \n",
       "L 463.865769 34.226925 \n",
       "L 462.852261 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_449\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 463.865769 88.586925 \n",
       "L 464.879277 88.586925 \n",
       "L 464.879277 34.226925 \n",
       "L 463.865769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_450\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 464.879277 88.586925 \n",
       "L 465.892785 88.586925 \n",
       "L 465.892785 34.226925 \n",
       "L 464.879277 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_451\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 465.892785 88.586925 \n",
       "L 466.906293 88.586925 \n",
       "L 466.906293 34.226925 \n",
       "L 465.892785 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_452\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 466.906293 88.586925 \n",
       "L 467.919801 88.586925 \n",
       "L 467.919801 34.226925 \n",
       "L 466.906293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_453\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 467.919801 88.586925 \n",
       "L 468.933309 88.586925 \n",
       "L 468.933309 34.226925 \n",
       "L 467.919801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_454\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 468.933309 88.586925 \n",
       "L 469.946817 88.586925 \n",
       "L 469.946817 34.226925 \n",
       "L 468.933309 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_455\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 469.946817 88.586925 \n",
       "L 470.960325 88.586925 \n",
       "L 470.960325 34.226925 \n",
       "L 469.946817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_456\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 470.960325 88.586925 \n",
       "L 471.973833 88.586925 \n",
       "L 471.973833 34.226925 \n",
       "L 470.960325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_457\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 471.973833 88.586925 \n",
       "L 472.987341 88.586925 \n",
       "L 472.987341 34.226925 \n",
       "L 471.973833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_458\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 472.987341 88.586925 \n",
       "L 474.000849 88.586925 \n",
       "L 474.000849 34.226925 \n",
       "L 472.987341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_459\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 474.000849 88.586925 \n",
       "L 475.014357 88.586925 \n",
       "L 475.014357 34.226925 \n",
       "L 474.000849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_460\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 475.014357 88.586925 \n",
       "L 476.027865 88.586925 \n",
       "L 476.027865 34.226925 \n",
       "L 475.014357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_461\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 476.027865 88.586925 \n",
       "L 477.041373 88.586925 \n",
       "L 477.041373 34.226925 \n",
       "L 476.027865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_462\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 477.041373 88.586925 \n",
       "L 478.054881 88.586925 \n",
       "L 478.054881 34.226925 \n",
       "L 477.041373 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_463\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 478.054881 88.586925 \n",
       "L 479.068389 88.586925 \n",
       "L 479.068389 34.226925 \n",
       "L 478.054881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_464\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 479.068389 88.586925 \n",
       "L 480.081897 88.586925 \n",
       "L 480.081897 34.226925 \n",
       "L 479.068389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_465\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 480.081897 88.586925 \n",
       "L 481.095405 88.586925 \n",
       "L 481.095405 34.226925 \n",
       "L 480.081897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_466\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 481.095405 88.586925 \n",
       "L 482.108913 88.586925 \n",
       "L 482.108913 34.226925 \n",
       "L 481.095405 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_467\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 482.108913 88.586925 \n",
       "L 483.122421 88.586925 \n",
       "L 483.122421 34.226925 \n",
       "L 482.108913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_468\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 483.122421 88.586925 \n",
       "L 484.135929 88.586925 \n",
       "L 484.135929 34.226925 \n",
       "L 483.122421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_469\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 484.135929 88.586925 \n",
       "L 485.149437 88.586925 \n",
       "L 485.149437 34.226925 \n",
       "L 484.135929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_470\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 485.149437 88.586925 \n",
       "L 486.162945 88.586925 \n",
       "L 486.162945 34.226925 \n",
       "L 485.149437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_471\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 486.162945 88.586925 \n",
       "L 487.176453 88.586925 \n",
       "L 487.176453 34.226925 \n",
       "L 486.162945 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_472\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 487.176453 88.586925 \n",
       "L 488.189961 88.586925 \n",
       "L 488.189961 34.226925 \n",
       "L 487.176453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_473\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 488.189961 88.586925 \n",
       "L 489.203469 88.586925 \n",
       "L 489.203469 34.226925 \n",
       "L 488.189961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_474\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 489.203469 88.586925 \n",
       "L 490.216977 88.586925 \n",
       "L 490.216977 34.226925 \n",
       "L 489.203469 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_475\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 490.216977 88.586925 \n",
       "L 491.230485 88.586925 \n",
       "L 491.230485 34.226925 \n",
       "L 490.216977 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_476\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 491.230485 88.586925 \n",
       "L 492.243993 88.586925 \n",
       "L 492.243993 34.226925 \n",
       "L 491.230485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_477\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 492.243993 88.586925 \n",
       "L 493.257501 88.586925 \n",
       "L 493.257501 34.226925 \n",
       "L 492.243993 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_478\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 493.257501 88.586925 \n",
       "L 494.271009 88.586925 \n",
       "L 494.271009 34.226925 \n",
       "L 493.257501 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_479\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 494.271009 88.586925 \n",
       "L 495.284517 88.586925 \n",
       "L 495.284517 34.226925 \n",
       "L 494.271009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_480\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 495.284517 88.586925 \n",
       "L 496.298025 88.586925 \n",
       "L 496.298025 34.226925 \n",
       "L 495.284517 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_481\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 496.298025 88.586925 \n",
       "L 497.311533 88.586925 \n",
       "L 497.311533 34.226925 \n",
       "L 496.298025 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_482\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 497.311533 88.586925 \n",
       "L 498.325041 88.586925 \n",
       "L 498.325041 34.226925 \n",
       "L 497.311533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_483\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 498.325041 88.586925 \n",
       "L 499.338549 88.586925 \n",
       "L 499.338549 34.226925 \n",
       "L 498.325041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_484\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 499.338549 88.586925 \n",
       "L 500.352057 88.586925 \n",
       "L 500.352057 34.226925 \n",
       "L 499.338549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_485\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 500.352057 88.586925 \n",
       "L 501.365565 88.586925 \n",
       "L 501.365565 34.226925 \n",
       "L 500.352057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_486\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 501.365565 88.586925 \n",
       "L 502.379073 88.586925 \n",
       "L 502.379073 34.226925 \n",
       "L 501.365565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_487\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 502.379073 88.586925 \n",
       "L 503.392581 88.586925 \n",
       "L 503.392581 34.226925 \n",
       "L 502.379073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_488\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 503.392581 88.586925 \n",
       "L 504.406089 88.586925 \n",
       "L 504.406089 34.226925 \n",
       "L 503.392581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_489\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 504.406089 88.586925 \n",
       "L 505.419597 88.586925 \n",
       "L 505.419597 34.226925 \n",
       "L 504.406089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_490\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 505.419597 88.586925 \n",
       "L 506.433105 88.586925 \n",
       "L 506.433105 34.226925 \n",
       "L 505.419597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_491\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 506.433105 88.586925 \n",
       "L 507.446613 88.586925 \n",
       "L 507.446613 34.226925 \n",
       "L 506.433105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_492\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 507.446613 88.586925 \n",
       "L 508.460121 88.586925 \n",
       "L 508.460121 34.226925 \n",
       "L 507.446613 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_493\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 508.460121 88.586925 \n",
       "L 509.473629 88.586925 \n",
       "L 509.473629 34.226925 \n",
       "L 508.460121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_494\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 509.473629 88.586925 \n",
       "L 510.487137 88.586925 \n",
       "L 510.487137 34.226925 \n",
       "L 509.473629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_495\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 510.487137 88.586925 \n",
       "L 511.500645 88.586925 \n",
       "L 511.500645 34.226925 \n",
       "L 510.487137 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_496\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 511.500645 88.586925 \n",
       "L 512.514153 88.586925 \n",
       "L 512.514153 34.226925 \n",
       "L 511.500645 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_497\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 512.514153 88.586925 \n",
       "L 513.527661 88.586925 \n",
       "L 513.527661 34.226925 \n",
       "L 512.514153 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_498\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 513.527661 88.586925 \n",
       "L 514.541169 88.586925 \n",
       "L 514.541169 34.226925 \n",
       "L 513.527661 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_499\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 514.541169 88.586925 \n",
       "L 515.554677 88.586925 \n",
       "L 515.554677 34.226925 \n",
       "L 514.541169 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_500\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 515.554677 88.586925 \n",
       "L 516.568185 88.586925 \n",
       "L 516.568185 34.226925 \n",
       "L 515.554677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_501\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 516.568185 88.586925 \n",
       "L 517.581693 88.586925 \n",
       "L 517.581693 34.226925 \n",
       "L 516.568185 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_502\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 517.581693 88.586925 \n",
       "L 518.595201 88.586925 \n",
       "L 518.595201 34.226925 \n",
       "L 517.581693 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_503\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 518.595201 88.586925 \n",
       "L 519.608709 88.586925 \n",
       "L 519.608709 34.226925 \n",
       "L 518.595201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_504\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 519.608709 88.586925 \n",
       "L 520.622217 88.586925 \n",
       "L 520.622217 34.226925 \n",
       "L 519.608709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_505\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 520.622217 88.586925 \n",
       "L 521.635725 88.586925 \n",
       "L 521.635725 34.226925 \n",
       "L 520.622217 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_506\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 521.635725 88.586925 \n",
       "L 522.649233 88.586925 \n",
       "L 522.649233 34.226925 \n",
       "L 521.635725 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_507\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 522.649233 88.586925 \n",
       "L 523.662741 88.586925 \n",
       "L 523.662741 34.226925 \n",
       "L 522.649233 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_508\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 523.662741 88.586925 \n",
       "L 524.676249 88.586925 \n",
       "L 524.676249 34.226925 \n",
       "L 523.662741 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_509\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 524.676249 88.586925 \n",
       "L 525.689757 88.586925 \n",
       "L 525.689757 34.226925 \n",
       "L 524.676249 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_510\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 525.689757 88.586925 \n",
       "L 526.703265 88.586925 \n",
       "L 526.703265 34.226925 \n",
       "L 525.689757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_511\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 526.703265 88.586925 \n",
       "L 527.716773 88.586925 \n",
       "L 527.716773 34.226925 \n",
       "L 526.703265 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_512\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 527.716773 88.586925 \n",
       "L 528.730281 88.586925 \n",
       "L 528.730281 34.226925 \n",
       "L 527.716773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_513\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 528.730281 88.586925 \n",
       "L 529.743789 88.586925 \n",
       "L 529.743789 34.226925 \n",
       "L 528.730281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_514\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 529.743789 88.586925 \n",
       "L 530.757297 88.586925 \n",
       "L 530.757297 34.226925 \n",
       "L 529.743789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_515\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 530.757297 88.586925 \n",
       "L 531.770805 88.586925 \n",
       "L 531.770805 34.226925 \n",
       "L 530.757297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_516\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 531.770805 88.586925 \n",
       "L 532.784313 88.586925 \n",
       "L 532.784313 34.226925 \n",
       "L 531.770805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_517\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 532.784313 88.586925 \n",
       "L 533.797821 88.586925 \n",
       "L 533.797821 34.226925 \n",
       "L 532.784313 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_518\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 533.797821 88.586925 \n",
       "L 534.811329 88.586925 \n",
       "L 534.811329 34.226925 \n",
       "L 533.797821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_519\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 534.811329 88.586925 \n",
       "L 535.824837 88.586925 \n",
       "L 535.824837 34.226925 \n",
       "L 534.811329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_520\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 535.824837 88.586925 \n",
       "L 536.838345 88.586925 \n",
       "L 536.838345 34.226925 \n",
       "L 535.824837 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_521\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 536.838345 88.586925 \n",
       "L 537.851853 88.586925 \n",
       "L 537.851853 34.226925 \n",
       "L 536.838345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_522\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 537.851853 88.586925 \n",
       "L 538.865361 88.586925 \n",
       "L 538.865361 34.226925 \n",
       "L 537.851853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_523\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 538.865361 88.586925 \n",
       "L 539.878869 88.586925 \n",
       "L 539.878869 34.226925 \n",
       "L 538.865361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_524\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 539.878869 88.586925 \n",
       "L 540.892377 88.586925 \n",
       "L 540.892377 34.226925 \n",
       "L 539.878869 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_525\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 540.892377 88.586925 \n",
       "L 541.905885 88.586925 \n",
       "L 541.905885 34.226925 \n",
       "L 540.892377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_526\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 541.905885 88.586925 \n",
       "L 542.919393 88.586925 \n",
       "L 542.919393 34.226925 \n",
       "L 541.905885 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_527\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 542.919393 88.586925 \n",
       "L 543.932901 88.586925 \n",
       "L 543.932901 34.226925 \n",
       "L 542.919393 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_528\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 543.932901 88.586925 \n",
       "L 544.946409 88.586925 \n",
       "L 544.946409 34.226925 \n",
       "L 543.932901 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_529\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 544.946409 88.586925 \n",
       "L 545.959917 88.586925 \n",
       "L 545.959917 34.226925 \n",
       "L 544.946409 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_530\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 545.959917 88.586925 \n",
       "L 546.973425 88.586925 \n",
       "L 546.973425 34.226925 \n",
       "L 545.959917 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_531\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 546.973425 88.586925 \n",
       "L 547.986933 88.586925 \n",
       "L 547.986933 34.226925 \n",
       "L 546.973425 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_532\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 547.986933 88.586925 \n",
       "L 549.000441 88.586925 \n",
       "L 549.000441 34.226925 \n",
       "L 547.986933 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_533\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 549.000441 88.586925 \n",
       "L 550.013949 88.586925 \n",
       "L 550.013949 34.226925 \n",
       "L 549.000441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_534\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 550.013949 88.586925 \n",
       "L 551.027457 88.586925 \n",
       "L 551.027457 34.226925 \n",
       "L 550.013949 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_535\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 551.027457 88.586925 \n",
       "L 552.040965 88.586925 \n",
       "L 552.040965 34.226925 \n",
       "L 551.027457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_536\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 552.040965 88.586925 \n",
       "L 553.054473 88.586925 \n",
       "L 553.054473 34.226925 \n",
       "L 552.040965 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_537\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 553.054473 88.586925 \n",
       "L 554.067981 88.586925 \n",
       "L 554.067981 34.226925 \n",
       "L 553.054473 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_538\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 554.067981 88.586925 \n",
       "L 555.081489 88.586925 \n",
       "L 555.081489 34.226925 \n",
       "L 554.067981 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_539\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 555.081489 88.586925 \n",
       "L 556.094997 88.586925 \n",
       "L 556.094997 34.226925 \n",
       "L 555.081489 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_540\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 556.094997 88.586925 \n",
       "L 557.108505 88.586925 \n",
       "L 557.108505 34.226925 \n",
       "L 556.094997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_541\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 557.108505 88.586925 \n",
       "L 558.122013 88.586925 \n",
       "L 558.122013 34.226925 \n",
       "L 557.108505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_542\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 558.122013 88.586925 \n",
       "L 559.135521 88.586925 \n",
       "L 559.135521 34.226925 \n",
       "L 558.122013 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_543\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 559.135521 88.586925 \n",
       "L 560.149029 88.586925 \n",
       "L 560.149029 34.226925 \n",
       "L 559.135521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_544\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 560.149029 88.586925 \n",
       "L 561.162537 88.586925 \n",
       "L 561.162537 34.226925 \n",
       "L 560.149029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_545\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 561.162537 88.586925 \n",
       "L 562.176045 88.586925 \n",
       "L 562.176045 34.226925 \n",
       "L 561.162537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_546\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 562.176045 88.586925 \n",
       "L 563.189553 88.586925 \n",
       "L 563.189553 34.226925 \n",
       "L 562.176045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_547\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 563.189553 88.586925 \n",
       "L 564.203061 88.586925 \n",
       "L 564.203061 34.226925 \n",
       "L 563.189553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_548\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 564.203061 88.586925 \n",
       "L 565.216569 88.586925 \n",
       "L 565.216569 34.226925 \n",
       "L 564.203061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_549\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 565.216569 88.586925 \n",
       "L 566.230077 88.586925 \n",
       "L 566.230077 34.226925 \n",
       "L 565.216569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_550\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 566.230077 88.586925 \n",
       "L 567.243585 88.586925 \n",
       "L 567.243585 34.226925 \n",
       "L 566.230077 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_551\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 567.243585 88.586925 \n",
       "L 568.257093 88.586925 \n",
       "L 568.257093 34.226925 \n",
       "L 567.243585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_552\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 568.257093 88.586925 \n",
       "L 569.270601 88.586925 \n",
       "L 569.270601 34.226925 \n",
       "L 568.257093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_553\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 569.270601 88.586925 \n",
       "L 570.284109 88.586925 \n",
       "L 570.284109 34.226925 \n",
       "L 569.270601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_554\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 570.284109 88.586925 \n",
       "L 571.297617 88.586925 \n",
       "L 571.297617 34.226925 \n",
       "L 570.284109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_555\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 571.297617 88.586925 \n",
       "L 572.311125 88.586925 \n",
       "L 572.311125 34.226925 \n",
       "L 571.297617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_556\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 572.311125 88.586925 \n",
       "L 573.324633 88.586925 \n",
       "L 573.324633 34.226925 \n",
       "L 572.311125 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_557\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 573.324633 88.586925 \n",
       "L 574.338141 88.586925 \n",
       "L 574.338141 34.226925 \n",
       "L 573.324633 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_558\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 574.338141 88.586925 \n",
       "L 575.351649 88.586925 \n",
       "L 575.351649 34.226925 \n",
       "L 574.338141 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_559\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 575.351649 88.586925 \n",
       "L 576.365157 88.586925 \n",
       "L 576.365157 34.226925 \n",
       "L 575.351649 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_560\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 576.365157 88.586925 \n",
       "L 577.378665 88.586925 \n",
       "L 577.378665 34.226925 \n",
       "L 576.365157 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_561\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 577.378665 88.586925 \n",
       "L 578.392173 88.586925 \n",
       "L 578.392173 34.226925 \n",
       "L 577.378665 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_562\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 578.392173 88.586925 \n",
       "L 579.405681 88.586925 \n",
       "L 579.405681 34.226925 \n",
       "L 578.392173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_563\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 579.405681 88.586925 \n",
       "L 580.419189 88.586925 \n",
       "L 580.419189 34.226925 \n",
       "L 579.405681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_564\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 580.419189 88.586925 \n",
       "L 581.432697 88.586925 \n",
       "L 581.432697 34.226925 \n",
       "L 580.419189 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_565\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 581.432697 88.586925 \n",
       "L 582.446205 88.586925 \n",
       "L 582.446205 34.226925 \n",
       "L 581.432697 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_566\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 582.446205 88.586925 \n",
       "L 583.459713 88.586925 \n",
       "L 583.459713 34.226925 \n",
       "L 582.446205 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_567\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 583.459713 88.586925 \n",
       "L 584.473221 88.586925 \n",
       "L 584.473221 34.226925 \n",
       "L 583.459713 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_568\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 584.473221 88.586925 \n",
       "L 585.486729 88.586925 \n",
       "L 585.486729 34.226925 \n",
       "L 584.473221 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_569\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 585.486729 88.586925 \n",
       "L 586.500237 88.586925 \n",
       "L 586.500237 34.226925 \n",
       "L 585.486729 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_570\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 586.500237 88.586925 \n",
       "L 587.513745 88.586925 \n",
       "L 587.513745 34.226925 \n",
       "L 586.500237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_571\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 587.513745 88.586925 \n",
       "L 588.527253 88.586925 \n",
       "L 588.527253 34.226925 \n",
       "L 587.513745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_572\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 588.527253 88.586925 \n",
       "L 589.540761 88.586925 \n",
       "L 589.540761 34.226925 \n",
       "L 588.527253 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_573\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 589.540761 88.586925 \n",
       "L 590.554269 88.586925 \n",
       "L 590.554269 34.226925 \n",
       "L 589.540761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_574\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 590.554269 88.586925 \n",
       "L 591.567777 88.586925 \n",
       "L 591.567777 34.226925 \n",
       "L 590.554269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_575\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 591.567777 88.586925 \n",
       "L 592.581285 88.586925 \n",
       "L 592.581285 34.226925 \n",
       "L 591.567777 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_576\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 592.581285 88.586925 \n",
       "L 593.594793 88.586925 \n",
       "L 593.594793 34.226925 \n",
       "L 592.581285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_577\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 593.594793 88.586925 \n",
       "L 594.608301 88.586925 \n",
       "L 594.608301 34.226925 \n",
       "L 593.594793 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_578\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 594.608301 88.586925 \n",
       "L 595.621809 88.586925 \n",
       "L 595.621809 34.226925 \n",
       "L 594.608301 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_579\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 595.621809 88.586925 \n",
       "L 596.635317 88.586925 \n",
       "L 596.635317 34.226925 \n",
       "L 595.621809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_580\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 596.635317 88.586925 \n",
       "L 597.648825 88.586925 \n",
       "L 597.648825 34.226925 \n",
       "L 596.635317 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_581\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 597.648825 88.586925 \n",
       "L 598.662333 88.586925 \n",
       "L 598.662333 34.226925 \n",
       "L 597.648825 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_582\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 598.662333 88.586925 \n",
       "L 599.675841 88.586925 \n",
       "L 599.675841 34.226925 \n",
       "L 598.662333 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_583\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 599.675841 88.586925 \n",
       "L 600.689349 88.586925 \n",
       "L 600.689349 34.226925 \n",
       "L 599.675841 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_584\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 600.689349 88.586925 \n",
       "L 601.702857 88.586925 \n",
       "L 601.702857 34.226925 \n",
       "L 600.689349 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_585\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 601.702857 88.586925 \n",
       "L 602.716365 88.586925 \n",
       "L 602.716365 34.226925 \n",
       "L 601.702857 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_586\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 602.716365 88.586925 \n",
       "L 603.729873 88.586925 \n",
       "L 603.729873 34.226925 \n",
       "L 602.716365 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_587\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 603.729873 88.586925 \n",
       "L 604.743381 88.586925 \n",
       "L 604.743381 34.226925 \n",
       "L 603.729873 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_588\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 604.743381 88.586925 \n",
       "L 605.756889 88.586925 \n",
       "L 605.756889 34.226925 \n",
       "L 604.743381 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_589\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 605.756889 88.586925 \n",
       "L 606.770397 88.586925 \n",
       "L 606.770397 34.226925 \n",
       "L 605.756889 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_590\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 606.770397 88.586925 \n",
       "L 607.783905 88.586925 \n",
       "L 607.783905 34.226925 \n",
       "L 606.770397 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_591\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 607.783905 88.586925 \n",
       "L 608.797413 88.586925 \n",
       "L 608.797413 34.226925 \n",
       "L 607.783905 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_592\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 608.797413 88.586925 \n",
       "L 609.810921 88.586925 \n",
       "L 609.810921 34.226925 \n",
       "L 608.797413 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_593\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 609.810921 88.586925 \n",
       "L 610.824429 88.586925 \n",
       "L 610.824429 34.226925 \n",
       "L 609.810921 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_594\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 610.824429 88.586925 \n",
       "L 611.837937 88.586925 \n",
       "L 611.837937 34.226925 \n",
       "L 610.824429 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_595\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 611.837937 88.586925 \n",
       "L 612.851445 88.586925 \n",
       "L 612.851445 34.226925 \n",
       "L 611.837937 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_596\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 612.851445 88.586925 \n",
       "L 613.864953 88.586925 \n",
       "L 613.864953 34.226925 \n",
       "L 612.851445 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_597\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 613.864953 88.586925 \n",
       "L 614.878461 88.586925 \n",
       "L 614.878461 34.226925 \n",
       "L 613.864953 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_598\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 614.878461 88.586925 \n",
       "L 615.891969 88.586925 \n",
       "L 615.891969 34.226925 \n",
       "L 614.878461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_599\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 615.891969 88.586925 \n",
       "L 616.905477 88.586925 \n",
       "L 616.905477 34.226925 \n",
       "L 615.891969 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_600\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 616.905477 88.586925 \n",
       "L 617.918985 88.586925 \n",
       "L 617.918985 34.226925 \n",
       "L 616.905477 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_601\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 617.918985 88.586925 \n",
       "L 618.932493 88.586925 \n",
       "L 618.932493 34.226925 \n",
       "L 617.918985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_602\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 618.932493 88.586925 \n",
       "L 619.946001 88.586925 \n",
       "L 619.946001 34.226925 \n",
       "L 618.932493 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_603\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 619.946001 88.586925 \n",
       "L 620.959509 88.586925 \n",
       "L 620.959509 34.226925 \n",
       "L 619.946001 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_604\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 620.959509 88.586925 \n",
       "L 621.973017 88.586925 \n",
       "L 621.973017 34.226925 \n",
       "L 620.959509 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_605\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 621.973017 88.586925 \n",
       "L 622.986525 88.586925 \n",
       "L 622.986525 34.226925 \n",
       "L 621.973017 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_606\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 622.986525 88.586925 \n",
       "L 624.000033 88.586925 \n",
       "L 624.000033 34.226925 \n",
       "L 622.986525 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_607\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 624.000033 88.586925 \n",
       "L 625.013541 88.586925 \n",
       "L 625.013541 34.226925 \n",
       "L 624.000033 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_608\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 625.013541 88.586925 \n",
       "L 626.027049 88.586925 \n",
       "L 626.027049 34.226925 \n",
       "L 625.013541 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_609\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 626.027049 88.586925 \n",
       "L 627.040557 88.586925 \n",
       "L 627.040557 34.226925 \n",
       "L 626.027049 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_610\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 627.040557 88.586925 \n",
       "L 628.054065 88.586925 \n",
       "L 628.054065 34.226925 \n",
       "L 627.040557 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_611\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 628.054065 88.586925 \n",
       "L 629.067573 88.586925 \n",
       "L 629.067573 34.226925 \n",
       "L 628.054065 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_612\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 629.067573 88.586925 \n",
       "L 630.081081 88.586925 \n",
       "L 630.081081 34.226925 \n",
       "L 629.067573 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_613\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 630.081081 88.586925 \n",
       "L 631.094589 88.586925 \n",
       "L 631.094589 34.226925 \n",
       "L 630.081081 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_614\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 631.094589 88.586925 \n",
       "L 632.108097 88.586925 \n",
       "L 632.108097 34.226925 \n",
       "L 631.094589 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_615\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 632.108097 88.586925 \n",
       "L 633.121605 88.586925 \n",
       "L 633.121605 34.226925 \n",
       "L 632.108097 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_616\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 633.121605 88.586925 \n",
       "L 634.135113 88.586925 \n",
       "L 634.135113 34.226925 \n",
       "L 633.121605 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_617\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 634.135113 88.586925 \n",
       "L 635.148621 88.586925 \n",
       "L 635.148621 34.226925 \n",
       "L 634.135113 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_618\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 635.148621 88.586925 \n",
       "L 636.162129 88.586925 \n",
       "L 636.162129 34.226925 \n",
       "L 635.148621 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_619\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 636.162129 88.586925 \n",
       "L 637.175637 88.586925 \n",
       "L 637.175637 34.226925 \n",
       "L 636.162129 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_620\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 637.175637 88.586925 \n",
       "L 638.189145 88.586925 \n",
       "L 638.189145 34.226925 \n",
       "L 637.175637 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_621\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 638.189145 88.586925 \n",
       "L 639.202653 88.586925 \n",
       "L 639.202653 34.226925 \n",
       "L 638.189145 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_622\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 639.202653 88.586925 \n",
       "L 640.216161 88.586925 \n",
       "L 640.216161 34.226925 \n",
       "L 639.202653 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_623\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 640.216161 88.586925 \n",
       "L 641.229669 88.586925 \n",
       "L 641.229669 34.226925 \n",
       "L 640.216161 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_624\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 641.229669 88.586925 \n",
       "L 642.243177 88.586925 \n",
       "L 642.243177 34.226925 \n",
       "L 641.229669 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_625\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 642.243177 88.586925 \n",
       "L 643.256685 88.586925 \n",
       "L 643.256685 34.226925 \n",
       "L 642.243177 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_626\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 643.256685 88.586925 \n",
       "L 644.270193 88.586925 \n",
       "L 644.270193 34.226925 \n",
       "L 643.256685 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_627\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 644.270193 88.586925 \n",
       "L 645.283701 88.586925 \n",
       "L 645.283701 34.226925 \n",
       "L 644.270193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_628\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 645.283701 88.586925 \n",
       "L 646.297209 88.586925 \n",
       "L 646.297209 34.226925 \n",
       "L 645.283701 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_629\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 646.297209 88.586925 \n",
       "L 647.310717 88.586925 \n",
       "L 647.310717 34.226925 \n",
       "L 646.297209 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_630\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 647.310717 88.586925 \n",
       "L 648.324225 88.586925 \n",
       "L 648.324225 34.226925 \n",
       "L 647.310717 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_631\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 648.324225 88.586925 \n",
       "L 649.337733 88.586925 \n",
       "L 649.337733 34.226925 \n",
       "L 648.324225 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_632\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 649.337733 88.586925 \n",
       "L 650.351241 88.586925 \n",
       "L 650.351241 34.226925 \n",
       "L 649.337733 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_633\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 650.351241 88.586925 \n",
       "L 651.364749 88.586925 \n",
       "L 651.364749 34.226925 \n",
       "L 650.351241 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_634\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 651.364749 88.586925 \n",
       "L 652.378257 88.586925 \n",
       "L 652.378257 34.226925 \n",
       "L 651.364749 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_635\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 652.378257 88.586925 \n",
       "L 653.391765 88.586925 \n",
       "L 653.391765 34.226925 \n",
       "L 652.378257 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_636\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 653.391765 88.586925 \n",
       "L 654.405273 88.586925 \n",
       "L 654.405273 34.226925 \n",
       "L 653.391765 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_637\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 654.405273 88.586925 \n",
       "L 655.418781 88.586925 \n",
       "L 655.418781 34.226925 \n",
       "L 654.405273 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_638\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 655.418781 88.586925 \n",
       "L 656.432289 88.586925 \n",
       "L 656.432289 34.226925 \n",
       "L 655.418781 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_639\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 656.432289 88.586925 \n",
       "L 657.445797 88.586925 \n",
       "L 657.445797 34.226925 \n",
       "L 656.432289 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_640\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 657.445797 88.586925 \n",
       "L 658.459305 88.586925 \n",
       "L 658.459305 34.226925 \n",
       "L 657.445797 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_641\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 658.459305 88.586925 \n",
       "L 659.472813 88.586925 \n",
       "L 659.472813 34.226925 \n",
       "L 658.459305 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_642\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 659.472813 88.586925 \n",
       "L 660.486321 88.586925 \n",
       "L 660.486321 34.226925 \n",
       "L 659.472813 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_643\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 660.486321 88.586925 \n",
       "L 661.499829 88.586925 \n",
       "L 661.499829 34.226925 \n",
       "L 660.486321 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_644\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 661.499829 88.586925 \n",
       "L 662.513337 88.586925 \n",
       "L 662.513337 34.226925 \n",
       "L 661.499829 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_645\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 662.513337 88.586925 \n",
       "L 663.526845 88.586925 \n",
       "L 663.526845 34.226925 \n",
       "L 662.513337 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_646\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 663.526845 88.586925 \n",
       "L 664.540353 88.586925 \n",
       "L 664.540353 34.226925 \n",
       "L 663.526845 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_647\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 664.540353 88.586925 \n",
       "L 665.553861 88.586925 \n",
       "L 665.553861 34.226925 \n",
       "L 664.540353 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_648\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 665.553861 88.586925 \n",
       "L 666.567369 88.586925 \n",
       "L 666.567369 34.226925 \n",
       "L 665.553861 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_649\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 666.567369 88.586925 \n",
       "L 667.580877 88.586925 \n",
       "L 667.580877 34.226925 \n",
       "L 666.567369 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_650\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 667.580877 88.586925 \n",
       "L 668.594385 88.586925 \n",
       "L 668.594385 34.226925 \n",
       "L 667.580877 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_651\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 668.594385 88.586925 \n",
       "L 669.607893 88.586925 \n",
       "L 669.607893 34.226925 \n",
       "L 668.594385 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_652\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 669.607893 88.586925 \n",
       "L 670.621401 88.586925 \n",
       "L 670.621401 34.226925 \n",
       "L 669.607893 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_653\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 670.621401 88.586925 \n",
       "L 671.634909 88.586925 \n",
       "L 671.634909 34.226925 \n",
       "L 670.621401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_654\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 671.634909 88.586925 \n",
       "L 672.648417 88.586925 \n",
       "L 672.648417 34.226925 \n",
       "L 671.634909 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_655\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 672.648417 88.586925 \n",
       "L 673.661925 88.586925 \n",
       "L 673.661925 34.226925 \n",
       "L 672.648417 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_656\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 673.661925 88.586925 \n",
       "L 674.675433 88.586925 \n",
       "L 674.675433 34.226925 \n",
       "L 673.661925 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_657\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 674.675433 88.586925 \n",
       "L 675.688941 88.586925 \n",
       "L 675.688941 34.226925 \n",
       "L 674.675433 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_658\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 675.688941 88.586925 \n",
       "L 676.702449 88.586925 \n",
       "L 676.702449 34.226925 \n",
       "L 675.688941 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_659\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 676.702449 88.586925 \n",
       "L 677.715957 88.586925 \n",
       "L 677.715957 34.226925 \n",
       "L 676.702449 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_660\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 677.715957 88.586925 \n",
       "L 678.729465 88.586925 \n",
       "L 678.729465 34.226925 \n",
       "L 677.715957 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_661\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 678.729465 88.586925 \n",
       "L 679.742973 88.586925 \n",
       "L 679.742973 34.226925 \n",
       "L 678.729465 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_662\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 679.742973 88.586925 \n",
       "L 680.756481 88.586925 \n",
       "L 680.756481 34.226925 \n",
       "L 679.742973 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_663\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 680.756481 88.586925 \n",
       "L 681.769989 88.586925 \n",
       "L 681.769989 34.226925 \n",
       "L 680.756481 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_664\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 681.769989 88.586925 \n",
       "L 682.783497 88.586925 \n",
       "L 682.783497 34.226925 \n",
       "L 681.769989 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_665\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 682.783497 88.586925 \n",
       "L 683.797005 88.586925 \n",
       "L 683.797005 34.226925 \n",
       "L 682.783497 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_666\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 683.797005 88.586925 \n",
       "L 684.810513 88.586925 \n",
       "L 684.810513 34.226925 \n",
       "L 683.797005 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_667\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 684.810513 88.586925 \n",
       "L 685.824021 88.586925 \n",
       "L 685.824021 34.226925 \n",
       "L 684.810513 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_668\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 685.824021 88.586925 \n",
       "L 686.837529 88.586925 \n",
       "L 686.837529 34.226925 \n",
       "L 685.824021 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_669\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 686.837529 88.586925 \n",
       "L 687.851037 88.586925 \n",
       "L 687.851037 34.226925 \n",
       "L 686.837529 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_670\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 687.851037 88.586925 \n",
       "L 688.864545 88.586925 \n",
       "L 688.864545 34.226925 \n",
       "L 687.851037 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_671\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 688.864545 88.586925 \n",
       "L 689.878053 88.586925 \n",
       "L 689.878053 34.226925 \n",
       "L 688.864545 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_672\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 689.878053 88.586925 \n",
       "L 690.891561 88.586925 \n",
       "L 690.891561 34.226925 \n",
       "L 689.878053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_673\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 690.891561 88.586925 \n",
       "L 691.905069 88.586925 \n",
       "L 691.905069 34.226925 \n",
       "L 690.891561 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_674\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 691.905069 88.586925 \n",
       "L 692.918577 88.586925 \n",
       "L 692.918577 34.226925 \n",
       "L 691.905069 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_675\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 692.918577 88.586925 \n",
       "L 693.932085 88.586925 \n",
       "L 693.932085 34.226925 \n",
       "L 692.918577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_676\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 693.932085 88.586925 \n",
       "L 694.945593 88.586925 \n",
       "L 694.945593 34.226925 \n",
       "L 693.932085 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_677\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 694.945593 88.586925 \n",
       "L 695.959101 88.586925 \n",
       "L 695.959101 34.226925 \n",
       "L 694.945593 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_678\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 695.959101 88.586925 \n",
       "L 696.972609 88.586925 \n",
       "L 696.972609 34.226925 \n",
       "L 695.959101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_679\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 696.972609 88.586925 \n",
       "L 697.986117 88.586925 \n",
       "L 697.986117 34.226925 \n",
       "L 696.972609 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_680\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 697.986117 88.586925 \n",
       "L 698.999625 88.586925 \n",
       "L 698.999625 34.226925 \n",
       "L 697.986117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_681\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 698.999625 88.586925 \n",
       "L 700.013133 88.586925 \n",
       "L 700.013133 34.226925 \n",
       "L 698.999625 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_682\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 700.013133 88.586925 \n",
       "L 701.026641 88.586925 \n",
       "L 701.026641 34.226925 \n",
       "L 700.013133 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_683\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 701.026641 88.586925 \n",
       "L 702.040149 88.586925 \n",
       "L 702.040149 34.226925 \n",
       "L 701.026641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_684\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 702.040149 88.586925 \n",
       "L 703.053657 88.586925 \n",
       "L 703.053657 34.226925 \n",
       "L 702.040149 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_685\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 703.053657 88.586925 \n",
       "L 704.067165 88.586925 \n",
       "L 704.067165 34.226925 \n",
       "L 703.053657 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_686\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 704.067165 88.586925 \n",
       "L 705.080673 88.586925 \n",
       "L 705.080673 34.226925 \n",
       "L 704.067165 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_687\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 705.080673 88.586925 \n",
       "L 706.094181 88.586925 \n",
       "L 706.094181 34.226925 \n",
       "L 705.080673 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_688\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 706.094181 88.586925 \n",
       "L 707.107689 88.586925 \n",
       "L 707.107689 34.226925 \n",
       "L 706.094181 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_689\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 707.107689 88.586925 \n",
       "L 708.121197 88.586925 \n",
       "L 708.121197 34.226925 \n",
       "L 707.107689 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_690\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 708.121197 88.586925 \n",
       "L 709.134705 88.586925 \n",
       "L 709.134705 34.226925 \n",
       "L 708.121197 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_691\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 709.134705 88.586925 \n",
       "L 710.148213 88.586925 \n",
       "L 710.148213 34.226925 \n",
       "L 709.134705 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_692\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 710.148213 88.586925 \n",
       "L 711.161721 88.586925 \n",
       "L 711.161721 34.226925 \n",
       "L 710.148213 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_693\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 711.161721 88.586925 \n",
       "L 712.175229 88.586925 \n",
       "L 712.175229 34.226925 \n",
       "L 711.161721 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_694\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 712.175229 88.586925 \n",
       "L 713.188737 88.586925 \n",
       "L 713.188737 34.226925 \n",
       "L 712.175229 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_695\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 713.188737 88.586925 \n",
       "L 714.202245 88.586925 \n",
       "L 714.202245 34.226925 \n",
       "L 713.188737 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_696\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 714.202245 88.586925 \n",
       "L 715.215753 88.586925 \n",
       "L 715.215753 34.226925 \n",
       "L 714.202245 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_697\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 715.215753 88.586925 \n",
       "L 716.229261 88.586925 \n",
       "L 716.229261 34.226925 \n",
       "L 715.215753 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_698\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 716.229261 88.586925 \n",
       "L 717.242769 88.586925 \n",
       "L 717.242769 34.226925 \n",
       "L 716.229261 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_699\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 717.242769 88.586925 \n",
       "L 718.256277 88.586925 \n",
       "L 718.256277 34.226925 \n",
       "L 717.242769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_700\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 718.256277 88.586925 \n",
       "L 719.269785 88.586925 \n",
       "L 719.269785 34.226925 \n",
       "L 718.256277 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_701\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 719.269785 88.586925 \n",
       "L 720.283293 88.586925 \n",
       "L 720.283293 34.226925 \n",
       "L 719.269785 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_702\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 720.283293 88.586925 \n",
       "L 721.296801 88.586925 \n",
       "L 721.296801 34.226925 \n",
       "L 720.283293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_703\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 721.296801 88.586925 \n",
       "L 722.310309 88.586925 \n",
       "L 722.310309 34.226925 \n",
       "L 721.296801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_704\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 722.310309 88.586925 \n",
       "L 723.323817 88.586925 \n",
       "L 723.323817 34.226925 \n",
       "L 722.310309 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_705\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 723.323817 88.586925 \n",
       "L 724.337325 88.586925 \n",
       "L 724.337325 34.226925 \n",
       "L 723.323817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_706\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 724.337325 88.586925 \n",
       "L 725.350833 88.586925 \n",
       "L 725.350833 34.226925 \n",
       "L 724.337325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_707\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 725.350833 88.586925 \n",
       "L 726.364341 88.586925 \n",
       "L 726.364341 34.226925 \n",
       "L 725.350833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_708\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 726.364341 88.586925 \n",
       "L 727.377849 88.586925 \n",
       "L 727.377849 34.226925 \n",
       "L 726.364341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_709\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 727.377849 88.586925 \n",
       "L 728.391357 88.586925 \n",
       "L 728.391357 34.226925 \n",
       "L 727.377849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_710\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 728.391357 88.586925 \n",
       "L 729.404865 88.586925 \n",
       "L 729.404865 34.226925 \n",
       "L 728.391357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_711\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 729.404865 88.586925 \n",
       "L 730.418373 88.586925 \n",
       "L 730.418373 34.226925 \n",
       "L 729.404865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_712\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 730.418373 88.586925 \n",
       "L 731.431881 88.586925 \n",
       "L 731.431881 34.226925 \n",
       "L 730.418373 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_713\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 731.431881 88.586925 \n",
       "L 732.445389 88.586925 \n",
       "L 732.445389 34.226925 \n",
       "L 731.431881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_714\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 732.445389 88.586925 \n",
       "L 733.458897 88.586925 \n",
       "L 733.458897 34.226925 \n",
       "L 732.445389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_715\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 733.458897 88.586925 \n",
       "L 734.472405 88.586925 \n",
       "L 734.472405 34.226925 \n",
       "L 733.458897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_716\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 734.472405 88.586925 \n",
       "L 735.485913 88.586925 \n",
       "L 735.485913 34.226925 \n",
       "L 734.472405 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_717\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 735.485913 88.586925 \n",
       "L 736.499421 88.586925 \n",
       "L 736.499421 34.226925 \n",
       "L 735.485913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_718\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 736.499421 88.586925 \n",
       "L 737.512929 88.586925 \n",
       "L 737.512929 34.226925 \n",
       "L 736.499421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_719\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 737.512929 88.586925 \n",
       "L 738.526437 88.586925 \n",
       "L 738.526437 34.226925 \n",
       "L 737.512929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_720\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 738.526437 88.586925 \n",
       "L 739.539945 88.586925 \n",
       "L 739.539945 34.226925 \n",
       "L 738.526437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_721\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 739.539945 88.586925 \n",
       "L 740.553453 88.586925 \n",
       "L 740.553453 34.226925 \n",
       "L 739.539945 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_722\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 740.553453 88.586925 \n",
       "L 741.566961 88.586925 \n",
       "L 741.566961 34.226925 \n",
       "L 740.553453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_723\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 741.566961 88.586925 \n",
       "L 742.580469 88.586925 \n",
       "L 742.580469 34.226925 \n",
       "L 741.566961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_724\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 742.580469 88.586925 \n",
       "L 743.593977 88.586925 \n",
       "L 743.593977 34.226925 \n",
       "L 742.580469 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_725\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 743.593977 88.586925 \n",
       "L 744.607485 88.586925 \n",
       "L 744.607485 34.226925 \n",
       "L 743.593977 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_726\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 744.607485 88.586925 \n",
       "L 745.620993 88.586925 \n",
       "L 745.620993 34.226925 \n",
       "L 744.607485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_727\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 745.620993 88.586925 \n",
       "L 746.634501 88.586925 \n",
       "L 746.634501 34.226925 \n",
       "L 745.620993 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_728\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 746.634501 88.586925 \n",
       "L 747.648009 88.586925 \n",
       "L 747.648009 34.226925 \n",
       "L 746.634501 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_729\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 747.648009 88.586925 \n",
       "L 748.661517 88.586925 \n",
       "L 748.661517 34.226925 \n",
       "L 747.648009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_730\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 748.661517 88.586925 \n",
       "L 749.675025 88.586925 \n",
       "L 749.675025 34.226925 \n",
       "L 748.661517 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_731\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 749.675025 88.586925 \n",
       "L 750.688533 88.586925 \n",
       "L 750.688533 34.226925 \n",
       "L 749.675025 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_732\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 750.688533 88.586925 \n",
       "L 751.702041 88.586925 \n",
       "L 751.702041 34.226925 \n",
       "L 750.688533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_733\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 751.702041 88.586925 \n",
       "L 752.715549 88.586925 \n",
       "L 752.715549 34.226925 \n",
       "L 751.702041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_734\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 752.715549 88.586925 \n",
       "L 753.729057 88.586925 \n",
       "L 753.729057 34.226925 \n",
       "L 752.715549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_735\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 753.729057 88.586925 \n",
       "L 754.742565 88.586925 \n",
       "L 754.742565 34.226925 \n",
       "L 753.729057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_736\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 754.742565 88.586925 \n",
       "L 755.756073 88.586925 \n",
       "L 755.756073 34.226925 \n",
       "L 754.742565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_737\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 755.756073 88.586925 \n",
       "L 756.769581 88.586925 \n",
       "L 756.769581 34.226925 \n",
       "L 755.756073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_738\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 756.769581 88.586925 \n",
       "L 757.783089 88.586925 \n",
       "L 757.783089 34.226925 \n",
       "L 756.769581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_739\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 757.783089 88.586925 \n",
       "L 758.796597 88.586925 \n",
       "L 758.796597 34.226925 \n",
       "L 757.783089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_740\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 758.796597 88.586925 \n",
       "L 759.810105 88.586925 \n",
       "L 759.810105 34.226925 \n",
       "L 758.796597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_741\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 759.810105 88.586925 \n",
       "L 760.823613 88.586925 \n",
       "L 760.823613 34.226925 \n",
       "L 759.810105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_742\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 760.823613 88.586925 \n",
       "L 761.837121 88.586925 \n",
       "L 761.837121 34.226925 \n",
       "L 760.823613 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_743\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 761.837121 88.586925 \n",
       "L 762.850629 88.586925 \n",
       "L 762.850629 34.226925 \n",
       "L 761.837121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_744\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 762.850629 88.586925 \n",
       "L 763.864137 88.586925 \n",
       "L 763.864137 34.226925 \n",
       "L 762.850629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_745\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 763.864137 88.586925 \n",
       "L 764.877645 88.586925 \n",
       "L 764.877645 34.226925 \n",
       "L 763.864137 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_746\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 764.877645 88.586925 \n",
       "L 765.891153 88.586925 \n",
       "L 765.891153 34.226925 \n",
       "L 764.877645 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_747\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 765.891153 88.586925 \n",
       "L 766.904661 88.586925 \n",
       "L 766.904661 34.226925 \n",
       "L 765.891153 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_748\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 766.904661 88.586925 \n",
       "L 767.918169 88.586925 \n",
       "L 767.918169 34.226925 \n",
       "L 766.904661 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_749\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 767.918169 88.586925 \n",
       "L 768.931677 88.586925 \n",
       "L 768.931677 34.226925 \n",
       "L 767.918169 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_750\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 768.931677 88.586925 \n",
       "L 769.945185 88.586925 \n",
       "L 769.945185 34.226925 \n",
       "L 768.931677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_751\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 769.945185 88.586925 \n",
       "L 770.958693 88.586925 \n",
       "L 770.958693 34.226925 \n",
       "L 769.945185 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_752\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 770.958693 88.586925 \n",
       "L 771.972201 88.586925 \n",
       "L 771.972201 34.226925 \n",
       "L 770.958693 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_753\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 771.972201 88.586925 \n",
       "L 772.985709 88.586925 \n",
       "L 772.985709 34.226925 \n",
       "L 771.972201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_754\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 772.985709 88.586925 \n",
       "L 773.999217 88.586925 \n",
       "L 773.999217 34.226925 \n",
       "L 772.985709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_755\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 773.999217 88.586925 \n",
       "L 775.012725 88.586925 \n",
       "L 775.012725 34.226925 \n",
       "L 773.999217 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_756\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 775.012725 88.586925 \n",
       "L 776.026233 88.586925 \n",
       "L 776.026233 34.226925 \n",
       "L 775.012725 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_757\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 776.026233 88.586925 \n",
       "L 777.039741 88.586925 \n",
       "L 777.039741 34.226925 \n",
       "L 776.026233 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_758\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 777.039741 88.586925 \n",
       "L 778.053249 88.586925 \n",
       "L 778.053249 34.226925 \n",
       "L 777.039741 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_759\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 778.053249 88.586925 \n",
       "L 779.066757 88.586925 \n",
       "L 779.066757 34.226925 \n",
       "L 778.053249 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_760\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 779.066757 88.586925 \n",
       "L 780.080265 88.586925 \n",
       "L 780.080265 34.226925 \n",
       "L 779.066757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_761\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 780.080265 88.586925 \n",
       "L 781.093773 88.586925 \n",
       "L 781.093773 34.226925 \n",
       "L 780.080265 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_762\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 781.093773 88.586925 \n",
       "L 782.107281 88.586925 \n",
       "L 782.107281 34.226925 \n",
       "L 781.093773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_763\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 782.107281 88.586925 \n",
       "L 783.120789 88.586925 \n",
       "L 783.120789 34.226925 \n",
       "L 782.107281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_764\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 783.120789 88.586925 \n",
       "L 784.134297 88.586925 \n",
       "L 784.134297 34.226925 \n",
       "L 783.120789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_765\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 784.134297 88.586925 \n",
       "L 785.147805 88.586925 \n",
       "L 785.147805 34.226925 \n",
       "L 784.134297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_766\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 785.147805 88.586925 \n",
       "L 786.161313 88.586925 \n",
       "L 786.161313 34.226925 \n",
       "L 785.147805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_767\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 786.161313 88.586925 \n",
       "L 787.174821 88.586925 \n",
       "L 787.174821 34.226925 \n",
       "L 786.161313 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_768\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 787.174821 88.586925 \n",
       "L 788.188329 88.586925 \n",
       "L 788.188329 34.226925 \n",
       "L 787.174821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_769\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 788.188329 88.586925 \n",
       "L 789.201837 88.586925 \n",
       "L 789.201837 34.226925 \n",
       "L 788.188329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_770\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 789.201837 88.586925 \n",
       "L 790.215345 88.586925 \n",
       "L 790.215345 34.226925 \n",
       "L 789.201837 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_771\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 790.215345 88.586925 \n",
       "L 791.228853 88.586925 \n",
       "L 791.228853 34.226925 \n",
       "L 790.215345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_772\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 791.228853 88.586925 \n",
       "L 792.242361 88.586925 \n",
       "L 792.242361 34.226925 \n",
       "L 791.228853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_773\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 792.242361 88.586925 \n",
       "L 793.255869 88.586925 \n",
       "L 793.255869 34.226925 \n",
       "L 792.242361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_774\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 793.255869 88.586925 \n",
       "L 794.269377 88.586925 \n",
       "L 794.269377 34.226925 \n",
       "L 793.255869 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_775\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 794.269377 88.586925 \n",
       "L 795.282885 88.586925 \n",
       "L 795.282885 34.226925 \n",
       "L 794.269377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_776\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 795.282885 88.586925 \n",
       "L 796.296393 88.586925 \n",
       "L 796.296393 34.226925 \n",
       "L 795.282885 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_777\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 796.296393 88.586925 \n",
       "L 797.309901 88.586925 \n",
       "L 797.309901 34.226925 \n",
       "L 796.296393 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_778\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 797.309901 88.586925 \n",
       "L 798.323409 88.586925 \n",
       "L 798.323409 34.226925 \n",
       "L 797.309901 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_779\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 798.323409 88.586925 \n",
       "L 799.336917 88.586925 \n",
       "L 799.336917 34.226925 \n",
       "L 798.323409 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_780\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 799.336917 88.586925 \n",
       "L 800.350425 88.586925 \n",
       "L 800.350425 34.226925 \n",
       "L 799.336917 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_781\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 800.350425 88.586925 \n",
       "L 801.363933 88.586925 \n",
       "L 801.363933 34.226925 \n",
       "L 800.350425 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_782\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 801.363933 88.586925 \n",
       "L 802.377441 88.586925 \n",
       "L 802.377441 34.226925 \n",
       "L 801.363933 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_783\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 802.377441 88.586925 \n",
       "L 803.390949 88.586925 \n",
       "L 803.390949 34.226925 \n",
       "L 802.377441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_784\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 803.390949 88.586925 \n",
       "L 804.404457 88.586925 \n",
       "L 804.404457 34.226925 \n",
       "L 803.390949 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_785\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 804.404457 88.586925 \n",
       "L 805.417965 88.586925 \n",
       "L 805.417965 34.226925 \n",
       "L 804.404457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_786\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 805.417965 88.586925 \n",
       "L 806.431473 88.586925 \n",
       "L 806.431473 34.226925 \n",
       "L 805.417965 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_787\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 806.431473 88.586925 \n",
       "L 807.444981 88.586925 \n",
       "L 807.444981 34.226925 \n",
       "L 806.431473 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_788\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 807.444981 88.586925 \n",
       "L 808.458489 88.586925 \n",
       "L 808.458489 34.226925 \n",
       "L 807.444981 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_789\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 808.458489 88.586925 \n",
       "L 809.471997 88.586925 \n",
       "L 809.471997 34.226925 \n",
       "L 808.458489 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_790\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 809.471997 88.586925 \n",
       "L 810.485505 88.586925 \n",
       "L 810.485505 34.226925 \n",
       "L 809.471997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_791\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 810.485505 88.586925 \n",
       "L 811.499013 88.586925 \n",
       "L 811.499013 34.226925 \n",
       "L 810.485505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_792\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 811.499013 88.586925 \n",
       "L 812.512521 88.586925 \n",
       "L 812.512521 34.226925 \n",
       "L 811.499013 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_793\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 812.512521 88.586925 \n",
       "L 813.526029 88.586925 \n",
       "L 813.526029 34.226925 \n",
       "L 812.512521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_794\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 813.526029 88.586925 \n",
       "L 814.539537 88.586925 \n",
       "L 814.539537 34.226925 \n",
       "L 813.526029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_795\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 814.539537 88.586925 \n",
       "L 815.553045 88.586925 \n",
       "L 815.553045 34.226925 \n",
       "L 814.539537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_796\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 815.553045 88.586925 \n",
       "L 816.566553 88.586925 \n",
       "L 816.566553 34.226925 \n",
       "L 815.553045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_797\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 816.566553 88.586925 \n",
       "L 817.580061 88.586925 \n",
       "L 817.580061 34.226925 \n",
       "L 816.566553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_798\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 817.580061 88.586925 \n",
       "L 818.593569 88.586925 \n",
       "L 818.593569 34.226925 \n",
       "L 817.580061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_799\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 818.593569 88.586925 \n",
       "L 819.607077 88.586925 \n",
       "L 819.607077 34.226925 \n",
       "L 818.593569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_800\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 819.607077 88.586925 \n",
       "L 820.620585 88.586925 \n",
       "L 820.620585 34.226925 \n",
       "L 819.607077 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_801\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 820.620585 88.586925 \n",
       "L 821.634093 88.586925 \n",
       "L 821.634093 34.226925 \n",
       "L 820.620585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_802\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 821.634093 88.586925 \n",
       "L 822.647601 88.586925 \n",
       "L 822.647601 34.226925 \n",
       "L 821.634093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_803\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 822.647601 88.586925 \n",
       "L 823.661109 88.586925 \n",
       "L 823.661109 34.226925 \n",
       "L 822.647601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_804\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 823.661109 88.586925 \n",
       "L 824.674617 88.586925 \n",
       "L 824.674617 34.226925 \n",
       "L 823.661109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_805\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 824.674617 88.586925 \n",
       "L 825.688125 88.586925 \n",
       "L 825.688125 34.226925 \n",
       "L 824.674617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_806\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 825.688125 88.586925 \n",
       "L 826.701633 88.586925 \n",
       "L 826.701633 34.226925 \n",
       "L 825.688125 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_807\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 826.701633 88.586925 \n",
       "L 827.715141 88.586925 \n",
       "L 827.715141 34.226925 \n",
       "L 826.701633 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_808\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 827.715141 88.586925 \n",
       "L 828.728649 88.586925 \n",
       "L 828.728649 34.226925 \n",
       "L 827.715141 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_809\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 828.728649 88.586925 \n",
       "L 829.742157 88.586925 \n",
       "L 829.742157 34.226925 \n",
       "L 828.728649 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_810\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 829.742157 88.586925 \n",
       "L 830.755665 88.586925 \n",
       "L 830.755665 34.226925 \n",
       "L 829.742157 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_811\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 830.755665 88.586925 \n",
       "L 831.769173 88.586925 \n",
       "L 831.769173 34.226925 \n",
       "L 830.755665 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_812\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 831.769173 88.586925 \n",
       "L 832.782681 88.586925 \n",
       "L 832.782681 34.226925 \n",
       "L 831.769173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_813\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 832.782681 88.586925 \n",
       "L 833.796189 88.586925 \n",
       "L 833.796189 34.226925 \n",
       "L 832.782681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_814\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 833.796189 88.586925 \n",
       "L 834.809697 88.586925 \n",
       "L 834.809697 34.226925 \n",
       "L 833.796189 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_815\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 834.809697 88.586925 \n",
       "L 835.823205 88.586925 \n",
       "L 835.823205 34.226925 \n",
       "L 834.809697 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_816\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 835.823205 88.586925 \n",
       "L 836.836713 88.586925 \n",
       "L 836.836713 34.226925 \n",
       "L 835.823205 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_817\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 836.836713 88.586925 \n",
       "L 837.850221 88.586925 \n",
       "L 837.850221 34.226925 \n",
       "L 836.836713 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_818\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 837.850221 88.586925 \n",
       "L 838.863729 88.586925 \n",
       "L 838.863729 34.226925 \n",
       "L 837.850221 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_819\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 838.863729 88.586925 \n",
       "L 839.877237 88.586925 \n",
       "L 839.877237 34.226925 \n",
       "L 838.863729 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_820\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 839.877237 88.586925 \n",
       "L 840.890745 88.586925 \n",
       "L 840.890745 34.226925 \n",
       "L 839.877237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_821\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 840.890745 88.586925 \n",
       "L 841.904253 88.586925 \n",
       "L 841.904253 34.226925 \n",
       "L 840.890745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_822\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 841.904253 88.586925 \n",
       "L 842.917761 88.586925 \n",
       "L 842.917761 34.226925 \n",
       "L 841.904253 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_823\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 842.917761 88.586925 \n",
       "L 843.931269 88.586925 \n",
       "L 843.931269 34.226925 \n",
       "L 842.917761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_824\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 843.931269 88.586925 \n",
       "L 844.944777 88.586925 \n",
       "L 844.944777 34.226925 \n",
       "L 843.931269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_825\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 844.944777 88.586925 \n",
       "L 845.958285 88.586925 \n",
       "L 845.958285 34.226925 \n",
       "L 844.944777 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_826\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 845.958285 88.586925 \n",
       "L 846.971793 88.586925 \n",
       "L 846.971793 34.226925 \n",
       "L 845.958285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_827\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 846.971793 88.586925 \n",
       "L 847.985301 88.586925 \n",
       "L 847.985301 34.226925 \n",
       "L 846.971793 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_828\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 847.985301 88.586925 \n",
       "L 848.998809 88.586925 \n",
       "L 848.998809 34.226925 \n",
       "L 847.985301 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_829\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 848.998809 88.586925 \n",
       "L 850.012317 88.586925 \n",
       "L 850.012317 34.226925 \n",
       "L 848.998809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_830\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 850.012317 88.586925 \n",
       "L 851.025825 88.586925 \n",
       "L 851.025825 34.226925 \n",
       "L 850.012317 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_831\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 851.025825 88.586925 \n",
       "L 852.039333 88.586925 \n",
       "L 852.039333 34.226925 \n",
       "L 851.025825 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_832\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 852.039333 88.586925 \n",
       "L 853.052841 88.586925 \n",
       "L 853.052841 34.226925 \n",
       "L 852.039333 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_833\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 853.052841 88.586925 \n",
       "L 854.066349 88.586925 \n",
       "L 854.066349 34.226925 \n",
       "L 853.052841 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_834\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 854.066349 88.586925 \n",
       "L 855.079857 88.586925 \n",
       "L 855.079857 34.226925 \n",
       "L 854.066349 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_835\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 855.079857 88.586925 \n",
       "L 856.093365 88.586925 \n",
       "L 856.093365 34.226925 \n",
       "L 855.079857 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_836\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 856.093365 88.586925 \n",
       "L 857.106873 88.586925 \n",
       "L 857.106873 34.226925 \n",
       "L 856.093365 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_837\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 857.106873 88.586925 \n",
       "L 858.120381 88.586925 \n",
       "L 858.120381 34.226925 \n",
       "L 857.106873 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_838\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 858.120381 88.586925 \n",
       "L 859.133889 88.586925 \n",
       "L 859.133889 34.226925 \n",
       "L 858.120381 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_839\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 859.133889 88.586925 \n",
       "L 860.147397 88.586925 \n",
       "L 860.147397 34.226925 \n",
       "L 859.133889 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_840\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 860.147397 88.586925 \n",
       "L 861.160905 88.586925 \n",
       "L 861.160905 34.226925 \n",
       "L 860.147397 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_841\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 861.160905 88.586925 \n",
       "L 862.174413 88.586925 \n",
       "L 862.174413 34.226925 \n",
       "L 861.160905 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_842\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 862.174413 88.586925 \n",
       "L 863.187921 88.586925 \n",
       "L 863.187921 34.226925 \n",
       "L 862.174413 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_843\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 863.187921 88.586925 \n",
       "L 864.201429 88.586925 \n",
       "L 864.201429 34.226925 \n",
       "L 863.187921 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_844\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 864.201429 88.586925 \n",
       "L 865.214937 88.586925 \n",
       "L 865.214937 34.226925 \n",
       "L 864.201429 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_845\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 865.214937 88.586925 \n",
       "L 866.228445 88.586925 \n",
       "L 866.228445 34.226925 \n",
       "L 865.214937 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_846\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 866.228445 88.586925 \n",
       "L 867.241953 88.586925 \n",
       "L 867.241953 34.226925 \n",
       "L 866.228445 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_847\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 867.241953 88.586925 \n",
       "L 868.255461 88.586925 \n",
       "L 868.255461 34.226925 \n",
       "L 867.241953 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_848\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 868.255461 88.586925 \n",
       "L 869.268969 88.586925 \n",
       "L 869.268969 34.226925 \n",
       "L 868.255461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_849\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 869.268969 88.586925 \n",
       "L 870.282477 88.586925 \n",
       "L 870.282477 34.226925 \n",
       "L 869.268969 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_850\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 870.282477 88.586925 \n",
       "L 871.295985 88.586925 \n",
       "L 871.295985 34.226925 \n",
       "L 870.282477 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_851\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 871.295985 88.586925 \n",
       "L 872.309493 88.586925 \n",
       "L 872.309493 34.226925 \n",
       "L 871.295985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_852\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 872.309493 88.586925 \n",
       "L 873.323001 88.586925 \n",
       "L 873.323001 34.226925 \n",
       "L 872.309493 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_853\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 873.323001 88.586925 \n",
       "L 874.336509 88.586925 \n",
       "L 874.336509 34.226925 \n",
       "L 873.323001 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_854\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 874.336509 88.586925 \n",
       "L 875.350017 88.586925 \n",
       "L 875.350017 34.226925 \n",
       "L 874.336509 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_855\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 875.350017 88.586925 \n",
       "L 876.363524 88.586925 \n",
       "L 876.363524 34.226925 \n",
       "L 875.350017 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_856\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 876.363524 88.586925 \n",
       "L 877.377032 88.586925 \n",
       "L 877.377032 34.226925 \n",
       "L 876.363524 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_857\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 877.377032 88.586925 \n",
       "L 878.39054 88.586925 \n",
       "L 878.39054 34.226925 \n",
       "L 877.377032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_858\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 878.39054 88.586925 \n",
       "L 879.404048 88.586925 \n",
       "L 879.404048 34.226925 \n",
       "L 878.39054 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_859\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 879.404048 88.586925 \n",
       "L 880.417556 88.586925 \n",
       "L 880.417556 34.226925 \n",
       "L 879.404048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_860\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 880.417556 88.586925 \n",
       "L 881.431064 88.586925 \n",
       "L 881.431064 34.226925 \n",
       "L 880.417556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_861\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 881.431064 88.586925 \n",
       "L 882.444572 88.586925 \n",
       "L 882.444572 34.226925 \n",
       "L 881.431064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_862\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 882.444572 88.586925 \n",
       "L 883.45808 88.586925 \n",
       "L 883.45808 34.226925 \n",
       "L 882.444572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_863\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 883.45808 88.586925 \n",
       "L 884.471588 88.586925 \n",
       "L 884.471588 34.226925 \n",
       "L 883.45808 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_864\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 884.471588 88.586925 \n",
       "L 885.485096 88.586925 \n",
       "L 885.485096 34.226925 \n",
       "L 884.471588 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_865\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 885.485096 88.586925 \n",
       "L 886.498604 88.586925 \n",
       "L 886.498604 34.226925 \n",
       "L 885.485096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_866\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 886.498604 88.586925 \n",
       "L 887.512112 88.586925 \n",
       "L 887.512112 34.226925 \n",
       "L 886.498604 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_867\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 887.512112 88.586925 \n",
       "L 888.52562 88.586925 \n",
       "L 888.52562 34.226925 \n",
       "L 887.512112 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_868\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 888.52562 88.586925 \n",
       "L 889.539128 88.586925 \n",
       "L 889.539128 34.226925 \n",
       "L 888.52562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_869\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 889.539128 88.586925 \n",
       "L 890.552636 88.586925 \n",
       "L 890.552636 34.226925 \n",
       "L 889.539128 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_870\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 890.552636 88.586925 \n",
       "L 891.566144 88.586925 \n",
       "L 891.566144 34.226925 \n",
       "L 890.552636 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_871\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 891.566144 88.586925 \n",
       "L 892.579652 88.586925 \n",
       "L 892.579652 34.226925 \n",
       "L 891.566144 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_872\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 892.579652 88.586925 \n",
       "L 893.59316 88.586925 \n",
       "L 893.59316 34.226925 \n",
       "L 892.579652 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_873\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 893.59316 88.586925 \n",
       "L 894.606668 88.586925 \n",
       "L 894.606668 34.226925 \n",
       "L 893.59316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_874\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 894.606668 88.586925 \n",
       "L 895.620176 88.586925 \n",
       "L 895.620176 34.226925 \n",
       "L 894.606668 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_875\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 895.620176 88.586925 \n",
       "L 896.633684 88.586925 \n",
       "L 896.633684 34.226925 \n",
       "L 895.620176 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_876\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 896.633684 88.586925 \n",
       "L 897.647192 88.586925 \n",
       "L 897.647192 34.226925 \n",
       "L 896.633684 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_877\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 897.647192 88.586925 \n",
       "L 898.6607 88.586925 \n",
       "L 898.6607 34.226925 \n",
       "L 897.647192 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_878\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 898.6607 88.586925 \n",
       "L 899.674208 88.586925 \n",
       "L 899.674208 34.226925 \n",
       "L 898.6607 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_879\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 899.674208 88.586925 \n",
       "L 900.687716 88.586925 \n",
       "L 900.687716 34.226925 \n",
       "L 899.674208 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_880\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 900.687716 88.586925 \n",
       "L 901.701224 88.586925 \n",
       "L 901.701224 34.226925 \n",
       "L 900.687716 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_881\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 901.701224 88.586925 \n",
       "L 902.714732 88.586925 \n",
       "L 902.714732 34.226925 \n",
       "L 901.701224 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_882\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 902.714732 88.586925 \n",
       "L 903.72824 88.586925 \n",
       "L 903.72824 34.226925 \n",
       "L 902.714732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_883\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 903.72824 88.586925 \n",
       "L 904.741748 88.586925 \n",
       "L 904.741748 34.226925 \n",
       "L 903.72824 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_884\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 904.741748 88.586925 \n",
       "L 905.755256 88.586925 \n",
       "L 905.755256 34.226925 \n",
       "L 904.741748 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_885\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 905.755256 88.586925 \n",
       "L 906.768764 88.586925 \n",
       "L 906.768764 34.226925 \n",
       "L 905.755256 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_886\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 906.768764 88.586925 \n",
       "L 907.782272 88.586925 \n",
       "L 907.782272 34.226925 \n",
       "L 906.768764 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_887\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 907.782272 88.586925 \n",
       "L 908.79578 88.586925 \n",
       "L 908.79578 34.226925 \n",
       "L 907.782272 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_888\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 908.79578 88.586925 \n",
       "L 909.809288 88.586925 \n",
       "L 909.809288 34.226925 \n",
       "L 908.79578 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_889\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 909.809288 88.586925 \n",
       "L 910.822796 88.586925 \n",
       "L 910.822796 34.226925 \n",
       "L 909.809288 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_890\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 910.822796 88.586925 \n",
       "L 911.836304 88.586925 \n",
       "L 911.836304 34.226925 \n",
       "L 910.822796 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_891\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 911.836304 88.586925 \n",
       "L 912.849812 88.586925 \n",
       "L 912.849812 34.226925 \n",
       "L 911.836304 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_892\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 912.849812 88.586925 \n",
       "L 913.86332 88.586925 \n",
       "L 913.86332 34.226925 \n",
       "L 912.849812 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_893\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 913.86332 88.586925 \n",
       "L 914.876828 88.586925 \n",
       "L 914.876828 34.226925 \n",
       "L 913.86332 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_894\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 914.876828 88.586925 \n",
       "L 915.890336 88.586925 \n",
       "L 915.890336 34.226925 \n",
       "L 914.876828 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_895\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 915.890336 88.586925 \n",
       "L 916.903844 88.586925 \n",
       "L 916.903844 34.226925 \n",
       "L 915.890336 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_896\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 916.903844 88.586925 \n",
       "L 917.917352 88.586925 \n",
       "L 917.917352 34.226925 \n",
       "L 916.903844 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_897\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 917.917352 88.586925 \n",
       "L 918.93086 88.586925 \n",
       "L 918.93086 34.226925 \n",
       "L 917.917352 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_898\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 918.93086 88.586925 \n",
       "L 919.944368 88.586925 \n",
       "L 919.944368 34.226925 \n",
       "L 918.93086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_899\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 919.944368 88.586925 \n",
       "L 920.957876 88.586925 \n",
       "L 920.957876 34.226925 \n",
       "L 919.944368 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_900\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 920.957876 88.586925 \n",
       "L 921.971384 88.586925 \n",
       "L 921.971384 34.226925 \n",
       "L 920.957876 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_901\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 921.971384 88.586925 \n",
       "L 922.984892 88.586925 \n",
       "L 922.984892 34.226925 \n",
       "L 921.971384 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_902\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 922.984892 88.586925 \n",
       "L 923.9984 88.586925 \n",
       "L 923.9984 34.226925 \n",
       "L 922.984892 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_903\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 923.9984 88.586925 \n",
       "L 925.011908 88.586925 \n",
       "L 925.011908 34.226925 \n",
       "L 923.9984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_904\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 925.011908 88.586925 \n",
       "L 926.025416 88.586925 \n",
       "L 926.025416 34.226925 \n",
       "L 925.011908 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_905\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 926.025416 88.586925 \n",
       "L 927.038924 88.586925 \n",
       "L 927.038924 34.226925 \n",
       "L 926.025416 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_906\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 927.038924 88.586925 \n",
       "L 928.052432 88.586925 \n",
       "L 928.052432 34.226925 \n",
       "L 927.038924 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_907\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 928.052432 88.586925 \n",
       "L 929.06594 88.586925 \n",
       "L 929.06594 34.226925 \n",
       "L 928.052432 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_908\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 929.06594 88.586925 \n",
       "L 930.079448 88.586925 \n",
       "L 930.079448 34.226925 \n",
       "L 929.06594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_909\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 930.079448 88.586925 \n",
       "L 931.092956 88.586925 \n",
       "L 931.092956 34.226925 \n",
       "L 930.079448 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_910\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 931.092956 88.586925 \n",
       "L 932.106464 88.586925 \n",
       "L 932.106464 34.226925 \n",
       "L 931.092956 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_911\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 932.106464 88.586925 \n",
       "L 933.119972 88.586925 \n",
       "L 933.119972 34.226925 \n",
       "L 932.106464 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_912\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 933.119972 88.586925 \n",
       "L 934.13348 88.586925 \n",
       "L 934.13348 34.226925 \n",
       "L 933.119972 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_913\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 934.13348 88.586925 \n",
       "L 935.146988 88.586925 \n",
       "L 935.146988 34.226925 \n",
       "L 934.13348 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_914\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 935.146988 88.586925 \n",
       "L 936.160496 88.586925 \n",
       "L 936.160496 34.226925 \n",
       "L 935.146988 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_915\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 936.160496 88.586925 \n",
       "L 937.174004 88.586925 \n",
       "L 937.174004 34.226925 \n",
       "L 936.160496 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_916\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 937.174004 88.586925 \n",
       "L 938.187512 88.586925 \n",
       "L 938.187512 34.226925 \n",
       "L 937.174004 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_917\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 938.187512 88.586925 \n",
       "L 939.20102 88.586925 \n",
       "L 939.20102 34.226925 \n",
       "L 938.187512 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_918\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 939.20102 88.586925 \n",
       "L 940.214528 88.586925 \n",
       "L 940.214528 34.226925 \n",
       "L 939.20102 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_919\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 940.214528 88.586925 \n",
       "L 941.228036 88.586925 \n",
       "L 941.228036 34.226925 \n",
       "L 940.214528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_920\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 941.228036 88.586925 \n",
       "L 942.241544 88.586925 \n",
       "L 942.241544 34.226925 \n",
       "L 941.228036 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_921\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 942.241544 88.586925 \n",
       "L 943.255052 88.586925 \n",
       "L 943.255052 34.226925 \n",
       "L 942.241544 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_922\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 943.255052 88.586925 \n",
       "L 944.26856 88.586925 \n",
       "L 944.26856 34.226925 \n",
       "L 943.255052 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_923\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 944.26856 88.586925 \n",
       "L 945.282068 88.586925 \n",
       "L 945.282068 34.226925 \n",
       "L 944.26856 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_924\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 945.282068 88.586925 \n",
       "L 946.295576 88.586925 \n",
       "L 946.295576 34.226925 \n",
       "L 945.282068 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_925\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 946.295576 88.586925 \n",
       "L 947.309084 88.586925 \n",
       "L 947.309084 34.226925 \n",
       "L 946.295576 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_926\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 947.309084 88.586925 \n",
       "L 948.322592 88.586925 \n",
       "L 948.322592 34.226925 \n",
       "L 947.309084 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_927\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 948.322592 88.586925 \n",
       "L 949.3361 88.586925 \n",
       "L 949.3361 34.226925 \n",
       "L 948.322592 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_928\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 949.3361 88.586925 \n",
       "L 950.349608 88.586925 \n",
       "L 950.349608 34.226925 \n",
       "L 949.3361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_929\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 950.349608 88.586925 \n",
       "L 951.363116 88.586925 \n",
       "L 951.363116 34.226925 \n",
       "L 950.349608 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_930\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 951.363116 88.586925 \n",
       "L 952.376624 88.586925 \n",
       "L 952.376624 34.226925 \n",
       "L 951.363116 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_931\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 952.376624 88.586925 \n",
       "L 953.390132 88.586925 \n",
       "L 953.390132 34.226925 \n",
       "L 952.376624 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_932\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 953.390132 88.586925 \n",
       "L 954.40364 88.586925 \n",
       "L 954.40364 34.226925 \n",
       "L 953.390132 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_933\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 954.40364 88.586925 \n",
       "L 955.417148 88.586925 \n",
       "L 955.417148 34.226925 \n",
       "L 954.40364 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_934\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 955.417148 88.586925 \n",
       "L 956.430656 88.586925 \n",
       "L 956.430656 34.226925 \n",
       "L 955.417148 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_935\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 956.430656 88.586925 \n",
       "L 957.444164 88.586925 \n",
       "L 957.444164 34.226925 \n",
       "L 956.430656 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_936\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 957.444164 88.586925 \n",
       "L 958.457672 88.586925 \n",
       "L 958.457672 34.226925 \n",
       "L 957.444164 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_937\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 958.457672 88.586925 \n",
       "L 959.47118 88.586925 \n",
       "L 959.47118 34.226925 \n",
       "L 958.457672 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_938\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 959.47118 88.586925 \n",
       "L 960.484688 88.586925 \n",
       "L 960.484688 34.226925 \n",
       "L 959.47118 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_939\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 960.484688 88.586925 \n",
       "L 961.498196 88.586925 \n",
       "L 961.498196 34.226925 \n",
       "L 960.484688 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_940\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 961.498196 88.586925 \n",
       "L 962.511704 88.586925 \n",
       "L 962.511704 34.226925 \n",
       "L 961.498196 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_941\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 962.511704 88.586925 \n",
       "L 963.525212 88.586925 \n",
       "L 963.525212 34.226925 \n",
       "L 962.511704 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_942\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 963.525212 88.586925 \n",
       "L 964.53872 88.586925 \n",
       "L 964.53872 34.226925 \n",
       "L 963.525212 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_943\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 964.53872 88.586925 \n",
       "L 965.552228 88.586925 \n",
       "L 965.552228 34.226925 \n",
       "L 964.53872 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_944\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 965.552228 88.586925 \n",
       "L 966.565736 88.586925 \n",
       "L 966.565736 34.226925 \n",
       "L 965.552228 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_945\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 966.565736 88.586925 \n",
       "L 967.579244 88.586925 \n",
       "L 967.579244 34.226925 \n",
       "L 966.565736 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_946\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 967.579244 88.586925 \n",
       "L 968.592752 88.586925 \n",
       "L 968.592752 34.226925 \n",
       "L 967.579244 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_947\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 968.592752 88.586925 \n",
       "L 969.60626 88.586925 \n",
       "L 969.60626 34.226925 \n",
       "L 968.592752 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_948\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 969.60626 88.586925 \n",
       "L 970.619768 88.586925 \n",
       "L 970.619768 34.226925 \n",
       "L 969.60626 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_949\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 970.619768 88.586925 \n",
       "L 971.633276 88.586925 \n",
       "L 971.633276 34.226925 \n",
       "L 970.619768 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_950\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 971.633276 88.586925 \n",
       "L 972.646784 88.586925 \n",
       "L 972.646784 34.226925 \n",
       "L 971.633276 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_951\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 972.646784 88.586925 \n",
       "L 973.660292 88.586925 \n",
       "L 973.660292 34.226925 \n",
       "L 972.646784 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_952\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 973.660292 88.586925 \n",
       "L 974.6738 88.586925 \n",
       "L 974.6738 34.226925 \n",
       "L 973.660292 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_953\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 974.6738 88.586925 \n",
       "L 975.687308 88.586925 \n",
       "L 975.687308 34.226925 \n",
       "L 974.6738 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_954\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 975.687308 88.586925 \n",
       "L 976.700816 88.586925 \n",
       "L 976.700816 34.226925 \n",
       "L 975.687308 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_955\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 976.700816 88.586925 \n",
       "L 977.714324 88.586925 \n",
       "L 977.714324 34.226925 \n",
       "L 976.700816 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_956\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 977.714324 88.586925 \n",
       "L 978.727832 88.586925 \n",
       "L 978.727832 34.226925 \n",
       "L 977.714324 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_957\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 978.727832 88.586925 \n",
       "L 979.74134 88.586925 \n",
       "L 979.74134 34.226925 \n",
       "L 978.727832 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_958\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 979.74134 88.586925 \n",
       "L 980.754848 88.586925 \n",
       "L 980.754848 34.226925 \n",
       "L 979.74134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_959\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 980.754848 88.586925 \n",
       "L 981.768356 88.586925 \n",
       "L 981.768356 34.226925 \n",
       "L 980.754848 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_960\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 981.768356 88.586925 \n",
       "L 982.781864 88.586925 \n",
       "L 982.781864 34.226925 \n",
       "L 981.768356 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_961\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 982.781864 88.586925 \n",
       "L 983.795372 88.586925 \n",
       "L 983.795372 34.226925 \n",
       "L 982.781864 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_962\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 983.795372 88.586925 \n",
       "L 984.80888 88.586925 \n",
       "L 984.80888 34.226925 \n",
       "L 983.795372 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_963\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 984.80888 88.586925 \n",
       "L 985.822388 88.586925 \n",
       "L 985.822388 34.226925 \n",
       "L 984.80888 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_964\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 985.822388 88.586925 \n",
       "L 986.835896 88.586925 \n",
       "L 986.835896 34.226925 \n",
       "L 985.822388 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_965\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 986.835896 88.586925 \n",
       "L 987.849404 88.586925 \n",
       "L 987.849404 34.226925 \n",
       "L 986.835896 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_966\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 987.849404 88.586925 \n",
       "L 988.862912 88.586925 \n",
       "L 988.862912 34.226925 \n",
       "L 987.849404 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_967\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 988.862912 88.586925 \n",
       "L 989.87642 88.586925 \n",
       "L 989.87642 34.226925 \n",
       "L 988.862912 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_968\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 989.87642 88.586925 \n",
       "L 990.889928 88.586925 \n",
       "L 990.889928 34.226925 \n",
       "L 989.87642 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_969\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 990.889928 88.586925 \n",
       "L 991.903436 88.586925 \n",
       "L 991.903436 34.226925 \n",
       "L 990.889928 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_970\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 991.903436 88.586925 \n",
       "L 992.916944 88.586925 \n",
       "L 992.916944 34.226925 \n",
       "L 991.903436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_971\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 992.916944 88.586925 \n",
       "L 993.930452 88.586925 \n",
       "L 993.930452 34.226925 \n",
       "L 992.916944 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_972\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 993.930452 88.586925 \n",
       "L 994.94396 88.586925 \n",
       "L 994.94396 34.226925 \n",
       "L 993.930452 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_973\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 994.94396 88.586925 \n",
       "L 995.957468 88.586925 \n",
       "L 995.957468 34.226925 \n",
       "L 994.94396 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_974\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 995.957468 88.586925 \n",
       "L 996.970976 88.586925 \n",
       "L 996.970976 34.226925 \n",
       "L 995.957468 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_975\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 996.970976 88.586925 \n",
       "L 997.984484 88.586925 \n",
       "L 997.984484 34.226925 \n",
       "L 996.970976 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_976\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 997.984484 88.586925 \n",
       "L 998.997992 88.586925 \n",
       "L 998.997992 34.226925 \n",
       "L 997.984484 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_977\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 998.997992 88.586925 \n",
       "L 1000.0115 88.586925 \n",
       "L 1000.0115 34.226925 \n",
       "L 998.997992 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_978\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1000.0115 88.586925 \n",
       "L 1001.025008 88.586925 \n",
       "L 1001.025008 34.226925 \n",
       "L 1000.0115 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_979\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1001.025008 88.586925 \n",
       "L 1002.038516 88.586925 \n",
       "L 1002.038516 34.226925 \n",
       "L 1001.025008 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_980\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1002.038516 88.586925 \n",
       "L 1003.052024 88.586925 \n",
       "L 1003.052024 34.226925 \n",
       "L 1002.038516 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_981\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1003.052024 88.586925 \n",
       "L 1004.065532 88.586925 \n",
       "L 1004.065532 34.226925 \n",
       "L 1003.052024 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_982\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1004.065532 88.586925 \n",
       "L 1005.07904 88.586925 \n",
       "L 1005.07904 34.226925 \n",
       "L 1004.065532 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_983\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1005.07904 88.586925 \n",
       "L 1006.092548 88.586925 \n",
       "L 1006.092548 34.226925 \n",
       "L 1005.07904 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_984\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1006.092548 88.586925 \n",
       "L 1007.106056 88.586925 \n",
       "L 1007.106056 34.226925 \n",
       "L 1006.092548 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_985\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1007.106056 88.586925 \n",
       "L 1008.119564 88.586925 \n",
       "L 1008.119564 34.226925 \n",
       "L 1007.106056 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_986\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1008.119564 88.586925 \n",
       "L 1009.133072 88.586925 \n",
       "L 1009.133072 34.226925 \n",
       "L 1008.119564 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_987\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1009.133072 88.586925 \n",
       "L 1010.14658 88.586925 \n",
       "L 1010.14658 34.226925 \n",
       "L 1009.133072 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_988\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1010.14658 88.586925 \n",
       "L 1011.160088 88.586925 \n",
       "L 1011.160088 34.226925 \n",
       "L 1010.14658 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_989\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1011.160088 88.586925 \n",
       "L 1012.173596 88.586925 \n",
       "L 1012.173596 34.226925 \n",
       "L 1011.160088 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_990\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1012.173596 88.586925 \n",
       "L 1013.187104 88.586925 \n",
       "L 1013.187104 34.226925 \n",
       "L 1012.173596 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_991\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1013.187104 88.586925 \n",
       "L 1014.200612 88.586925 \n",
       "L 1014.200612 34.226925 \n",
       "L 1013.187104 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_992\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1014.200612 88.586925 \n",
       "L 1015.21412 88.586925 \n",
       "L 1015.21412 34.226925 \n",
       "L 1014.200612 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_993\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1015.21412 88.586925 \n",
       "L 1016.227628 88.586925 \n",
       "L 1016.227628 34.226925 \n",
       "L 1015.21412 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_994\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1016.227628 88.586925 \n",
       "L 1017.241136 88.586925 \n",
       "L 1017.241136 34.226925 \n",
       "L 1016.227628 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_995\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1017.241136 88.586925 \n",
       "L 1018.254644 88.586925 \n",
       "L 1018.254644 34.226925 \n",
       "L 1017.241136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_996\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1018.254644 88.586925 \n",
       "L 1019.268152 88.586925 \n",
       "L 1019.268152 34.226925 \n",
       "L 1018.254644 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_997\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1019.268152 88.586925 \n",
       "L 1020.28166 88.586925 \n",
       "L 1020.28166 34.226925 \n",
       "L 1019.268152 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_998\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1020.28166 88.586925 \n",
       "L 1021.295168 88.586925 \n",
       "L 1021.295168 34.226925 \n",
       "L 1020.28166 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_999\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1021.295168 88.586925 \n",
       "L 1022.308676 88.586925 \n",
       "L 1022.308676 34.226925 \n",
       "L 1021.295168 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1000\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1022.308676 88.586925 \n",
       "L 1023.322184 88.586925 \n",
       "L 1023.322184 34.226925 \n",
       "L 1022.308676 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1001\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1023.322184 88.586925 \n",
       "L 1024.335692 88.586925 \n",
       "L 1024.335692 34.226925 \n",
       "L 1023.322184 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1002\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1024.335692 88.586925 \n",
       "L 1025.3492 88.586925 \n",
       "L 1025.3492 34.226925 \n",
       "L 1024.335692 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1003\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1025.3492 88.586925 \n",
       "L 1026.362708 88.586925 \n",
       "L 1026.362708 34.226925 \n",
       "L 1025.3492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1004\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1026.362708 88.586925 \n",
       "L 1027.376216 88.586925 \n",
       "L 1027.376216 34.226925 \n",
       "L 1026.362708 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1005\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1027.376216 88.586925 \n",
       "L 1028.389724 88.586925 \n",
       "L 1028.389724 34.226925 \n",
       "L 1027.376216 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1006\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1028.389724 88.586925 \n",
       "L 1029.403232 88.586925 \n",
       "L 1029.403232 34.226925 \n",
       "L 1028.389724 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1007\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1029.403232 88.586925 \n",
       "L 1030.41674 88.586925 \n",
       "L 1030.41674 34.226925 \n",
       "L 1029.403232 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1008\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1030.41674 88.586925 \n",
       "L 1031.430248 88.586925 \n",
       "L 1031.430248 34.226925 \n",
       "L 1030.41674 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1009\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1031.430248 88.586925 \n",
       "L 1032.443756 88.586925 \n",
       "L 1032.443756 34.226925 \n",
       "L 1031.430248 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1010\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1032.443756 88.586925 \n",
       "L 1033.457264 88.586925 \n",
       "L 1033.457264 34.226925 \n",
       "L 1032.443756 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1011\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1033.457264 88.586925 \n",
       "L 1034.470772 88.586925 \n",
       "L 1034.470772 34.226925 \n",
       "L 1033.457264 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1012\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1034.470772 88.586925 \n",
       "L 1035.48428 88.586925 \n",
       "L 1035.48428 34.226925 \n",
       "L 1034.470772 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1013\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1035.48428 88.586925 \n",
       "L 1036.497788 88.586925 \n",
       "L 1036.497788 34.226925 \n",
       "L 1035.48428 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1014\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1036.497788 88.586925 \n",
       "L 1037.511296 88.586925 \n",
       "L 1037.511296 34.226925 \n",
       "L 1036.497788 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1015\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1037.511296 88.586925 \n",
       "L 1038.524804 88.586925 \n",
       "L 1038.524804 34.226925 \n",
       "L 1037.511296 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1016\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1038.524804 88.586925 \n",
       "L 1039.538312 88.586925 \n",
       "L 1039.538312 34.226925 \n",
       "L 1038.524804 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1017\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1039.538312 88.586925 \n",
       "L 1040.55182 88.586925 \n",
       "L 1040.55182 34.226925 \n",
       "L 1039.538312 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1018\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1040.55182 88.586925 \n",
       "L 1041.565328 88.586925 \n",
       "L 1041.565328 34.226925 \n",
       "L 1040.55182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1019\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1041.565328 88.586925 \n",
       "L 1042.578836 88.586925 \n",
       "L 1042.578836 34.226925 \n",
       "L 1041.565328 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1020\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1042.578836 88.586925 \n",
       "L 1043.592344 88.586925 \n",
       "L 1043.592344 34.226925 \n",
       "L 1042.578836 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1021\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1043.592344 88.586925 \n",
       "L 1044.605852 88.586925 \n",
       "L 1044.605852 34.226925 \n",
       "L 1043.592344 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1022\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1044.605852 88.586925 \n",
       "L 1045.61936 88.586925 \n",
       "L 1045.61936 34.226925 \n",
       "L 1044.605852 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1023\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1045.61936 88.586925 \n",
       "L 1046.632868 88.586925 \n",
       "L 1046.632868 34.226925 \n",
       "L 1045.61936 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1024\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1046.632868 88.586925 \n",
       "L 1047.646376 88.586925 \n",
       "L 1047.646376 34.226925 \n",
       "L 1046.632868 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1025\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1047.646376 88.586925 \n",
       "L 1048.659884 88.586925 \n",
       "L 1048.659884 34.226925 \n",
       "L 1047.646376 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1026\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1048.659884 88.586925 \n",
       "L 1049.673392 88.586925 \n",
       "L 1049.673392 34.226925 \n",
       "L 1048.659884 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1027\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1049.673392 88.586925 \n",
       "L 1050.6869 88.586925 \n",
       "L 1050.6869 34.226925 \n",
       "L 1049.673392 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1028\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1050.6869 88.586925 \n",
       "L 1051.700408 88.586925 \n",
       "L 1051.700408 34.226925 \n",
       "L 1050.6869 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1029\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1051.700408 88.586925 \n",
       "L 1052.713916 88.586925 \n",
       "L 1052.713916 34.226925 \n",
       "L 1051.700408 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1030\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1052.713916 88.586925 \n",
       "L 1053.727424 88.586925 \n",
       "L 1053.727424 34.226925 \n",
       "L 1052.713916 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1031\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1053.727424 88.586925 \n",
       "L 1054.740932 88.586925 \n",
       "L 1054.740932 34.226925 \n",
       "L 1053.727424 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1032\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1054.740932 88.586925 \n",
       "L 1055.75444 88.586925 \n",
       "L 1055.75444 34.226925 \n",
       "L 1054.740932 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1033\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1055.75444 88.586925 \n",
       "L 1056.767948 88.586925 \n",
       "L 1056.767948 34.226925 \n",
       "L 1055.75444 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1034\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1056.767948 88.586925 \n",
       "L 1057.781456 88.586925 \n",
       "L 1057.781456 34.226925 \n",
       "L 1056.767948 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1035\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1057.781456 88.586925 \n",
       "L 1058.794964 88.586925 \n",
       "L 1058.794964 34.226925 \n",
       "L 1057.781456 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1036\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1058.794964 88.586925 \n",
       "L 1059.808472 88.586925 \n",
       "L 1059.808472 34.226925 \n",
       "L 1058.794964 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1037\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1059.808472 88.586925 \n",
       "L 1060.82198 88.586925 \n",
       "L 1060.82198 34.226925 \n",
       "L 1059.808472 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1038\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1060.82198 88.586925 \n",
       "L 1061.835488 88.586925 \n",
       "L 1061.835488 34.226925 \n",
       "L 1060.82198 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1039\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1061.835488 88.586925 \n",
       "L 1062.848996 88.586925 \n",
       "L 1062.848996 34.226925 \n",
       "L 1061.835488 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1040\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1062.848996 88.586925 \n",
       "L 1063.862504 88.586925 \n",
       "L 1063.862504 34.226925 \n",
       "L 1062.848996 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1041\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1063.862504 88.586925 \n",
       "L 1064.876012 88.586925 \n",
       "L 1064.876012 34.226925 \n",
       "L 1063.862504 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1042\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1064.876012 88.586925 \n",
       "L 1065.88952 88.586925 \n",
       "L 1065.88952 34.226925 \n",
       "L 1064.876012 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1043\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1065.88952 88.586925 \n",
       "L 1066.903028 88.586925 \n",
       "L 1066.903028 34.226925 \n",
       "L 1065.88952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1044\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1066.903028 88.586925 \n",
       "L 1067.916536 88.586925 \n",
       "L 1067.916536 34.226925 \n",
       "L 1066.903028 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1045\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1067.916536 88.586925 \n",
       "L 1068.930044 88.586925 \n",
       "L 1068.930044 34.226925 \n",
       "L 1067.916536 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1046\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1068.930044 88.586925 \n",
       "L 1069.943552 88.586925 \n",
       "L 1069.943552 34.226925 \n",
       "L 1068.930044 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1047\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1069.943552 88.586925 \n",
       "L 1070.95706 88.586925 \n",
       "L 1070.95706 34.226925 \n",
       "L 1069.943552 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1048\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1070.95706 88.586925 \n",
       "L 1071.970568 88.586925 \n",
       "L 1071.970568 34.226925 \n",
       "L 1070.95706 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1049\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1071.970568 88.586925 \n",
       "L 1072.984076 88.586925 \n",
       "L 1072.984076 34.226925 \n",
       "L 1071.970568 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1050\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1072.984076 88.586925 \n",
       "L 1073.997584 88.586925 \n",
       "L 1073.997584 34.226925 \n",
       "L 1072.984076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1051\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1073.997584 88.586925 \n",
       "L 1075.011092 88.586925 \n",
       "L 1075.011092 34.226925 \n",
       "L 1073.997584 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1052\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1075.011092 88.586925 \n",
       "L 1076.0246 88.586925 \n",
       "L 1076.0246 34.226925 \n",
       "L 1075.011092 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1053\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1076.0246 88.586925 \n",
       "L 1077.038108 88.586925 \n",
       "L 1077.038108 34.226925 \n",
       "L 1076.0246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1054\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1077.038108 88.586925 \n",
       "L 1078.051616 88.586925 \n",
       "L 1078.051616 34.226925 \n",
       "L 1077.038108 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1055\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1078.051616 88.586925 \n",
       "L 1079.065124 88.586925 \n",
       "L 1079.065124 34.226925 \n",
       "L 1078.051616 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1056\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1079.065124 88.586925 \n",
       "L 1080.078632 88.586925 \n",
       "L 1080.078632 34.226925 \n",
       "L 1079.065124 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1057\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1080.078632 88.586925 \n",
       "L 1081.09214 88.586925 \n",
       "L 1081.09214 34.226925 \n",
       "L 1080.078632 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1058\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1081.09214 88.586925 \n",
       "L 1082.105648 88.586925 \n",
       "L 1082.105648 34.226925 \n",
       "L 1081.09214 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1059\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1082.105648 88.586925 \n",
       "L 1083.119156 88.586925 \n",
       "L 1083.119156 34.226925 \n",
       "L 1082.105648 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1060\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1083.119156 88.586925 \n",
       "L 1084.132664 88.586925 \n",
       "L 1084.132664 34.226925 \n",
       "L 1083.119156 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1061\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1084.132664 88.586925 \n",
       "L 1085.146172 88.586925 \n",
       "L 1085.146172 34.226925 \n",
       "L 1084.132664 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1062\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1085.146172 88.586925 \n",
       "L 1086.15968 88.586925 \n",
       "L 1086.15968 34.226925 \n",
       "L 1085.146172 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1063\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1086.15968 88.586925 \n",
       "L 1087.173188 88.586925 \n",
       "L 1087.173188 34.226925 \n",
       "L 1086.15968 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1064\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1087.173188 88.586925 \n",
       "L 1088.186696 88.586925 \n",
       "L 1088.186696 34.226925 \n",
       "L 1087.173188 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1065\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1088.186696 88.586925 \n",
       "L 1089.200204 88.586925 \n",
       "L 1089.200204 34.226925 \n",
       "L 1088.186696 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1066\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1089.200204 88.586925 \n",
       "L 1090.213712 88.586925 \n",
       "L 1090.213712 34.226925 \n",
       "L 1089.200204 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1067\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1090.213712 88.586925 \n",
       "L 1091.22722 88.586925 \n",
       "L 1091.22722 34.226925 \n",
       "L 1090.213712 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1068\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1091.22722 88.586925 \n",
       "L 1092.240728 88.586925 \n",
       "L 1092.240728 34.226925 \n",
       "L 1091.22722 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1069\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1092.240728 88.586925 \n",
       "L 1093.254236 88.586925 \n",
       "L 1093.254236 34.226925 \n",
       "L 1092.240728 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1070\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1093.254236 88.586925 \n",
       "L 1094.267744 88.586925 \n",
       "L 1094.267744 34.226925 \n",
       "L 1093.254236 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1071\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1094.267744 88.586925 \n",
       "L 1095.281252 88.586925 \n",
       "L 1095.281252 34.226925 \n",
       "L 1094.267744 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1072\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1095.281252 88.586925 \n",
       "L 1096.29476 88.586925 \n",
       "L 1096.29476 34.226925 \n",
       "L 1095.281252 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1073\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1096.29476 88.586925 \n",
       "L 1097.308268 88.586925 \n",
       "L 1097.308268 34.226925 \n",
       "L 1096.29476 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1074\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1097.308268 88.586925 \n",
       "L 1098.321776 88.586925 \n",
       "L 1098.321776 34.226925 \n",
       "L 1097.308268 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1075\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1098.321776 88.586925 \n",
       "L 1099.335284 88.586925 \n",
       "L 1099.335284 34.226925 \n",
       "L 1098.321776 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1076\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1099.335284 88.586925 \n",
       "L 1100.348792 88.586925 \n",
       "L 1100.348792 34.226925 \n",
       "L 1099.335284 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1077\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1100.348792 88.586925 \n",
       "L 1101.3623 88.586925 \n",
       "L 1101.3623 34.226925 \n",
       "L 1100.348792 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1078\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1101.3623 88.586925 \n",
       "L 1102.375808 88.586925 \n",
       "L 1102.375808 34.226925 \n",
       "L 1101.3623 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1079\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1102.375808 88.586925 \n",
       "L 1103.389316 88.586925 \n",
       "L 1103.389316 34.226925 \n",
       "L 1102.375808 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1080\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1103.389316 88.586925 \n",
       "L 1104.402824 88.586925 \n",
       "L 1104.402824 34.226925 \n",
       "L 1103.389316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1081\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1104.402824 88.586925 \n",
       "L 1105.416332 88.586925 \n",
       "L 1105.416332 34.226925 \n",
       "L 1104.402824 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1082\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1105.416332 88.586925 \n",
       "L 1106.42984 88.586925 \n",
       "L 1106.42984 34.226925 \n",
       "L 1105.416332 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1083\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1106.42984 88.586925 \n",
       "L 1107.443348 88.586925 \n",
       "L 1107.443348 34.226925 \n",
       "L 1106.42984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1084\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1107.443348 88.586925 \n",
       "L 1108.456856 88.586925 \n",
       "L 1108.456856 34.226925 \n",
       "L 1107.443348 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1085\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1108.456856 88.586925 \n",
       "L 1109.470364 88.586925 \n",
       "L 1109.470364 34.226925 \n",
       "L 1108.456856 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1086\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1109.470364 88.586925 \n",
       "L 1110.483872 88.586925 \n",
       "L 1110.483872 34.226925 \n",
       "L 1109.470364 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1087\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1110.483872 88.586925 \n",
       "L 1111.49738 88.586925 \n",
       "L 1111.49738 34.226925 \n",
       "L 1110.483872 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1088\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1111.49738 88.586925 \n",
       "L 1112.510888 88.586925 \n",
       "L 1112.510888 34.226925 \n",
       "L 1111.49738 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1089\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1112.510888 88.586925 \n",
       "L 1113.524396 88.586925 \n",
       "L 1113.524396 34.226925 \n",
       "L 1112.510888 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1090\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1113.524396 88.586925 \n",
       "L 1114.537904 88.586925 \n",
       "L 1114.537904 34.226925 \n",
       "L 1113.524396 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1091\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1114.537904 88.586925 \n",
       "L 1115.551412 88.586925 \n",
       "L 1115.551412 34.226925 \n",
       "L 1114.537904 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1092\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1115.551412 88.586925 \n",
       "L 1116.56492 88.586925 \n",
       "L 1116.56492 34.226925 \n",
       "L 1115.551412 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1093\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1116.56492 88.586925 \n",
       "L 1117.578428 88.586925 \n",
       "L 1117.578428 34.226925 \n",
       "L 1116.56492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1094\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1117.578428 88.586925 \n",
       "L 1118.591936 88.586925 \n",
       "L 1118.591936 34.226925 \n",
       "L 1117.578428 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1095\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1118.591936 88.586925 \n",
       "L 1119.605444 88.586925 \n",
       "L 1119.605444 34.226925 \n",
       "L 1118.591936 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1096\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1119.605444 88.586925 \n",
       "L 1120.618952 88.586925 \n",
       "L 1120.618952 34.226925 \n",
       "L 1119.605444 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1097\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1120.618952 88.586925 \n",
       "L 1121.63246 88.586925 \n",
       "L 1121.63246 34.226925 \n",
       "L 1120.618952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1098\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1121.63246 88.586925 \n",
       "L 1122.645968 88.586925 \n",
       "L 1122.645968 34.226925 \n",
       "L 1121.63246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1099\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1122.645968 88.586925 \n",
       "L 1123.659476 88.586925 \n",
       "L 1123.659476 34.226925 \n",
       "L 1122.645968 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1100\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1123.659476 88.586925 \n",
       "L 1124.672984 88.586925 \n",
       "L 1124.672984 34.226925 \n",
       "L 1123.659476 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1101\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1124.672984 88.586925 \n",
       "L 1125.686492 88.586925 \n",
       "L 1125.686492 34.226925 \n",
       "L 1124.672984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1102\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 1125.686492 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 1125.686492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"mf5dc41b3bf\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"10.7\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0 -->\n",
       "      <g transform=\"translate(7.51875 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2034 4250 \n",
       "Q 1547 4250 1301 3770 \n",
       "Q 1056 3291 1056 2328 \n",
       "Q 1056 1369 1301 889 \n",
       "Q 1547 409 2034 409 \n",
       "Q 2525 409 2770 889 \n",
       "Q 3016 1369 3016 2328 \n",
       "Q 3016 3291 2770 3770 \n",
       "Q 2525 4250 2034 4250 \n",
       "z\n",
       "M 2034 4750 \n",
       "Q 2819 4750 3233 4129 \n",
       "Q 3647 3509 3647 2328 \n",
       "Q 3647 1150 3233 529 \n",
       "Q 2819 -91 2034 -91 \n",
       "Q 1250 -91 836 529 \n",
       "Q 422 1150 422 2328 \n",
       "Q 422 3509 836 4129 \n",
       "Q 1250 4750 2034 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-30\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"140.47055\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 50 -->\n",
       "      <g transform=\"translate(134.10805 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 691 4666 \n",
       "L 3169 4666 \n",
       "L 3169 4134 \n",
       "L 1269 4134 \n",
       "L 1269 2991 \n",
       "Q 1406 3038 1543 3061 \n",
       "Q 1681 3084 1819 3084 \n",
       "Q 2600 3084 3056 2656 \n",
       "Q 3513 2228 3513 1497 \n",
       "Q 3513 744 3044 326 \n",
       "Q 2575 -91 1722 -91 \n",
       "Q 1428 -91 1123 -41 \n",
       "Q 819 9 494 109 \n",
       "L 494 744 \n",
       "Q 775 591 1075 516 \n",
       "Q 1375 441 1709 441 \n",
       "Q 2250 441 2565 725 \n",
       "Q 2881 1009 2881 1497 \n",
       "Q 2881 1984 2565 2268 \n",
       "Q 2250 2553 1709 2553 \n",
       "Q 1456 2553 1204 2497 \n",
       "Q 953 2441 691 2322 \n",
       "L 691 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-35\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"270.241101\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 100 -->\n",
       "      <g transform=\"translate(260.697351 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 794 531 \n",
       "L 1825 531 \n",
       "L 1825 4091 \n",
       "L 703 3866 \n",
       "L 703 4441 \n",
       "L 1819 4666 \n",
       "L 2450 4666 \n",
       "L 2450 531 \n",
       "L 3481 531 \n",
       "L 3481 0 \n",
       "L 794 0 \n",
       "L 794 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-31\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"400.011651\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 150 -->\n",
       "      <g transform=\"translate(390.467901 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"529.782201\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 200 -->\n",
       "      <g transform=\"translate(520.238451 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 1228 531 \n",
       "L 3431 531 \n",
       "L 3431 0 \n",
       "L 469 0 \n",
       "L 469 531 \n",
       "Q 828 903 1448 1529 \n",
       "Q 2069 2156 2228 2338 \n",
       "Q 2531 2678 2651 2914 \n",
       "Q 2772 3150 2772 3378 \n",
       "Q 2772 3750 2511 3984 \n",
       "Q 2250 4219 1831 4219 \n",
       "Q 1534 4219 1204 4116 \n",
       "Q 875 4013 500 3803 \n",
       "L 500 4441 \n",
       "Q 881 4594 1212 4672 \n",
       "Q 1544 4750 1819 4750 \n",
       "Q 2544 4750 2975 4387 \n",
       "Q 3406 4025 3406 3419 \n",
       "Q 3406 3131 3298 2873 \n",
       "Q 3191 2616 2906 2266 \n",
       "Q 2828 2175 2409 1742 \n",
       "Q 1991 1309 1228 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-32\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"659.552752\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 250 -->\n",
       "      <g transform=\"translate(650.009002 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"789.323302\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 300 -->\n",
       "      <g transform=\"translate(779.779552 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2597 2516 \n",
       "Q 3050 2419 3304 2112 \n",
       "Q 3559 1806 3559 1356 \n",
       "Q 3559 666 3084 287 \n",
       "Q 2609 -91 1734 -91 \n",
       "Q 1441 -91 1130 -33 \n",
       "Q 819 25 488 141 \n",
       "L 488 750 \n",
       "Q 750 597 1062 519 \n",
       "Q 1375 441 1716 441 \n",
       "Q 2309 441 2620 675 \n",
       "Q 2931 909 2931 1356 \n",
       "Q 2931 1769 2642 2001 \n",
       "Q 2353 2234 1838 2234 \n",
       "L 1294 2234 \n",
       "L 1294 2753 \n",
       "L 1863 2753 \n",
       "Q 2328 2753 2575 2939 \n",
       "Q 2822 3125 2822 3475 \n",
       "Q 2822 3834 2567 4026 \n",
       "Q 2313 4219 1838 4219 \n",
       "Q 1578 4219 1281 4162 \n",
       "Q 984 4106 628 3988 \n",
       "L 628 4550 \n",
       "Q 988 4650 1302 4700 \n",
       "Q 1616 4750 1894 4750 \n",
       "Q 2613 4750 3031 4423 \n",
       "Q 3450 4097 3450 3541 \n",
       "Q 3450 3153 3228 2886 \n",
       "Q 3006 2619 2597 2516 \n",
       "z\n",
       "\" id=\"DejaVuSans-33\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-33\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"919.093852\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 350 -->\n",
       "      <g transform=\"translate(909.550102 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-33\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"1048.864403\" xlink:href=\"#mf5dc41b3bf\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 400 -->\n",
       "      <g transform=\"translate(1039.320653 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2419 4116 \n",
       "L 825 1625 \n",
       "L 2419 1625 \n",
       "L 2419 4116 \n",
       "z\n",
       "M 2253 4666 \n",
       "L 3047 4666 \n",
       "L 3047 1625 \n",
       "L 3713 1625 \n",
       "L 3713 1100 \n",
       "L 3047 1100 \n",
       "L 3047 0 \n",
       "L 2419 0 \n",
       "L 2419 1100 \n",
       "L 313 1100 \n",
       "L 313 1709 \n",
       "L 2253 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-34\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-34\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- Distance [nm] -->\n",
       "     <g transform=\"translate(533.307813 116.863487)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 1259 4147 \n",
       "L 1259 519 \n",
       "L 2022 519 \n",
       "Q 2988 519 3436 956 \n",
       "Q 3884 1394 3884 2338 \n",
       "Q 3884 3275 3436 3711 \n",
       "Q 2988 4147 2022 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "M 628 4666 \n",
       "L 1925 4666 \n",
       "Q 3281 4666 3915 4102 \n",
       "Q 4550 3538 4550 2338 \n",
       "Q 4550 1131 3912 565 \n",
       "Q 3275 0 1925 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-44\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 603 3500 \n",
       "L 1178 3500 \n",
       "L 1178 0 \n",
       "L 603 0 \n",
       "L 603 3500 \n",
       "z\n",
       "M 603 4863 \n",
       "L 1178 4863 \n",
       "L 1178 4134 \n",
       "L 603 4134 \n",
       "L 603 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-69\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2834 3397 \n",
       "L 2834 2853 \n",
       "Q 2591 2978 2328 3040 \n",
       "Q 2066 3103 1784 3103 \n",
       "Q 1356 3103 1142 2972 \n",
       "Q 928 2841 928 2578 \n",
       "Q 928 2378 1081 2264 \n",
       "Q 1234 2150 1697 2047 \n",
       "L 1894 2003 \n",
       "Q 2506 1872 2764 1633 \n",
       "Q 3022 1394 3022 966 \n",
       "Q 3022 478 2636 193 \n",
       "Q 2250 -91 1575 -91 \n",
       "Q 1294 -91 989 -36 \n",
       "Q 684 19 347 128 \n",
       "L 347 722 \n",
       "Q 666 556 975 473 \n",
       "Q 1284 391 1588 391 \n",
       "Q 1994 391 2212 530 \n",
       "Q 2431 669 2431 922 \n",
       "Q 2431 1156 2273 1281 \n",
       "Q 2116 1406 1581 1522 \n",
       "L 1381 1569 \n",
       "Q 847 1681 609 1914 \n",
       "Q 372 2147 372 2553 \n",
       "Q 372 3047 722 3315 \n",
       "Q 1072 3584 1716 3584 \n",
       "Q 2034 3584 2315 3537 \n",
       "Q 2597 3491 2834 3397 \n",
       "z\n",
       "\" id=\"DejaVuSans-73\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1172 4494 \n",
       "L 1172 3500 \n",
       "L 2356 3500 \n",
       "L 2356 3053 \n",
       "L 1172 3053 \n",
       "L 1172 1153 \n",
       "Q 1172 725 1289 603 \n",
       "Q 1406 481 1766 481 \n",
       "L 2356 481 \n",
       "L 2356 0 \n",
       "L 1766 0 \n",
       "Q 1100 0 847 248 \n",
       "Q 594 497 594 1153 \n",
       "L 594 3053 \n",
       "L 172 3053 \n",
       "L 172 3500 \n",
       "L 594 3500 \n",
       "L 594 4494 \n",
       "L 1172 4494 \n",
       "z\n",
       "\" id=\"DejaVuSans-74\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2194 1759 \n",
       "Q 1497 1759 1228 1600 \n",
       "Q 959 1441 959 1056 \n",
       "Q 959 750 1161 570 \n",
       "Q 1363 391 1709 391 \n",
       "Q 2188 391 2477 730 \n",
       "Q 2766 1069 2766 1631 \n",
       "L 2766 1759 \n",
       "L 2194 1759 \n",
       "z\n",
       "M 3341 1997 \n",
       "L 3341 0 \n",
       "L 2766 0 \n",
       "L 2766 531 \n",
       "Q 2569 213 2275 61 \n",
       "Q 1981 -91 1556 -91 \n",
       "Q 1019 -91 701 211 \n",
       "Q 384 513 384 1019 \n",
       "Q 384 1609 779 1909 \n",
       "Q 1175 2209 1959 2209 \n",
       "L 2766 2209 \n",
       "L 2766 2266 \n",
       "Q 2766 2663 2505 2880 \n",
       "Q 2244 3097 1772 3097 \n",
       "Q 1472 3097 1187 3025 \n",
       "Q 903 2953 641 2809 \n",
       "L 641 3341 \n",
       "Q 956 3463 1253 3523 \n",
       "Q 1550 3584 1831 3584 \n",
       "Q 2591 3584 2966 3190 \n",
       "Q 3341 2797 3341 1997 \n",
       "z\n",
       "\" id=\"DejaVuSans-61\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3513 2113 \n",
       "L 3513 0 \n",
       "L 2938 0 \n",
       "L 2938 2094 \n",
       "Q 2938 2591 2744 2837 \n",
       "Q 2550 3084 2163 3084 \n",
       "Q 1697 3084 1428 2787 \n",
       "Q 1159 2491 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1366 3272 1645 3428 \n",
       "Q 1925 3584 2291 3584 \n",
       "Q 2894 3584 3203 3211 \n",
       "Q 3513 2838 3513 2113 \n",
       "z\n",
       "\" id=\"DejaVuSans-6e\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3122 3366 \n",
       "L 3122 2828 \n",
       "Q 2878 2963 2633 3030 \n",
       "Q 2388 3097 2138 3097 \n",
       "Q 1578 3097 1268 2742 \n",
       "Q 959 2388 959 1747 \n",
       "Q 959 1106 1268 751 \n",
       "Q 1578 397 2138 397 \n",
       "Q 2388 397 2633 464 \n",
       "Q 2878 531 3122 666 \n",
       "L 3122 134 \n",
       "Q 2881 22 2623 -34 \n",
       "Q 2366 -91 2075 -91 \n",
       "Q 1284 -91 818 406 \n",
       "Q 353 903 353 1747 \n",
       "Q 353 2603 823 3093 \n",
       "Q 1294 3584 2113 3584 \n",
       "Q 2378 3584 2631 3529 \n",
       "Q 2884 3475 3122 3366 \n",
       "z\n",
       "\" id=\"DejaVuSans-63\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3597 1894 \n",
       "L 3597 1613 \n",
       "L 953 1613 \n",
       "Q 991 1019 1311 708 \n",
       "Q 1631 397 2203 397 \n",
       "Q 2534 397 2845 478 \n",
       "Q 3156 559 3463 722 \n",
       "L 3463 178 \n",
       "Q 3153 47 2828 -22 \n",
       "Q 2503 -91 2169 -91 \n",
       "Q 1331 -91 842 396 \n",
       "Q 353 884 353 1716 \n",
       "Q 353 2575 817 3079 \n",
       "Q 1281 3584 2069 3584 \n",
       "Q 2775 3584 3186 3129 \n",
       "Q 3597 2675 3597 1894 \n",
       "z\n",
       "M 3022 2063 \n",
       "Q 3016 2534 2758 2815 \n",
       "Q 2500 3097 2075 3097 \n",
       "Q 1594 3097 1305 2825 \n",
       "Q 1016 2553 972 2059 \n",
       "L 3022 2063 \n",
       "z\n",
       "\" id=\"DejaVuSans-65\" transform=\"scale(0.015625)\"/>\n",
       "       <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 550 4863 \n",
       "L 1875 4863 \n",
       "L 1875 4416 \n",
       "L 1125 4416 \n",
       "L 1125 -397 \n",
       "L 1875 -397 \n",
       "L 1875 -844 \n",
       "L 550 -844 \n",
       "L 550 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5b\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3328 2828 \n",
       "Q 3544 3216 3844 3400 \n",
       "Q 4144 3584 4550 3584 \n",
       "Q 5097 3584 5394 3201 \n",
       "Q 5691 2819 5691 2113 \n",
       "L 5691 0 \n",
       "L 5113 0 \n",
       "L 5113 2094 \n",
       "Q 5113 2597 4934 2840 \n",
       "Q 4756 3084 4391 3084 \n",
       "Q 3944 3084 3684 2787 \n",
       "Q 3425 2491 3425 1978 \n",
       "L 3425 0 \n",
       "L 2847 0 \n",
       "L 2847 2094 \n",
       "Q 2847 2600 2669 2842 \n",
       "Q 2491 3084 2119 3084 \n",
       "Q 1678 3084 1418 2786 \n",
       "Q 1159 2488 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1356 3278 1631 3431 \n",
       "Q 1906 3584 2284 3584 \n",
       "Q 2666 3584 2933 3390 \n",
       "Q 3200 3197 3328 2828 \n",
       "z\n",
       "\" id=\"DejaVuSans-6d\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1947 4863 \n",
       "L 1947 -844 \n",
       "L 622 -844 \n",
       "L 622 -397 \n",
       "L 1369 -397 \n",
       "L 1369 4416 \n",
       "L 622 4416 \n",
       "L 622 4863 \n",
       "L 1947 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5d\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-44\"/>\n",
       "      <use x=\"77.001953\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"104.785156\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"156.884766\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"196.09375\" xlink:href=\"#DejaVuSans-61\"/>\n",
       "      <use x=\"257.373047\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"320.751953\" xlink:href=\"#DejaVuSans-63\"/>\n",
       "      <use x=\"375.732422\" xlink:href=\"#DejaVuSans-65\"/>\n",
       "      <use x=\"437.255859\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "      <use x=\"469.042969\" xlink:href=\"#DejaVuSans-5b\"/>\n",
       "      <use x=\"508.056641\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"571.435547\" xlink:href=\"#DejaVuSans-6d\"/>\n",
       "      <use x=\"668.847656\" xlink:href=\"#DejaVuSans-5d\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\"/>\n",
       "   <g id=\"line2d_10\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"line2d_11\">\n",
       "    <path clip-path=\"url(#pdaa3771862)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1103\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 10.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1104\">\n",
       "    <path d=\"M 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1105\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_1106\">\n",
       "    <path d=\"M 10.7 34.226925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"legend_1\">\n",
       "    <g id=\"line2d_12\">\n",
       "     <path d=\"M 19.7 15.298437 \n",
       "L 39.7 15.298437 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_13\"/>\n",
       "    <g id=\"text_11\">\n",
       "     <!-- SRO -->\n",
       "     <g transform=\"translate(47.7 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 3425 4513 \n",
       "L 3425 3897 \n",
       "Q 3066 4069 2747 4153 \n",
       "Q 2428 4238 2131 4238 \n",
       "Q 1616 4238 1336 4038 \n",
       "Q 1056 3838 1056 3469 \n",
       "Q 1056 3159 1242 3001 \n",
       "Q 1428 2844 1947 2747 \n",
       "L 2328 2669 \n",
       "Q 3034 2534 3370 2195 \n",
       "Q 3706 1856 3706 1288 \n",
       "Q 3706 609 3251 259 \n",
       "Q 2797 -91 1919 -91 \n",
       "Q 1588 -91 1214 -16 \n",
       "Q 841 59 441 206 \n",
       "L 441 856 \n",
       "Q 825 641 1194 531 \n",
       "Q 1563 422 1919 422 \n",
       "Q 2459 422 2753 634 \n",
       "Q 3047 847 3047 1241 \n",
       "Q 3047 1584 2836 1778 \n",
       "Q 2625 1972 2144 2069 \n",
       "L 1759 2144 \n",
       "Q 1053 2284 737 2584 \n",
       "Q 422 2884 422 3419 \n",
       "Q 422 4038 858 4394 \n",
       "Q 1294 4750 2059 4750 \n",
       "Q 2388 4750 2728 4690 \n",
       "Q 3069 4631 3425 4513 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2841 2188 \n",
       "Q 3044 2119 3236 1894 \n",
       "Q 3428 1669 3622 1275 \n",
       "L 4263 0 \n",
       "L 3584 0 \n",
       "L 2988 1197 \n",
       "Q 2756 1666 2539 1819 \n",
       "Q 2322 1972 1947 1972 \n",
       "L 1259 1972 \n",
       "L 1259 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "L 2053 4666 \n",
       "Q 2853 4666 3247 4331 \n",
       "Q 3641 3997 3641 3322 \n",
       "Q 3641 2881 3436 2590 \n",
       "Q 3231 2300 2841 2188 \n",
       "z\n",
       "M 1259 4147 \n",
       "L 1259 2491 \n",
       "L 2053 2491 \n",
       "Q 2509 2491 2742 2702 \n",
       "Q 2975 2913 2975 3322 \n",
       "Q 2975 3731 2742 3939 \n",
       "Q 2509 4147 2053 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2522 4238 \n",
       "Q 1834 4238 1429 3725 \n",
       "Q 1025 3213 1025 2328 \n",
       "Q 1025 1447 1429 934 \n",
       "Q 1834 422 2522 422 \n",
       "Q 3209 422 3611 934 \n",
       "Q 4013 1447 4013 2328 \n",
       "Q 4013 3213 3611 3725 \n",
       "Q 3209 4238 2522 4238 \n",
       "z\n",
       "M 2522 4750 \n",
       "Q 3503 4750 4090 4092 \n",
       "Q 4678 3434 4678 2328 \n",
       "Q 4678 1225 4090 567 \n",
       "Q 3503 -91 2522 -91 \n",
       "Q 1538 -91 948 565 \n",
       "Q 359 1222 359 2328 \n",
       "Q 359 3434 948 4092 \n",
       "Q 1538 4750 2522 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-4f\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-52\"/>\n",
       "      <use x=\"132.958984\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"line2d_14\">\n",
       "     <path d=\"M 88.86875 15.298437 \n",
       "L 108.86875 15.298437 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_15\"/>\n",
       "    <g id=\"text_12\">\n",
       "     <!-- STOsub -->\n",
       "     <g transform=\"translate(116.86875 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M -19 4666 \n",
       "L 3928 4666 \n",
       "L 3928 4134 \n",
       "L 2272 4134 \n",
       "L 2272 0 \n",
       "L 1638 0 \n",
       "L 1638 4134 \n",
       "L -19 4134 \n",
       "L -19 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-54\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 544 1381 \n",
       "L 544 3500 \n",
       "L 1119 3500 \n",
       "L 1119 1403 \n",
       "Q 1119 906 1312 657 \n",
       "Q 1506 409 1894 409 \n",
       "Q 2359 409 2629 706 \n",
       "Q 2900 1003 2900 1516 \n",
       "L 2900 3500 \n",
       "L 3475 3500 \n",
       "L 3475 0 \n",
       "L 2900 0 \n",
       "L 2900 538 \n",
       "Q 2691 219 2414 64 \n",
       "Q 2138 -91 1772 -91 \n",
       "Q 1169 -91 856 284 \n",
       "Q 544 659 544 1381 \n",
       "z\n",
       "M 1991 3584 \n",
       "L 1991 3584 \n",
       "z\n",
       "\" id=\"DejaVuSans-75\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3116 1747 \n",
       "Q 3116 2381 2855 2742 \n",
       "Q 2594 3103 2138 3103 \n",
       "Q 1681 3103 1420 2742 \n",
       "Q 1159 2381 1159 1747 \n",
       "Q 1159 1113 1420 752 \n",
       "Q 1681 391 2138 391 \n",
       "Q 2594 391 2855 752 \n",
       "Q 3116 1113 3116 1747 \n",
       "z\n",
       "M 1159 2969 \n",
       "Q 1341 3281 1617 3432 \n",
       "Q 1894 3584 2278 3584 \n",
       "Q 2916 3584 3314 3078 \n",
       "Q 3713 2572 3713 1747 \n",
       "Q 3713 922 3314 415 \n",
       "Q 2916 -91 2278 -91 \n",
       "Q 1894 -91 1617 61 \n",
       "Q 1341 213 1159 525 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 4863 \n",
       "L 1159 4863 \n",
       "L 1159 2969 \n",
       "z\n",
       "\" id=\"DejaVuSans-62\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-54\"/>\n",
       "      <use x=\"124.560547\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "      <use x=\"203.271484\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"255.371094\" xlink:href=\"#DejaVuSans-75\"/>\n",
       "      <use x=\"318.75\" xlink:href=\"#DejaVuSans-62\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"pdaa3771862\">\n",
       "   <rect height=\"54.36\" width=\"1116\" x=\"10.7\" y=\"34.226925\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 1440x72 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "S = ud.Structure('Single Layer')\n",
    "S.add_sub_structure(SRO, 100)  # add 100 layers of SRO to sample\n",
    "S.add_sub_structure(STO_sub, 1000)  # add 1000 layers of STO substrate\n",
    "\n",
    "print(S)\n",
    "\n",
    "S.visualize()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "There are various methods available to determine specific properties of a `Structure`, please also refer to the __API documentation__ for more details:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [],
   "source": [
    "[d_start, d_end, d_mid] = S.get_distances_of_layers()\n",
    "K = S.get_number_of_sub_structures()\n",
    "L = S.get_number_of_unique_layers()\n",
    "M = S.get_number_of_layers()\n",
    "P = S.get_all_positions_per_unique_layer()\n",
    "I = S.get_distances_of_interfaces()\n",
    "c_axis = S.get_layer_property_vector('c_axis')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The `Structure` class also allows to nest multiple substructures in order to build more complex samples easily:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Structure properties:\n",
      "\n",
      "Name   : Super Lattice\n",
      "Thickness : 332.58 nanometer\n",
      "Roughness : 0.00 nanometer\n",
      "----\n",
      "sub-structure 10 times:\n",
      "\tStructure properties:\n",
      "\n",
      "\tName   : Double Layer\n",
      "\tThickness : 13.73 nanometer\n",
      "\tRoughness : 0.00 nanometer\n",
      "\t----\n",
      "\t15 times Strontium Ruthenate: 5.92 nanometer\n",
      "\t20 times Strontium Titanate Substrate: 7.81 nanometer\n",
      "\t----\n",
      "\tno substrate\n",
      "500 times Strontium Titanate Substrate: 195.25 nanometer\n",
      "----\n",
      "no substrate\n",
      "\n"
     ]
    },
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAABG0AAAB/CAYAAABVPz9EAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Z1A+gAAAACXBIWXMAAAsTAAALEwEAmpwYAAAP50lEQVR4nO3de4xmdXkH8O/DLigCxQtIEIhQhValggp4i0obVGpN8FK8xluNmkaMl5Ko1QhUk2KraKu1jbcWK15IwWI0FWyEaKkWEJe73ASVS0VqRaELyO7TP+YsjsPM7uzOvDNnZz+fZDPv+Z3znvf5nTx7dvLdc85b3R0AAAAAxmW75S4AAAAAgPsS2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIzQightqupdVXVZVV1cVWuq6olVdU5VXVlVF1XV+VV18LTtd62qz1TVtcOfz1TVrss4hUU3yzE5e/h5TVXdNrxeU1VPqaodqurDw7G4uqrOqKq9t/Bzj6+qYxd7PgAAALCtWb3QHdy41z69GIXM1143/rimL1fVk5M8N8nju/uuqtotyQ7D6pd39wVV9Zokf53kmcP4p5Jc2t2vHPZxQpJPJjl6MWp80nFnLukx+c4Jz57XMenum6rq8CTHdvdzp23/gSS7JDmgu9cNx+v0qnpidy/pXAAAAIApK+FKmz2T3NrddyVJd9/a3TfN2ObbSfZKkqp6ZJInJHnvtPV/keSQqnrEEtS7FOZzTJIkVfWAJK9J8tbuXjds/49J7kryB1W1U1V9dbhi6dKqevHwvuuHMChVdUhVnTNttwdV1TeGq3ZeN7FZAgAAwAq2EkKbs5LsU1VXVdXHquoZs2xzZJJ/HV4/OsmaDQFFkgyv1yR5zIRrXSrzOSYbPDLJj7r7FzPGL8jU8TgyyU3dfVB3H5jka/P4/Mcm+aMkT07ynqp62OZPAQAAALZtW31o0923Z+rKmdcn+WmSL1bVq4fVp1TVDUnenuQjw1glme2Wn7nGtzqbOCYzbep4XJLkiKp6f1U9rbtvm0cJZ3T32u6+NcnZSQ7b3DkAAADAtm6rD22SqStluvuc7j4uyTFJXjisenmS/ZJ8LsnfDWOXJXlcVd079+H1QUmuWLqqJ2sjx2Sma5I8vKp2mTH++CSXd/dVmQqALknyl1X1nmH9Pfl1/9x/5sdvYhkAAADYhK0+tKmq36mq/acNHZzkhxsWuvtXSd6d5ElV9ajuvibJ94axDd6d5MJh3VZvU8dkuu6+I8nJSU6qqlXD+1+Z5AFJvjHc2vR/3f3ZJB/IVJiTJNdnKsxJ7hsIHVVV96+qhyQ5PMn5C50TAAAAbGu2+tAmyc5JTq6qy6vq4kw9s+b46Rt099okH0yy4auoX5vkgOHrr69NcsAwtlJs8pjM8M4kdya5qqquztS3aD1/+Oao30tyXlWtSfKuJO8b3nNCkr+pqm8lWTdjf+cl+WqS7yR571wPQQYAAADmVgv9Rufl/srvMVrur/wGAAAAtn4LDm0AAAAAWHwr4fYoAAAAgBVHaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghFZvzsa7brdd77FqVVansj6d9ffuZMuWf/jAPZMktd3qpNene/29nzVzbHOXp4/t/b83LqjO+da92PPY5+c336eGpah7ofOYre6FLP94C+ve3HlMou5J9/ZS1T2Jeez38/9etN6eb92LMY+ZdS/02G9J3Vsyr8Wu+4YH77PoPTHbPCZd9yR6eyn+3o9ln+pSl7rUpS51qUtdY9jHVl9XkrW3XHdrd++eGVbPHNiYPVetyscf9JDssWpVbl+/Pnd0J8kWL//J0cclSXbY+cFZd9farPvV2ns/a+bY5i5PH/vwKW9bUJ3zrXux5/GRU991nxqWou6FzmO2uhey/KYXbVndmzuPSdQ96d5eqronMY9TT3vPovX2fOtejHnMrHuhx35L6t6SeS123X/2mg8uek/MNo9J1z2J3l6Kv/dj2ae61KUudalLXepS1xj2sbXXlSQXvP8FP8ws3B4FAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEVm/OxuuTrO31ub23yx3dWdvrk2SLl9fdfWeSZN3da7PuV2vvXZ5tbHOXp48ttM751r3Y85jtWC9F3Qudx2L2yNpev8V1b+48JlH3pHt7qeqexDxu71603p5v3Ysxj5l1L/TYb0ndWzKvxa978Xtitn1Ouu6lmscY9qGu5d+nutSlLnWpS13qUtds22xMdfdGN/iNjat+meTKeb8Bls5uSW5d7iJgDvqTMdOfjJn+ZMz0J2OlN7dOD+/u3WcObtaVNkmu7O5DFqkgWDRVdYHeZKz0J2OmPxkz/cmY6U/GSm+uLJ5pAwAAADBCQhsAAACAEdrc0ObjE6kCFk5vMmb6kzHTn4yZ/mTM9CdjpTdXkM16EDEAAAAAS8PtUQAAAAAjNK/QpqqOrKorq+qaqnrHpIuCTamq66vqkqpaU1UXDGMPrqqvV9XVw88HLXedbBuq6tNVdUtVXTptbM5+rKp3DufTK6vq2ctTNduKOfrz+Kq6cTiHrqmq50xbpz9ZElW1T1WdXVVXVNVlVfXmYdz5k2W3kf50/mTZVdX9q+q8qrpo6M8ThnHnzxVok7dHVdWqJFcleWaSG5Kcn+Sl3X355MuD2VXV9UkO6e5bp439VZKfdfeJQ7j4oO5++3LVyLajqp6e5PYkn+nuA4exWfuxqh6d5PNJDkvysCT/nuSA7l63TOWzws3Rn8cnub27PzBjW/3JkqmqPZPs2d0XVtUuSb6b5HlJXh3nT5bZRvrzRXH+ZJlVVSXZqbtvr6rtk/xHkjcneUGcP1ec+Vxpc1iSa7r7B919d5IvJDlqsmXBFjkqycnD65Mz9Q8rTFx3fzPJz2YMz9WPRyX5Qnff1d3XJbkmU+dZmIg5+nMu+pMl0903d/eFw+tfJrkiyV5x/mQENtKfc9GfLJmecvuwuP3wp+P8uSLNJ7TZK8mPpy3fkI2fsGApdJKzquq7VfX6YWyP7r45mfqHNslDl606mLsfnVMZi2Oq6uLh9qkNl0/rT5ZFVe2b5HFJ/ivOn4zMjP5MnD8ZgapaVVVrktyS5Ovd7fy5Qs0ntKlZxnzlFMvtqd39+CR/mOSNw+X/sDVwTmUM/j7JI5IcnOTmJB8cxvUnS66qdk5yWpK3dPcvNrbpLGP6k4mapT+dPxmF7l7X3Qcn2TvJYVV14EY2159bsfmENjck2Wfa8t5JbppMOTA/3X3T8POWJF/K1OV9PxnuP95wH/Ity1chzNmPzqksu+7+yfDL3vokn8ivL5HWnyyp4VkMpyU5pbtPH4adPxmF2frT+ZOx6e6fJzknyZFx/lyR5hPanJ9k/6rar6p2SPKSJF+ebFkwt6raaXggXKpqpyTPSnJppvryVcNmr0pyxvJUCEnm7scvJ3lJVd2vqvZLsn+S85ahPrZhG36hGzw/U+fQRH+yhIYHaX4qyRXdfdK0Vc6fLLu5+tP5kzGoqt2r6oHD6x2THJHk+3H+XJFWb2qD7r6nqo5JcmaSVUk+3d2XTbwymNseSb409W9pVif5XHd/rarOT3JqVb02yY+SHL2MNbINqarPJzk8yW5VdUOS45KcmFn6sbsvq6pTk1ye5J4kb/TkfiZpjv48vKoOztSl0dcneUOiP1lyT03yiiSXDM9lSJI/j/Mn4zBXf77U+ZMR2DPJycM3PW+X5NTu/kpVfTvOnyvOJr/yGwAAAIClN5/bowAAAABYYkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQCwaKpqXVWtqarLquqiqnpbVW03rDukqv52I+/dt6petnTV3uez11bVmkXa347Dcbi7qnZbjH0CANue1ctdAACwoqzt7oOTpKoemuRzSXZNclx3X5Dkgo28d98kLxvesxyu3VD7QnX32iQHV9X1i7E/AGDb5EobAGAiuvuWJK9PckxNObyqvpIkVfWM4UqUNVX1varaJcmJSZ42jL11uPrlW1V14fDnKcN7D6+qc6rqX6rq+1V1SlXVsO7QqvrP4Sqf86pql6paVVV/XVXnV9XFVfWGTdU+fPYVVfWJ4aqhs6pqx2HdOVX1oar65rDNoVV1elVdXVXvm9TxBAC2Pa60AQAmprt/MNwe9dAZq45N8sbuPreqdk5yZ5J3JDm2u5+bJFX1gCTP7O47q2r/JJ9Pcsjw/scleUySm5Kcm+SpVXVeki8meXF3n19Vv5VkbZLXJrmtuw+tqvslObeqzuru6zZR/v5JXtrdr6uqU5O8MMlnh3V3d/fTq+rNSc5I8oQkP0tybVV9qLv/ZwsOFwDAbxDaAACTVrOMnZvkpKo6Jcnp3X3DcLHMdNsn+WhVHZxkXZIDpq07r7tvSJLhOTT7Jrktyc3dfX6SdPcvhvXPSvLYqvrj4b27ZiqQ2VRoc113rxlef3f4jA2+PPy8JMll3X3z8Fk/SLJPEqENALBgQhsAYGKq6rczFbjckuRRG8a7+8Sq+mqS5yT5TlUdMcvb35rkJ0kOytQt3XdOW3fXtNfrMvU7TSXp2cpI8qbuPnMzy5/5GTvOsm79jO3Wx+9XAMAi8UwbAGAiqmr3JP+Q5KPd3TPWPaK7L+nu92fq4cS/m+SXSXaZttmumbpyZn2SVyRZtYmP/H6Sh1XVocNn7FJVq5OcmeRPq2r7YfyAqtpp4TMEAJgs/xMEACymHYfblbZPck+Sf05y0izbvaWqfj9TV7BcnuTfMnWVyj1VdVGSf0rysSSnVdXRSc5OcsfGPri7766qFyf5yPDQ4LVJjkjyyUzd2nTh8MDinyZ53oJmCQCwBGrGf3wBAGxzqmrfJF/p7gMXeb/XJzmku29dzP0CANsGt0cBAExd8bPrcJXQglXV9CuO1i/GPgGAbY8rbQAAAABGyJU2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEL/D6aU1mezp+mxAAAAAElFTkSuQmCC",
      "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",
       "<svg height=\"126.143175pt\" version=\"1.1\" viewBox=\"0 0 1133.9 126.143175\" width=\"1133.9pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-07-15T17:36:59.873966</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.4.1, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 126.143175 \n",
       "L 1133.9 126.143175 \n",
       "L 1133.9 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 10.7 88.586925 \n",
       "L 12.025092 88.586925 \n",
       "L 12.025092 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 12.025092 88.586925 \n",
       "L 13.350184 88.586925 \n",
       "L 13.350184 34.226925 \n",
       "L 12.025092 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 13.350184 88.586925 \n",
       "L 14.675275 88.586925 \n",
       "L 14.675275 34.226925 \n",
       "L 13.350184 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 14.675275 88.586925 \n",
       "L 16.000367 88.586925 \n",
       "L 16.000367 34.226925 \n",
       "L 14.675275 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_7\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 16.000367 88.586925 \n",
       "L 17.325459 88.586925 \n",
       "L 17.325459 34.226925 \n",
       "L 16.000367 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_8\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 17.325459 88.586925 \n",
       "L 18.650551 88.586925 \n",
       "L 18.650551 34.226925 \n",
       "L 17.325459 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_9\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 18.650551 88.586925 \n",
       "L 19.975642 88.586925 \n",
       "L 19.975642 34.226925 \n",
       "L 18.650551 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_10\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 19.975642 88.586925 \n",
       "L 21.300734 88.586925 \n",
       "L 21.300734 34.226925 \n",
       "L 19.975642 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_11\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 21.300734 88.586925 \n",
       "L 22.625826 88.586925 \n",
       "L 22.625826 34.226925 \n",
       "L 21.300734 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_12\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 22.625826 88.586925 \n",
       "L 23.950918 88.586925 \n",
       "L 23.950918 34.226925 \n",
       "L 22.625826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_13\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 23.950918 88.586925 \n",
       "L 25.27601 88.586925 \n",
       "L 25.27601 34.226925 \n",
       "L 23.950918 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_14\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 25.27601 88.586925 \n",
       "L 26.601101 88.586925 \n",
       "L 26.601101 34.226925 \n",
       "L 25.27601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_15\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 26.601101 88.586925 \n",
       "L 27.926193 88.586925 \n",
       "L 27.926193 34.226925 \n",
       "L 26.601101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_16\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 27.926193 88.586925 \n",
       "L 29.251285 88.586925 \n",
       "L 29.251285 34.226925 \n",
       "L 27.926193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_17\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 29.251285 88.586925 \n",
       "L 30.576377 88.586925 \n",
       "L 30.576377 34.226925 \n",
       "L 29.251285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_18\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 30.576377 88.586925 \n",
       "L 31.886714 88.586925 \n",
       "L 31.886714 34.226925 \n",
       "L 30.576377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_19\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 31.886714 88.586925 \n",
       "L 33.197052 88.586925 \n",
       "L 33.197052 34.226925 \n",
       "L 31.886714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_20\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 33.197052 88.586925 \n",
       "L 34.507389 88.586925 \n",
       "L 34.507389 34.226925 \n",
       "L 33.197052 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_21\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 34.507389 88.586925 \n",
       "L 35.817727 88.586925 \n",
       "L 35.817727 34.226925 \n",
       "L 34.507389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_22\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 35.817727 88.586925 \n",
       "L 37.128064 88.586925 \n",
       "L 37.128064 34.226925 \n",
       "L 35.817727 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_23\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 37.128064 88.586925 \n",
       "L 38.438401 88.586925 \n",
       "L 38.438401 34.226925 \n",
       "L 37.128064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_24\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 38.438401 88.586925 \n",
       "L 39.748739 88.586925 \n",
       "L 39.748739 34.226925 \n",
       "L 38.438401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_25\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 39.748739 88.586925 \n",
       "L 41.059076 88.586925 \n",
       "L 41.059076 34.226925 \n",
       "L 39.748739 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_26\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 41.059076 88.586925 \n",
       "L 42.369414 88.586925 \n",
       "L 42.369414 34.226925 \n",
       "L 41.059076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_27\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 42.369414 88.586925 \n",
       "L 43.679751 88.586925 \n",
       "L 43.679751 34.226925 \n",
       "L 42.369414 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_28\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 43.679751 88.586925 \n",
       "L 44.990089 88.586925 \n",
       "L 44.990089 34.226925 \n",
       "L 43.679751 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_29\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 44.990089 88.586925 \n",
       "L 46.300426 88.586925 \n",
       "L 46.300426 34.226925 \n",
       "L 44.990089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_30\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 46.300426 88.586925 \n",
       "L 47.610764 88.586925 \n",
       "L 47.610764 34.226925 \n",
       "L 46.300426 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_31\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 47.610764 88.586925 \n",
       "L 48.921101 88.586925 \n",
       "L 48.921101 34.226925 \n",
       "L 47.610764 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_32\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 48.921101 88.586925 \n",
       "L 50.231439 88.586925 \n",
       "L 50.231439 34.226925 \n",
       "L 48.921101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_33\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 50.231439 88.586925 \n",
       "L 51.541776 88.586925 \n",
       "L 51.541776 34.226925 \n",
       "L 50.231439 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_34\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 51.541776 88.586925 \n",
       "L 52.852114 88.586925 \n",
       "L 52.852114 34.226925 \n",
       "L 51.541776 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_35\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 52.852114 88.586925 \n",
       "L 54.162451 88.586925 \n",
       "L 54.162451 34.226925 \n",
       "L 52.852114 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_36\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 54.162451 88.586925 \n",
       "L 55.472789 88.586925 \n",
       "L 55.472789 34.226925 \n",
       "L 54.162451 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_37\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 55.472789 88.586925 \n",
       "L 56.783126 88.586925 \n",
       "L 56.783126 34.226925 \n",
       "L 55.472789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_38\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 56.783126 88.586925 \n",
       "L 58.108218 88.586925 \n",
       "L 58.108218 34.226925 \n",
       "L 56.783126 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_39\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 58.108218 88.586925 \n",
       "L 59.43331 88.586925 \n",
       "L 59.43331 34.226925 \n",
       "L 58.108218 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_40\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 59.43331 88.586925 \n",
       "L 60.758401 88.586925 \n",
       "L 60.758401 34.226925 \n",
       "L 59.43331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_41\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 60.758401 88.586925 \n",
       "L 62.083493 88.586925 \n",
       "L 62.083493 34.226925 \n",
       "L 60.758401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_42\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 62.083493 88.586925 \n",
       "L 63.408585 88.586925 \n",
       "L 63.408585 34.226925 \n",
       "L 62.083493 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_43\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 63.408585 88.586925 \n",
       "L 64.733677 88.586925 \n",
       "L 64.733677 34.226925 \n",
       "L 63.408585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_44\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 64.733677 88.586925 \n",
       "L 66.058769 88.586925 \n",
       "L 66.058769 34.226925 \n",
       "L 64.733677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_45\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 66.058769 88.586925 \n",
       "L 67.38386 88.586925 \n",
       "L 67.38386 34.226925 \n",
       "L 66.058769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_46\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 67.38386 88.586925 \n",
       "L 68.708952 88.586925 \n",
       "L 68.708952 34.226925 \n",
       "L 67.38386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_47\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 68.708952 88.586925 \n",
       "L 70.034044 88.586925 \n",
       "L 70.034044 34.226925 \n",
       "L 68.708952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_48\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 70.034044 88.586925 \n",
       "L 71.359136 88.586925 \n",
       "L 71.359136 34.226925 \n",
       "L 70.034044 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_49\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 71.359136 88.586925 \n",
       "L 72.684227 88.586925 \n",
       "L 72.684227 34.226925 \n",
       "L 71.359136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_50\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 72.684227 88.586925 \n",
       "L 74.009319 88.586925 \n",
       "L 74.009319 34.226925 \n",
       "L 72.684227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_51\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 74.009319 88.586925 \n",
       "L 75.334411 88.586925 \n",
       "L 75.334411 34.226925 \n",
       "L 74.009319 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_52\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 75.334411 88.586925 \n",
       "L 76.659503 88.586925 \n",
       "L 76.659503 34.226925 \n",
       "L 75.334411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_53\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 76.659503 88.586925 \n",
       "L 77.96984 88.586925 \n",
       "L 77.96984 34.226925 \n",
       "L 76.659503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_54\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 77.96984 88.586925 \n",
       "L 79.280178 88.586925 \n",
       "L 79.280178 34.226925 \n",
       "L 77.96984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_55\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 79.280178 88.586925 \n",
       "L 80.590515 88.586925 \n",
       "L 80.590515 34.226925 \n",
       "L 79.280178 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_56\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 80.590515 88.586925 \n",
       "L 81.900853 88.586925 \n",
       "L 81.900853 34.226925 \n",
       "L 80.590515 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_57\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 81.900853 88.586925 \n",
       "L 83.21119 88.586925 \n",
       "L 83.21119 34.226925 \n",
       "L 81.900853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_58\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 83.21119 88.586925 \n",
       "L 84.521528 88.586925 \n",
       "L 84.521528 34.226925 \n",
       "L 83.21119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_59\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 84.521528 88.586925 \n",
       "L 85.831865 88.586925 \n",
       "L 85.831865 34.226925 \n",
       "L 84.521528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_60\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 85.831865 88.586925 \n",
       "L 87.142203 88.586925 \n",
       "L 87.142203 34.226925 \n",
       "L 85.831865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_61\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 87.142203 88.586925 \n",
       "L 88.45254 88.586925 \n",
       "L 88.45254 34.226925 \n",
       "L 87.142203 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_62\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 88.45254 88.586925 \n",
       "L 89.762878 88.586925 \n",
       "L 89.762878 34.226925 \n",
       "L 88.45254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_63\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 89.762878 88.586925 \n",
       "L 91.073215 88.586925 \n",
       "L 91.073215 34.226925 \n",
       "L 89.762878 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_64\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 91.073215 88.586925 \n",
       "L 92.383553 88.586925 \n",
       "L 92.383553 34.226925 \n",
       "L 91.073215 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_65\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 92.383553 88.586925 \n",
       "L 93.69389 88.586925 \n",
       "L 93.69389 34.226925 \n",
       "L 92.383553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_66\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 93.69389 88.586925 \n",
       "L 95.004227 88.586925 \n",
       "L 95.004227 34.226925 \n",
       "L 93.69389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_67\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 95.004227 88.586925 \n",
       "L 96.314565 88.586925 \n",
       "L 96.314565 34.226925 \n",
       "L 95.004227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_68\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 96.314565 88.586925 \n",
       "L 97.624902 88.586925 \n",
       "L 97.624902 34.226925 \n",
       "L 96.314565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_69\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 97.624902 88.586925 \n",
       "L 98.93524 88.586925 \n",
       "L 98.93524 34.226925 \n",
       "L 97.624902 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_70\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 98.93524 88.586925 \n",
       "L 100.245577 88.586925 \n",
       "L 100.245577 34.226925 \n",
       "L 98.93524 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_71\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 100.245577 88.586925 \n",
       "L 101.555915 88.586925 \n",
       "L 101.555915 34.226925 \n",
       "L 100.245577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_72\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 101.555915 88.586925 \n",
       "L 102.866252 88.586925 \n",
       "L 102.866252 34.226925 \n",
       "L 101.555915 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_73\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 102.866252 88.586925 \n",
       "L 104.191344 88.586925 \n",
       "L 104.191344 34.226925 \n",
       "L 102.866252 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_74\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 104.191344 88.586925 \n",
       "L 105.516436 88.586925 \n",
       "L 105.516436 34.226925 \n",
       "L 104.191344 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_75\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 105.516436 88.586925 \n",
       "L 106.841528 88.586925 \n",
       "L 106.841528 34.226925 \n",
       "L 105.516436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_76\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 106.841528 88.586925 \n",
       "L 108.166619 88.586925 \n",
       "L 108.166619 34.226925 \n",
       "L 106.841528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_77\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 108.166619 88.586925 \n",
       "L 109.491711 88.586925 \n",
       "L 109.491711 34.226925 \n",
       "L 108.166619 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_78\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 109.491711 88.586925 \n",
       "L 110.816803 88.586925 \n",
       "L 110.816803 34.226925 \n",
       "L 109.491711 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_79\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 110.816803 88.586925 \n",
       "L 112.141895 88.586925 \n",
       "L 112.141895 34.226925 \n",
       "L 110.816803 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_80\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 112.141895 88.586925 \n",
       "L 113.466987 88.586925 \n",
       "L 113.466987 34.226925 \n",
       "L 112.141895 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_81\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 113.466987 88.586925 \n",
       "L 114.792078 88.586925 \n",
       "L 114.792078 34.226925 \n",
       "L 113.466987 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_82\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 114.792078 88.586925 \n",
       "L 116.11717 88.586925 \n",
       "L 116.11717 34.226925 \n",
       "L 114.792078 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_83\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 116.11717 88.586925 \n",
       "L 117.442262 88.586925 \n",
       "L 117.442262 34.226925 \n",
       "L 116.11717 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_84\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 117.442262 88.586925 \n",
       "L 118.767354 88.586925 \n",
       "L 118.767354 34.226925 \n",
       "L 117.442262 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_85\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 118.767354 88.586925 \n",
       "L 120.092445 88.586925 \n",
       "L 120.092445 34.226925 \n",
       "L 118.767354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_86\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 120.092445 88.586925 \n",
       "L 121.417537 88.586925 \n",
       "L 121.417537 34.226925 \n",
       "L 120.092445 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_87\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 121.417537 88.586925 \n",
       "L 122.742629 88.586925 \n",
       "L 122.742629 34.226925 \n",
       "L 121.417537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_88\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 122.742629 88.586925 \n",
       "L 124.052966 88.586925 \n",
       "L 124.052966 34.226925 \n",
       "L 122.742629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_89\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 124.052966 88.586925 \n",
       "L 125.363304 88.586925 \n",
       "L 125.363304 34.226925 \n",
       "L 124.052966 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_90\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 125.363304 88.586925 \n",
       "L 126.673641 88.586925 \n",
       "L 126.673641 34.226925 \n",
       "L 125.363304 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_91\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 126.673641 88.586925 \n",
       "L 127.983979 88.586925 \n",
       "L 127.983979 34.226925 \n",
       "L 126.673641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_92\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 127.983979 88.586925 \n",
       "L 129.294316 88.586925 \n",
       "L 129.294316 34.226925 \n",
       "L 127.983979 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_93\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 129.294316 88.586925 \n",
       "L 130.604654 88.586925 \n",
       "L 130.604654 34.226925 \n",
       "L 129.294316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_94\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 130.604654 88.586925 \n",
       "L 131.914991 88.586925 \n",
       "L 131.914991 34.226925 \n",
       "L 130.604654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_95\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 131.914991 88.586925 \n",
       "L 133.225329 88.586925 \n",
       "L 133.225329 34.226925 \n",
       "L 131.914991 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_96\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 133.225329 88.586925 \n",
       "L 134.535666 88.586925 \n",
       "L 134.535666 34.226925 \n",
       "L 133.225329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_97\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 134.535666 88.586925 \n",
       "L 135.846004 88.586925 \n",
       "L 135.846004 34.226925 \n",
       "L 134.535666 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_98\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 135.846004 88.586925 \n",
       "L 137.156341 88.586925 \n",
       "L 137.156341 34.226925 \n",
       "L 135.846004 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_99\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 137.156341 88.586925 \n",
       "L 138.466679 88.586925 \n",
       "L 138.466679 34.226925 \n",
       "L 137.156341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_100\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 138.466679 88.586925 \n",
       "L 139.777016 88.586925 \n",
       "L 139.777016 34.226925 \n",
       "L 138.466679 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_101\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 139.777016 88.586925 \n",
       "L 141.087354 88.586925 \n",
       "L 141.087354 34.226925 \n",
       "L 139.777016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_102\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 141.087354 88.586925 \n",
       "L 142.397691 88.586925 \n",
       "L 142.397691 34.226925 \n",
       "L 141.087354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_103\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 142.397691 88.586925 \n",
       "L 143.708029 88.586925 \n",
       "L 143.708029 34.226925 \n",
       "L 142.397691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_104\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 143.708029 88.586925 \n",
       "L 145.018366 88.586925 \n",
       "L 145.018366 34.226925 \n",
       "L 143.708029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_105\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 145.018366 88.586925 \n",
       "L 146.328704 88.586925 \n",
       "L 146.328704 34.226925 \n",
       "L 145.018366 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_106\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 146.328704 88.586925 \n",
       "L 147.639041 88.586925 \n",
       "L 147.639041 34.226925 \n",
       "L 146.328704 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_107\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 147.639041 88.586925 \n",
       "L 148.949379 88.586925 \n",
       "L 148.949379 34.226925 \n",
       "L 147.639041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_108\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 148.949379 88.586925 \n",
       "L 150.27447 88.586925 \n",
       "L 150.27447 34.226925 \n",
       "L 148.949379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_109\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 150.27447 88.586925 \n",
       "L 151.599562 88.586925 \n",
       "L 151.599562 34.226925 \n",
       "L 150.27447 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_110\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 151.599562 88.586925 \n",
       "L 152.924654 88.586925 \n",
       "L 152.924654 34.226925 \n",
       "L 151.599562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_111\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 152.924654 88.586925 \n",
       "L 154.249746 88.586925 \n",
       "L 154.249746 34.226925 \n",
       "L 152.924654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_112\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 154.249746 88.586925 \n",
       "L 155.574837 88.586925 \n",
       "L 155.574837 34.226925 \n",
       "L 154.249746 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_113\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 155.574837 88.586925 \n",
       "L 156.899929 88.586925 \n",
       "L 156.899929 34.226925 \n",
       "L 155.574837 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_114\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 156.899929 88.586925 \n",
       "L 158.225021 88.586925 \n",
       "L 158.225021 34.226925 \n",
       "L 156.899929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_115\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 158.225021 88.586925 \n",
       "L 159.550113 88.586925 \n",
       "L 159.550113 34.226925 \n",
       "L 158.225021 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_116\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 159.550113 88.586925 \n",
       "L 160.875204 88.586925 \n",
       "L 160.875204 34.226925 \n",
       "L 159.550113 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_117\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 160.875204 88.586925 \n",
       "L 162.200296 88.586925 \n",
       "L 162.200296 34.226925 \n",
       "L 160.875204 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_118\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 162.200296 88.586925 \n",
       "L 163.525388 88.586925 \n",
       "L 163.525388 34.226925 \n",
       "L 162.200296 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_119\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 163.525388 88.586925 \n",
       "L 164.85048 88.586925 \n",
       "L 164.85048 34.226925 \n",
       "L 163.525388 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_120\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 164.85048 88.586925 \n",
       "L 166.175572 88.586925 \n",
       "L 166.175572 34.226925 \n",
       "L 164.85048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_121\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 166.175572 88.586925 \n",
       "L 167.500663 88.586925 \n",
       "L 167.500663 34.226925 \n",
       "L 166.175572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_122\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 167.500663 88.586925 \n",
       "L 168.825755 88.586925 \n",
       "L 168.825755 34.226925 \n",
       "L 167.500663 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_123\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 168.825755 88.586925 \n",
       "L 170.136093 88.586925 \n",
       "L 170.136093 34.226925 \n",
       "L 168.825755 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_124\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 170.136093 88.586925 \n",
       "L 171.44643 88.586925 \n",
       "L 171.44643 34.226925 \n",
       "L 170.136093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_125\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 171.44643 88.586925 \n",
       "L 172.756768 88.586925 \n",
       "L 172.756768 34.226925 \n",
       "L 171.44643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_126\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 172.756768 88.586925 \n",
       "L 174.067105 88.586925 \n",
       "L 174.067105 34.226925 \n",
       "L 172.756768 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_127\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 174.067105 88.586925 \n",
       "L 175.377443 88.586925 \n",
       "L 175.377443 34.226925 \n",
       "L 174.067105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_128\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 175.377443 88.586925 \n",
       "L 176.68778 88.586925 \n",
       "L 176.68778 34.226925 \n",
       "L 175.377443 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_129\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 176.68778 88.586925 \n",
       "L 177.998117 88.586925 \n",
       "L 177.998117 34.226925 \n",
       "L 176.68778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_130\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 177.998117 88.586925 \n",
       "L 179.308455 88.586925 \n",
       "L 179.308455 34.226925 \n",
       "L 177.998117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_131\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 179.308455 88.586925 \n",
       "L 180.618792 88.586925 \n",
       "L 180.618792 34.226925 \n",
       "L 179.308455 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_132\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 180.618792 88.586925 \n",
       "L 181.92913 88.586925 \n",
       "L 181.92913 34.226925 \n",
       "L 180.618792 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_133\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 181.92913 88.586925 \n",
       "L 183.239467 88.586925 \n",
       "L 183.239467 34.226925 \n",
       "L 181.92913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_134\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 183.239467 88.586925 \n",
       "L 184.549805 88.586925 \n",
       "L 184.549805 34.226925 \n",
       "L 183.239467 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_135\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 184.549805 88.586925 \n",
       "L 185.860142 88.586925 \n",
       "L 185.860142 34.226925 \n",
       "L 184.549805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_136\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 185.860142 88.586925 \n",
       "L 187.17048 88.586925 \n",
       "L 187.17048 34.226925 \n",
       "L 185.860142 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_137\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 187.17048 88.586925 \n",
       "L 188.480817 88.586925 \n",
       "L 188.480817 34.226925 \n",
       "L 187.17048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_138\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 188.480817 88.586925 \n",
       "L 189.791155 88.586925 \n",
       "L 189.791155 34.226925 \n",
       "L 188.480817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_139\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 189.791155 88.586925 \n",
       "L 191.101492 88.586925 \n",
       "L 191.101492 34.226925 \n",
       "L 189.791155 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_140\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 191.101492 88.586925 \n",
       "L 192.41183 88.586925 \n",
       "L 192.41183 34.226925 \n",
       "L 191.101492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_141\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 192.41183 88.586925 \n",
       "L 193.722167 88.586925 \n",
       "L 193.722167 34.226925 \n",
       "L 192.41183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_142\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 193.722167 88.586925 \n",
       "L 195.032505 88.586925 \n",
       "L 195.032505 34.226925 \n",
       "L 193.722167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_143\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 195.032505 88.586925 \n",
       "L 196.357596 88.586925 \n",
       "L 196.357596 34.226925 \n",
       "L 195.032505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_144\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 196.357596 88.586925 \n",
       "L 197.682688 88.586925 \n",
       "L 197.682688 34.226925 \n",
       "L 196.357596 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_145\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 197.682688 88.586925 \n",
       "L 199.00778 88.586925 \n",
       "L 199.00778 34.226925 \n",
       "L 197.682688 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_146\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 199.00778 88.586925 \n",
       "L 200.332872 88.586925 \n",
       "L 200.332872 34.226925 \n",
       "L 199.00778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_147\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 200.332872 88.586925 \n",
       "L 201.657964 88.586925 \n",
       "L 201.657964 34.226925 \n",
       "L 200.332872 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_148\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 201.657964 88.586925 \n",
       "L 202.983055 88.586925 \n",
       "L 202.983055 34.226925 \n",
       "L 201.657964 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_149\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 202.983055 88.586925 \n",
       "L 204.308147 88.586925 \n",
       "L 204.308147 34.226925 \n",
       "L 202.983055 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_150\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 204.308147 88.586925 \n",
       "L 205.633239 88.586925 \n",
       "L 205.633239 34.226925 \n",
       "L 204.308147 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_151\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 205.633239 88.586925 \n",
       "L 206.958331 88.586925 \n",
       "L 206.958331 34.226925 \n",
       "L 205.633239 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_152\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 206.958331 88.586925 \n",
       "L 208.283422 88.586925 \n",
       "L 208.283422 34.226925 \n",
       "L 206.958331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_153\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 208.283422 88.586925 \n",
       "L 209.608514 88.586925 \n",
       "L 209.608514 34.226925 \n",
       "L 208.283422 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_154\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 209.608514 88.586925 \n",
       "L 210.933606 88.586925 \n",
       "L 210.933606 34.226925 \n",
       "L 209.608514 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_155\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 210.933606 88.586925 \n",
       "L 212.258698 88.586925 \n",
       "L 212.258698 34.226925 \n",
       "L 210.933606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_156\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 212.258698 88.586925 \n",
       "L 213.58379 88.586925 \n",
       "L 213.58379 34.226925 \n",
       "L 212.258698 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_157\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 213.58379 88.586925 \n",
       "L 214.908881 88.586925 \n",
       "L 214.908881 34.226925 \n",
       "L 213.58379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_158\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 214.908881 88.586925 \n",
       "L 216.219219 88.586925 \n",
       "L 216.219219 34.226925 \n",
       "L 214.908881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_159\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 216.219219 88.586925 \n",
       "L 217.529556 88.586925 \n",
       "L 217.529556 34.226925 \n",
       "L 216.219219 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_160\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 217.529556 88.586925 \n",
       "L 218.839894 88.586925 \n",
       "L 218.839894 34.226925 \n",
       "L 217.529556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_161\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 218.839894 88.586925 \n",
       "L 220.150231 88.586925 \n",
       "L 220.150231 34.226925 \n",
       "L 218.839894 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_162\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 220.150231 88.586925 \n",
       "L 221.460569 88.586925 \n",
       "L 221.460569 34.226925 \n",
       "L 220.150231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_163\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 221.460569 88.586925 \n",
       "L 222.770906 88.586925 \n",
       "L 222.770906 34.226925 \n",
       "L 221.460569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_164\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 222.770906 88.586925 \n",
       "L 224.081244 88.586925 \n",
       "L 224.081244 34.226925 \n",
       "L 222.770906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_165\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 224.081244 88.586925 \n",
       "L 225.391581 88.586925 \n",
       "L 225.391581 34.226925 \n",
       "L 224.081244 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_166\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 225.391581 88.586925 \n",
       "L 226.701919 88.586925 \n",
       "L 226.701919 34.226925 \n",
       "L 225.391581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_167\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 226.701919 88.586925 \n",
       "L 228.012256 88.586925 \n",
       "L 228.012256 34.226925 \n",
       "L 226.701919 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_168\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 228.012256 88.586925 \n",
       "L 229.322594 88.586925 \n",
       "L 229.322594 34.226925 \n",
       "L 228.012256 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_169\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 229.322594 88.586925 \n",
       "L 230.632931 88.586925 \n",
       "L 230.632931 34.226925 \n",
       "L 229.322594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_170\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 230.632931 88.586925 \n",
       "L 231.943269 88.586925 \n",
       "L 231.943269 34.226925 \n",
       "L 230.632931 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_171\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 231.943269 88.586925 \n",
       "L 233.253606 88.586925 \n",
       "L 233.253606 34.226925 \n",
       "L 231.943269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_172\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 233.253606 88.586925 \n",
       "L 234.563943 88.586925 \n",
       "L 234.563943 34.226925 \n",
       "L 233.253606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_173\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 234.563943 88.586925 \n",
       "L 235.874281 88.586925 \n",
       "L 235.874281 34.226925 \n",
       "L 234.563943 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_174\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 235.874281 88.586925 \n",
       "L 237.184618 88.586925 \n",
       "L 237.184618 34.226925 \n",
       "L 235.874281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_175\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 237.184618 88.586925 \n",
       "L 238.494956 88.586925 \n",
       "L 238.494956 34.226925 \n",
       "L 237.184618 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_176\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 238.494956 88.586925 \n",
       "L 239.805293 88.586925 \n",
       "L 239.805293 34.226925 \n",
       "L 238.494956 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_177\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 239.805293 88.586925 \n",
       "L 241.115631 88.586925 \n",
       "L 241.115631 34.226925 \n",
       "L 239.805293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_178\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 241.115631 88.586925 \n",
       "L 242.440723 88.586925 \n",
       "L 242.440723 34.226925 \n",
       "L 241.115631 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_179\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 242.440723 88.586925 \n",
       "L 243.765814 88.586925 \n",
       "L 243.765814 34.226925 \n",
       "L 242.440723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_180\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 243.765814 88.586925 \n",
       "L 245.090906 88.586925 \n",
       "L 245.090906 34.226925 \n",
       "L 243.765814 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_181\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 245.090906 88.586925 \n",
       "L 246.415998 88.586925 \n",
       "L 246.415998 34.226925 \n",
       "L 245.090906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_182\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 246.415998 88.586925 \n",
       "L 247.74109 88.586925 \n",
       "L 247.74109 34.226925 \n",
       "L 246.415998 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_183\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 247.74109 88.586925 \n",
       "L 249.066182 88.586925 \n",
       "L 249.066182 34.226925 \n",
       "L 247.74109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_184\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 249.066182 88.586925 \n",
       "L 250.391273 88.586925 \n",
       "L 250.391273 34.226925 \n",
       "L 249.066182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_185\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 250.391273 88.586925 \n",
       "L 251.716365 88.586925 \n",
       "L 251.716365 34.226925 \n",
       "L 250.391273 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_186\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 251.716365 88.586925 \n",
       "L 253.041457 88.586925 \n",
       "L 253.041457 34.226925 \n",
       "L 251.716365 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_187\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 253.041457 88.586925 \n",
       "L 254.366549 88.586925 \n",
       "L 254.366549 34.226925 \n",
       "L 253.041457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_188\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 254.366549 88.586925 \n",
       "L 255.69164 88.586925 \n",
       "L 255.69164 34.226925 \n",
       "L 254.366549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_189\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 255.69164 88.586925 \n",
       "L 257.016732 88.586925 \n",
       "L 257.016732 34.226925 \n",
       "L 255.69164 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_190\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 257.016732 88.586925 \n",
       "L 258.341824 88.586925 \n",
       "L 258.341824 34.226925 \n",
       "L 257.016732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_191\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 258.341824 88.586925 \n",
       "L 259.666916 88.586925 \n",
       "L 259.666916 34.226925 \n",
       "L 258.341824 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_192\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 259.666916 88.586925 \n",
       "L 260.992007 88.586925 \n",
       "L 260.992007 34.226925 \n",
       "L 259.666916 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_193\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 260.992007 88.586925 \n",
       "L 262.302345 88.586925 \n",
       "L 262.302345 34.226925 \n",
       "L 260.992007 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_194\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 262.302345 88.586925 \n",
       "L 263.612682 88.586925 \n",
       "L 263.612682 34.226925 \n",
       "L 262.302345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_195\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 263.612682 88.586925 \n",
       "L 264.92302 88.586925 \n",
       "L 264.92302 34.226925 \n",
       "L 263.612682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_196\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 264.92302 88.586925 \n",
       "L 266.233357 88.586925 \n",
       "L 266.233357 34.226925 \n",
       "L 264.92302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_197\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 266.233357 88.586925 \n",
       "L 267.543695 88.586925 \n",
       "L 267.543695 34.226925 \n",
       "L 266.233357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_198\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 267.543695 88.586925 \n",
       "L 268.854032 88.586925 \n",
       "L 268.854032 34.226925 \n",
       "L 267.543695 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_199\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 268.854032 88.586925 \n",
       "L 270.16437 88.586925 \n",
       "L 270.16437 34.226925 \n",
       "L 268.854032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_200\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 270.16437 88.586925 \n",
       "L 271.474707 88.586925 \n",
       "L 271.474707 34.226925 \n",
       "L 270.16437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_201\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 271.474707 88.586925 \n",
       "L 272.785045 88.586925 \n",
       "L 272.785045 34.226925 \n",
       "L 271.474707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_202\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 272.785045 88.586925 \n",
       "L 274.095382 88.586925 \n",
       "L 274.095382 34.226925 \n",
       "L 272.785045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_203\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 274.095382 88.586925 \n",
       "L 275.40572 88.586925 \n",
       "L 275.40572 34.226925 \n",
       "L 274.095382 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_204\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 275.40572 88.586925 \n",
       "L 276.716057 88.586925 \n",
       "L 276.716057 34.226925 \n",
       "L 275.40572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_205\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 276.716057 88.586925 \n",
       "L 278.026395 88.586925 \n",
       "L 278.026395 34.226925 \n",
       "L 276.716057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_206\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 278.026395 88.586925 \n",
       "L 279.336732 88.586925 \n",
       "L 279.336732 34.226925 \n",
       "L 278.026395 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_207\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 279.336732 88.586925 \n",
       "L 280.64707 88.586925 \n",
       "L 280.64707 34.226925 \n",
       "L 279.336732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_208\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 280.64707 88.586925 \n",
       "L 281.957407 88.586925 \n",
       "L 281.957407 34.226925 \n",
       "L 280.64707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_209\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 281.957407 88.586925 \n",
       "L 283.267745 88.586925 \n",
       "L 283.267745 34.226925 \n",
       "L 281.957407 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_210\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 283.267745 88.586925 \n",
       "L 284.578082 88.586925 \n",
       "L 284.578082 34.226925 \n",
       "L 283.267745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_211\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 284.578082 88.586925 \n",
       "L 285.88842 88.586925 \n",
       "L 285.88842 34.226925 \n",
       "L 284.578082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_212\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 285.88842 88.586925 \n",
       "L 287.198757 88.586925 \n",
       "L 287.198757 34.226925 \n",
       "L 285.88842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_213\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 287.198757 88.586925 \n",
       "L 288.523849 88.586925 \n",
       "L 288.523849 34.226925 \n",
       "L 287.198757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_214\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 288.523849 88.586925 \n",
       "L 289.848941 88.586925 \n",
       "L 289.848941 34.226925 \n",
       "L 288.523849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_215\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 289.848941 88.586925 \n",
       "L 291.174032 88.586925 \n",
       "L 291.174032 34.226925 \n",
       "L 289.848941 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_216\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 291.174032 88.586925 \n",
       "L 292.499124 88.586925 \n",
       "L 292.499124 34.226925 \n",
       "L 291.174032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_217\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 292.499124 88.586925 \n",
       "L 293.824216 88.586925 \n",
       "L 293.824216 34.226925 \n",
       "L 292.499124 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_218\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 293.824216 88.586925 \n",
       "L 295.149308 88.586925 \n",
       "L 295.149308 34.226925 \n",
       "L 293.824216 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_219\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 295.149308 88.586925 \n",
       "L 296.474399 88.586925 \n",
       "L 296.474399 34.226925 \n",
       "L 295.149308 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_220\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 296.474399 88.586925 \n",
       "L 297.799491 88.586925 \n",
       "L 297.799491 34.226925 \n",
       "L 296.474399 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_221\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 297.799491 88.586925 \n",
       "L 299.124583 88.586925 \n",
       "L 299.124583 34.226925 \n",
       "L 297.799491 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_222\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 299.124583 88.586925 \n",
       "L 300.449675 88.586925 \n",
       "L 300.449675 34.226925 \n",
       "L 299.124583 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_223\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 300.449675 88.586925 \n",
       "L 301.774767 88.586925 \n",
       "L 301.774767 34.226925 \n",
       "L 300.449675 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_224\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 301.774767 88.586925 \n",
       "L 303.099858 88.586925 \n",
       "L 303.099858 34.226925 \n",
       "L 301.774767 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_225\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 303.099858 88.586925 \n",
       "L 304.42495 88.586925 \n",
       "L 304.42495 34.226925 \n",
       "L 303.099858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_226\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 304.42495 88.586925 \n",
       "L 305.750042 88.586925 \n",
       "L 305.750042 34.226925 \n",
       "L 304.42495 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_227\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 305.750042 88.586925 \n",
       "L 307.075134 88.586925 \n",
       "L 307.075134 34.226925 \n",
       "L 305.750042 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_228\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 307.075134 88.586925 \n",
       "L 308.385471 88.586925 \n",
       "L 308.385471 34.226925 \n",
       "L 307.075134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_229\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 308.385471 88.586925 \n",
       "L 309.695809 88.586925 \n",
       "L 309.695809 34.226925 \n",
       "L 308.385471 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_230\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 309.695809 88.586925 \n",
       "L 311.006146 88.586925 \n",
       "L 311.006146 34.226925 \n",
       "L 309.695809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_231\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 311.006146 88.586925 \n",
       "L 312.316484 88.586925 \n",
       "L 312.316484 34.226925 \n",
       "L 311.006146 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_232\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 312.316484 88.586925 \n",
       "L 313.626821 88.586925 \n",
       "L 313.626821 34.226925 \n",
       "L 312.316484 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_233\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 313.626821 88.586925 \n",
       "L 314.937159 88.586925 \n",
       "L 314.937159 34.226925 \n",
       "L 313.626821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_234\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 314.937159 88.586925 \n",
       "L 316.247496 88.586925 \n",
       "L 316.247496 34.226925 \n",
       "L 314.937159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_235\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 316.247496 88.586925 \n",
       "L 317.557833 88.586925 \n",
       "L 317.557833 34.226925 \n",
       "L 316.247496 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_236\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 317.557833 88.586925 \n",
       "L 318.868171 88.586925 \n",
       "L 318.868171 34.226925 \n",
       "L 317.557833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_237\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 318.868171 88.586925 \n",
       "L 320.178508 88.586925 \n",
       "L 320.178508 34.226925 \n",
       "L 318.868171 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_238\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 320.178508 88.586925 \n",
       "L 321.488846 88.586925 \n",
       "L 321.488846 34.226925 \n",
       "L 320.178508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_239\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 321.488846 88.586925 \n",
       "L 322.799183 88.586925 \n",
       "L 322.799183 34.226925 \n",
       "L 321.488846 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_240\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 322.799183 88.586925 \n",
       "L 324.109521 88.586925 \n",
       "L 324.109521 34.226925 \n",
       "L 322.799183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_241\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 324.109521 88.586925 \n",
       "L 325.419858 88.586925 \n",
       "L 325.419858 34.226925 \n",
       "L 324.109521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_242\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 325.419858 88.586925 \n",
       "L 326.730196 88.586925 \n",
       "L 326.730196 34.226925 \n",
       "L 325.419858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_243\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 326.730196 88.586925 \n",
       "L 328.040533 88.586925 \n",
       "L 328.040533 34.226925 \n",
       "L 326.730196 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_244\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 328.040533 88.586925 \n",
       "L 329.350871 88.586925 \n",
       "L 329.350871 34.226925 \n",
       "L 328.040533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_245\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 329.350871 88.586925 \n",
       "L 330.661208 88.586925 \n",
       "L 330.661208 34.226925 \n",
       "L 329.350871 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_246\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 330.661208 88.586925 \n",
       "L 331.971546 88.586925 \n",
       "L 331.971546 34.226925 \n",
       "L 330.661208 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_247\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 331.971546 88.586925 \n",
       "L 333.281883 88.586925 \n",
       "L 333.281883 34.226925 \n",
       "L 331.971546 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_248\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 333.281883 88.586925 \n",
       "L 334.606975 88.586925 \n",
       "L 334.606975 34.226925 \n",
       "L 333.281883 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_249\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 334.606975 88.586925 \n",
       "L 335.932067 88.586925 \n",
       "L 335.932067 34.226925 \n",
       "L 334.606975 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_250\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 335.932067 88.586925 \n",
       "L 337.257159 88.586925 \n",
       "L 337.257159 34.226925 \n",
       "L 335.932067 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_251\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 337.257159 88.586925 \n",
       "L 338.58225 88.586925 \n",
       "L 338.58225 34.226925 \n",
       "L 337.257159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_252\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 338.58225 88.586925 \n",
       "L 339.907342 88.586925 \n",
       "L 339.907342 34.226925 \n",
       "L 338.58225 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_253\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 339.907342 88.586925 \n",
       "L 341.232434 88.586925 \n",
       "L 341.232434 34.226925 \n",
       "L 339.907342 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_254\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 341.232434 88.586925 \n",
       "L 342.557526 88.586925 \n",
       "L 342.557526 34.226925 \n",
       "L 341.232434 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_255\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 342.557526 88.586925 \n",
       "L 343.882617 88.586925 \n",
       "L 343.882617 34.226925 \n",
       "L 342.557526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_256\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 343.882617 88.586925 \n",
       "L 345.207709 88.586925 \n",
       "L 345.207709 34.226925 \n",
       "L 343.882617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_257\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 345.207709 88.586925 \n",
       "L 346.532801 88.586925 \n",
       "L 346.532801 34.226925 \n",
       "L 345.207709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_258\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 346.532801 88.586925 \n",
       "L 347.857893 88.586925 \n",
       "L 347.857893 34.226925 \n",
       "L 346.532801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_259\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 347.857893 88.586925 \n",
       "L 349.182985 88.586925 \n",
       "L 349.182985 34.226925 \n",
       "L 347.857893 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_260\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 349.182985 88.586925 \n",
       "L 350.508076 88.586925 \n",
       "L 350.508076 34.226925 \n",
       "L 349.182985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_261\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 350.508076 88.586925 \n",
       "L 351.833168 88.586925 \n",
       "L 351.833168 34.226925 \n",
       "L 350.508076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_262\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 351.833168 88.586925 \n",
       "L 353.15826 88.586925 \n",
       "L 353.15826 34.226925 \n",
       "L 351.833168 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_263\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 353.15826 88.586925 \n",
       "L 354.468597 88.586925 \n",
       "L 354.468597 34.226925 \n",
       "L 353.15826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_264\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 354.468597 88.586925 \n",
       "L 355.778935 88.586925 \n",
       "L 355.778935 34.226925 \n",
       "L 354.468597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_265\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 355.778935 88.586925 \n",
       "L 357.089272 88.586925 \n",
       "L 357.089272 34.226925 \n",
       "L 355.778935 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_266\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 357.089272 88.586925 \n",
       "L 358.39961 88.586925 \n",
       "L 358.39961 34.226925 \n",
       "L 357.089272 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_267\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 358.39961 88.586925 \n",
       "L 359.709947 88.586925 \n",
       "L 359.709947 34.226925 \n",
       "L 358.39961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_268\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 359.709947 88.586925 \n",
       "L 361.020285 88.586925 \n",
       "L 361.020285 34.226925 \n",
       "L 359.709947 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_269\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 361.020285 88.586925 \n",
       "L 362.330622 88.586925 \n",
       "L 362.330622 34.226925 \n",
       "L 361.020285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_270\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 362.330622 88.586925 \n",
       "L 363.64096 88.586925 \n",
       "L 363.64096 34.226925 \n",
       "L 362.330622 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_271\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 363.64096 88.586925 \n",
       "L 364.951297 88.586925 \n",
       "L 364.951297 34.226925 \n",
       "L 363.64096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_272\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 364.951297 88.586925 \n",
       "L 366.261635 88.586925 \n",
       "L 366.261635 34.226925 \n",
       "L 364.951297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_273\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 366.261635 88.586925 \n",
       "L 367.571972 88.586925 \n",
       "L 367.571972 34.226925 \n",
       "L 366.261635 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_274\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 367.571972 88.586925 \n",
       "L 368.88231 88.586925 \n",
       "L 368.88231 34.226925 \n",
       "L 367.571972 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_275\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 368.88231 88.586925 \n",
       "L 370.192647 88.586925 \n",
       "L 370.192647 34.226925 \n",
       "L 368.88231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_276\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 370.192647 88.586925 \n",
       "L 371.502985 88.586925 \n",
       "L 371.502985 34.226925 \n",
       "L 370.192647 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_277\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 371.502985 88.586925 \n",
       "L 372.813322 88.586925 \n",
       "L 372.813322 34.226925 \n",
       "L 371.502985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_278\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 372.813322 88.586925 \n",
       "L 374.123659 88.586925 \n",
       "L 374.123659 34.226925 \n",
       "L 372.813322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_279\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 374.123659 88.586925 \n",
       "L 375.433997 88.586925 \n",
       "L 375.433997 34.226925 \n",
       "L 374.123659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_280\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 375.433997 88.586925 \n",
       "L 376.744334 88.586925 \n",
       "L 376.744334 34.226925 \n",
       "L 375.433997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_281\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 376.744334 88.586925 \n",
       "L 378.054672 88.586925 \n",
       "L 378.054672 34.226925 \n",
       "L 376.744334 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_282\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 378.054672 88.586925 \n",
       "L 379.365009 88.586925 \n",
       "L 379.365009 34.226925 \n",
       "L 378.054672 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_283\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 379.365009 88.586925 \n",
       "L 380.690101 88.586925 \n",
       "L 380.690101 34.226925 \n",
       "L 379.365009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_284\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 380.690101 88.586925 \n",
       "L 382.015193 88.586925 \n",
       "L 382.015193 34.226925 \n",
       "L 380.690101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_285\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 382.015193 88.586925 \n",
       "L 383.340285 88.586925 \n",
       "L 383.340285 34.226925 \n",
       "L 382.015193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_286\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 383.340285 88.586925 \n",
       "L 384.665376 88.586925 \n",
       "L 384.665376 34.226925 \n",
       "L 383.340285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_287\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 384.665376 88.586925 \n",
       "L 385.990468 88.586925 \n",
       "L 385.990468 34.226925 \n",
       "L 384.665376 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_288\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 385.990468 88.586925 \n",
       "L 387.31556 88.586925 \n",
       "L 387.31556 34.226925 \n",
       "L 385.990468 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_289\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 387.31556 88.586925 \n",
       "L 388.640652 88.586925 \n",
       "L 388.640652 34.226925 \n",
       "L 387.31556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_290\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 388.640652 88.586925 \n",
       "L 389.965744 88.586925 \n",
       "L 389.965744 34.226925 \n",
       "L 388.640652 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_291\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 389.965744 88.586925 \n",
       "L 391.290835 88.586925 \n",
       "L 391.290835 34.226925 \n",
       "L 389.965744 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_292\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 391.290835 88.586925 \n",
       "L 392.615927 88.586925 \n",
       "L 392.615927 34.226925 \n",
       "L 391.290835 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_293\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 392.615927 88.586925 \n",
       "L 393.941019 88.586925 \n",
       "L 393.941019 34.226925 \n",
       "L 392.615927 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_294\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 393.941019 88.586925 \n",
       "L 395.266111 88.586925 \n",
       "L 395.266111 34.226925 \n",
       "L 393.941019 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_295\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 395.266111 88.586925 \n",
       "L 396.591202 88.586925 \n",
       "L 396.591202 34.226925 \n",
       "L 395.266111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_296\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 396.591202 88.586925 \n",
       "L 397.916294 88.586925 \n",
       "L 397.916294 34.226925 \n",
       "L 396.591202 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_297\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 397.916294 88.586925 \n",
       "L 399.241386 88.586925 \n",
       "L 399.241386 34.226925 \n",
       "L 397.916294 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_298\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 399.241386 88.586925 \n",
       "L 400.551723 88.586925 \n",
       "L 400.551723 34.226925 \n",
       "L 399.241386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_299\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 400.551723 88.586925 \n",
       "L 401.862061 88.586925 \n",
       "L 401.862061 34.226925 \n",
       "L 400.551723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_300\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 401.862061 88.586925 \n",
       "L 403.172398 88.586925 \n",
       "L 403.172398 34.226925 \n",
       "L 401.862061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_301\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 403.172398 88.586925 \n",
       "L 404.482736 88.586925 \n",
       "L 404.482736 34.226925 \n",
       "L 403.172398 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_302\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 404.482736 88.586925 \n",
       "L 405.793073 88.586925 \n",
       "L 405.793073 34.226925 \n",
       "L 404.482736 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_303\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 405.793073 88.586925 \n",
       "L 407.103411 88.586925 \n",
       "L 407.103411 34.226925 \n",
       "L 405.793073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_304\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 407.103411 88.586925 \n",
       "L 408.413748 88.586925 \n",
       "L 408.413748 34.226925 \n",
       "L 407.103411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_305\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 408.413748 88.586925 \n",
       "L 409.724086 88.586925 \n",
       "L 409.724086 34.226925 \n",
       "L 408.413748 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_306\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 409.724086 88.586925 \n",
       "L 411.034423 88.586925 \n",
       "L 411.034423 34.226925 \n",
       "L 409.724086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_307\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 411.034423 88.586925 \n",
       "L 412.344761 88.586925 \n",
       "L 412.344761 34.226925 \n",
       "L 411.034423 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_308\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 412.344761 88.586925 \n",
       "L 413.655098 88.586925 \n",
       "L 413.655098 34.226925 \n",
       "L 412.344761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_309\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 413.655098 88.586925 \n",
       "L 414.965436 88.586925 \n",
       "L 414.965436 34.226925 \n",
       "L 413.655098 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_310\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 414.965436 88.586925 \n",
       "L 416.275773 88.586925 \n",
       "L 416.275773 34.226925 \n",
       "L 414.965436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_311\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 416.275773 88.586925 \n",
       "L 417.586111 88.586925 \n",
       "L 417.586111 34.226925 \n",
       "L 416.275773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_312\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 417.586111 88.586925 \n",
       "L 418.896448 88.586925 \n",
       "L 418.896448 34.226925 \n",
       "L 417.586111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_313\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 418.896448 88.586925 \n",
       "L 420.206786 88.586925 \n",
       "L 420.206786 34.226925 \n",
       "L 418.896448 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_314\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 420.206786 88.586925 \n",
       "L 421.517123 88.586925 \n",
       "L 421.517123 34.226925 \n",
       "L 420.206786 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_315\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 421.517123 88.586925 \n",
       "L 422.827461 88.586925 \n",
       "L 422.827461 34.226925 \n",
       "L 421.517123 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_316\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 422.827461 88.586925 \n",
       "L 424.137798 88.586925 \n",
       "L 424.137798 34.226925 \n",
       "L 422.827461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_317\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 424.137798 88.586925 \n",
       "L 425.448136 88.586925 \n",
       "L 425.448136 34.226925 \n",
       "L 424.137798 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_318\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 425.448136 88.586925 \n",
       "L 426.773227 88.586925 \n",
       "L 426.773227 34.226925 \n",
       "L 425.448136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_319\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 426.773227 88.586925 \n",
       "L 428.098319 88.586925 \n",
       "L 428.098319 34.226925 \n",
       "L 426.773227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_320\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 428.098319 88.586925 \n",
       "L 429.423411 88.586925 \n",
       "L 429.423411 34.226925 \n",
       "L 428.098319 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_321\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 429.423411 88.586925 \n",
       "L 430.748503 88.586925 \n",
       "L 430.748503 34.226925 \n",
       "L 429.423411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_322\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 430.748503 88.586925 \n",
       "L 432.073594 88.586925 \n",
       "L 432.073594 34.226925 \n",
       "L 430.748503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_323\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 432.073594 88.586925 \n",
       "L 433.398686 88.586925 \n",
       "L 433.398686 34.226925 \n",
       "L 432.073594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_324\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 433.398686 88.586925 \n",
       "L 434.723778 88.586925 \n",
       "L 434.723778 34.226925 \n",
       "L 433.398686 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_325\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 434.723778 88.586925 \n",
       "L 436.04887 88.586925 \n",
       "L 436.04887 34.226925 \n",
       "L 434.723778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_326\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 436.04887 88.586925 \n",
       "L 437.373962 88.586925 \n",
       "L 437.373962 34.226925 \n",
       "L 436.04887 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_327\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 437.373962 88.586925 \n",
       "L 438.699053 88.586925 \n",
       "L 438.699053 34.226925 \n",
       "L 437.373962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_328\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 438.699053 88.586925 \n",
       "L 440.024145 88.586925 \n",
       "L 440.024145 34.226925 \n",
       "L 438.699053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_329\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 440.024145 88.586925 \n",
       "L 441.349237 88.586925 \n",
       "L 441.349237 34.226925 \n",
       "L 440.024145 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_330\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 441.349237 88.586925 \n",
       "L 442.674329 88.586925 \n",
       "L 442.674329 34.226925 \n",
       "L 441.349237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_331\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 442.674329 88.586925 \n",
       "L 443.99942 88.586925 \n",
       "L 443.99942 34.226925 \n",
       "L 442.674329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_332\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 443.99942 88.586925 \n",
       "L 445.324512 88.586925 \n",
       "L 445.324512 34.226925 \n",
       "L 443.99942 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_333\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 445.324512 88.586925 \n",
       "L 446.63485 88.586925 \n",
       "L 446.63485 34.226925 \n",
       "L 445.324512 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_334\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 446.63485 88.586925 \n",
       "L 447.945187 88.586925 \n",
       "L 447.945187 34.226925 \n",
       "L 446.63485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_335\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 447.945187 88.586925 \n",
       "L 449.255525 88.586925 \n",
       "L 449.255525 34.226925 \n",
       "L 447.945187 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_336\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 449.255525 88.586925 \n",
       "L 450.565862 88.586925 \n",
       "L 450.565862 34.226925 \n",
       "L 449.255525 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_337\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 450.565862 88.586925 \n",
       "L 451.8762 88.586925 \n",
       "L 451.8762 34.226925 \n",
       "L 450.565862 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_338\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 451.8762 88.586925 \n",
       "L 453.186537 88.586925 \n",
       "L 453.186537 34.226925 \n",
       "L 451.8762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_339\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 453.186537 88.586925 \n",
       "L 454.496875 88.586925 \n",
       "L 454.496875 34.226925 \n",
       "L 453.186537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_340\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 454.496875 88.586925 \n",
       "L 455.807212 88.586925 \n",
       "L 455.807212 34.226925 \n",
       "L 454.496875 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_341\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 455.807212 88.586925 \n",
       "L 457.117549 88.586925 \n",
       "L 457.117549 34.226925 \n",
       "L 455.807212 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_342\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 457.117549 88.586925 \n",
       "L 458.427887 88.586925 \n",
       "L 458.427887 34.226925 \n",
       "L 457.117549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_343\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 458.427887 88.586925 \n",
       "L 459.738224 88.586925 \n",
       "L 459.738224 34.226925 \n",
       "L 458.427887 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_344\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 459.738224 88.586925 \n",
       "L 461.048562 88.586925 \n",
       "L 461.048562 34.226925 \n",
       "L 459.738224 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_345\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 461.048562 88.586925 \n",
       "L 462.358899 88.586925 \n",
       "L 462.358899 34.226925 \n",
       "L 461.048562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_346\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 462.358899 88.586925 \n",
       "L 463.669237 88.586925 \n",
       "L 463.669237 34.226925 \n",
       "L 462.358899 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_347\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 463.669237 88.586925 \n",
       "L 464.979574 88.586925 \n",
       "L 464.979574 34.226925 \n",
       "L 463.669237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_348\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 464.979574 88.586925 \n",
       "L 466.289912 88.586925 \n",
       "L 466.289912 34.226925 \n",
       "L 464.979574 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_349\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 466.289912 88.586925 \n",
       "L 467.600249 88.586925 \n",
       "L 467.600249 34.226925 \n",
       "L 466.289912 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_350\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 467.600249 88.586925 \n",
       "L 468.910587 88.586925 \n",
       "L 468.910587 34.226925 \n",
       "L 467.600249 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_351\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 468.910587 88.586925 \n",
       "L 470.220924 88.586925 \n",
       "L 470.220924 34.226925 \n",
       "L 468.910587 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_352\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 470.220924 88.586925 \n",
       "L 471.531262 88.586925 \n",
       "L 471.531262 34.226925 \n",
       "L 470.220924 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_353\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 471.531262 88.586925 \n",
       "L 472.841599 88.586925 \n",
       "L 472.841599 34.226925 \n",
       "L 471.531262 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_354\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 472.841599 88.586925 \n",
       "L 474.151937 88.586925 \n",
       "L 474.151937 34.226925 \n",
       "L 472.841599 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_355\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 474.151937 88.586925 \n",
       "L 475.462274 88.586925 \n",
       "L 475.462274 34.226925 \n",
       "L 474.151937 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_356\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 475.462274 88.586925 \n",
       "L 476.772612 88.586925 \n",
       "L 476.772612 34.226925 \n",
       "L 475.462274 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_357\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 476.772612 88.586925 \n",
       "L 478.082949 88.586925 \n",
       "L 478.082949 34.226925 \n",
       "L 476.772612 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_358\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 478.082949 88.586925 \n",
       "L 479.393287 88.586925 \n",
       "L 479.393287 34.226925 \n",
       "L 478.082949 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_359\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 479.393287 88.586925 \n",
       "L 480.703624 88.586925 \n",
       "L 480.703624 34.226925 \n",
       "L 479.393287 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_360\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 480.703624 88.586925 \n",
       "L 482.013962 88.586925 \n",
       "L 482.013962 34.226925 \n",
       "L 480.703624 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_361\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 482.013962 88.586925 \n",
       "L 483.324299 88.586925 \n",
       "L 483.324299 34.226925 \n",
       "L 482.013962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_362\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 483.324299 88.586925 \n",
       "L 484.634636 88.586925 \n",
       "L 484.634636 34.226925 \n",
       "L 483.324299 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_363\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 484.634636 88.586925 \n",
       "L 485.944974 88.586925 \n",
       "L 485.944974 34.226925 \n",
       "L 484.634636 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_364\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 485.944974 88.586925 \n",
       "L 487.255311 88.586925 \n",
       "L 487.255311 34.226925 \n",
       "L 485.944974 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_365\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 487.255311 88.586925 \n",
       "L 488.565649 88.586925 \n",
       "L 488.565649 34.226925 \n",
       "L 487.255311 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_366\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 488.565649 88.586925 \n",
       "L 489.875986 88.586925 \n",
       "L 489.875986 34.226925 \n",
       "L 488.565649 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_367\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 489.875986 88.586925 \n",
       "L 491.186324 88.586925 \n",
       "L 491.186324 34.226925 \n",
       "L 489.875986 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_368\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 491.186324 88.586925 \n",
       "L 492.496661 88.586925 \n",
       "L 492.496661 34.226925 \n",
       "L 491.186324 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_369\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 492.496661 88.586925 \n",
       "L 493.806999 88.586925 \n",
       "L 493.806999 34.226925 \n",
       "L 492.496661 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_370\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 493.806999 88.586925 \n",
       "L 495.117336 88.586925 \n",
       "L 495.117336 34.226925 \n",
       "L 493.806999 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_371\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 495.117336 88.586925 \n",
       "L 496.427674 88.586925 \n",
       "L 496.427674 34.226925 \n",
       "L 495.117336 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_372\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 496.427674 88.586925 \n",
       "L 497.738011 88.586925 \n",
       "L 497.738011 34.226925 \n",
       "L 496.427674 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_373\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 497.738011 88.586925 \n",
       "L 499.048349 88.586925 \n",
       "L 499.048349 34.226925 \n",
       "L 497.738011 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_374\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 499.048349 88.586925 \n",
       "L 500.358686 88.586925 \n",
       "L 500.358686 34.226925 \n",
       "L 499.048349 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_375\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 500.358686 88.586925 \n",
       "L 501.669024 88.586925 \n",
       "L 501.669024 34.226925 \n",
       "L 500.358686 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_376\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 501.669024 88.586925 \n",
       "L 502.979361 88.586925 \n",
       "L 502.979361 34.226925 \n",
       "L 501.669024 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_377\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 502.979361 88.586925 \n",
       "L 504.289699 88.586925 \n",
       "L 504.289699 34.226925 \n",
       "L 502.979361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_378\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 504.289699 88.586925 \n",
       "L 505.600036 88.586925 \n",
       "L 505.600036 34.226925 \n",
       "L 504.289699 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_379\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 505.600036 88.586925 \n",
       "L 506.910374 88.586925 \n",
       "L 506.910374 34.226925 \n",
       "L 505.600036 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_380\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 506.910374 88.586925 \n",
       "L 508.220711 88.586925 \n",
       "L 508.220711 34.226925 \n",
       "L 506.910374 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_381\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 508.220711 88.586925 \n",
       "L 509.531049 88.586925 \n",
       "L 509.531049 34.226925 \n",
       "L 508.220711 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_382\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 509.531049 88.586925 \n",
       "L 510.841386 88.586925 \n",
       "L 510.841386 34.226925 \n",
       "L 509.531049 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_383\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 510.841386 88.586925 \n",
       "L 512.151723 88.586925 \n",
       "L 512.151723 34.226925 \n",
       "L 510.841386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_384\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 512.151723 88.586925 \n",
       "L 513.462061 88.586925 \n",
       "L 513.462061 34.226925 \n",
       "L 512.151723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_385\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 513.462061 88.586925 \n",
       "L 514.772398 88.586925 \n",
       "L 514.772398 34.226925 \n",
       "L 513.462061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_386\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 514.772398 88.586925 \n",
       "L 516.082736 88.586925 \n",
       "L 516.082736 34.226925 \n",
       "L 514.772398 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_387\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 516.082736 88.586925 \n",
       "L 517.393073 88.586925 \n",
       "L 517.393073 34.226925 \n",
       "L 516.082736 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_388\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 517.393073 88.586925 \n",
       "L 518.703411 88.586925 \n",
       "L 518.703411 34.226925 \n",
       "L 517.393073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_389\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 518.703411 88.586925 \n",
       "L 520.013748 88.586925 \n",
       "L 520.013748 34.226925 \n",
       "L 518.703411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_390\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 520.013748 88.586925 \n",
       "L 521.324086 88.586925 \n",
       "L 521.324086 34.226925 \n",
       "L 520.013748 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_391\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 521.324086 88.586925 \n",
       "L 522.634423 88.586925 \n",
       "L 522.634423 34.226925 \n",
       "L 521.324086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_392\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 522.634423 88.586925 \n",
       "L 523.944761 88.586925 \n",
       "L 523.944761 34.226925 \n",
       "L 522.634423 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_393\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 523.944761 88.586925 \n",
       "L 525.255098 88.586925 \n",
       "L 525.255098 34.226925 \n",
       "L 523.944761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_394\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 525.255098 88.586925 \n",
       "L 526.565436 88.586925 \n",
       "L 526.565436 34.226925 \n",
       "L 525.255098 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_395\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 526.565436 88.586925 \n",
       "L 527.875773 88.586925 \n",
       "L 527.875773 34.226925 \n",
       "L 526.565436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_396\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 527.875773 88.586925 \n",
       "L 529.186111 88.586925 \n",
       "L 529.186111 34.226925 \n",
       "L 527.875773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_397\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 529.186111 88.586925 \n",
       "L 530.496448 88.586925 \n",
       "L 530.496448 34.226925 \n",
       "L 529.186111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_398\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 530.496448 88.586925 \n",
       "L 531.806786 88.586925 \n",
       "L 531.806786 34.226925 \n",
       "L 530.496448 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_399\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 531.806786 88.586925 \n",
       "L 533.117123 88.586925 \n",
       "L 533.117123 34.226925 \n",
       "L 531.806786 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_400\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 533.117123 88.586925 \n",
       "L 534.427461 88.586925 \n",
       "L 534.427461 34.226925 \n",
       "L 533.117123 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_401\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 534.427461 88.586925 \n",
       "L 535.737798 88.586925 \n",
       "L 535.737798 34.226925 \n",
       "L 534.427461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_402\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 535.737798 88.586925 \n",
       "L 537.048136 88.586925 \n",
       "L 537.048136 34.226925 \n",
       "L 535.737798 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_403\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 537.048136 88.586925 \n",
       "L 538.358473 88.586925 \n",
       "L 538.358473 34.226925 \n",
       "L 537.048136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_404\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 538.358473 88.586925 \n",
       "L 539.66881 88.586925 \n",
       "L 539.66881 34.226925 \n",
       "L 538.358473 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_405\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 539.66881 88.586925 \n",
       "L 540.979148 88.586925 \n",
       "L 540.979148 34.226925 \n",
       "L 539.66881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_406\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 540.979148 88.586925 \n",
       "L 542.289485 88.586925 \n",
       "L 542.289485 34.226925 \n",
       "L 540.979148 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_407\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 542.289485 88.586925 \n",
       "L 543.599823 88.586925 \n",
       "L 543.599823 34.226925 \n",
       "L 542.289485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_408\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 543.599823 88.586925 \n",
       "L 544.91016 88.586925 \n",
       "L 544.91016 34.226925 \n",
       "L 543.599823 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_409\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 544.91016 88.586925 \n",
       "L 546.220498 88.586925 \n",
       "L 546.220498 34.226925 \n",
       "L 544.91016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_410\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 546.220498 88.586925 \n",
       "L 547.530835 88.586925 \n",
       "L 547.530835 34.226925 \n",
       "L 546.220498 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_411\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 547.530835 88.586925 \n",
       "L 548.841173 88.586925 \n",
       "L 548.841173 34.226925 \n",
       "L 547.530835 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_412\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 548.841173 88.586925 \n",
       "L 550.15151 88.586925 \n",
       "L 550.15151 34.226925 \n",
       "L 548.841173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_413\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 550.15151 88.586925 \n",
       "L 551.461848 88.586925 \n",
       "L 551.461848 34.226925 \n",
       "L 550.15151 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_414\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 551.461848 88.586925 \n",
       "L 552.772185 88.586925 \n",
       "L 552.772185 34.226925 \n",
       "L 551.461848 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_415\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 552.772185 88.586925 \n",
       "L 554.082523 88.586925 \n",
       "L 554.082523 34.226925 \n",
       "L 552.772185 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_416\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 554.082523 88.586925 \n",
       "L 555.39286 88.586925 \n",
       "L 555.39286 34.226925 \n",
       "L 554.082523 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_417\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 555.39286 88.586925 \n",
       "L 556.703198 88.586925 \n",
       "L 556.703198 34.226925 \n",
       "L 555.39286 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_418\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 556.703198 88.586925 \n",
       "L 558.013535 88.586925 \n",
       "L 558.013535 34.226925 \n",
       "L 556.703198 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_419\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 558.013535 88.586925 \n",
       "L 559.323873 88.586925 \n",
       "L 559.323873 34.226925 \n",
       "L 558.013535 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_420\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 559.323873 88.586925 \n",
       "L 560.63421 88.586925 \n",
       "L 560.63421 34.226925 \n",
       "L 559.323873 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_421\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 560.63421 88.586925 \n",
       "L 561.944548 88.586925 \n",
       "L 561.944548 34.226925 \n",
       "L 560.63421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_422\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 561.944548 88.586925 \n",
       "L 563.254885 88.586925 \n",
       "L 563.254885 34.226925 \n",
       "L 561.944548 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_423\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 563.254885 88.586925 \n",
       "L 564.565223 88.586925 \n",
       "L 564.565223 34.226925 \n",
       "L 563.254885 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_424\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 564.565223 88.586925 \n",
       "L 565.87556 88.586925 \n",
       "L 565.87556 34.226925 \n",
       "L 564.565223 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_425\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 565.87556 88.586925 \n",
       "L 567.185897 88.586925 \n",
       "L 567.185897 34.226925 \n",
       "L 565.87556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_426\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 567.185897 88.586925 \n",
       "L 568.496235 88.586925 \n",
       "L 568.496235 34.226925 \n",
       "L 567.185897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_427\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 568.496235 88.586925 \n",
       "L 569.806572 88.586925 \n",
       "L 569.806572 34.226925 \n",
       "L 568.496235 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_428\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 569.806572 88.586925 \n",
       "L 571.11691 88.586925 \n",
       "L 571.11691 34.226925 \n",
       "L 569.806572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_429\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 571.11691 88.586925 \n",
       "L 572.427247 88.586925 \n",
       "L 572.427247 34.226925 \n",
       "L 571.11691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_430\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 572.427247 88.586925 \n",
       "L 573.737585 88.586925 \n",
       "L 573.737585 34.226925 \n",
       "L 572.427247 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_431\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 573.737585 88.586925 \n",
       "L 575.047922 88.586925 \n",
       "L 575.047922 34.226925 \n",
       "L 573.737585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_432\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 575.047922 88.586925 \n",
       "L 576.35826 88.586925 \n",
       "L 576.35826 34.226925 \n",
       "L 575.047922 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_433\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 576.35826 88.586925 \n",
       "L 577.668597 88.586925 \n",
       "L 577.668597 34.226925 \n",
       "L 576.35826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_434\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 577.668597 88.586925 \n",
       "L 578.978935 88.586925 \n",
       "L 578.978935 34.226925 \n",
       "L 577.668597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_435\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 578.978935 88.586925 \n",
       "L 580.289272 88.586925 \n",
       "L 580.289272 34.226925 \n",
       "L 578.978935 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_436\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 580.289272 88.586925 \n",
       "L 581.59961 88.586925 \n",
       "L 581.59961 34.226925 \n",
       "L 580.289272 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_437\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 581.59961 88.586925 \n",
       "L 582.909947 88.586925 \n",
       "L 582.909947 34.226925 \n",
       "L 581.59961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_438\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 582.909947 88.586925 \n",
       "L 584.220285 88.586925 \n",
       "L 584.220285 34.226925 \n",
       "L 582.909947 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_439\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 584.220285 88.586925 \n",
       "L 585.530622 88.586925 \n",
       "L 585.530622 34.226925 \n",
       "L 584.220285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_440\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 585.530622 88.586925 \n",
       "L 586.84096 88.586925 \n",
       "L 586.84096 34.226925 \n",
       "L 585.530622 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_441\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 586.84096 88.586925 \n",
       "L 588.151297 88.586925 \n",
       "L 588.151297 34.226925 \n",
       "L 586.84096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_442\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 588.151297 88.586925 \n",
       "L 589.461635 88.586925 \n",
       "L 589.461635 34.226925 \n",
       "L 588.151297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_443\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 589.461635 88.586925 \n",
       "L 590.771972 88.586925 \n",
       "L 590.771972 34.226925 \n",
       "L 589.461635 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_444\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 590.771972 88.586925 \n",
       "L 592.08231 88.586925 \n",
       "L 592.08231 34.226925 \n",
       "L 590.771972 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_445\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 592.08231 88.586925 \n",
       "L 593.392647 88.586925 \n",
       "L 593.392647 34.226925 \n",
       "L 592.08231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_446\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 593.392647 88.586925 \n",
       "L 594.702985 88.586925 \n",
       "L 594.702985 34.226925 \n",
       "L 593.392647 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_447\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 594.702985 88.586925 \n",
       "L 596.013322 88.586925 \n",
       "L 596.013322 34.226925 \n",
       "L 594.702985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_448\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 596.013322 88.586925 \n",
       "L 597.323659 88.586925 \n",
       "L 597.323659 34.226925 \n",
       "L 596.013322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_449\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 597.323659 88.586925 \n",
       "L 598.633997 88.586925 \n",
       "L 598.633997 34.226925 \n",
       "L 597.323659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_450\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 598.633997 88.586925 \n",
       "L 599.944334 88.586925 \n",
       "L 599.944334 34.226925 \n",
       "L 598.633997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_451\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 599.944334 88.586925 \n",
       "L 601.254672 88.586925 \n",
       "L 601.254672 34.226925 \n",
       "L 599.944334 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_452\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 601.254672 88.586925 \n",
       "L 602.565009 88.586925 \n",
       "L 602.565009 34.226925 \n",
       "L 601.254672 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_453\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 602.565009 88.586925 \n",
       "L 603.875347 88.586925 \n",
       "L 603.875347 34.226925 \n",
       "L 602.565009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_454\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 603.875347 88.586925 \n",
       "L 605.185684 88.586925 \n",
       "L 605.185684 34.226925 \n",
       "L 603.875347 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_455\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 605.185684 88.586925 \n",
       "L 606.496022 88.586925 \n",
       "L 606.496022 34.226925 \n",
       "L 605.185684 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_456\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 606.496022 88.586925 \n",
       "L 607.806359 88.586925 \n",
       "L 607.806359 34.226925 \n",
       "L 606.496022 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_457\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 607.806359 88.586925 \n",
       "L 609.116697 88.586925 \n",
       "L 609.116697 34.226925 \n",
       "L 607.806359 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_458\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 609.116697 88.586925 \n",
       "L 610.427034 88.586925 \n",
       "L 610.427034 34.226925 \n",
       "L 609.116697 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_459\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 610.427034 88.586925 \n",
       "L 611.737372 88.586925 \n",
       "L 611.737372 34.226925 \n",
       "L 610.427034 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_460\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 611.737372 88.586925 \n",
       "L 613.047709 88.586925 \n",
       "L 613.047709 34.226925 \n",
       "L 611.737372 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_461\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 613.047709 88.586925 \n",
       "L 614.358047 88.586925 \n",
       "L 614.358047 34.226925 \n",
       "L 613.047709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_462\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 614.358047 88.586925 \n",
       "L 615.668384 88.586925 \n",
       "L 615.668384 34.226925 \n",
       "L 614.358047 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_463\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 615.668384 88.586925 \n",
       "L 616.978722 88.586925 \n",
       "L 616.978722 34.226925 \n",
       "L 615.668384 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_464\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 616.978722 88.586925 \n",
       "L 618.289059 88.586925 \n",
       "L 618.289059 34.226925 \n",
       "L 616.978722 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_465\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 618.289059 88.586925 \n",
       "L 619.599397 88.586925 \n",
       "L 619.599397 34.226925 \n",
       "L 618.289059 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_466\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 619.599397 88.586925 \n",
       "L 620.909734 88.586925 \n",
       "L 620.909734 34.226925 \n",
       "L 619.599397 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_467\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 620.909734 88.586925 \n",
       "L 622.220072 88.586925 \n",
       "L 622.220072 34.226925 \n",
       "L 620.909734 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_468\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 622.220072 88.586925 \n",
       "L 623.530409 88.586925 \n",
       "L 623.530409 34.226925 \n",
       "L 622.220072 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_469\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 623.530409 88.586925 \n",
       "L 624.840746 88.586925 \n",
       "L 624.840746 34.226925 \n",
       "L 623.530409 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_470\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 624.840746 88.586925 \n",
       "L 626.151084 88.586925 \n",
       "L 626.151084 34.226925 \n",
       "L 624.840746 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_471\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 626.151084 88.586925 \n",
       "L 627.461421 88.586925 \n",
       "L 627.461421 34.226925 \n",
       "L 626.151084 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_472\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 627.461421 88.586925 \n",
       "L 628.771759 88.586925 \n",
       "L 628.771759 34.226925 \n",
       "L 627.461421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_473\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 628.771759 88.586925 \n",
       "L 630.082096 88.586925 \n",
       "L 630.082096 34.226925 \n",
       "L 628.771759 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_474\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 630.082096 88.586925 \n",
       "L 631.392434 88.586925 \n",
       "L 631.392434 34.226925 \n",
       "L 630.082096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_475\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 631.392434 88.586925 \n",
       "L 632.702771 88.586925 \n",
       "L 632.702771 34.226925 \n",
       "L 631.392434 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_476\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 632.702771 88.586925 \n",
       "L 634.013109 88.586925 \n",
       "L 634.013109 34.226925 \n",
       "L 632.702771 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_477\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 634.013109 88.586925 \n",
       "L 635.323446 88.586925 \n",
       "L 635.323446 34.226925 \n",
       "L 634.013109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_478\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 635.323446 88.586925 \n",
       "L 636.633784 88.586925 \n",
       "L 636.633784 34.226925 \n",
       "L 635.323446 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_479\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 636.633784 88.586925 \n",
       "L 637.944121 88.586925 \n",
       "L 637.944121 34.226925 \n",
       "L 636.633784 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_480\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 637.944121 88.586925 \n",
       "L 639.254459 88.586925 \n",
       "L 639.254459 34.226925 \n",
       "L 637.944121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_481\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 639.254459 88.586925 \n",
       "L 640.564796 88.586925 \n",
       "L 640.564796 34.226925 \n",
       "L 639.254459 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_482\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 640.564796 88.586925 \n",
       "L 641.875134 88.586925 \n",
       "L 641.875134 34.226925 \n",
       "L 640.564796 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_483\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 641.875134 88.586925 \n",
       "L 643.185471 88.586925 \n",
       "L 643.185471 34.226925 \n",
       "L 641.875134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_484\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 643.185471 88.586925 \n",
       "L 644.495809 88.586925 \n",
       "L 644.495809 34.226925 \n",
       "L 643.185471 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_485\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 644.495809 88.586925 \n",
       "L 645.806146 88.586925 \n",
       "L 645.806146 34.226925 \n",
       "L 644.495809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_486\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 645.806146 88.586925 \n",
       "L 647.116484 88.586925 \n",
       "L 647.116484 34.226925 \n",
       "L 645.806146 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_487\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 647.116484 88.586925 \n",
       "L 648.426821 88.586925 \n",
       "L 648.426821 34.226925 \n",
       "L 647.116484 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_488\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 648.426821 88.586925 \n",
       "L 649.737159 88.586925 \n",
       "L 649.737159 34.226925 \n",
       "L 648.426821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_489\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 649.737159 88.586925 \n",
       "L 651.047496 88.586925 \n",
       "L 651.047496 34.226925 \n",
       "L 649.737159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_490\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 651.047496 88.586925 \n",
       "L 652.357833 88.586925 \n",
       "L 652.357833 34.226925 \n",
       "L 651.047496 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_491\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 652.357833 88.586925 \n",
       "L 653.668171 88.586925 \n",
       "L 653.668171 34.226925 \n",
       "L 652.357833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_492\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 653.668171 88.586925 \n",
       "L 654.978508 88.586925 \n",
       "L 654.978508 34.226925 \n",
       "L 653.668171 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_493\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 654.978508 88.586925 \n",
       "L 656.288846 88.586925 \n",
       "L 656.288846 34.226925 \n",
       "L 654.978508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_494\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 656.288846 88.586925 \n",
       "L 657.599183 88.586925 \n",
       "L 657.599183 34.226925 \n",
       "L 656.288846 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_495\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 657.599183 88.586925 \n",
       "L 658.909521 88.586925 \n",
       "L 658.909521 34.226925 \n",
       "L 657.599183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_496\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 658.909521 88.586925 \n",
       "L 660.219858 88.586925 \n",
       "L 660.219858 34.226925 \n",
       "L 658.909521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_497\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 660.219858 88.586925 \n",
       "L 661.530196 88.586925 \n",
       "L 661.530196 34.226925 \n",
       "L 660.219858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_498\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 661.530196 88.586925 \n",
       "L 662.840533 88.586925 \n",
       "L 662.840533 34.226925 \n",
       "L 661.530196 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_499\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 662.840533 88.586925 \n",
       "L 664.150871 88.586925 \n",
       "L 664.150871 34.226925 \n",
       "L 662.840533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_500\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 664.150871 88.586925 \n",
       "L 665.461208 88.586925 \n",
       "L 665.461208 34.226925 \n",
       "L 664.150871 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_501\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 665.461208 88.586925 \n",
       "L 666.771546 88.586925 \n",
       "L 666.771546 34.226925 \n",
       "L 665.461208 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_502\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 666.771546 88.586925 \n",
       "L 668.081883 88.586925 \n",
       "L 668.081883 34.226925 \n",
       "L 666.771546 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_503\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 668.081883 88.586925 \n",
       "L 669.392221 88.586925 \n",
       "L 669.392221 34.226925 \n",
       "L 668.081883 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_504\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 669.392221 88.586925 \n",
       "L 670.702558 88.586925 \n",
       "L 670.702558 34.226925 \n",
       "L 669.392221 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_505\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 670.702558 88.586925 \n",
       "L 672.012896 88.586925 \n",
       "L 672.012896 34.226925 \n",
       "L 670.702558 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_506\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 672.012896 88.586925 \n",
       "L 673.323233 88.586925 \n",
       "L 673.323233 34.226925 \n",
       "L 672.012896 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_507\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 673.323233 88.586925 \n",
       "L 674.633571 88.586925 \n",
       "L 674.633571 34.226925 \n",
       "L 673.323233 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_508\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 674.633571 88.586925 \n",
       "L 675.943908 88.586925 \n",
       "L 675.943908 34.226925 \n",
       "L 674.633571 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_509\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 675.943908 88.586925 \n",
       "L 677.254246 88.586925 \n",
       "L 677.254246 34.226925 \n",
       "L 675.943908 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_510\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 677.254246 88.586925 \n",
       "L 678.564583 88.586925 \n",
       "L 678.564583 34.226925 \n",
       "L 677.254246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_511\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 678.564583 88.586925 \n",
       "L 679.87492 88.586925 \n",
       "L 679.87492 34.226925 \n",
       "L 678.564583 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_512\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 679.87492 88.586925 \n",
       "L 681.185258 88.586925 \n",
       "L 681.185258 34.226925 \n",
       "L 679.87492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_513\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 681.185258 88.586925 \n",
       "L 682.495595 88.586925 \n",
       "L 682.495595 34.226925 \n",
       "L 681.185258 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_514\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 682.495595 88.586925 \n",
       "L 683.805933 88.586925 \n",
       "L 683.805933 34.226925 \n",
       "L 682.495595 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_515\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 683.805933 88.586925 \n",
       "L 685.11627 88.586925 \n",
       "L 685.11627 34.226925 \n",
       "L 683.805933 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_516\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 685.11627 88.586925 \n",
       "L 686.426608 88.586925 \n",
       "L 686.426608 34.226925 \n",
       "L 685.11627 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_517\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 686.426608 88.586925 \n",
       "L 687.736945 88.586925 \n",
       "L 687.736945 34.226925 \n",
       "L 686.426608 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_518\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 687.736945 88.586925 \n",
       "L 689.047283 88.586925 \n",
       "L 689.047283 34.226925 \n",
       "L 687.736945 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_519\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 689.047283 88.586925 \n",
       "L 690.35762 88.586925 \n",
       "L 690.35762 34.226925 \n",
       "L 689.047283 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_520\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 690.35762 88.586925 \n",
       "L 691.667958 88.586925 \n",
       "L 691.667958 34.226925 \n",
       "L 690.35762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_521\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 691.667958 88.586925 \n",
       "L 692.978295 88.586925 \n",
       "L 692.978295 34.226925 \n",
       "L 691.667958 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_522\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 692.978295 88.586925 \n",
       "L 694.288633 88.586925 \n",
       "L 694.288633 34.226925 \n",
       "L 692.978295 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_523\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 694.288633 88.586925 \n",
       "L 695.59897 88.586925 \n",
       "L 695.59897 34.226925 \n",
       "L 694.288633 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_524\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 695.59897 88.586925 \n",
       "L 696.909308 88.586925 \n",
       "L 696.909308 34.226925 \n",
       "L 695.59897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_525\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 696.909308 88.586925 \n",
       "L 698.219645 88.586925 \n",
       "L 698.219645 34.226925 \n",
       "L 696.909308 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_526\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 698.219645 88.586925 \n",
       "L 699.529983 88.586925 \n",
       "L 699.529983 34.226925 \n",
       "L 698.219645 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_527\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 699.529983 88.586925 \n",
       "L 700.84032 88.586925 \n",
       "L 700.84032 34.226925 \n",
       "L 699.529983 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_528\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 700.84032 88.586925 \n",
       "L 702.150658 88.586925 \n",
       "L 702.150658 34.226925 \n",
       "L 700.84032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_529\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 702.150658 88.586925 \n",
       "L 703.460995 88.586925 \n",
       "L 703.460995 34.226925 \n",
       "L 702.150658 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_530\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 703.460995 88.586925 \n",
       "L 704.771333 88.586925 \n",
       "L 704.771333 34.226925 \n",
       "L 703.460995 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_531\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 704.771333 88.586925 \n",
       "L 706.08167 88.586925 \n",
       "L 706.08167 34.226925 \n",
       "L 704.771333 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_532\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 706.08167 88.586925 \n",
       "L 707.392007 88.586925 \n",
       "L 707.392007 34.226925 \n",
       "L 706.08167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_533\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 707.392007 88.586925 \n",
       "L 708.702345 88.586925 \n",
       "L 708.702345 34.226925 \n",
       "L 707.392007 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_534\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 708.702345 88.586925 \n",
       "L 710.012682 88.586925 \n",
       "L 710.012682 34.226925 \n",
       "L 708.702345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_535\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 710.012682 88.586925 \n",
       "L 711.32302 88.586925 \n",
       "L 711.32302 34.226925 \n",
       "L 710.012682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_536\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 711.32302 88.586925 \n",
       "L 712.633357 88.586925 \n",
       "L 712.633357 34.226925 \n",
       "L 711.32302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_537\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 712.633357 88.586925 \n",
       "L 713.943695 88.586925 \n",
       "L 713.943695 34.226925 \n",
       "L 712.633357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_538\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 713.943695 88.586925 \n",
       "L 715.254032 88.586925 \n",
       "L 715.254032 34.226925 \n",
       "L 713.943695 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_539\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 715.254032 88.586925 \n",
       "L 716.56437 88.586925 \n",
       "L 716.56437 34.226925 \n",
       "L 715.254032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_540\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 716.56437 88.586925 \n",
       "L 717.874707 88.586925 \n",
       "L 717.874707 34.226925 \n",
       "L 716.56437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_541\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 717.874707 88.586925 \n",
       "L 719.185045 88.586925 \n",
       "L 719.185045 34.226925 \n",
       "L 717.874707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_542\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 719.185045 88.586925 \n",
       "L 720.495382 88.586925 \n",
       "L 720.495382 34.226925 \n",
       "L 719.185045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_543\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 720.495382 88.586925 \n",
       "L 721.80572 88.586925 \n",
       "L 721.80572 34.226925 \n",
       "L 720.495382 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_544\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 721.80572 88.586925 \n",
       "L 723.116057 88.586925 \n",
       "L 723.116057 34.226925 \n",
       "L 721.80572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_545\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 723.116057 88.586925 \n",
       "L 724.426395 88.586925 \n",
       "L 724.426395 34.226925 \n",
       "L 723.116057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_546\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 724.426395 88.586925 \n",
       "L 725.736732 88.586925 \n",
       "L 725.736732 34.226925 \n",
       "L 724.426395 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_547\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 725.736732 88.586925 \n",
       "L 727.04707 88.586925 \n",
       "L 727.04707 34.226925 \n",
       "L 725.736732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_548\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 727.04707 88.586925 \n",
       "L 728.357407 88.586925 \n",
       "L 728.357407 34.226925 \n",
       "L 727.04707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_549\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 728.357407 88.586925 \n",
       "L 729.667745 88.586925 \n",
       "L 729.667745 34.226925 \n",
       "L 728.357407 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_550\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 729.667745 88.586925 \n",
       "L 730.978082 88.586925 \n",
       "L 730.978082 34.226925 \n",
       "L 729.667745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_551\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 730.978082 88.586925 \n",
       "L 732.28842 88.586925 \n",
       "L 732.28842 34.226925 \n",
       "L 730.978082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_552\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 732.28842 88.586925 \n",
       "L 733.598757 88.586925 \n",
       "L 733.598757 34.226925 \n",
       "L 732.28842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_553\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 733.598757 88.586925 \n",
       "L 734.909094 88.586925 \n",
       "L 734.909094 34.226925 \n",
       "L 733.598757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_554\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 734.909094 88.586925 \n",
       "L 736.219432 88.586925 \n",
       "L 736.219432 34.226925 \n",
       "L 734.909094 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_555\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 736.219432 88.586925 \n",
       "L 737.529769 88.586925 \n",
       "L 737.529769 34.226925 \n",
       "L 736.219432 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_556\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 737.529769 88.586925 \n",
       "L 738.840107 88.586925 \n",
       "L 738.840107 34.226925 \n",
       "L 737.529769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_557\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 738.840107 88.586925 \n",
       "L 740.150444 88.586925 \n",
       "L 740.150444 34.226925 \n",
       "L 738.840107 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_558\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 740.150444 88.586925 \n",
       "L 741.460782 88.586925 \n",
       "L 741.460782 34.226925 \n",
       "L 740.150444 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_559\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 741.460782 88.586925 \n",
       "L 742.771119 88.586925 \n",
       "L 742.771119 34.226925 \n",
       "L 741.460782 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_560\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 742.771119 88.586925 \n",
       "L 744.081457 88.586925 \n",
       "L 744.081457 34.226925 \n",
       "L 742.771119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_561\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 744.081457 88.586925 \n",
       "L 745.391794 88.586925 \n",
       "L 745.391794 34.226925 \n",
       "L 744.081457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_562\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 745.391794 88.586925 \n",
       "L 746.702132 88.586925 \n",
       "L 746.702132 34.226925 \n",
       "L 745.391794 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_563\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 746.702132 88.586925 \n",
       "L 748.012469 88.586925 \n",
       "L 748.012469 34.226925 \n",
       "L 746.702132 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_564\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 748.012469 88.586925 \n",
       "L 749.322807 88.586925 \n",
       "L 749.322807 34.226925 \n",
       "L 748.012469 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_565\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 749.322807 88.586925 \n",
       "L 750.633144 88.586925 \n",
       "L 750.633144 34.226925 \n",
       "L 749.322807 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_566\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 750.633144 88.586925 \n",
       "L 751.943482 88.586925 \n",
       "L 751.943482 34.226925 \n",
       "L 750.633144 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_567\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 751.943482 88.586925 \n",
       "L 753.253819 88.586925 \n",
       "L 753.253819 34.226925 \n",
       "L 751.943482 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_568\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 753.253819 88.586925 \n",
       "L 754.564157 88.586925 \n",
       "L 754.564157 34.226925 \n",
       "L 753.253819 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_569\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 754.564157 88.586925 \n",
       "L 755.874494 88.586925 \n",
       "L 755.874494 34.226925 \n",
       "L 754.564157 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_570\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 755.874494 88.586925 \n",
       "L 757.184832 88.586925 \n",
       "L 757.184832 34.226925 \n",
       "L 755.874494 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_571\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 757.184832 88.586925 \n",
       "L 758.495169 88.586925 \n",
       "L 758.495169 34.226925 \n",
       "L 757.184832 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_572\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 758.495169 88.586925 \n",
       "L 759.805507 88.586925 \n",
       "L 759.805507 34.226925 \n",
       "L 758.495169 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_573\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 759.805507 88.586925 \n",
       "L 761.115844 88.586925 \n",
       "L 761.115844 34.226925 \n",
       "L 759.805507 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_574\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 761.115844 88.586925 \n",
       "L 762.426182 88.586925 \n",
       "L 762.426182 34.226925 \n",
       "L 761.115844 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_575\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 762.426182 88.586925 \n",
       "L 763.736519 88.586925 \n",
       "L 763.736519 34.226925 \n",
       "L 762.426182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_576\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 763.736519 88.586925 \n",
       "L 765.046856 88.586925 \n",
       "L 765.046856 34.226925 \n",
       "L 763.736519 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_577\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 765.046856 88.586925 \n",
       "L 766.357194 88.586925 \n",
       "L 766.357194 34.226925 \n",
       "L 765.046856 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_578\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 766.357194 88.586925 \n",
       "L 767.667531 88.586925 \n",
       "L 767.667531 34.226925 \n",
       "L 766.357194 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_579\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 767.667531 88.586925 \n",
       "L 768.977869 88.586925 \n",
       "L 768.977869 34.226925 \n",
       "L 767.667531 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_580\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 768.977869 88.586925 \n",
       "L 770.288206 88.586925 \n",
       "L 770.288206 34.226925 \n",
       "L 768.977869 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_581\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 770.288206 88.586925 \n",
       "L 771.598544 88.586925 \n",
       "L 771.598544 34.226925 \n",
       "L 770.288206 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_582\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 771.598544 88.586925 \n",
       "L 772.908881 88.586925 \n",
       "L 772.908881 34.226925 \n",
       "L 771.598544 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_583\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 772.908881 88.586925 \n",
       "L 774.219219 88.586925 \n",
       "L 774.219219 34.226925 \n",
       "L 772.908881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_584\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 774.219219 88.586925 \n",
       "L 775.529556 88.586925 \n",
       "L 775.529556 34.226925 \n",
       "L 774.219219 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_585\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 775.529556 88.586925 \n",
       "L 776.839894 88.586925 \n",
       "L 776.839894 34.226925 \n",
       "L 775.529556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_586\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 776.839894 88.586925 \n",
       "L 778.150231 88.586925 \n",
       "L 778.150231 34.226925 \n",
       "L 776.839894 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_587\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 778.150231 88.586925 \n",
       "L 779.460569 88.586925 \n",
       "L 779.460569 34.226925 \n",
       "L 778.150231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_588\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 779.460569 88.586925 \n",
       "L 780.770906 88.586925 \n",
       "L 780.770906 34.226925 \n",
       "L 779.460569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_589\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 780.770906 88.586925 \n",
       "L 782.081244 88.586925 \n",
       "L 782.081244 34.226925 \n",
       "L 780.770906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_590\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 782.081244 88.586925 \n",
       "L 783.391581 88.586925 \n",
       "L 783.391581 34.226925 \n",
       "L 782.081244 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_591\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 783.391581 88.586925 \n",
       "L 784.701919 88.586925 \n",
       "L 784.701919 34.226925 \n",
       "L 783.391581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_592\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 784.701919 88.586925 \n",
       "L 786.012256 88.586925 \n",
       "L 786.012256 34.226925 \n",
       "L 784.701919 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_593\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 786.012256 88.586925 \n",
       "L 787.322594 88.586925 \n",
       "L 787.322594 34.226925 \n",
       "L 786.012256 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_594\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 787.322594 88.586925 \n",
       "L 788.632931 88.586925 \n",
       "L 788.632931 34.226925 \n",
       "L 787.322594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_595\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 788.632931 88.586925 \n",
       "L 789.943269 88.586925 \n",
       "L 789.943269 34.226925 \n",
       "L 788.632931 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_596\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 789.943269 88.586925 \n",
       "L 791.253606 88.586925 \n",
       "L 791.253606 34.226925 \n",
       "L 789.943269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_597\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 791.253606 88.586925 \n",
       "L 792.563943 88.586925 \n",
       "L 792.563943 34.226925 \n",
       "L 791.253606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_598\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 792.563943 88.586925 \n",
       "L 793.874281 88.586925 \n",
       "L 793.874281 34.226925 \n",
       "L 792.563943 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_599\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 793.874281 88.586925 \n",
       "L 795.184618 88.586925 \n",
       "L 795.184618 34.226925 \n",
       "L 793.874281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_600\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 795.184618 88.586925 \n",
       "L 796.494956 88.586925 \n",
       "L 796.494956 34.226925 \n",
       "L 795.184618 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_601\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 796.494956 88.586925 \n",
       "L 797.805293 88.586925 \n",
       "L 797.805293 34.226925 \n",
       "L 796.494956 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_602\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 797.805293 88.586925 \n",
       "L 799.115631 88.586925 \n",
       "L 799.115631 34.226925 \n",
       "L 797.805293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_603\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 799.115631 88.586925 \n",
       "L 800.425968 88.586925 \n",
       "L 800.425968 34.226925 \n",
       "L 799.115631 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_604\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 800.425968 88.586925 \n",
       "L 801.736306 88.586925 \n",
       "L 801.736306 34.226925 \n",
       "L 800.425968 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_605\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 801.736306 88.586925 \n",
       "L 803.046643 88.586925 \n",
       "L 803.046643 34.226925 \n",
       "L 801.736306 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_606\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 803.046643 88.586925 \n",
       "L 804.356981 88.586925 \n",
       "L 804.356981 34.226925 \n",
       "L 803.046643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_607\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 804.356981 88.586925 \n",
       "L 805.667318 88.586925 \n",
       "L 805.667318 34.226925 \n",
       "L 804.356981 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_608\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 805.667318 88.586925 \n",
       "L 806.977656 88.586925 \n",
       "L 806.977656 34.226925 \n",
       "L 805.667318 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_609\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 806.977656 88.586925 \n",
       "L 808.287993 88.586925 \n",
       "L 808.287993 34.226925 \n",
       "L 806.977656 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_610\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 808.287993 88.586925 \n",
       "L 809.598331 88.586925 \n",
       "L 809.598331 34.226925 \n",
       "L 808.287993 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_611\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 809.598331 88.586925 \n",
       "L 810.908668 88.586925 \n",
       "L 810.908668 34.226925 \n",
       "L 809.598331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_612\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 810.908668 88.586925 \n",
       "L 812.219006 88.586925 \n",
       "L 812.219006 34.226925 \n",
       "L 810.908668 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_613\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 812.219006 88.586925 \n",
       "L 813.529343 88.586925 \n",
       "L 813.529343 34.226925 \n",
       "L 812.219006 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_614\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 813.529343 88.586925 \n",
       "L 814.839681 88.586925 \n",
       "L 814.839681 34.226925 \n",
       "L 813.529343 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_615\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 814.839681 88.586925 \n",
       "L 816.150018 88.586925 \n",
       "L 816.150018 34.226925 \n",
       "L 814.839681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_616\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 816.150018 88.586925 \n",
       "L 817.460356 88.586925 \n",
       "L 817.460356 34.226925 \n",
       "L 816.150018 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_617\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 817.460356 88.586925 \n",
       "L 818.770693 88.586925 \n",
       "L 818.770693 34.226925 \n",
       "L 817.460356 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_618\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 818.770693 88.586925 \n",
       "L 820.08103 88.586925 \n",
       "L 820.08103 34.226925 \n",
       "L 818.770693 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_619\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 820.08103 88.586925 \n",
       "L 821.391368 88.586925 \n",
       "L 821.391368 34.226925 \n",
       "L 820.08103 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_620\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 821.391368 88.586925 \n",
       "L 822.701705 88.586925 \n",
       "L 822.701705 34.226925 \n",
       "L 821.391368 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_621\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 822.701705 88.586925 \n",
       "L 824.012043 88.586925 \n",
       "L 824.012043 34.226925 \n",
       "L 822.701705 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_622\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 824.012043 88.586925 \n",
       "L 825.32238 88.586925 \n",
       "L 825.32238 34.226925 \n",
       "L 824.012043 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_623\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 825.32238 88.586925 \n",
       "L 826.632718 88.586925 \n",
       "L 826.632718 34.226925 \n",
       "L 825.32238 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_624\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 826.632718 88.586925 \n",
       "L 827.943055 88.586925 \n",
       "L 827.943055 34.226925 \n",
       "L 826.632718 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_625\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 827.943055 88.586925 \n",
       "L 829.253393 88.586925 \n",
       "L 829.253393 34.226925 \n",
       "L 827.943055 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_626\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 829.253393 88.586925 \n",
       "L 830.56373 88.586925 \n",
       "L 830.56373 34.226925 \n",
       "L 829.253393 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_627\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 830.56373 88.586925 \n",
       "L 831.874068 88.586925 \n",
       "L 831.874068 34.226925 \n",
       "L 830.56373 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_628\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 831.874068 88.586925 \n",
       "L 833.184405 88.586925 \n",
       "L 833.184405 34.226925 \n",
       "L 831.874068 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_629\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 833.184405 88.586925 \n",
       "L 834.494743 88.586925 \n",
       "L 834.494743 34.226925 \n",
       "L 833.184405 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_630\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 834.494743 88.586925 \n",
       "L 835.80508 88.586925 \n",
       "L 835.80508 34.226925 \n",
       "L 834.494743 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_631\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 835.80508 88.586925 \n",
       "L 837.115418 88.586925 \n",
       "L 837.115418 34.226925 \n",
       "L 835.80508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_632\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 837.115418 88.586925 \n",
       "L 838.425755 88.586925 \n",
       "L 838.425755 34.226925 \n",
       "L 837.115418 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_633\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 838.425755 88.586925 \n",
       "L 839.736093 88.586925 \n",
       "L 839.736093 34.226925 \n",
       "L 838.425755 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_634\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 839.736093 88.586925 \n",
       "L 841.04643 88.586925 \n",
       "L 841.04643 34.226925 \n",
       "L 839.736093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_635\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 841.04643 88.586925 \n",
       "L 842.356768 88.586925 \n",
       "L 842.356768 34.226925 \n",
       "L 841.04643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_636\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 842.356768 88.586925 \n",
       "L 843.667105 88.586925 \n",
       "L 843.667105 34.226925 \n",
       "L 842.356768 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_637\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 843.667105 88.586925 \n",
       "L 844.977443 88.586925 \n",
       "L 844.977443 34.226925 \n",
       "L 843.667105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_638\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 844.977443 88.586925 \n",
       "L 846.28778 88.586925 \n",
       "L 846.28778 34.226925 \n",
       "L 844.977443 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_639\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 846.28778 88.586925 \n",
       "L 847.598117 88.586925 \n",
       "L 847.598117 34.226925 \n",
       "L 846.28778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_640\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 847.598117 88.586925 \n",
       "L 848.908455 88.586925 \n",
       "L 848.908455 34.226925 \n",
       "L 847.598117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_641\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 848.908455 88.586925 \n",
       "L 850.218792 88.586925 \n",
       "L 850.218792 34.226925 \n",
       "L 848.908455 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_642\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 850.218792 88.586925 \n",
       "L 851.52913 88.586925 \n",
       "L 851.52913 34.226925 \n",
       "L 850.218792 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_643\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 851.52913 88.586925 \n",
       "L 852.839467 88.586925 \n",
       "L 852.839467 34.226925 \n",
       "L 851.52913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_644\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 852.839467 88.586925 \n",
       "L 854.149805 88.586925 \n",
       "L 854.149805 34.226925 \n",
       "L 852.839467 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_645\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 854.149805 88.586925 \n",
       "L 855.460142 88.586925 \n",
       "L 855.460142 34.226925 \n",
       "L 854.149805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_646\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 855.460142 88.586925 \n",
       "L 856.77048 88.586925 \n",
       "L 856.77048 34.226925 \n",
       "L 855.460142 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_647\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 856.77048 88.586925 \n",
       "L 858.080817 88.586925 \n",
       "L 858.080817 34.226925 \n",
       "L 856.77048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_648\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 858.080817 88.586925 \n",
       "L 859.391155 88.586925 \n",
       "L 859.391155 34.226925 \n",
       "L 858.080817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_649\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 859.391155 88.586925 \n",
       "L 860.701492 88.586925 \n",
       "L 860.701492 34.226925 \n",
       "L 859.391155 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_650\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 860.701492 88.586925 \n",
       "L 862.01183 88.586925 \n",
       "L 862.01183 34.226925 \n",
       "L 860.701492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_651\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 862.01183 88.586925 \n",
       "L 863.322167 88.586925 \n",
       "L 863.322167 34.226925 \n",
       "L 862.01183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_652\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 863.322167 88.586925 \n",
       "L 864.632505 88.586925 \n",
       "L 864.632505 34.226925 \n",
       "L 863.322167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_653\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 864.632505 88.586925 \n",
       "L 865.942842 88.586925 \n",
       "L 865.942842 34.226925 \n",
       "L 864.632505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_654\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 865.942842 88.586925 \n",
       "L 867.25318 88.586925 \n",
       "L 867.25318 34.226925 \n",
       "L 865.942842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_655\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 867.25318 88.586925 \n",
       "L 868.563517 88.586925 \n",
       "L 868.563517 34.226925 \n",
       "L 867.25318 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_656\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 868.563517 88.586925 \n",
       "L 869.873855 88.586925 \n",
       "L 869.873855 34.226925 \n",
       "L 868.563517 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_657\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 869.873855 88.586925 \n",
       "L 871.184192 88.586925 \n",
       "L 871.184192 34.226925 \n",
       "L 869.873855 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_658\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 871.184192 88.586925 \n",
       "L 872.49453 88.586925 \n",
       "L 872.49453 34.226925 \n",
       "L 871.184192 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_659\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 872.49453 88.586925 \n",
       "L 873.804867 88.586925 \n",
       "L 873.804867 34.226925 \n",
       "L 872.49453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_660\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 873.804867 88.586925 \n",
       "L 875.115204 88.586925 \n",
       "L 875.115204 34.226925 \n",
       "L 873.804867 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_661\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 875.115204 88.586925 \n",
       "L 876.425542 88.586925 \n",
       "L 876.425542 34.226925 \n",
       "L 875.115204 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_662\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 876.425542 88.586925 \n",
       "L 877.735879 88.586925 \n",
       "L 877.735879 34.226925 \n",
       "L 876.425542 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_663\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 877.735879 88.586925 \n",
       "L 879.046217 88.586925 \n",
       "L 879.046217 34.226925 \n",
       "L 877.735879 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_664\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 879.046217 88.586925 \n",
       "L 880.356554 88.586925 \n",
       "L 880.356554 34.226925 \n",
       "L 879.046217 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_665\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 880.356554 88.586925 \n",
       "L 881.666892 88.586925 \n",
       "L 881.666892 34.226925 \n",
       "L 880.356554 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_666\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 881.666892 88.586925 \n",
       "L 882.977229 88.586925 \n",
       "L 882.977229 34.226925 \n",
       "L 881.666892 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_667\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 882.977229 88.586925 \n",
       "L 884.287567 88.586925 \n",
       "L 884.287567 34.226925 \n",
       "L 882.977229 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_668\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 884.287567 88.586925 \n",
       "L 885.597904 88.586925 \n",
       "L 885.597904 34.226925 \n",
       "L 884.287567 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_669\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 885.597904 88.586925 \n",
       "L 886.908242 88.586925 \n",
       "L 886.908242 34.226925 \n",
       "L 885.597904 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_670\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 886.908242 88.586925 \n",
       "L 888.218579 88.586925 \n",
       "L 888.218579 34.226925 \n",
       "L 886.908242 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_671\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 888.218579 88.586925 \n",
       "L 889.528917 88.586925 \n",
       "L 889.528917 34.226925 \n",
       "L 888.218579 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_672\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 889.528917 88.586925 \n",
       "L 890.839254 88.586925 \n",
       "L 890.839254 34.226925 \n",
       "L 889.528917 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_673\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 890.839254 88.586925 \n",
       "L 892.149592 88.586925 \n",
       "L 892.149592 34.226925 \n",
       "L 890.839254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_674\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 892.149592 88.586925 \n",
       "L 893.459929 88.586925 \n",
       "L 893.459929 34.226925 \n",
       "L 892.149592 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_675\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 893.459929 88.586925 \n",
       "L 894.770267 88.586925 \n",
       "L 894.770267 34.226925 \n",
       "L 893.459929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_676\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 894.770267 88.586925 \n",
       "L 896.080604 88.586925 \n",
       "L 896.080604 34.226925 \n",
       "L 894.770267 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_677\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 896.080604 88.586925 \n",
       "L 897.390942 88.586925 \n",
       "L 897.390942 34.226925 \n",
       "L 896.080604 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_678\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 897.390942 88.586925 \n",
       "L 898.701279 88.586925 \n",
       "L 898.701279 34.226925 \n",
       "L 897.390942 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_679\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 898.701279 88.586925 \n",
       "L 900.011617 88.586925 \n",
       "L 900.011617 34.226925 \n",
       "L 898.701279 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_680\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 900.011617 88.586925 \n",
       "L 901.321954 88.586925 \n",
       "L 901.321954 34.226925 \n",
       "L 900.011617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_681\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 901.321954 88.586925 \n",
       "L 902.632292 88.586925 \n",
       "L 902.632292 34.226925 \n",
       "L 901.321954 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_682\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 902.632292 88.586925 \n",
       "L 903.942629 88.586925 \n",
       "L 903.942629 34.226925 \n",
       "L 902.632292 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_683\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 903.942629 88.586925 \n",
       "L 905.252966 88.586925 \n",
       "L 905.252966 34.226925 \n",
       "L 903.942629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_684\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 905.252966 88.586925 \n",
       "L 906.563304 88.586925 \n",
       "L 906.563304 34.226925 \n",
       "L 905.252966 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_685\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 906.563304 88.586925 \n",
       "L 907.873641 88.586925 \n",
       "L 907.873641 34.226925 \n",
       "L 906.563304 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_686\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 907.873641 88.586925 \n",
       "L 909.183979 88.586925 \n",
       "L 909.183979 34.226925 \n",
       "L 907.873641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_687\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 909.183979 88.586925 \n",
       "L 910.494316 88.586925 \n",
       "L 910.494316 34.226925 \n",
       "L 909.183979 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_688\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 910.494316 88.586925 \n",
       "L 911.804654 88.586925 \n",
       "L 911.804654 34.226925 \n",
       "L 910.494316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_689\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 911.804654 88.586925 \n",
       "L 913.114991 88.586925 \n",
       "L 913.114991 34.226925 \n",
       "L 911.804654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_690\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 913.114991 88.586925 \n",
       "L 914.425329 88.586925 \n",
       "L 914.425329 34.226925 \n",
       "L 913.114991 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_691\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 914.425329 88.586925 \n",
       "L 915.735666 88.586925 \n",
       "L 915.735666 34.226925 \n",
       "L 914.425329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_692\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 915.735666 88.586925 \n",
       "L 917.046004 88.586925 \n",
       "L 917.046004 34.226925 \n",
       "L 915.735666 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_693\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 917.046004 88.586925 \n",
       "L 918.356341 88.586925 \n",
       "L 918.356341 34.226925 \n",
       "L 917.046004 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_694\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 918.356341 88.586925 \n",
       "L 919.666679 88.586925 \n",
       "L 919.666679 34.226925 \n",
       "L 918.356341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_695\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 919.666679 88.586925 \n",
       "L 920.977016 88.586925 \n",
       "L 920.977016 34.226925 \n",
       "L 919.666679 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_696\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 920.977016 88.586925 \n",
       "L 922.287354 88.586925 \n",
       "L 922.287354 34.226925 \n",
       "L 920.977016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_697\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 922.287354 88.586925 \n",
       "L 923.597691 88.586925 \n",
       "L 923.597691 34.226925 \n",
       "L 922.287354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_698\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 923.597691 88.586925 \n",
       "L 924.908029 88.586925 \n",
       "L 924.908029 34.226925 \n",
       "L 923.597691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_699\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 924.908029 88.586925 \n",
       "L 926.218366 88.586925 \n",
       "L 926.218366 34.226925 \n",
       "L 924.908029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_700\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 926.218366 88.586925 \n",
       "L 927.528704 88.586925 \n",
       "L 927.528704 34.226925 \n",
       "L 926.218366 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_701\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 927.528704 88.586925 \n",
       "L 928.839041 88.586925 \n",
       "L 928.839041 34.226925 \n",
       "L 927.528704 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_702\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 928.839041 88.586925 \n",
       "L 930.149379 88.586925 \n",
       "L 930.149379 34.226925 \n",
       "L 928.839041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_703\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 930.149379 88.586925 \n",
       "L 931.459716 88.586925 \n",
       "L 931.459716 34.226925 \n",
       "L 930.149379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_704\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 931.459716 88.586925 \n",
       "L 932.770053 88.586925 \n",
       "L 932.770053 34.226925 \n",
       "L 931.459716 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_705\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 932.770053 88.586925 \n",
       "L 934.080391 88.586925 \n",
       "L 934.080391 34.226925 \n",
       "L 932.770053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_706\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 934.080391 88.586925 \n",
       "L 935.390728 88.586925 \n",
       "L 935.390728 34.226925 \n",
       "L 934.080391 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_707\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 935.390728 88.586925 \n",
       "L 936.701066 88.586925 \n",
       "L 936.701066 34.226925 \n",
       "L 935.390728 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_708\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 936.701066 88.586925 \n",
       "L 938.011403 88.586925 \n",
       "L 938.011403 34.226925 \n",
       "L 936.701066 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_709\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 938.011403 88.586925 \n",
       "L 939.321741 88.586925 \n",
       "L 939.321741 34.226925 \n",
       "L 938.011403 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_710\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 939.321741 88.586925 \n",
       "L 940.632078 88.586925 \n",
       "L 940.632078 34.226925 \n",
       "L 939.321741 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_711\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 940.632078 88.586925 \n",
       "L 941.942416 88.586925 \n",
       "L 941.942416 34.226925 \n",
       "L 940.632078 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_712\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 941.942416 88.586925 \n",
       "L 943.252753 88.586925 \n",
       "L 943.252753 34.226925 \n",
       "L 941.942416 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_713\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 943.252753 88.586925 \n",
       "L 944.563091 88.586925 \n",
       "L 944.563091 34.226925 \n",
       "L 943.252753 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_714\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 944.563091 88.586925 \n",
       "L 945.873428 88.586925 \n",
       "L 945.873428 34.226925 \n",
       "L 944.563091 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_715\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 945.873428 88.586925 \n",
       "L 947.183766 88.586925 \n",
       "L 947.183766 34.226925 \n",
       "L 945.873428 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_716\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 947.183766 88.586925 \n",
       "L 948.494103 88.586925 \n",
       "L 948.494103 34.226925 \n",
       "L 947.183766 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_717\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 948.494103 88.586925 \n",
       "L 949.804441 88.586925 \n",
       "L 949.804441 34.226925 \n",
       "L 948.494103 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_718\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 949.804441 88.586925 \n",
       "L 951.114778 88.586925 \n",
       "L 951.114778 34.226925 \n",
       "L 949.804441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_719\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 951.114778 88.586925 \n",
       "L 952.425116 88.586925 \n",
       "L 952.425116 34.226925 \n",
       "L 951.114778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_720\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 952.425116 88.586925 \n",
       "L 953.735453 88.586925 \n",
       "L 953.735453 34.226925 \n",
       "L 952.425116 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_721\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 953.735453 88.586925 \n",
       "L 955.045791 88.586925 \n",
       "L 955.045791 34.226925 \n",
       "L 953.735453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_722\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 955.045791 88.586925 \n",
       "L 956.356128 88.586925 \n",
       "L 956.356128 34.226925 \n",
       "L 955.045791 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_723\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 956.356128 88.586925 \n",
       "L 957.666466 88.586925 \n",
       "L 957.666466 34.226925 \n",
       "L 956.356128 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_724\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 957.666466 88.586925 \n",
       "L 958.976803 88.586925 \n",
       "L 958.976803 34.226925 \n",
       "L 957.666466 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_725\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 958.976803 88.586925 \n",
       "L 960.28714 88.586925 \n",
       "L 960.28714 34.226925 \n",
       "L 958.976803 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_726\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 960.28714 88.586925 \n",
       "L 961.597478 88.586925 \n",
       "L 961.597478 34.226925 \n",
       "L 960.28714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_727\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 961.597478 88.586925 \n",
       "L 962.907815 88.586925 \n",
       "L 962.907815 34.226925 \n",
       "L 961.597478 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_728\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 962.907815 88.586925 \n",
       "L 964.218153 88.586925 \n",
       "L 964.218153 34.226925 \n",
       "L 962.907815 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_729\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 964.218153 88.586925 \n",
       "L 965.52849 88.586925 \n",
       "L 965.52849 34.226925 \n",
       "L 964.218153 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_730\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 965.52849 88.586925 \n",
       "L 966.838828 88.586925 \n",
       "L 966.838828 34.226925 \n",
       "L 965.52849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_731\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 966.838828 88.586925 \n",
       "L 968.149165 88.586925 \n",
       "L 968.149165 34.226925 \n",
       "L 966.838828 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_732\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 968.149165 88.586925 \n",
       "L 969.459503 88.586925 \n",
       "L 969.459503 34.226925 \n",
       "L 968.149165 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_733\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 969.459503 88.586925 \n",
       "L 970.76984 88.586925 \n",
       "L 970.76984 34.226925 \n",
       "L 969.459503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_734\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 970.76984 88.586925 \n",
       "L 972.080178 88.586925 \n",
       "L 972.080178 34.226925 \n",
       "L 970.76984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_735\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 972.080178 88.586925 \n",
       "L 973.390515 88.586925 \n",
       "L 973.390515 34.226925 \n",
       "L 972.080178 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_736\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 973.390515 88.586925 \n",
       "L 974.700853 88.586925 \n",
       "L 974.700853 34.226925 \n",
       "L 973.390515 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_737\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 974.700853 88.586925 \n",
       "L 976.01119 88.586925 \n",
       "L 976.01119 34.226925 \n",
       "L 974.700853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_738\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 976.01119 88.586925 \n",
       "L 977.321528 88.586925 \n",
       "L 977.321528 34.226925 \n",
       "L 976.01119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_739\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 977.321528 88.586925 \n",
       "L 978.631865 88.586925 \n",
       "L 978.631865 34.226925 \n",
       "L 977.321528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_740\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 978.631865 88.586925 \n",
       "L 979.942203 88.586925 \n",
       "L 979.942203 34.226925 \n",
       "L 978.631865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_741\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 979.942203 88.586925 \n",
       "L 981.25254 88.586925 \n",
       "L 981.25254 34.226925 \n",
       "L 979.942203 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_742\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 981.25254 88.586925 \n",
       "L 982.562878 88.586925 \n",
       "L 982.562878 34.226925 \n",
       "L 981.25254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_743\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 982.562878 88.586925 \n",
       "L 983.873215 88.586925 \n",
       "L 983.873215 34.226925 \n",
       "L 982.562878 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_744\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 983.873215 88.586925 \n",
       "L 985.183553 88.586925 \n",
       "L 985.183553 34.226925 \n",
       "L 983.873215 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_745\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 985.183553 88.586925 \n",
       "L 986.49389 88.586925 \n",
       "L 986.49389 34.226925 \n",
       "L 985.183553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_746\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 986.49389 88.586925 \n",
       "L 987.804227 88.586925 \n",
       "L 987.804227 34.226925 \n",
       "L 986.49389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_747\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 987.804227 88.586925 \n",
       "L 989.114565 88.586925 \n",
       "L 989.114565 34.226925 \n",
       "L 987.804227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_748\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 989.114565 88.586925 \n",
       "L 990.424902 88.586925 \n",
       "L 990.424902 34.226925 \n",
       "L 989.114565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_749\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 990.424902 88.586925 \n",
       "L 991.73524 88.586925 \n",
       "L 991.73524 34.226925 \n",
       "L 990.424902 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_750\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 991.73524 88.586925 \n",
       "L 993.045577 88.586925 \n",
       "L 993.045577 34.226925 \n",
       "L 991.73524 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_751\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 993.045577 88.586925 \n",
       "L 994.355915 88.586925 \n",
       "L 994.355915 34.226925 \n",
       "L 993.045577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_752\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 994.355915 88.586925 \n",
       "L 995.666252 88.586925 \n",
       "L 995.666252 34.226925 \n",
       "L 994.355915 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_753\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 995.666252 88.586925 \n",
       "L 996.97659 88.586925 \n",
       "L 996.97659 34.226925 \n",
       "L 995.666252 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_754\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 996.97659 88.586925 \n",
       "L 998.286927 88.586925 \n",
       "L 998.286927 34.226925 \n",
       "L 996.97659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_755\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 998.286927 88.586925 \n",
       "L 999.597265 88.586925 \n",
       "L 999.597265 34.226925 \n",
       "L 998.286927 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_756\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 999.597265 88.586925 \n",
       "L 1000.907602 88.586925 \n",
       "L 1000.907602 34.226925 \n",
       "L 999.597265 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_757\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1000.907602 88.586925 \n",
       "L 1002.21794 88.586925 \n",
       "L 1002.21794 34.226925 \n",
       "L 1000.907602 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_758\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1002.21794 88.586925 \n",
       "L 1003.528277 88.586925 \n",
       "L 1003.528277 34.226925 \n",
       "L 1002.21794 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_759\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1003.528277 88.586925 \n",
       "L 1004.838615 88.586925 \n",
       "L 1004.838615 34.226925 \n",
       "L 1003.528277 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_760\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1004.838615 88.586925 \n",
       "L 1006.148952 88.586925 \n",
       "L 1006.148952 34.226925 \n",
       "L 1004.838615 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_761\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1006.148952 88.586925 \n",
       "L 1007.45929 88.586925 \n",
       "L 1007.45929 34.226925 \n",
       "L 1006.148952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_762\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1007.45929 88.586925 \n",
       "L 1008.769627 88.586925 \n",
       "L 1008.769627 34.226925 \n",
       "L 1007.45929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_763\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1008.769627 88.586925 \n",
       "L 1010.079965 88.586925 \n",
       "L 1010.079965 34.226925 \n",
       "L 1008.769627 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_764\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1010.079965 88.586925 \n",
       "L 1011.390302 88.586925 \n",
       "L 1011.390302 34.226925 \n",
       "L 1010.079965 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_765\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1011.390302 88.586925 \n",
       "L 1012.70064 88.586925 \n",
       "L 1012.70064 34.226925 \n",
       "L 1011.390302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_766\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1012.70064 88.586925 \n",
       "L 1014.010977 88.586925 \n",
       "L 1014.010977 34.226925 \n",
       "L 1012.70064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_767\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1014.010977 88.586925 \n",
       "L 1015.321314 88.586925 \n",
       "L 1015.321314 34.226925 \n",
       "L 1014.010977 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_768\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1015.321314 88.586925 \n",
       "L 1016.631652 88.586925 \n",
       "L 1016.631652 34.226925 \n",
       "L 1015.321314 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_769\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1016.631652 88.586925 \n",
       "L 1017.941989 88.586925 \n",
       "L 1017.941989 34.226925 \n",
       "L 1016.631652 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_770\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1017.941989 88.586925 \n",
       "L 1019.252327 88.586925 \n",
       "L 1019.252327 34.226925 \n",
       "L 1017.941989 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_771\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1019.252327 88.586925 \n",
       "L 1020.562664 88.586925 \n",
       "L 1020.562664 34.226925 \n",
       "L 1019.252327 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_772\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1020.562664 88.586925 \n",
       "L 1021.873002 88.586925 \n",
       "L 1021.873002 34.226925 \n",
       "L 1020.562664 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_773\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1021.873002 88.586925 \n",
       "L 1023.183339 88.586925 \n",
       "L 1023.183339 34.226925 \n",
       "L 1021.873002 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_774\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1023.183339 88.586925 \n",
       "L 1024.493677 88.586925 \n",
       "L 1024.493677 34.226925 \n",
       "L 1023.183339 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_775\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1024.493677 88.586925 \n",
       "L 1025.804014 88.586925 \n",
       "L 1025.804014 34.226925 \n",
       "L 1024.493677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_776\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1025.804014 88.586925 \n",
       "L 1027.114352 88.586925 \n",
       "L 1027.114352 34.226925 \n",
       "L 1025.804014 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_777\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1027.114352 88.586925 \n",
       "L 1028.424689 88.586925 \n",
       "L 1028.424689 34.226925 \n",
       "L 1027.114352 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_778\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1028.424689 88.586925 \n",
       "L 1029.735027 88.586925 \n",
       "L 1029.735027 34.226925 \n",
       "L 1028.424689 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_779\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1029.735027 88.586925 \n",
       "L 1031.045364 88.586925 \n",
       "L 1031.045364 34.226925 \n",
       "L 1029.735027 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_780\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1031.045364 88.586925 \n",
       "L 1032.355702 88.586925 \n",
       "L 1032.355702 34.226925 \n",
       "L 1031.045364 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_781\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1032.355702 88.586925 \n",
       "L 1033.666039 88.586925 \n",
       "L 1033.666039 34.226925 \n",
       "L 1032.355702 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_782\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1033.666039 88.586925 \n",
       "L 1034.976377 88.586925 \n",
       "L 1034.976377 34.226925 \n",
       "L 1033.666039 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_783\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1034.976377 88.586925 \n",
       "L 1036.286714 88.586925 \n",
       "L 1036.286714 34.226925 \n",
       "L 1034.976377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_784\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1036.286714 88.586925 \n",
       "L 1037.597052 88.586925 \n",
       "L 1037.597052 34.226925 \n",
       "L 1036.286714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_785\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1037.597052 88.586925 \n",
       "L 1038.907389 88.586925 \n",
       "L 1038.907389 34.226925 \n",
       "L 1037.597052 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_786\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1038.907389 88.586925 \n",
       "L 1040.217727 88.586925 \n",
       "L 1040.217727 34.226925 \n",
       "L 1038.907389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_787\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1040.217727 88.586925 \n",
       "L 1041.528064 88.586925 \n",
       "L 1041.528064 34.226925 \n",
       "L 1040.217727 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_788\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1041.528064 88.586925 \n",
       "L 1042.838401 88.586925 \n",
       "L 1042.838401 34.226925 \n",
       "L 1041.528064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_789\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1042.838401 88.586925 \n",
       "L 1044.148739 88.586925 \n",
       "L 1044.148739 34.226925 \n",
       "L 1042.838401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_790\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1044.148739 88.586925 \n",
       "L 1045.459076 88.586925 \n",
       "L 1045.459076 34.226925 \n",
       "L 1044.148739 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_791\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1045.459076 88.586925 \n",
       "L 1046.769414 88.586925 \n",
       "L 1046.769414 34.226925 \n",
       "L 1045.459076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_792\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1046.769414 88.586925 \n",
       "L 1048.079751 88.586925 \n",
       "L 1048.079751 34.226925 \n",
       "L 1046.769414 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_793\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1048.079751 88.586925 \n",
       "L 1049.390089 88.586925 \n",
       "L 1049.390089 34.226925 \n",
       "L 1048.079751 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_794\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1049.390089 88.586925 \n",
       "L 1050.700426 88.586925 \n",
       "L 1050.700426 34.226925 \n",
       "L 1049.390089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_795\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1050.700426 88.586925 \n",
       "L 1052.010764 88.586925 \n",
       "L 1052.010764 34.226925 \n",
       "L 1050.700426 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_796\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1052.010764 88.586925 \n",
       "L 1053.321101 88.586925 \n",
       "L 1053.321101 34.226925 \n",
       "L 1052.010764 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_797\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1053.321101 88.586925 \n",
       "L 1054.631439 88.586925 \n",
       "L 1054.631439 34.226925 \n",
       "L 1053.321101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_798\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1054.631439 88.586925 \n",
       "L 1055.941776 88.586925 \n",
       "L 1055.941776 34.226925 \n",
       "L 1054.631439 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_799\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1055.941776 88.586925 \n",
       "L 1057.252114 88.586925 \n",
       "L 1057.252114 34.226925 \n",
       "L 1055.941776 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_800\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1057.252114 88.586925 \n",
       "L 1058.562451 88.586925 \n",
       "L 1058.562451 34.226925 \n",
       "L 1057.252114 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_801\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1058.562451 88.586925 \n",
       "L 1059.872789 88.586925 \n",
       "L 1059.872789 34.226925 \n",
       "L 1058.562451 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_802\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1059.872789 88.586925 \n",
       "L 1061.183126 88.586925 \n",
       "L 1061.183126 34.226925 \n",
       "L 1059.872789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_803\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1061.183126 88.586925 \n",
       "L 1062.493464 88.586925 \n",
       "L 1062.493464 34.226925 \n",
       "L 1061.183126 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_804\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1062.493464 88.586925 \n",
       "L 1063.803801 88.586925 \n",
       "L 1063.803801 34.226925 \n",
       "L 1062.493464 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_805\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1063.803801 88.586925 \n",
       "L 1065.114139 88.586925 \n",
       "L 1065.114139 34.226925 \n",
       "L 1063.803801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_806\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1065.114139 88.586925 \n",
       "L 1066.424476 88.586925 \n",
       "L 1066.424476 34.226925 \n",
       "L 1065.114139 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_807\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1066.424476 88.586925 \n",
       "L 1067.734814 88.586925 \n",
       "L 1067.734814 34.226925 \n",
       "L 1066.424476 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_808\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1067.734814 88.586925 \n",
       "L 1069.045151 88.586925 \n",
       "L 1069.045151 34.226925 \n",
       "L 1067.734814 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_809\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1069.045151 88.586925 \n",
       "L 1070.355489 88.586925 \n",
       "L 1070.355489 34.226925 \n",
       "L 1069.045151 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_810\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1070.355489 88.586925 \n",
       "L 1071.665826 88.586925 \n",
       "L 1071.665826 34.226925 \n",
       "L 1070.355489 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_811\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1071.665826 88.586925 \n",
       "L 1072.976163 88.586925 \n",
       "L 1072.976163 34.226925 \n",
       "L 1071.665826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_812\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1072.976163 88.586925 \n",
       "L 1074.286501 88.586925 \n",
       "L 1074.286501 34.226925 \n",
       "L 1072.976163 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_813\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1074.286501 88.586925 \n",
       "L 1075.596838 88.586925 \n",
       "L 1075.596838 34.226925 \n",
       "L 1074.286501 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_814\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1075.596838 88.586925 \n",
       "L 1076.907176 88.586925 \n",
       "L 1076.907176 34.226925 \n",
       "L 1075.596838 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_815\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1076.907176 88.586925 \n",
       "L 1078.217513 88.586925 \n",
       "L 1078.217513 34.226925 \n",
       "L 1076.907176 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_816\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1078.217513 88.586925 \n",
       "L 1079.527851 88.586925 \n",
       "L 1079.527851 34.226925 \n",
       "L 1078.217513 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_817\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1079.527851 88.586925 \n",
       "L 1080.838188 88.586925 \n",
       "L 1080.838188 34.226925 \n",
       "L 1079.527851 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_818\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1080.838188 88.586925 \n",
       "L 1082.148526 88.586925 \n",
       "L 1082.148526 34.226925 \n",
       "L 1080.838188 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_819\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1082.148526 88.586925 \n",
       "L 1083.458863 88.586925 \n",
       "L 1083.458863 34.226925 \n",
       "L 1082.148526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_820\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1083.458863 88.586925 \n",
       "L 1084.769201 88.586925 \n",
       "L 1084.769201 34.226925 \n",
       "L 1083.458863 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_821\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1084.769201 88.586925 \n",
       "L 1086.079538 88.586925 \n",
       "L 1086.079538 34.226925 \n",
       "L 1084.769201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_822\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1086.079538 88.586925 \n",
       "L 1087.389876 88.586925 \n",
       "L 1087.389876 34.226925 \n",
       "L 1086.079538 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_823\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1087.389876 88.586925 \n",
       "L 1088.700213 88.586925 \n",
       "L 1088.700213 34.226925 \n",
       "L 1087.389876 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_824\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1088.700213 88.586925 \n",
       "L 1090.010551 88.586925 \n",
       "L 1090.010551 34.226925 \n",
       "L 1088.700213 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_825\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1090.010551 88.586925 \n",
       "L 1091.320888 88.586925 \n",
       "L 1091.320888 34.226925 \n",
       "L 1090.010551 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_826\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1091.320888 88.586925 \n",
       "L 1092.631226 88.586925 \n",
       "L 1092.631226 34.226925 \n",
       "L 1091.320888 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_827\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1092.631226 88.586925 \n",
       "L 1093.941563 88.586925 \n",
       "L 1093.941563 34.226925 \n",
       "L 1092.631226 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_828\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1093.941563 88.586925 \n",
       "L 1095.251901 88.586925 \n",
       "L 1095.251901 34.226925 \n",
       "L 1093.941563 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_829\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1095.251901 88.586925 \n",
       "L 1096.562238 88.586925 \n",
       "L 1096.562238 34.226925 \n",
       "L 1095.251901 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_830\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1096.562238 88.586925 \n",
       "L 1097.872576 88.586925 \n",
       "L 1097.872576 34.226925 \n",
       "L 1096.562238 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_831\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1097.872576 88.586925 \n",
       "L 1099.182913 88.586925 \n",
       "L 1099.182913 34.226925 \n",
       "L 1097.872576 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_832\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1099.182913 88.586925 \n",
       "L 1100.49325 88.586925 \n",
       "L 1100.49325 34.226925 \n",
       "L 1099.182913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_833\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1100.49325 88.586925 \n",
       "L 1101.803588 88.586925 \n",
       "L 1101.803588 34.226925 \n",
       "L 1100.49325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_834\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1101.803588 88.586925 \n",
       "L 1103.113925 88.586925 \n",
       "L 1103.113925 34.226925 \n",
       "L 1101.803588 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_835\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1103.113925 88.586925 \n",
       "L 1104.424263 88.586925 \n",
       "L 1104.424263 34.226925 \n",
       "L 1103.113925 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_836\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1104.424263 88.586925 \n",
       "L 1105.7346 88.586925 \n",
       "L 1105.7346 34.226925 \n",
       "L 1104.424263 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_837\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1105.7346 88.586925 \n",
       "L 1107.044938 88.586925 \n",
       "L 1107.044938 34.226925 \n",
       "L 1105.7346 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_838\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1107.044938 88.586925 \n",
       "L 1108.355275 88.586925 \n",
       "L 1108.355275 34.226925 \n",
       "L 1107.044938 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_839\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1108.355275 88.586925 \n",
       "L 1109.665613 88.586925 \n",
       "L 1109.665613 34.226925 \n",
       "L 1108.355275 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_840\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1109.665613 88.586925 \n",
       "L 1110.97595 88.586925 \n",
       "L 1110.97595 34.226925 \n",
       "L 1109.665613 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_841\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1110.97595 88.586925 \n",
       "L 1112.286288 88.586925 \n",
       "L 1112.286288 34.226925 \n",
       "L 1110.97595 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_842\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1112.286288 88.586925 \n",
       "L 1113.596625 88.586925 \n",
       "L 1113.596625 34.226925 \n",
       "L 1112.286288 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_843\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1113.596625 88.586925 \n",
       "L 1114.906963 88.586925 \n",
       "L 1114.906963 34.226925 \n",
       "L 1113.596625 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_844\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1114.906963 88.586925 \n",
       "L 1116.2173 88.586925 \n",
       "L 1116.2173 34.226925 \n",
       "L 1114.906963 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_845\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1116.2173 88.586925 \n",
       "L 1117.527638 88.586925 \n",
       "L 1117.527638 34.226925 \n",
       "L 1116.2173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_846\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1117.527638 88.586925 \n",
       "L 1118.837975 88.586925 \n",
       "L 1118.837975 34.226925 \n",
       "L 1117.527638 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_847\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1118.837975 88.586925 \n",
       "L 1120.148313 88.586925 \n",
       "L 1120.148313 34.226925 \n",
       "L 1118.837975 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_848\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1120.148313 88.586925 \n",
       "L 1121.45865 88.586925 \n",
       "L 1121.45865 34.226925 \n",
       "L 1120.148313 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_849\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1121.45865 88.586925 \n",
       "L 1122.768988 88.586925 \n",
       "L 1122.768988 34.226925 \n",
       "L 1121.45865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_850\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1122.768988 88.586925 \n",
       "L 1124.079325 88.586925 \n",
       "L 1124.079325 34.226925 \n",
       "L 1122.768988 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_851\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1124.079325 88.586925 \n",
       "L 1125.389663 88.586925 \n",
       "L 1125.389663 34.226925 \n",
       "L 1124.079325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_852\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 1125.389663 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 1125.389663 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m0af86a3422\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"10.7\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0 -->\n",
       "      <g transform=\"translate(7.51875 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2034 4250 \n",
       "Q 1547 4250 1301 3770 \n",
       "Q 1056 3291 1056 2328 \n",
       "Q 1056 1369 1301 889 \n",
       "Q 1547 409 2034 409 \n",
       "Q 2525 409 2770 889 \n",
       "Q 3016 1369 3016 2328 \n",
       "Q 3016 3291 2770 3770 \n",
       "Q 2525 4250 2034 4250 \n",
       "z\n",
       "M 2034 4750 \n",
       "Q 2819 4750 3233 4129 \n",
       "Q 3647 3509 3647 2328 \n",
       "Q 3647 1150 3233 529 \n",
       "Q 2819 -91 2034 -91 \n",
       "Q 1250 -91 836 529 \n",
       "Q 422 1150 422 2328 \n",
       "Q 422 3509 836 4129 \n",
       "Q 1250 4750 2034 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-30\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"178.476886\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 50 -->\n",
       "      <g transform=\"translate(172.114386 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 691 4666 \n",
       "L 3169 4666 \n",
       "L 3169 4134 \n",
       "L 1269 4134 \n",
       "L 1269 2991 \n",
       "Q 1406 3038 1543 3061 \n",
       "Q 1681 3084 1819 3084 \n",
       "Q 2600 3084 3056 2656 \n",
       "Q 3513 2228 3513 1497 \n",
       "Q 3513 744 3044 326 \n",
       "Q 2575 -91 1722 -91 \n",
       "Q 1428 -91 1123 -41 \n",
       "Q 819 9 494 109 \n",
       "L 494 744 \n",
       "Q 775 591 1075 516 \n",
       "Q 1375 441 1709 441 \n",
       "Q 2250 441 2565 725 \n",
       "Q 2881 1009 2881 1497 \n",
       "Q 2881 1984 2565 2268 \n",
       "Q 2250 2553 1709 2553 \n",
       "Q 1456 2553 1204 2497 \n",
       "Q 953 2441 691 2322 \n",
       "L 691 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-35\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"346.253771\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 100 -->\n",
       "      <g transform=\"translate(336.710021 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 794 531 \n",
       "L 1825 531 \n",
       "L 1825 4091 \n",
       "L 703 3866 \n",
       "L 703 4441 \n",
       "L 1819 4666 \n",
       "L 2450 4666 \n",
       "L 2450 531 \n",
       "L 3481 531 \n",
       "L 3481 0 \n",
       "L 794 0 \n",
       "L 794 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-31\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"514.030657\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 150 -->\n",
       "      <g transform=\"translate(504.486907 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"681.807542\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 200 -->\n",
       "      <g transform=\"translate(672.263792 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 1228 531 \n",
       "L 3431 531 \n",
       "L 3431 0 \n",
       "L 469 0 \n",
       "L 469 531 \n",
       "Q 828 903 1448 1529 \n",
       "Q 2069 2156 2228 2338 \n",
       "Q 2531 2678 2651 2914 \n",
       "Q 2772 3150 2772 3378 \n",
       "Q 2772 3750 2511 3984 \n",
       "Q 2250 4219 1831 4219 \n",
       "Q 1534 4219 1204 4116 \n",
       "Q 875 4013 500 3803 \n",
       "L 500 4441 \n",
       "Q 881 4594 1212 4672 \n",
       "Q 1544 4750 1819 4750 \n",
       "Q 2544 4750 2975 4387 \n",
       "Q 3406 4025 3406 3419 \n",
       "Q 3406 3131 3298 2873 \n",
       "Q 3191 2616 2906 2266 \n",
       "Q 2828 2175 2409 1742 \n",
       "Q 1991 1309 1228 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-32\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"849.584428\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 250 -->\n",
       "      <g transform=\"translate(840.040678 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"1017.361314\" xlink:href=\"#m0af86a3422\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 300 -->\n",
       "      <g transform=\"translate(1007.817564 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2597 2516 \n",
       "Q 3050 2419 3304 2112 \n",
       "Q 3559 1806 3559 1356 \n",
       "Q 3559 666 3084 287 \n",
       "Q 2609 -91 1734 -91 \n",
       "Q 1441 -91 1130 -33 \n",
       "Q 819 25 488 141 \n",
       "L 488 750 \n",
       "Q 750 597 1062 519 \n",
       "Q 1375 441 1716 441 \n",
       "Q 2309 441 2620 675 \n",
       "Q 2931 909 2931 1356 \n",
       "Q 2931 1769 2642 2001 \n",
       "Q 2353 2234 1838 2234 \n",
       "L 1294 2234 \n",
       "L 1294 2753 \n",
       "L 1863 2753 \n",
       "Q 2328 2753 2575 2939 \n",
       "Q 2822 3125 2822 3475 \n",
       "Q 2822 3834 2567 4026 \n",
       "Q 2313 4219 1838 4219 \n",
       "Q 1578 4219 1281 4162 \n",
       "Q 984 4106 628 3988 \n",
       "L 628 4550 \n",
       "Q 988 4650 1302 4700 \n",
       "Q 1616 4750 1894 4750 \n",
       "Q 2613 4750 3031 4423 \n",
       "Q 3450 4097 3450 3541 \n",
       "Q 3450 3153 3228 2886 \n",
       "Q 3006 2619 2597 2516 \n",
       "z\n",
       "\" id=\"DejaVuSans-33\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-33\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_8\">\n",
       "     <!-- Distance [nm] -->\n",
       "     <g transform=\"translate(533.307813 116.863487)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 1259 4147 \n",
       "L 1259 519 \n",
       "L 2022 519 \n",
       "Q 2988 519 3436 956 \n",
       "Q 3884 1394 3884 2338 \n",
       "Q 3884 3275 3436 3711 \n",
       "Q 2988 4147 2022 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "M 628 4666 \n",
       "L 1925 4666 \n",
       "Q 3281 4666 3915 4102 \n",
       "Q 4550 3538 4550 2338 \n",
       "Q 4550 1131 3912 565 \n",
       "Q 3275 0 1925 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-44\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 603 3500 \n",
       "L 1178 3500 \n",
       "L 1178 0 \n",
       "L 603 0 \n",
       "L 603 3500 \n",
       "z\n",
       "M 603 4863 \n",
       "L 1178 4863 \n",
       "L 1178 4134 \n",
       "L 603 4134 \n",
       "L 603 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-69\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2834 3397 \n",
       "L 2834 2853 \n",
       "Q 2591 2978 2328 3040 \n",
       "Q 2066 3103 1784 3103 \n",
       "Q 1356 3103 1142 2972 \n",
       "Q 928 2841 928 2578 \n",
       "Q 928 2378 1081 2264 \n",
       "Q 1234 2150 1697 2047 \n",
       "L 1894 2003 \n",
       "Q 2506 1872 2764 1633 \n",
       "Q 3022 1394 3022 966 \n",
       "Q 3022 478 2636 193 \n",
       "Q 2250 -91 1575 -91 \n",
       "Q 1294 -91 989 -36 \n",
       "Q 684 19 347 128 \n",
       "L 347 722 \n",
       "Q 666 556 975 473 \n",
       "Q 1284 391 1588 391 \n",
       "Q 1994 391 2212 530 \n",
       "Q 2431 669 2431 922 \n",
       "Q 2431 1156 2273 1281 \n",
       "Q 2116 1406 1581 1522 \n",
       "L 1381 1569 \n",
       "Q 847 1681 609 1914 \n",
       "Q 372 2147 372 2553 \n",
       "Q 372 3047 722 3315 \n",
       "Q 1072 3584 1716 3584 \n",
       "Q 2034 3584 2315 3537 \n",
       "Q 2597 3491 2834 3397 \n",
       "z\n",
       "\" id=\"DejaVuSans-73\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1172 4494 \n",
       "L 1172 3500 \n",
       "L 2356 3500 \n",
       "L 2356 3053 \n",
       "L 1172 3053 \n",
       "L 1172 1153 \n",
       "Q 1172 725 1289 603 \n",
       "Q 1406 481 1766 481 \n",
       "L 2356 481 \n",
       "L 2356 0 \n",
       "L 1766 0 \n",
       "Q 1100 0 847 248 \n",
       "Q 594 497 594 1153 \n",
       "L 594 3053 \n",
       "L 172 3053 \n",
       "L 172 3500 \n",
       "L 594 3500 \n",
       "L 594 4494 \n",
       "L 1172 4494 \n",
       "z\n",
       "\" id=\"DejaVuSans-74\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2194 1759 \n",
       "Q 1497 1759 1228 1600 \n",
       "Q 959 1441 959 1056 \n",
       "Q 959 750 1161 570 \n",
       "Q 1363 391 1709 391 \n",
       "Q 2188 391 2477 730 \n",
       "Q 2766 1069 2766 1631 \n",
       "L 2766 1759 \n",
       "L 2194 1759 \n",
       "z\n",
       "M 3341 1997 \n",
       "L 3341 0 \n",
       "L 2766 0 \n",
       "L 2766 531 \n",
       "Q 2569 213 2275 61 \n",
       "Q 1981 -91 1556 -91 \n",
       "Q 1019 -91 701 211 \n",
       "Q 384 513 384 1019 \n",
       "Q 384 1609 779 1909 \n",
       "Q 1175 2209 1959 2209 \n",
       "L 2766 2209 \n",
       "L 2766 2266 \n",
       "Q 2766 2663 2505 2880 \n",
       "Q 2244 3097 1772 3097 \n",
       "Q 1472 3097 1187 3025 \n",
       "Q 903 2953 641 2809 \n",
       "L 641 3341 \n",
       "Q 956 3463 1253 3523 \n",
       "Q 1550 3584 1831 3584 \n",
       "Q 2591 3584 2966 3190 \n",
       "Q 3341 2797 3341 1997 \n",
       "z\n",
       "\" id=\"DejaVuSans-61\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3513 2113 \n",
       "L 3513 0 \n",
       "L 2938 0 \n",
       "L 2938 2094 \n",
       "Q 2938 2591 2744 2837 \n",
       "Q 2550 3084 2163 3084 \n",
       "Q 1697 3084 1428 2787 \n",
       "Q 1159 2491 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1366 3272 1645 3428 \n",
       "Q 1925 3584 2291 3584 \n",
       "Q 2894 3584 3203 3211 \n",
       "Q 3513 2838 3513 2113 \n",
       "z\n",
       "\" id=\"DejaVuSans-6e\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3122 3366 \n",
       "L 3122 2828 \n",
       "Q 2878 2963 2633 3030 \n",
       "Q 2388 3097 2138 3097 \n",
       "Q 1578 3097 1268 2742 \n",
       "Q 959 2388 959 1747 \n",
       "Q 959 1106 1268 751 \n",
       "Q 1578 397 2138 397 \n",
       "Q 2388 397 2633 464 \n",
       "Q 2878 531 3122 666 \n",
       "L 3122 134 \n",
       "Q 2881 22 2623 -34 \n",
       "Q 2366 -91 2075 -91 \n",
       "Q 1284 -91 818 406 \n",
       "Q 353 903 353 1747 \n",
       "Q 353 2603 823 3093 \n",
       "Q 1294 3584 2113 3584 \n",
       "Q 2378 3584 2631 3529 \n",
       "Q 2884 3475 3122 3366 \n",
       "z\n",
       "\" id=\"DejaVuSans-63\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3597 1894 \n",
       "L 3597 1613 \n",
       "L 953 1613 \n",
       "Q 991 1019 1311 708 \n",
       "Q 1631 397 2203 397 \n",
       "Q 2534 397 2845 478 \n",
       "Q 3156 559 3463 722 \n",
       "L 3463 178 \n",
       "Q 3153 47 2828 -22 \n",
       "Q 2503 -91 2169 -91 \n",
       "Q 1331 -91 842 396 \n",
       "Q 353 884 353 1716 \n",
       "Q 353 2575 817 3079 \n",
       "Q 1281 3584 2069 3584 \n",
       "Q 2775 3584 3186 3129 \n",
       "Q 3597 2675 3597 1894 \n",
       "z\n",
       "M 3022 2063 \n",
       "Q 3016 2534 2758 2815 \n",
       "Q 2500 3097 2075 3097 \n",
       "Q 1594 3097 1305 2825 \n",
       "Q 1016 2553 972 2059 \n",
       "L 3022 2063 \n",
       "z\n",
       "\" id=\"DejaVuSans-65\" transform=\"scale(0.015625)\"/>\n",
       "       <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 550 4863 \n",
       "L 1875 4863 \n",
       "L 1875 4416 \n",
       "L 1125 4416 \n",
       "L 1125 -397 \n",
       "L 1875 -397 \n",
       "L 1875 -844 \n",
       "L 550 -844 \n",
       "L 550 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5b\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3328 2828 \n",
       "Q 3544 3216 3844 3400 \n",
       "Q 4144 3584 4550 3584 \n",
       "Q 5097 3584 5394 3201 \n",
       "Q 5691 2819 5691 2113 \n",
       "L 5691 0 \n",
       "L 5113 0 \n",
       "L 5113 2094 \n",
       "Q 5113 2597 4934 2840 \n",
       "Q 4756 3084 4391 3084 \n",
       "Q 3944 3084 3684 2787 \n",
       "Q 3425 2491 3425 1978 \n",
       "L 3425 0 \n",
       "L 2847 0 \n",
       "L 2847 2094 \n",
       "Q 2847 2600 2669 2842 \n",
       "Q 2491 3084 2119 3084 \n",
       "Q 1678 3084 1418 2786 \n",
       "Q 1159 2488 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1356 3278 1631 3431 \n",
       "Q 1906 3584 2284 3584 \n",
       "Q 2666 3584 2933 3390 \n",
       "Q 3200 3197 3328 2828 \n",
       "z\n",
       "\" id=\"DejaVuSans-6d\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1947 4863 \n",
       "L 1947 -844 \n",
       "L 622 -844 \n",
       "L 622 -397 \n",
       "L 1369 -397 \n",
       "L 1369 4416 \n",
       "L 622 4416 \n",
       "L 622 4863 \n",
       "L 1947 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5d\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-44\"/>\n",
       "      <use x=\"77.001953\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"104.785156\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"156.884766\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"196.09375\" xlink:href=\"#DejaVuSans-61\"/>\n",
       "      <use x=\"257.373047\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"320.751953\" xlink:href=\"#DejaVuSans-63\"/>\n",
       "      <use x=\"375.732422\" xlink:href=\"#DejaVuSans-65\"/>\n",
       "      <use x=\"437.255859\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "      <use x=\"469.042969\" xlink:href=\"#DejaVuSans-5b\"/>\n",
       "      <use x=\"508.056641\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"571.435547\" xlink:href=\"#DejaVuSans-6d\"/>\n",
       "      <use x=\"668.847656\" xlink:href=\"#DejaVuSans-5d\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\"/>\n",
       "   <g id=\"line2d_8\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"line2d_9\">\n",
       "    <path clip-path=\"url(#pc7b833de70)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_853\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 10.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_854\">\n",
       "    <path d=\"M 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_855\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_856\">\n",
       "    <path d=\"M 10.7 34.226925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"legend_1\">\n",
       "    <g id=\"line2d_10\">\n",
       "     <path d=\"M 19.7 15.298437 \n",
       "L 39.7 15.298437 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_11\"/>\n",
       "    <g id=\"text_9\">\n",
       "     <!-- SRO -->\n",
       "     <g transform=\"translate(47.7 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 3425 4513 \n",
       "L 3425 3897 \n",
       "Q 3066 4069 2747 4153 \n",
       "Q 2428 4238 2131 4238 \n",
       "Q 1616 4238 1336 4038 \n",
       "Q 1056 3838 1056 3469 \n",
       "Q 1056 3159 1242 3001 \n",
       "Q 1428 2844 1947 2747 \n",
       "L 2328 2669 \n",
       "Q 3034 2534 3370 2195 \n",
       "Q 3706 1856 3706 1288 \n",
       "Q 3706 609 3251 259 \n",
       "Q 2797 -91 1919 -91 \n",
       "Q 1588 -91 1214 -16 \n",
       "Q 841 59 441 206 \n",
       "L 441 856 \n",
       "Q 825 641 1194 531 \n",
       "Q 1563 422 1919 422 \n",
       "Q 2459 422 2753 634 \n",
       "Q 3047 847 3047 1241 \n",
       "Q 3047 1584 2836 1778 \n",
       "Q 2625 1972 2144 2069 \n",
       "L 1759 2144 \n",
       "Q 1053 2284 737 2584 \n",
       "Q 422 2884 422 3419 \n",
       "Q 422 4038 858 4394 \n",
       "Q 1294 4750 2059 4750 \n",
       "Q 2388 4750 2728 4690 \n",
       "Q 3069 4631 3425 4513 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2841 2188 \n",
       "Q 3044 2119 3236 1894 \n",
       "Q 3428 1669 3622 1275 \n",
       "L 4263 0 \n",
       "L 3584 0 \n",
       "L 2988 1197 \n",
       "Q 2756 1666 2539 1819 \n",
       "Q 2322 1972 1947 1972 \n",
       "L 1259 1972 \n",
       "L 1259 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "L 2053 4666 \n",
       "Q 2853 4666 3247 4331 \n",
       "Q 3641 3997 3641 3322 \n",
       "Q 3641 2881 3436 2590 \n",
       "Q 3231 2300 2841 2188 \n",
       "z\n",
       "M 1259 4147 \n",
       "L 1259 2491 \n",
       "L 2053 2491 \n",
       "Q 2509 2491 2742 2702 \n",
       "Q 2975 2913 2975 3322 \n",
       "Q 2975 3731 2742 3939 \n",
       "Q 2509 4147 2053 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2522 4238 \n",
       "Q 1834 4238 1429 3725 \n",
       "Q 1025 3213 1025 2328 \n",
       "Q 1025 1447 1429 934 \n",
       "Q 1834 422 2522 422 \n",
       "Q 3209 422 3611 934 \n",
       "Q 4013 1447 4013 2328 \n",
       "Q 4013 3213 3611 3725 \n",
       "Q 3209 4238 2522 4238 \n",
       "z\n",
       "M 2522 4750 \n",
       "Q 3503 4750 4090 4092 \n",
       "Q 4678 3434 4678 2328 \n",
       "Q 4678 1225 4090 567 \n",
       "Q 3503 -91 2522 -91 \n",
       "Q 1538 -91 948 565 \n",
       "Q 359 1222 359 2328 \n",
       "Q 359 3434 948 4092 \n",
       "Q 1538 4750 2522 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-4f\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-52\"/>\n",
       "      <use x=\"132.958984\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"line2d_12\">\n",
       "     <path d=\"M 88.86875 15.298437 \n",
       "L 108.86875 15.298437 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_13\"/>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- STOsub -->\n",
       "     <g transform=\"translate(116.86875 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M -19 4666 \n",
       "L 3928 4666 \n",
       "L 3928 4134 \n",
       "L 2272 4134 \n",
       "L 2272 0 \n",
       "L 1638 0 \n",
       "L 1638 4134 \n",
       "L -19 4134 \n",
       "L -19 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-54\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 544 1381 \n",
       "L 544 3500 \n",
       "L 1119 3500 \n",
       "L 1119 1403 \n",
       "Q 1119 906 1312 657 \n",
       "Q 1506 409 1894 409 \n",
       "Q 2359 409 2629 706 \n",
       "Q 2900 1003 2900 1516 \n",
       "L 2900 3500 \n",
       "L 3475 3500 \n",
       "L 3475 0 \n",
       "L 2900 0 \n",
       "L 2900 538 \n",
       "Q 2691 219 2414 64 \n",
       "Q 2138 -91 1772 -91 \n",
       "Q 1169 -91 856 284 \n",
       "Q 544 659 544 1381 \n",
       "z\n",
       "M 1991 3584 \n",
       "L 1991 3584 \n",
       "z\n",
       "\" id=\"DejaVuSans-75\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3116 1747 \n",
       "Q 3116 2381 2855 2742 \n",
       "Q 2594 3103 2138 3103 \n",
       "Q 1681 3103 1420 2742 \n",
       "Q 1159 2381 1159 1747 \n",
       "Q 1159 1113 1420 752 \n",
       "Q 1681 391 2138 391 \n",
       "Q 2594 391 2855 752 \n",
       "Q 3116 1113 3116 1747 \n",
       "z\n",
       "M 1159 2969 \n",
       "Q 1341 3281 1617 3432 \n",
       "Q 1894 3584 2278 3584 \n",
       "Q 2916 3584 3314 3078 \n",
       "Q 3713 2572 3713 1747 \n",
       "Q 3713 922 3314 415 \n",
       "Q 2916 -91 2278 -91 \n",
       "Q 1894 -91 1617 61 \n",
       "Q 1341 213 1159 525 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 4863 \n",
       "L 1159 4863 \n",
       "L 1159 2969 \n",
       "z\n",
       "\" id=\"DejaVuSans-62\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-54\"/>\n",
       "      <use x=\"124.560547\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "      <use x=\"203.271484\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"255.371094\" xlink:href=\"#DejaVuSans-75\"/>\n",
       "      <use x=\"318.75\" xlink:href=\"#DejaVuSans-62\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"pc7b833de70\">\n",
       "   <rect height=\"54.36\" width=\"1116\" x=\"10.7\" y=\"34.226925\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 1440x72 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "S2 = ud.Structure('Super Lattice')\n",
    "# define a single double layer\n",
    "DL = ud.Structure('Double Layer')\n",
    "DL.add_sub_structure(SRO, 15)  # add 15 layers of SRO\n",
    "DL.add_sub_structure(STO_sub, 20)  # add 20 layers of STO substrate\n",
    "\n",
    "# add the double layer to the super lattice\n",
    "S2.add_sub_structure(DL, 10)  # add 10 double layers to super lattice\n",
    "S2.add_sub_structure(STO_sub, 500)  # add 500 layers of STO substrate\n",
    "\n",
    "print(S2)\n",
    "\n",
    "S2.visualize()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "There a few more interfaces than before (includes also the top and bottom interface):"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "21\n"
     ]
    }
   ],
   "source": [
    "I2 = S2.get_distances_of_interfaces();\n",
    "print(len(I2))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Static Substrate"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Mainly for X-ray scattering simulations it might be helpful to add a `static` substrate to the structure, which is not included in the `dynamic` simulations of `heat`, `phonons`, and `magnetization`.\n",
    "Hence the simulation time can be kept short while the scattering result include thick substrate contributions."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Structure properties:\n",
      "\n",
      "Name   : Super Lattice\n",
      "Thickness : 332.58 nanometer\n",
      "Roughness : 0.00 nanometer\n",
      "----\n",
      "sub-structure 10 times:\n",
      "\tStructure properties:\n",
      "\n",
      "\tName   : Double Layer\n",
      "\tThickness : 13.73 nanometer\n",
      "\tRoughness : 0.00 nanometer\n",
      "\t----\n",
      "\t15 times Strontium Ruthenate: 5.92 nanometer\n",
      "\t20 times Strontium Titanate Substrate: 7.81 nanometer\n",
      "\t----\n",
      "\tno substrate\n",
      "500 times Strontium Titanate Substrate: 195.25 nanometer\n",
      "----\n",
      "Substrate:\n",
      "----\n",
      "1000000 times Strontium Titanate Substrate: 390500.00 nanometer\n",
      "\n"
     ]
    },
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAABG0AAAB/CAYAAABVPz9EAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjQuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/Z1A+gAAAACXBIWXMAAAsTAAALEwEAmpwYAAAP50lEQVR4nO3de4xmdXkH8O/DLigCxQtIEIhQhValggp4i0obVGpN8FK8xluNmkaMl5Ko1QhUk2KraKu1jbcWK15IwWI0FWyEaKkWEJe73ASVS0VqRaELyO7TP+YsjsPM7uzOvDNnZz+fZDPv+Z3znvf5nTx7dvLdc85b3R0AAAAAxmW75S4AAAAAgPsS2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIzQightqupdVXVZVV1cVWuq6olVdU5VXVlVF1XV+VV18LTtd62qz1TVtcOfz1TVrss4hUU3yzE5e/h5TVXdNrxeU1VPqaodqurDw7G4uqrOqKq9t/Bzj6+qYxd7PgAAALCtWb3QHdy41z69GIXM1143/rimL1fVk5M8N8nju/uuqtotyQ7D6pd39wVV9Zokf53kmcP4p5Jc2t2vHPZxQpJPJjl6MWp80nFnLukx+c4Jz57XMenum6rq8CTHdvdzp23/gSS7JDmgu9cNx+v0qnpidy/pXAAAAIApK+FKmz2T3NrddyVJd9/a3TfN2ObbSfZKkqp6ZJInJHnvtPV/keSQqnrEEtS7FOZzTJIkVfWAJK9J8tbuXjds/49J7kryB1W1U1V9dbhi6dKqevHwvuuHMChVdUhVnTNttwdV1TeGq3ZeN7FZAgAAwAq2EkKbs5LsU1VXVdXHquoZs2xzZJJ/HV4/OsmaDQFFkgyv1yR5zIRrXSrzOSYbPDLJj7r7FzPGL8jU8TgyyU3dfVB3H5jka/P4/Mcm+aMkT07ynqp62OZPAQAAALZtW31o0923Z+rKmdcn+WmSL1bVq4fVp1TVDUnenuQjw1glme2Wn7nGtzqbOCYzbep4XJLkiKp6f1U9rbtvm0cJZ3T32u6+NcnZSQ7b3DkAAADAtm6rD22SqStluvuc7j4uyTFJXjisenmS/ZJ8LsnfDWOXJXlcVd079+H1QUmuWLqqJ2sjx2Sma5I8vKp2mTH++CSXd/dVmQqALknyl1X1nmH9Pfl1/9x/5sdvYhkAAADYhK0+tKmq36mq/acNHZzkhxsWuvtXSd6d5ElV9ajuvibJ94axDd6d5MJh3VZvU8dkuu6+I8nJSU6qqlXD+1+Z5AFJvjHc2vR/3f3ZJB/IVJiTJNdnKsxJ7hsIHVVV96+qhyQ5PMn5C50TAAAAbGu2+tAmyc5JTq6qy6vq4kw9s+b46Rt099okH0yy4auoX5vkgOHrr69NcsAwtlJs8pjM8M4kdya5qqquztS3aD1/+Oao30tyXlWtSfKuJO8b3nNCkr+pqm8lWTdjf+cl+WqS7yR571wPQQYAAADmVgv9Rufl/srvMVrur/wGAAAAtn4LDm0AAAAAWHwr4fYoAAAAgBVHaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghFZvzsa7brdd77FqVVansj6d9ffuZMuWf/jAPZMktd3qpNene/29nzVzbHOXp4/t/b83LqjO+da92PPY5+c336eGpah7ofOYre6FLP94C+ve3HlMou5J9/ZS1T2Jeez38/9etN6eb92LMY+ZdS/02G9J3Vsyr8Wu+4YH77PoPTHbPCZd9yR6eyn+3o9ln+pSl7rUpS51qUtdY9jHVl9XkrW3XHdrd++eGVbPHNiYPVetyscf9JDssWpVbl+/Pnd0J8kWL//J0cclSXbY+cFZd9farPvV2ns/a+bY5i5PH/vwKW9bUJ3zrXux5/GRU991nxqWou6FzmO2uhey/KYXbVndmzuPSdQ96d5eqronMY9TT3vPovX2fOtejHnMrHuhx35L6t6SeS123X/2mg8uek/MNo9J1z2J3l6Kv/dj2ae61KUudalLXepS1xj2sbXXlSQXvP8FP8ws3B4FAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEhDYAAAAAIyS0AQAAABghoQ0AAADACAltAAAAAEZIaAMAAAAwQkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQAAAMAICW0AAAAARkhoAwAAADBCQhsAAACAERLaAAAAAIyQ0AYAAABghIQ2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEJCGwAAAIAREtoAAAAAjJDQBgAAAGCEVm/OxuuTrO31ub23yx3dWdvrk2SLl9fdfWeSZN3da7PuV2vvXZ5tbHOXp48ttM751r3Y85jtWC9F3Qudx2L2yNpev8V1b+48JlH3pHt7qeqexDxu71603p5v3Ysxj5l1L/TYb0ndWzKvxa978Xtitn1Ouu6lmscY9qGu5d+nutSlLnWpS13qUtds22xMdfdGN/iNjat+meTKeb8Bls5uSW5d7iJgDvqTMdOfjJn+ZMz0J2OlN7dOD+/u3WcObtaVNkmu7O5DFqkgWDRVdYHeZKz0J2OmPxkz/cmY6U/GSm+uLJ5pAwAAADBCQhsAAACAEdrc0ObjE6kCFk5vMmb6kzHTn4yZ/mTM9CdjpTdXkM16EDEAAAAAS8PtUQAAAAAjNK/QpqqOrKorq+qaqnrHpIuCTamq66vqkqpaU1UXDGMPrqqvV9XVw88HLXedbBuq6tNVdUtVXTptbM5+rKp3DufTK6vq2ctTNduKOfrz+Kq6cTiHrqmq50xbpz9ZElW1T1WdXVVXVNVlVfXmYdz5k2W3kf50/mTZVdX9q+q8qrpo6M8ThnHnzxVok7dHVdWqJFcleWaSG5Kcn+Sl3X355MuD2VXV9UkO6e5bp439VZKfdfeJQ7j4oO5++3LVyLajqp6e5PYkn+nuA4exWfuxqh6d5PNJDkvysCT/nuSA7l63TOWzws3Rn8cnub27PzBjW/3JkqmqPZPs2d0XVtUuSb6b5HlJXh3nT5bZRvrzRXH+ZJlVVSXZqbtvr6rtk/xHkjcneUGcP1ec+Vxpc1iSa7r7B919d5IvJDlqsmXBFjkqycnD65Mz9Q8rTFx3fzPJz2YMz9WPRyX5Qnff1d3XJbkmU+dZmIg5+nMu+pMl0903d/eFw+tfJrkiyV5x/mQENtKfc9GfLJmecvuwuP3wp+P8uSLNJ7TZK8mPpy3fkI2fsGApdJKzquq7VfX6YWyP7r45mfqHNslDl606mLsfnVMZi2Oq6uLh9qkNl0/rT5ZFVe2b5HFJ/ivOn4zMjP5MnD8ZgapaVVVrktyS5Ovd7fy5Qs0ntKlZxnzlFMvtqd39+CR/mOSNw+X/sDVwTmUM/j7JI5IcnOTmJB8cxvUnS66qdk5yWpK3dPcvNrbpLGP6k4mapT+dPxmF7l7X3Qcn2TvJYVV14EY2159bsfmENjck2Wfa8t5JbppMOTA/3X3T8POWJF/K1OV9PxnuP95wH/Ity1chzNmPzqksu+7+yfDL3vokn8ivL5HWnyyp4VkMpyU5pbtPH4adPxmF2frT+ZOx6e6fJzknyZFx/lyR5hPanJ9k/6rar6p2SPKSJF+ebFkwt6raaXggXKpqpyTPSnJppvryVcNmr0pyxvJUCEnm7scvJ3lJVd2vqvZLsn+S85ahPrZhG36hGzw/U+fQRH+yhIYHaX4qyRXdfdK0Vc6fLLu5+tP5kzGoqt2r6oHD6x2THJHk+3H+XJFWb2qD7r6nqo5JcmaSVUk+3d2XTbwymNseSb409W9pVif5XHd/rarOT3JqVb02yY+SHL2MNbINqarPJzk8yW5VdUOS45KcmFn6sbsvq6pTk1ye5J4kb/TkfiZpjv48vKoOztSl0dcneUOiP1lyT03yiiSXDM9lSJI/j/Mn4zBXf77U+ZMR2DPJycM3PW+X5NTu/kpVfTvOnyvOJr/yGwAAAIClN5/bowAAAABYYkIbAAAAgBES2gAAAACMkNAGAAAAYISENgAAAAAjJLQBAAAAGCGhDQCwaKpqXVWtqarLquqiqnpbVW03rDukqv52I+/dt6petnTV3uez11bVmkXa347Dcbi7qnZbjH0CANue1ctdAACwoqzt7oOTpKoemuRzSXZNclx3X5Dkgo28d98kLxvesxyu3VD7QnX32iQHV9X1i7E/AGDb5EobAGAiuvuWJK9PckxNObyqvpIkVfWM4UqUNVX1varaJcmJSZ42jL11uPrlW1V14fDnKcN7D6+qc6rqX6rq+1V1SlXVsO7QqvrP4Sqf86pql6paVVV/XVXnV9XFVfWGTdU+fPYVVfWJ4aqhs6pqx2HdOVX1oar65rDNoVV1elVdXVXvm9TxBAC2Pa60AQAmprt/MNwe9dAZq45N8sbuPreqdk5yZ5J3JDm2u5+bJFX1gCTP7O47q2r/JJ9Pcsjw/scleUySm5Kcm+SpVXVeki8meXF3n19Vv5VkbZLXJrmtuw+tqvslObeqzuru6zZR/v5JXtrdr6uqU5O8MMlnh3V3d/fTq+rNSc5I8oQkP0tybVV9qLv/ZwsOFwDAbxDaAACTVrOMnZvkpKo6Jcnp3X3DcLHMdNsn+WhVHZxkXZIDpq07r7tvSJLhOTT7Jrktyc3dfX6SdPcvhvXPSvLYqvrj4b27ZiqQ2VRoc113rxlef3f4jA2+PPy8JMll3X3z8Fk/SLJPEqENALBgQhsAYGKq6rczFbjckuRRG8a7+8Sq+mqS5yT5TlUdMcvb35rkJ0kOytQt3XdOW3fXtNfrMvU7TSXp2cpI8qbuPnMzy5/5GTvOsm79jO3Wx+9XAMAi8UwbAGAiqmr3JP+Q5KPd3TPWPaK7L+nu92fq4cS/m+SXSXaZttmumbpyZn2SVyRZtYmP/H6Sh1XVocNn7FJVq5OcmeRPq2r7YfyAqtpp4TMEAJgs/xMEACymHYfblbZPck+Sf05y0izbvaWqfj9TV7BcnuTfMnWVyj1VdVGSf0rysSSnVdXRSc5OcsfGPri7766qFyf5yPDQ4LVJjkjyyUzd2nTh8MDinyZ53oJmCQCwBGrGf3wBAGxzqmrfJF/p7gMXeb/XJzmku29dzP0CANsGt0cBAExd8bPrcJXQglXV9CuO1i/GPgGAbY8rbQAAAABGyJU2AAAAACMktAEAAAAYIaENAAAAwAgJbQAAAABGSGgDAAAAMEL/D6aU1mezp+mxAAAAAElFTkSuQmCC",
      "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",
       "<svg height=\"126.143175pt\" version=\"1.1\" viewBox=\"0 0 1133.9 126.143175\" width=\"1133.9pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-07-15T17:37:02.122095</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.4.1, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 126.143175 \n",
       "L 1133.9 126.143175 \n",
       "L 1133.9 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 10.7 88.586925 \n",
       "L 12.025092 88.586925 \n",
       "L 12.025092 34.226925 \n",
       "L 10.7 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 12.025092 88.586925 \n",
       "L 13.350184 88.586925 \n",
       "L 13.350184 34.226925 \n",
       "L 12.025092 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 13.350184 88.586925 \n",
       "L 14.675275 88.586925 \n",
       "L 14.675275 34.226925 \n",
       "L 13.350184 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 14.675275 88.586925 \n",
       "L 16.000367 88.586925 \n",
       "L 16.000367 34.226925 \n",
       "L 14.675275 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_7\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 16.000367 88.586925 \n",
       "L 17.325459 88.586925 \n",
       "L 17.325459 34.226925 \n",
       "L 16.000367 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_8\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 17.325459 88.586925 \n",
       "L 18.650551 88.586925 \n",
       "L 18.650551 34.226925 \n",
       "L 17.325459 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_9\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 18.650551 88.586925 \n",
       "L 19.975642 88.586925 \n",
       "L 19.975642 34.226925 \n",
       "L 18.650551 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_10\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 19.975642 88.586925 \n",
       "L 21.300734 88.586925 \n",
       "L 21.300734 34.226925 \n",
       "L 19.975642 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_11\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 21.300734 88.586925 \n",
       "L 22.625826 88.586925 \n",
       "L 22.625826 34.226925 \n",
       "L 21.300734 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_12\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 22.625826 88.586925 \n",
       "L 23.950918 88.586925 \n",
       "L 23.950918 34.226925 \n",
       "L 22.625826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_13\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 23.950918 88.586925 \n",
       "L 25.27601 88.586925 \n",
       "L 25.27601 34.226925 \n",
       "L 23.950918 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_14\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 25.27601 88.586925 \n",
       "L 26.601101 88.586925 \n",
       "L 26.601101 34.226925 \n",
       "L 25.27601 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_15\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 26.601101 88.586925 \n",
       "L 27.926193 88.586925 \n",
       "L 27.926193 34.226925 \n",
       "L 26.601101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_16\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 27.926193 88.586925 \n",
       "L 29.251285 88.586925 \n",
       "L 29.251285 34.226925 \n",
       "L 27.926193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_17\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 29.251285 88.586925 \n",
       "L 30.576377 88.586925 \n",
       "L 30.576377 34.226925 \n",
       "L 29.251285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_18\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 30.576377 88.586925 \n",
       "L 31.886714 88.586925 \n",
       "L 31.886714 34.226925 \n",
       "L 30.576377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_19\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 31.886714 88.586925 \n",
       "L 33.197052 88.586925 \n",
       "L 33.197052 34.226925 \n",
       "L 31.886714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_20\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 33.197052 88.586925 \n",
       "L 34.507389 88.586925 \n",
       "L 34.507389 34.226925 \n",
       "L 33.197052 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_21\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 34.507389 88.586925 \n",
       "L 35.817727 88.586925 \n",
       "L 35.817727 34.226925 \n",
       "L 34.507389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_22\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 35.817727 88.586925 \n",
       "L 37.128064 88.586925 \n",
       "L 37.128064 34.226925 \n",
       "L 35.817727 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_23\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 37.128064 88.586925 \n",
       "L 38.438401 88.586925 \n",
       "L 38.438401 34.226925 \n",
       "L 37.128064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_24\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 38.438401 88.586925 \n",
       "L 39.748739 88.586925 \n",
       "L 39.748739 34.226925 \n",
       "L 38.438401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_25\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 39.748739 88.586925 \n",
       "L 41.059076 88.586925 \n",
       "L 41.059076 34.226925 \n",
       "L 39.748739 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_26\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 41.059076 88.586925 \n",
       "L 42.369414 88.586925 \n",
       "L 42.369414 34.226925 \n",
       "L 41.059076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_27\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 42.369414 88.586925 \n",
       "L 43.679751 88.586925 \n",
       "L 43.679751 34.226925 \n",
       "L 42.369414 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_28\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 43.679751 88.586925 \n",
       "L 44.990089 88.586925 \n",
       "L 44.990089 34.226925 \n",
       "L 43.679751 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_29\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 44.990089 88.586925 \n",
       "L 46.300426 88.586925 \n",
       "L 46.300426 34.226925 \n",
       "L 44.990089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_30\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 46.300426 88.586925 \n",
       "L 47.610764 88.586925 \n",
       "L 47.610764 34.226925 \n",
       "L 46.300426 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_31\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 47.610764 88.586925 \n",
       "L 48.921101 88.586925 \n",
       "L 48.921101 34.226925 \n",
       "L 47.610764 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_32\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 48.921101 88.586925 \n",
       "L 50.231439 88.586925 \n",
       "L 50.231439 34.226925 \n",
       "L 48.921101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_33\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 50.231439 88.586925 \n",
       "L 51.541776 88.586925 \n",
       "L 51.541776 34.226925 \n",
       "L 50.231439 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_34\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 51.541776 88.586925 \n",
       "L 52.852114 88.586925 \n",
       "L 52.852114 34.226925 \n",
       "L 51.541776 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_35\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 52.852114 88.586925 \n",
       "L 54.162451 88.586925 \n",
       "L 54.162451 34.226925 \n",
       "L 52.852114 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_36\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 54.162451 88.586925 \n",
       "L 55.472789 88.586925 \n",
       "L 55.472789 34.226925 \n",
       "L 54.162451 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_37\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 55.472789 88.586925 \n",
       "L 56.783126 88.586925 \n",
       "L 56.783126 34.226925 \n",
       "L 55.472789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_38\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 56.783126 88.586925 \n",
       "L 58.108218 88.586925 \n",
       "L 58.108218 34.226925 \n",
       "L 56.783126 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_39\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 58.108218 88.586925 \n",
       "L 59.43331 88.586925 \n",
       "L 59.43331 34.226925 \n",
       "L 58.108218 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_40\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 59.43331 88.586925 \n",
       "L 60.758401 88.586925 \n",
       "L 60.758401 34.226925 \n",
       "L 59.43331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_41\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 60.758401 88.586925 \n",
       "L 62.083493 88.586925 \n",
       "L 62.083493 34.226925 \n",
       "L 60.758401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_42\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 62.083493 88.586925 \n",
       "L 63.408585 88.586925 \n",
       "L 63.408585 34.226925 \n",
       "L 62.083493 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_43\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 63.408585 88.586925 \n",
       "L 64.733677 88.586925 \n",
       "L 64.733677 34.226925 \n",
       "L 63.408585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_44\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 64.733677 88.586925 \n",
       "L 66.058769 88.586925 \n",
       "L 66.058769 34.226925 \n",
       "L 64.733677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_45\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 66.058769 88.586925 \n",
       "L 67.38386 88.586925 \n",
       "L 67.38386 34.226925 \n",
       "L 66.058769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_46\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 67.38386 88.586925 \n",
       "L 68.708952 88.586925 \n",
       "L 68.708952 34.226925 \n",
       "L 67.38386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_47\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 68.708952 88.586925 \n",
       "L 70.034044 88.586925 \n",
       "L 70.034044 34.226925 \n",
       "L 68.708952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_48\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 70.034044 88.586925 \n",
       "L 71.359136 88.586925 \n",
       "L 71.359136 34.226925 \n",
       "L 70.034044 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_49\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 71.359136 88.586925 \n",
       "L 72.684227 88.586925 \n",
       "L 72.684227 34.226925 \n",
       "L 71.359136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_50\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 72.684227 88.586925 \n",
       "L 74.009319 88.586925 \n",
       "L 74.009319 34.226925 \n",
       "L 72.684227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_51\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 74.009319 88.586925 \n",
       "L 75.334411 88.586925 \n",
       "L 75.334411 34.226925 \n",
       "L 74.009319 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_52\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 75.334411 88.586925 \n",
       "L 76.659503 88.586925 \n",
       "L 76.659503 34.226925 \n",
       "L 75.334411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_53\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 76.659503 88.586925 \n",
       "L 77.96984 88.586925 \n",
       "L 77.96984 34.226925 \n",
       "L 76.659503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_54\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 77.96984 88.586925 \n",
       "L 79.280178 88.586925 \n",
       "L 79.280178 34.226925 \n",
       "L 77.96984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_55\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 79.280178 88.586925 \n",
       "L 80.590515 88.586925 \n",
       "L 80.590515 34.226925 \n",
       "L 79.280178 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_56\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 80.590515 88.586925 \n",
       "L 81.900853 88.586925 \n",
       "L 81.900853 34.226925 \n",
       "L 80.590515 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_57\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 81.900853 88.586925 \n",
       "L 83.21119 88.586925 \n",
       "L 83.21119 34.226925 \n",
       "L 81.900853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_58\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 83.21119 88.586925 \n",
       "L 84.521528 88.586925 \n",
       "L 84.521528 34.226925 \n",
       "L 83.21119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_59\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 84.521528 88.586925 \n",
       "L 85.831865 88.586925 \n",
       "L 85.831865 34.226925 \n",
       "L 84.521528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_60\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 85.831865 88.586925 \n",
       "L 87.142203 88.586925 \n",
       "L 87.142203 34.226925 \n",
       "L 85.831865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_61\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 87.142203 88.586925 \n",
       "L 88.45254 88.586925 \n",
       "L 88.45254 34.226925 \n",
       "L 87.142203 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_62\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 88.45254 88.586925 \n",
       "L 89.762878 88.586925 \n",
       "L 89.762878 34.226925 \n",
       "L 88.45254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_63\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 89.762878 88.586925 \n",
       "L 91.073215 88.586925 \n",
       "L 91.073215 34.226925 \n",
       "L 89.762878 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_64\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 91.073215 88.586925 \n",
       "L 92.383553 88.586925 \n",
       "L 92.383553 34.226925 \n",
       "L 91.073215 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_65\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 92.383553 88.586925 \n",
       "L 93.69389 88.586925 \n",
       "L 93.69389 34.226925 \n",
       "L 92.383553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_66\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 93.69389 88.586925 \n",
       "L 95.004227 88.586925 \n",
       "L 95.004227 34.226925 \n",
       "L 93.69389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_67\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 95.004227 88.586925 \n",
       "L 96.314565 88.586925 \n",
       "L 96.314565 34.226925 \n",
       "L 95.004227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_68\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 96.314565 88.586925 \n",
       "L 97.624902 88.586925 \n",
       "L 97.624902 34.226925 \n",
       "L 96.314565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_69\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 97.624902 88.586925 \n",
       "L 98.93524 88.586925 \n",
       "L 98.93524 34.226925 \n",
       "L 97.624902 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_70\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 98.93524 88.586925 \n",
       "L 100.245577 88.586925 \n",
       "L 100.245577 34.226925 \n",
       "L 98.93524 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_71\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 100.245577 88.586925 \n",
       "L 101.555915 88.586925 \n",
       "L 101.555915 34.226925 \n",
       "L 100.245577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_72\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 101.555915 88.586925 \n",
       "L 102.866252 88.586925 \n",
       "L 102.866252 34.226925 \n",
       "L 101.555915 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_73\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 102.866252 88.586925 \n",
       "L 104.191344 88.586925 \n",
       "L 104.191344 34.226925 \n",
       "L 102.866252 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_74\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 104.191344 88.586925 \n",
       "L 105.516436 88.586925 \n",
       "L 105.516436 34.226925 \n",
       "L 104.191344 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_75\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 105.516436 88.586925 \n",
       "L 106.841528 88.586925 \n",
       "L 106.841528 34.226925 \n",
       "L 105.516436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_76\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 106.841528 88.586925 \n",
       "L 108.166619 88.586925 \n",
       "L 108.166619 34.226925 \n",
       "L 106.841528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_77\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 108.166619 88.586925 \n",
       "L 109.491711 88.586925 \n",
       "L 109.491711 34.226925 \n",
       "L 108.166619 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_78\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 109.491711 88.586925 \n",
       "L 110.816803 88.586925 \n",
       "L 110.816803 34.226925 \n",
       "L 109.491711 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_79\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 110.816803 88.586925 \n",
       "L 112.141895 88.586925 \n",
       "L 112.141895 34.226925 \n",
       "L 110.816803 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_80\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 112.141895 88.586925 \n",
       "L 113.466987 88.586925 \n",
       "L 113.466987 34.226925 \n",
       "L 112.141895 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_81\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 113.466987 88.586925 \n",
       "L 114.792078 88.586925 \n",
       "L 114.792078 34.226925 \n",
       "L 113.466987 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_82\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 114.792078 88.586925 \n",
       "L 116.11717 88.586925 \n",
       "L 116.11717 34.226925 \n",
       "L 114.792078 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_83\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 116.11717 88.586925 \n",
       "L 117.442262 88.586925 \n",
       "L 117.442262 34.226925 \n",
       "L 116.11717 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_84\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 117.442262 88.586925 \n",
       "L 118.767354 88.586925 \n",
       "L 118.767354 34.226925 \n",
       "L 117.442262 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_85\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 118.767354 88.586925 \n",
       "L 120.092445 88.586925 \n",
       "L 120.092445 34.226925 \n",
       "L 118.767354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_86\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 120.092445 88.586925 \n",
       "L 121.417537 88.586925 \n",
       "L 121.417537 34.226925 \n",
       "L 120.092445 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_87\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 121.417537 88.586925 \n",
       "L 122.742629 88.586925 \n",
       "L 122.742629 34.226925 \n",
       "L 121.417537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_88\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 122.742629 88.586925 \n",
       "L 124.052966 88.586925 \n",
       "L 124.052966 34.226925 \n",
       "L 122.742629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_89\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 124.052966 88.586925 \n",
       "L 125.363304 88.586925 \n",
       "L 125.363304 34.226925 \n",
       "L 124.052966 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_90\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 125.363304 88.586925 \n",
       "L 126.673641 88.586925 \n",
       "L 126.673641 34.226925 \n",
       "L 125.363304 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_91\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 126.673641 88.586925 \n",
       "L 127.983979 88.586925 \n",
       "L 127.983979 34.226925 \n",
       "L 126.673641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_92\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 127.983979 88.586925 \n",
       "L 129.294316 88.586925 \n",
       "L 129.294316 34.226925 \n",
       "L 127.983979 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_93\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 129.294316 88.586925 \n",
       "L 130.604654 88.586925 \n",
       "L 130.604654 34.226925 \n",
       "L 129.294316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_94\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 130.604654 88.586925 \n",
       "L 131.914991 88.586925 \n",
       "L 131.914991 34.226925 \n",
       "L 130.604654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_95\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 131.914991 88.586925 \n",
       "L 133.225329 88.586925 \n",
       "L 133.225329 34.226925 \n",
       "L 131.914991 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_96\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 133.225329 88.586925 \n",
       "L 134.535666 88.586925 \n",
       "L 134.535666 34.226925 \n",
       "L 133.225329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_97\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 134.535666 88.586925 \n",
       "L 135.846004 88.586925 \n",
       "L 135.846004 34.226925 \n",
       "L 134.535666 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_98\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 135.846004 88.586925 \n",
       "L 137.156341 88.586925 \n",
       "L 137.156341 34.226925 \n",
       "L 135.846004 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_99\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 137.156341 88.586925 \n",
       "L 138.466679 88.586925 \n",
       "L 138.466679 34.226925 \n",
       "L 137.156341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_100\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 138.466679 88.586925 \n",
       "L 139.777016 88.586925 \n",
       "L 139.777016 34.226925 \n",
       "L 138.466679 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_101\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 139.777016 88.586925 \n",
       "L 141.087354 88.586925 \n",
       "L 141.087354 34.226925 \n",
       "L 139.777016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_102\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 141.087354 88.586925 \n",
       "L 142.397691 88.586925 \n",
       "L 142.397691 34.226925 \n",
       "L 141.087354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_103\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 142.397691 88.586925 \n",
       "L 143.708029 88.586925 \n",
       "L 143.708029 34.226925 \n",
       "L 142.397691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_104\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 143.708029 88.586925 \n",
       "L 145.018366 88.586925 \n",
       "L 145.018366 34.226925 \n",
       "L 143.708029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_105\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 145.018366 88.586925 \n",
       "L 146.328704 88.586925 \n",
       "L 146.328704 34.226925 \n",
       "L 145.018366 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_106\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 146.328704 88.586925 \n",
       "L 147.639041 88.586925 \n",
       "L 147.639041 34.226925 \n",
       "L 146.328704 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_107\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 147.639041 88.586925 \n",
       "L 148.949379 88.586925 \n",
       "L 148.949379 34.226925 \n",
       "L 147.639041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_108\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 148.949379 88.586925 \n",
       "L 150.27447 88.586925 \n",
       "L 150.27447 34.226925 \n",
       "L 148.949379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_109\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 150.27447 88.586925 \n",
       "L 151.599562 88.586925 \n",
       "L 151.599562 34.226925 \n",
       "L 150.27447 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_110\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 151.599562 88.586925 \n",
       "L 152.924654 88.586925 \n",
       "L 152.924654 34.226925 \n",
       "L 151.599562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_111\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 152.924654 88.586925 \n",
       "L 154.249746 88.586925 \n",
       "L 154.249746 34.226925 \n",
       "L 152.924654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_112\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 154.249746 88.586925 \n",
       "L 155.574837 88.586925 \n",
       "L 155.574837 34.226925 \n",
       "L 154.249746 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_113\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 155.574837 88.586925 \n",
       "L 156.899929 88.586925 \n",
       "L 156.899929 34.226925 \n",
       "L 155.574837 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_114\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 156.899929 88.586925 \n",
       "L 158.225021 88.586925 \n",
       "L 158.225021 34.226925 \n",
       "L 156.899929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_115\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 158.225021 88.586925 \n",
       "L 159.550113 88.586925 \n",
       "L 159.550113 34.226925 \n",
       "L 158.225021 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_116\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 159.550113 88.586925 \n",
       "L 160.875204 88.586925 \n",
       "L 160.875204 34.226925 \n",
       "L 159.550113 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_117\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 160.875204 88.586925 \n",
       "L 162.200296 88.586925 \n",
       "L 162.200296 34.226925 \n",
       "L 160.875204 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_118\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 162.200296 88.586925 \n",
       "L 163.525388 88.586925 \n",
       "L 163.525388 34.226925 \n",
       "L 162.200296 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_119\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 163.525388 88.586925 \n",
       "L 164.85048 88.586925 \n",
       "L 164.85048 34.226925 \n",
       "L 163.525388 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_120\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 164.85048 88.586925 \n",
       "L 166.175572 88.586925 \n",
       "L 166.175572 34.226925 \n",
       "L 164.85048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_121\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 166.175572 88.586925 \n",
       "L 167.500663 88.586925 \n",
       "L 167.500663 34.226925 \n",
       "L 166.175572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_122\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 167.500663 88.586925 \n",
       "L 168.825755 88.586925 \n",
       "L 168.825755 34.226925 \n",
       "L 167.500663 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_123\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 168.825755 88.586925 \n",
       "L 170.136093 88.586925 \n",
       "L 170.136093 34.226925 \n",
       "L 168.825755 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_124\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 170.136093 88.586925 \n",
       "L 171.44643 88.586925 \n",
       "L 171.44643 34.226925 \n",
       "L 170.136093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_125\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 171.44643 88.586925 \n",
       "L 172.756768 88.586925 \n",
       "L 172.756768 34.226925 \n",
       "L 171.44643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_126\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 172.756768 88.586925 \n",
       "L 174.067105 88.586925 \n",
       "L 174.067105 34.226925 \n",
       "L 172.756768 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_127\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 174.067105 88.586925 \n",
       "L 175.377443 88.586925 \n",
       "L 175.377443 34.226925 \n",
       "L 174.067105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_128\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 175.377443 88.586925 \n",
       "L 176.68778 88.586925 \n",
       "L 176.68778 34.226925 \n",
       "L 175.377443 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_129\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 176.68778 88.586925 \n",
       "L 177.998117 88.586925 \n",
       "L 177.998117 34.226925 \n",
       "L 176.68778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_130\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 177.998117 88.586925 \n",
       "L 179.308455 88.586925 \n",
       "L 179.308455 34.226925 \n",
       "L 177.998117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_131\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 179.308455 88.586925 \n",
       "L 180.618792 88.586925 \n",
       "L 180.618792 34.226925 \n",
       "L 179.308455 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_132\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 180.618792 88.586925 \n",
       "L 181.92913 88.586925 \n",
       "L 181.92913 34.226925 \n",
       "L 180.618792 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_133\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 181.92913 88.586925 \n",
       "L 183.239467 88.586925 \n",
       "L 183.239467 34.226925 \n",
       "L 181.92913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_134\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 183.239467 88.586925 \n",
       "L 184.549805 88.586925 \n",
       "L 184.549805 34.226925 \n",
       "L 183.239467 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_135\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 184.549805 88.586925 \n",
       "L 185.860142 88.586925 \n",
       "L 185.860142 34.226925 \n",
       "L 184.549805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_136\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 185.860142 88.586925 \n",
       "L 187.17048 88.586925 \n",
       "L 187.17048 34.226925 \n",
       "L 185.860142 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_137\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 187.17048 88.586925 \n",
       "L 188.480817 88.586925 \n",
       "L 188.480817 34.226925 \n",
       "L 187.17048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_138\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 188.480817 88.586925 \n",
       "L 189.791155 88.586925 \n",
       "L 189.791155 34.226925 \n",
       "L 188.480817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_139\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 189.791155 88.586925 \n",
       "L 191.101492 88.586925 \n",
       "L 191.101492 34.226925 \n",
       "L 189.791155 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_140\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 191.101492 88.586925 \n",
       "L 192.41183 88.586925 \n",
       "L 192.41183 34.226925 \n",
       "L 191.101492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_141\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 192.41183 88.586925 \n",
       "L 193.722167 88.586925 \n",
       "L 193.722167 34.226925 \n",
       "L 192.41183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_142\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 193.722167 88.586925 \n",
       "L 195.032505 88.586925 \n",
       "L 195.032505 34.226925 \n",
       "L 193.722167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_143\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 195.032505 88.586925 \n",
       "L 196.357596 88.586925 \n",
       "L 196.357596 34.226925 \n",
       "L 195.032505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_144\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 196.357596 88.586925 \n",
       "L 197.682688 88.586925 \n",
       "L 197.682688 34.226925 \n",
       "L 196.357596 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_145\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 197.682688 88.586925 \n",
       "L 199.00778 88.586925 \n",
       "L 199.00778 34.226925 \n",
       "L 197.682688 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_146\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 199.00778 88.586925 \n",
       "L 200.332872 88.586925 \n",
       "L 200.332872 34.226925 \n",
       "L 199.00778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_147\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 200.332872 88.586925 \n",
       "L 201.657964 88.586925 \n",
       "L 201.657964 34.226925 \n",
       "L 200.332872 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_148\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 201.657964 88.586925 \n",
       "L 202.983055 88.586925 \n",
       "L 202.983055 34.226925 \n",
       "L 201.657964 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_149\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 202.983055 88.586925 \n",
       "L 204.308147 88.586925 \n",
       "L 204.308147 34.226925 \n",
       "L 202.983055 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_150\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 204.308147 88.586925 \n",
       "L 205.633239 88.586925 \n",
       "L 205.633239 34.226925 \n",
       "L 204.308147 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_151\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 205.633239 88.586925 \n",
       "L 206.958331 88.586925 \n",
       "L 206.958331 34.226925 \n",
       "L 205.633239 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_152\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 206.958331 88.586925 \n",
       "L 208.283422 88.586925 \n",
       "L 208.283422 34.226925 \n",
       "L 206.958331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_153\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 208.283422 88.586925 \n",
       "L 209.608514 88.586925 \n",
       "L 209.608514 34.226925 \n",
       "L 208.283422 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_154\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 209.608514 88.586925 \n",
       "L 210.933606 88.586925 \n",
       "L 210.933606 34.226925 \n",
       "L 209.608514 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_155\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 210.933606 88.586925 \n",
       "L 212.258698 88.586925 \n",
       "L 212.258698 34.226925 \n",
       "L 210.933606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_156\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 212.258698 88.586925 \n",
       "L 213.58379 88.586925 \n",
       "L 213.58379 34.226925 \n",
       "L 212.258698 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_157\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 213.58379 88.586925 \n",
       "L 214.908881 88.586925 \n",
       "L 214.908881 34.226925 \n",
       "L 213.58379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_158\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 214.908881 88.586925 \n",
       "L 216.219219 88.586925 \n",
       "L 216.219219 34.226925 \n",
       "L 214.908881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_159\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 216.219219 88.586925 \n",
       "L 217.529556 88.586925 \n",
       "L 217.529556 34.226925 \n",
       "L 216.219219 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_160\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 217.529556 88.586925 \n",
       "L 218.839894 88.586925 \n",
       "L 218.839894 34.226925 \n",
       "L 217.529556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_161\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 218.839894 88.586925 \n",
       "L 220.150231 88.586925 \n",
       "L 220.150231 34.226925 \n",
       "L 218.839894 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_162\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 220.150231 88.586925 \n",
       "L 221.460569 88.586925 \n",
       "L 221.460569 34.226925 \n",
       "L 220.150231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_163\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 221.460569 88.586925 \n",
       "L 222.770906 88.586925 \n",
       "L 222.770906 34.226925 \n",
       "L 221.460569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_164\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 222.770906 88.586925 \n",
       "L 224.081244 88.586925 \n",
       "L 224.081244 34.226925 \n",
       "L 222.770906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_165\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 224.081244 88.586925 \n",
       "L 225.391581 88.586925 \n",
       "L 225.391581 34.226925 \n",
       "L 224.081244 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_166\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 225.391581 88.586925 \n",
       "L 226.701919 88.586925 \n",
       "L 226.701919 34.226925 \n",
       "L 225.391581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_167\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 226.701919 88.586925 \n",
       "L 228.012256 88.586925 \n",
       "L 228.012256 34.226925 \n",
       "L 226.701919 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_168\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 228.012256 88.586925 \n",
       "L 229.322594 88.586925 \n",
       "L 229.322594 34.226925 \n",
       "L 228.012256 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_169\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 229.322594 88.586925 \n",
       "L 230.632931 88.586925 \n",
       "L 230.632931 34.226925 \n",
       "L 229.322594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_170\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 230.632931 88.586925 \n",
       "L 231.943269 88.586925 \n",
       "L 231.943269 34.226925 \n",
       "L 230.632931 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_171\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 231.943269 88.586925 \n",
       "L 233.253606 88.586925 \n",
       "L 233.253606 34.226925 \n",
       "L 231.943269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_172\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 233.253606 88.586925 \n",
       "L 234.563943 88.586925 \n",
       "L 234.563943 34.226925 \n",
       "L 233.253606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_173\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 234.563943 88.586925 \n",
       "L 235.874281 88.586925 \n",
       "L 235.874281 34.226925 \n",
       "L 234.563943 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_174\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 235.874281 88.586925 \n",
       "L 237.184618 88.586925 \n",
       "L 237.184618 34.226925 \n",
       "L 235.874281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_175\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 237.184618 88.586925 \n",
       "L 238.494956 88.586925 \n",
       "L 238.494956 34.226925 \n",
       "L 237.184618 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_176\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 238.494956 88.586925 \n",
       "L 239.805293 88.586925 \n",
       "L 239.805293 34.226925 \n",
       "L 238.494956 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_177\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 239.805293 88.586925 \n",
       "L 241.115631 88.586925 \n",
       "L 241.115631 34.226925 \n",
       "L 239.805293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_178\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 241.115631 88.586925 \n",
       "L 242.440723 88.586925 \n",
       "L 242.440723 34.226925 \n",
       "L 241.115631 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_179\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 242.440723 88.586925 \n",
       "L 243.765814 88.586925 \n",
       "L 243.765814 34.226925 \n",
       "L 242.440723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_180\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 243.765814 88.586925 \n",
       "L 245.090906 88.586925 \n",
       "L 245.090906 34.226925 \n",
       "L 243.765814 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_181\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 245.090906 88.586925 \n",
       "L 246.415998 88.586925 \n",
       "L 246.415998 34.226925 \n",
       "L 245.090906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_182\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 246.415998 88.586925 \n",
       "L 247.74109 88.586925 \n",
       "L 247.74109 34.226925 \n",
       "L 246.415998 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_183\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 247.74109 88.586925 \n",
       "L 249.066182 88.586925 \n",
       "L 249.066182 34.226925 \n",
       "L 247.74109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_184\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 249.066182 88.586925 \n",
       "L 250.391273 88.586925 \n",
       "L 250.391273 34.226925 \n",
       "L 249.066182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_185\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 250.391273 88.586925 \n",
       "L 251.716365 88.586925 \n",
       "L 251.716365 34.226925 \n",
       "L 250.391273 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_186\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 251.716365 88.586925 \n",
       "L 253.041457 88.586925 \n",
       "L 253.041457 34.226925 \n",
       "L 251.716365 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_187\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 253.041457 88.586925 \n",
       "L 254.366549 88.586925 \n",
       "L 254.366549 34.226925 \n",
       "L 253.041457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_188\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 254.366549 88.586925 \n",
       "L 255.69164 88.586925 \n",
       "L 255.69164 34.226925 \n",
       "L 254.366549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_189\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 255.69164 88.586925 \n",
       "L 257.016732 88.586925 \n",
       "L 257.016732 34.226925 \n",
       "L 255.69164 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_190\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 257.016732 88.586925 \n",
       "L 258.341824 88.586925 \n",
       "L 258.341824 34.226925 \n",
       "L 257.016732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_191\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 258.341824 88.586925 \n",
       "L 259.666916 88.586925 \n",
       "L 259.666916 34.226925 \n",
       "L 258.341824 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_192\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 259.666916 88.586925 \n",
       "L 260.992007 88.586925 \n",
       "L 260.992007 34.226925 \n",
       "L 259.666916 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_193\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 260.992007 88.586925 \n",
       "L 262.302345 88.586925 \n",
       "L 262.302345 34.226925 \n",
       "L 260.992007 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_194\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 262.302345 88.586925 \n",
       "L 263.612682 88.586925 \n",
       "L 263.612682 34.226925 \n",
       "L 262.302345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_195\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 263.612682 88.586925 \n",
       "L 264.92302 88.586925 \n",
       "L 264.92302 34.226925 \n",
       "L 263.612682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_196\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 264.92302 88.586925 \n",
       "L 266.233357 88.586925 \n",
       "L 266.233357 34.226925 \n",
       "L 264.92302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_197\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 266.233357 88.586925 \n",
       "L 267.543695 88.586925 \n",
       "L 267.543695 34.226925 \n",
       "L 266.233357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_198\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 267.543695 88.586925 \n",
       "L 268.854032 88.586925 \n",
       "L 268.854032 34.226925 \n",
       "L 267.543695 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_199\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 268.854032 88.586925 \n",
       "L 270.16437 88.586925 \n",
       "L 270.16437 34.226925 \n",
       "L 268.854032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_200\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 270.16437 88.586925 \n",
       "L 271.474707 88.586925 \n",
       "L 271.474707 34.226925 \n",
       "L 270.16437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_201\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 271.474707 88.586925 \n",
       "L 272.785045 88.586925 \n",
       "L 272.785045 34.226925 \n",
       "L 271.474707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_202\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 272.785045 88.586925 \n",
       "L 274.095382 88.586925 \n",
       "L 274.095382 34.226925 \n",
       "L 272.785045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_203\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 274.095382 88.586925 \n",
       "L 275.40572 88.586925 \n",
       "L 275.40572 34.226925 \n",
       "L 274.095382 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_204\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 275.40572 88.586925 \n",
       "L 276.716057 88.586925 \n",
       "L 276.716057 34.226925 \n",
       "L 275.40572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_205\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 276.716057 88.586925 \n",
       "L 278.026395 88.586925 \n",
       "L 278.026395 34.226925 \n",
       "L 276.716057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_206\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 278.026395 88.586925 \n",
       "L 279.336732 88.586925 \n",
       "L 279.336732 34.226925 \n",
       "L 278.026395 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_207\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 279.336732 88.586925 \n",
       "L 280.64707 88.586925 \n",
       "L 280.64707 34.226925 \n",
       "L 279.336732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_208\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 280.64707 88.586925 \n",
       "L 281.957407 88.586925 \n",
       "L 281.957407 34.226925 \n",
       "L 280.64707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_209\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 281.957407 88.586925 \n",
       "L 283.267745 88.586925 \n",
       "L 283.267745 34.226925 \n",
       "L 281.957407 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_210\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 283.267745 88.586925 \n",
       "L 284.578082 88.586925 \n",
       "L 284.578082 34.226925 \n",
       "L 283.267745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_211\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 284.578082 88.586925 \n",
       "L 285.88842 88.586925 \n",
       "L 285.88842 34.226925 \n",
       "L 284.578082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_212\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 285.88842 88.586925 \n",
       "L 287.198757 88.586925 \n",
       "L 287.198757 34.226925 \n",
       "L 285.88842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_213\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 287.198757 88.586925 \n",
       "L 288.523849 88.586925 \n",
       "L 288.523849 34.226925 \n",
       "L 287.198757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_214\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 288.523849 88.586925 \n",
       "L 289.848941 88.586925 \n",
       "L 289.848941 34.226925 \n",
       "L 288.523849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_215\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 289.848941 88.586925 \n",
       "L 291.174032 88.586925 \n",
       "L 291.174032 34.226925 \n",
       "L 289.848941 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_216\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 291.174032 88.586925 \n",
       "L 292.499124 88.586925 \n",
       "L 292.499124 34.226925 \n",
       "L 291.174032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_217\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 292.499124 88.586925 \n",
       "L 293.824216 88.586925 \n",
       "L 293.824216 34.226925 \n",
       "L 292.499124 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_218\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 293.824216 88.586925 \n",
       "L 295.149308 88.586925 \n",
       "L 295.149308 34.226925 \n",
       "L 293.824216 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_219\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 295.149308 88.586925 \n",
       "L 296.474399 88.586925 \n",
       "L 296.474399 34.226925 \n",
       "L 295.149308 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_220\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 296.474399 88.586925 \n",
       "L 297.799491 88.586925 \n",
       "L 297.799491 34.226925 \n",
       "L 296.474399 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_221\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 297.799491 88.586925 \n",
       "L 299.124583 88.586925 \n",
       "L 299.124583 34.226925 \n",
       "L 297.799491 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_222\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 299.124583 88.586925 \n",
       "L 300.449675 88.586925 \n",
       "L 300.449675 34.226925 \n",
       "L 299.124583 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_223\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 300.449675 88.586925 \n",
       "L 301.774767 88.586925 \n",
       "L 301.774767 34.226925 \n",
       "L 300.449675 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_224\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 301.774767 88.586925 \n",
       "L 303.099858 88.586925 \n",
       "L 303.099858 34.226925 \n",
       "L 301.774767 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_225\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 303.099858 88.586925 \n",
       "L 304.42495 88.586925 \n",
       "L 304.42495 34.226925 \n",
       "L 303.099858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_226\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 304.42495 88.586925 \n",
       "L 305.750042 88.586925 \n",
       "L 305.750042 34.226925 \n",
       "L 304.42495 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_227\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 305.750042 88.586925 \n",
       "L 307.075134 88.586925 \n",
       "L 307.075134 34.226925 \n",
       "L 305.750042 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_228\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 307.075134 88.586925 \n",
       "L 308.385471 88.586925 \n",
       "L 308.385471 34.226925 \n",
       "L 307.075134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_229\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 308.385471 88.586925 \n",
       "L 309.695809 88.586925 \n",
       "L 309.695809 34.226925 \n",
       "L 308.385471 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_230\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 309.695809 88.586925 \n",
       "L 311.006146 88.586925 \n",
       "L 311.006146 34.226925 \n",
       "L 309.695809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_231\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 311.006146 88.586925 \n",
       "L 312.316484 88.586925 \n",
       "L 312.316484 34.226925 \n",
       "L 311.006146 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_232\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 312.316484 88.586925 \n",
       "L 313.626821 88.586925 \n",
       "L 313.626821 34.226925 \n",
       "L 312.316484 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_233\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 313.626821 88.586925 \n",
       "L 314.937159 88.586925 \n",
       "L 314.937159 34.226925 \n",
       "L 313.626821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_234\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 314.937159 88.586925 \n",
       "L 316.247496 88.586925 \n",
       "L 316.247496 34.226925 \n",
       "L 314.937159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_235\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 316.247496 88.586925 \n",
       "L 317.557833 88.586925 \n",
       "L 317.557833 34.226925 \n",
       "L 316.247496 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_236\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 317.557833 88.586925 \n",
       "L 318.868171 88.586925 \n",
       "L 318.868171 34.226925 \n",
       "L 317.557833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_237\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 318.868171 88.586925 \n",
       "L 320.178508 88.586925 \n",
       "L 320.178508 34.226925 \n",
       "L 318.868171 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_238\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 320.178508 88.586925 \n",
       "L 321.488846 88.586925 \n",
       "L 321.488846 34.226925 \n",
       "L 320.178508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_239\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 321.488846 88.586925 \n",
       "L 322.799183 88.586925 \n",
       "L 322.799183 34.226925 \n",
       "L 321.488846 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_240\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 322.799183 88.586925 \n",
       "L 324.109521 88.586925 \n",
       "L 324.109521 34.226925 \n",
       "L 322.799183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_241\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 324.109521 88.586925 \n",
       "L 325.419858 88.586925 \n",
       "L 325.419858 34.226925 \n",
       "L 324.109521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_242\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 325.419858 88.586925 \n",
       "L 326.730196 88.586925 \n",
       "L 326.730196 34.226925 \n",
       "L 325.419858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_243\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 326.730196 88.586925 \n",
       "L 328.040533 88.586925 \n",
       "L 328.040533 34.226925 \n",
       "L 326.730196 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_244\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 328.040533 88.586925 \n",
       "L 329.350871 88.586925 \n",
       "L 329.350871 34.226925 \n",
       "L 328.040533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_245\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 329.350871 88.586925 \n",
       "L 330.661208 88.586925 \n",
       "L 330.661208 34.226925 \n",
       "L 329.350871 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_246\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 330.661208 88.586925 \n",
       "L 331.971546 88.586925 \n",
       "L 331.971546 34.226925 \n",
       "L 330.661208 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_247\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 331.971546 88.586925 \n",
       "L 333.281883 88.586925 \n",
       "L 333.281883 34.226925 \n",
       "L 331.971546 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_248\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 333.281883 88.586925 \n",
       "L 334.606975 88.586925 \n",
       "L 334.606975 34.226925 \n",
       "L 333.281883 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_249\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 334.606975 88.586925 \n",
       "L 335.932067 88.586925 \n",
       "L 335.932067 34.226925 \n",
       "L 334.606975 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_250\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 335.932067 88.586925 \n",
       "L 337.257159 88.586925 \n",
       "L 337.257159 34.226925 \n",
       "L 335.932067 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_251\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 337.257159 88.586925 \n",
       "L 338.58225 88.586925 \n",
       "L 338.58225 34.226925 \n",
       "L 337.257159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_252\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 338.58225 88.586925 \n",
       "L 339.907342 88.586925 \n",
       "L 339.907342 34.226925 \n",
       "L 338.58225 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_253\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 339.907342 88.586925 \n",
       "L 341.232434 88.586925 \n",
       "L 341.232434 34.226925 \n",
       "L 339.907342 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_254\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 341.232434 88.586925 \n",
       "L 342.557526 88.586925 \n",
       "L 342.557526 34.226925 \n",
       "L 341.232434 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_255\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 342.557526 88.586925 \n",
       "L 343.882617 88.586925 \n",
       "L 343.882617 34.226925 \n",
       "L 342.557526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_256\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 343.882617 88.586925 \n",
       "L 345.207709 88.586925 \n",
       "L 345.207709 34.226925 \n",
       "L 343.882617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_257\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 345.207709 88.586925 \n",
       "L 346.532801 88.586925 \n",
       "L 346.532801 34.226925 \n",
       "L 345.207709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_258\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 346.532801 88.586925 \n",
       "L 347.857893 88.586925 \n",
       "L 347.857893 34.226925 \n",
       "L 346.532801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_259\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 347.857893 88.586925 \n",
       "L 349.182985 88.586925 \n",
       "L 349.182985 34.226925 \n",
       "L 347.857893 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_260\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 349.182985 88.586925 \n",
       "L 350.508076 88.586925 \n",
       "L 350.508076 34.226925 \n",
       "L 349.182985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_261\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 350.508076 88.586925 \n",
       "L 351.833168 88.586925 \n",
       "L 351.833168 34.226925 \n",
       "L 350.508076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_262\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 351.833168 88.586925 \n",
       "L 353.15826 88.586925 \n",
       "L 353.15826 34.226925 \n",
       "L 351.833168 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_263\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 353.15826 88.586925 \n",
       "L 354.468597 88.586925 \n",
       "L 354.468597 34.226925 \n",
       "L 353.15826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_264\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 354.468597 88.586925 \n",
       "L 355.778935 88.586925 \n",
       "L 355.778935 34.226925 \n",
       "L 354.468597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_265\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 355.778935 88.586925 \n",
       "L 357.089272 88.586925 \n",
       "L 357.089272 34.226925 \n",
       "L 355.778935 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_266\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 357.089272 88.586925 \n",
       "L 358.39961 88.586925 \n",
       "L 358.39961 34.226925 \n",
       "L 357.089272 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_267\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 358.39961 88.586925 \n",
       "L 359.709947 88.586925 \n",
       "L 359.709947 34.226925 \n",
       "L 358.39961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_268\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 359.709947 88.586925 \n",
       "L 361.020285 88.586925 \n",
       "L 361.020285 34.226925 \n",
       "L 359.709947 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_269\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 361.020285 88.586925 \n",
       "L 362.330622 88.586925 \n",
       "L 362.330622 34.226925 \n",
       "L 361.020285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_270\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 362.330622 88.586925 \n",
       "L 363.64096 88.586925 \n",
       "L 363.64096 34.226925 \n",
       "L 362.330622 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_271\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 363.64096 88.586925 \n",
       "L 364.951297 88.586925 \n",
       "L 364.951297 34.226925 \n",
       "L 363.64096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_272\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 364.951297 88.586925 \n",
       "L 366.261635 88.586925 \n",
       "L 366.261635 34.226925 \n",
       "L 364.951297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_273\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 366.261635 88.586925 \n",
       "L 367.571972 88.586925 \n",
       "L 367.571972 34.226925 \n",
       "L 366.261635 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_274\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 367.571972 88.586925 \n",
       "L 368.88231 88.586925 \n",
       "L 368.88231 34.226925 \n",
       "L 367.571972 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_275\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 368.88231 88.586925 \n",
       "L 370.192647 88.586925 \n",
       "L 370.192647 34.226925 \n",
       "L 368.88231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_276\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 370.192647 88.586925 \n",
       "L 371.502985 88.586925 \n",
       "L 371.502985 34.226925 \n",
       "L 370.192647 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_277\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 371.502985 88.586925 \n",
       "L 372.813322 88.586925 \n",
       "L 372.813322 34.226925 \n",
       "L 371.502985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_278\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 372.813322 88.586925 \n",
       "L 374.123659 88.586925 \n",
       "L 374.123659 34.226925 \n",
       "L 372.813322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_279\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 374.123659 88.586925 \n",
       "L 375.433997 88.586925 \n",
       "L 375.433997 34.226925 \n",
       "L 374.123659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_280\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 375.433997 88.586925 \n",
       "L 376.744334 88.586925 \n",
       "L 376.744334 34.226925 \n",
       "L 375.433997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_281\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 376.744334 88.586925 \n",
       "L 378.054672 88.586925 \n",
       "L 378.054672 34.226925 \n",
       "L 376.744334 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_282\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 378.054672 88.586925 \n",
       "L 379.365009 88.586925 \n",
       "L 379.365009 34.226925 \n",
       "L 378.054672 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_283\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 379.365009 88.586925 \n",
       "L 380.690101 88.586925 \n",
       "L 380.690101 34.226925 \n",
       "L 379.365009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_284\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 380.690101 88.586925 \n",
       "L 382.015193 88.586925 \n",
       "L 382.015193 34.226925 \n",
       "L 380.690101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_285\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 382.015193 88.586925 \n",
       "L 383.340285 88.586925 \n",
       "L 383.340285 34.226925 \n",
       "L 382.015193 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_286\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 383.340285 88.586925 \n",
       "L 384.665376 88.586925 \n",
       "L 384.665376 34.226925 \n",
       "L 383.340285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_287\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 384.665376 88.586925 \n",
       "L 385.990468 88.586925 \n",
       "L 385.990468 34.226925 \n",
       "L 384.665376 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_288\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 385.990468 88.586925 \n",
       "L 387.31556 88.586925 \n",
       "L 387.31556 34.226925 \n",
       "L 385.990468 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_289\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 387.31556 88.586925 \n",
       "L 388.640652 88.586925 \n",
       "L 388.640652 34.226925 \n",
       "L 387.31556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_290\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 388.640652 88.586925 \n",
       "L 389.965744 88.586925 \n",
       "L 389.965744 34.226925 \n",
       "L 388.640652 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_291\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 389.965744 88.586925 \n",
       "L 391.290835 88.586925 \n",
       "L 391.290835 34.226925 \n",
       "L 389.965744 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_292\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 391.290835 88.586925 \n",
       "L 392.615927 88.586925 \n",
       "L 392.615927 34.226925 \n",
       "L 391.290835 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_293\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 392.615927 88.586925 \n",
       "L 393.941019 88.586925 \n",
       "L 393.941019 34.226925 \n",
       "L 392.615927 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_294\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 393.941019 88.586925 \n",
       "L 395.266111 88.586925 \n",
       "L 395.266111 34.226925 \n",
       "L 393.941019 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_295\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 395.266111 88.586925 \n",
       "L 396.591202 88.586925 \n",
       "L 396.591202 34.226925 \n",
       "L 395.266111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_296\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 396.591202 88.586925 \n",
       "L 397.916294 88.586925 \n",
       "L 397.916294 34.226925 \n",
       "L 396.591202 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_297\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 397.916294 88.586925 \n",
       "L 399.241386 88.586925 \n",
       "L 399.241386 34.226925 \n",
       "L 397.916294 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_298\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 399.241386 88.586925 \n",
       "L 400.551723 88.586925 \n",
       "L 400.551723 34.226925 \n",
       "L 399.241386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_299\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 400.551723 88.586925 \n",
       "L 401.862061 88.586925 \n",
       "L 401.862061 34.226925 \n",
       "L 400.551723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_300\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 401.862061 88.586925 \n",
       "L 403.172398 88.586925 \n",
       "L 403.172398 34.226925 \n",
       "L 401.862061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_301\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 403.172398 88.586925 \n",
       "L 404.482736 88.586925 \n",
       "L 404.482736 34.226925 \n",
       "L 403.172398 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_302\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 404.482736 88.586925 \n",
       "L 405.793073 88.586925 \n",
       "L 405.793073 34.226925 \n",
       "L 404.482736 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_303\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 405.793073 88.586925 \n",
       "L 407.103411 88.586925 \n",
       "L 407.103411 34.226925 \n",
       "L 405.793073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_304\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 407.103411 88.586925 \n",
       "L 408.413748 88.586925 \n",
       "L 408.413748 34.226925 \n",
       "L 407.103411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_305\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 408.413748 88.586925 \n",
       "L 409.724086 88.586925 \n",
       "L 409.724086 34.226925 \n",
       "L 408.413748 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_306\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 409.724086 88.586925 \n",
       "L 411.034423 88.586925 \n",
       "L 411.034423 34.226925 \n",
       "L 409.724086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_307\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 411.034423 88.586925 \n",
       "L 412.344761 88.586925 \n",
       "L 412.344761 34.226925 \n",
       "L 411.034423 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_308\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 412.344761 88.586925 \n",
       "L 413.655098 88.586925 \n",
       "L 413.655098 34.226925 \n",
       "L 412.344761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_309\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 413.655098 88.586925 \n",
       "L 414.965436 88.586925 \n",
       "L 414.965436 34.226925 \n",
       "L 413.655098 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_310\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 414.965436 88.586925 \n",
       "L 416.275773 88.586925 \n",
       "L 416.275773 34.226925 \n",
       "L 414.965436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_311\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 416.275773 88.586925 \n",
       "L 417.586111 88.586925 \n",
       "L 417.586111 34.226925 \n",
       "L 416.275773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_312\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 417.586111 88.586925 \n",
       "L 418.896448 88.586925 \n",
       "L 418.896448 34.226925 \n",
       "L 417.586111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_313\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 418.896448 88.586925 \n",
       "L 420.206786 88.586925 \n",
       "L 420.206786 34.226925 \n",
       "L 418.896448 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_314\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 420.206786 88.586925 \n",
       "L 421.517123 88.586925 \n",
       "L 421.517123 34.226925 \n",
       "L 420.206786 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_315\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 421.517123 88.586925 \n",
       "L 422.827461 88.586925 \n",
       "L 422.827461 34.226925 \n",
       "L 421.517123 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_316\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 422.827461 88.586925 \n",
       "L 424.137798 88.586925 \n",
       "L 424.137798 34.226925 \n",
       "L 422.827461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_317\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 424.137798 88.586925 \n",
       "L 425.448136 88.586925 \n",
       "L 425.448136 34.226925 \n",
       "L 424.137798 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_318\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 425.448136 88.586925 \n",
       "L 426.773227 88.586925 \n",
       "L 426.773227 34.226925 \n",
       "L 425.448136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_319\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 426.773227 88.586925 \n",
       "L 428.098319 88.586925 \n",
       "L 428.098319 34.226925 \n",
       "L 426.773227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_320\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 428.098319 88.586925 \n",
       "L 429.423411 88.586925 \n",
       "L 429.423411 34.226925 \n",
       "L 428.098319 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_321\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 429.423411 88.586925 \n",
       "L 430.748503 88.586925 \n",
       "L 430.748503 34.226925 \n",
       "L 429.423411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_322\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 430.748503 88.586925 \n",
       "L 432.073594 88.586925 \n",
       "L 432.073594 34.226925 \n",
       "L 430.748503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_323\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 432.073594 88.586925 \n",
       "L 433.398686 88.586925 \n",
       "L 433.398686 34.226925 \n",
       "L 432.073594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_324\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 433.398686 88.586925 \n",
       "L 434.723778 88.586925 \n",
       "L 434.723778 34.226925 \n",
       "L 433.398686 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_325\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 434.723778 88.586925 \n",
       "L 436.04887 88.586925 \n",
       "L 436.04887 34.226925 \n",
       "L 434.723778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_326\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 436.04887 88.586925 \n",
       "L 437.373962 88.586925 \n",
       "L 437.373962 34.226925 \n",
       "L 436.04887 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_327\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 437.373962 88.586925 \n",
       "L 438.699053 88.586925 \n",
       "L 438.699053 34.226925 \n",
       "L 437.373962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_328\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 438.699053 88.586925 \n",
       "L 440.024145 88.586925 \n",
       "L 440.024145 34.226925 \n",
       "L 438.699053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_329\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 440.024145 88.586925 \n",
       "L 441.349237 88.586925 \n",
       "L 441.349237 34.226925 \n",
       "L 440.024145 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_330\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 441.349237 88.586925 \n",
       "L 442.674329 88.586925 \n",
       "L 442.674329 34.226925 \n",
       "L 441.349237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_331\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 442.674329 88.586925 \n",
       "L 443.99942 88.586925 \n",
       "L 443.99942 34.226925 \n",
       "L 442.674329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_332\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 443.99942 88.586925 \n",
       "L 445.324512 88.586925 \n",
       "L 445.324512 34.226925 \n",
       "L 443.99942 34.226925 \n",
       "z\n",
       "\" style=\"fill:#e41a1c;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_333\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 445.324512 88.586925 \n",
       "L 446.63485 88.586925 \n",
       "L 446.63485 34.226925 \n",
       "L 445.324512 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_334\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 446.63485 88.586925 \n",
       "L 447.945187 88.586925 \n",
       "L 447.945187 34.226925 \n",
       "L 446.63485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_335\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 447.945187 88.586925 \n",
       "L 449.255525 88.586925 \n",
       "L 449.255525 34.226925 \n",
       "L 447.945187 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_336\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 449.255525 88.586925 \n",
       "L 450.565862 88.586925 \n",
       "L 450.565862 34.226925 \n",
       "L 449.255525 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_337\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 450.565862 88.586925 \n",
       "L 451.8762 88.586925 \n",
       "L 451.8762 34.226925 \n",
       "L 450.565862 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_338\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 451.8762 88.586925 \n",
       "L 453.186537 88.586925 \n",
       "L 453.186537 34.226925 \n",
       "L 451.8762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_339\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 453.186537 88.586925 \n",
       "L 454.496875 88.586925 \n",
       "L 454.496875 34.226925 \n",
       "L 453.186537 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_340\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 454.496875 88.586925 \n",
       "L 455.807212 88.586925 \n",
       "L 455.807212 34.226925 \n",
       "L 454.496875 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_341\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 455.807212 88.586925 \n",
       "L 457.117549 88.586925 \n",
       "L 457.117549 34.226925 \n",
       "L 455.807212 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_342\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 457.117549 88.586925 \n",
       "L 458.427887 88.586925 \n",
       "L 458.427887 34.226925 \n",
       "L 457.117549 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_343\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 458.427887 88.586925 \n",
       "L 459.738224 88.586925 \n",
       "L 459.738224 34.226925 \n",
       "L 458.427887 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_344\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 459.738224 88.586925 \n",
       "L 461.048562 88.586925 \n",
       "L 461.048562 34.226925 \n",
       "L 459.738224 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_345\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 461.048562 88.586925 \n",
       "L 462.358899 88.586925 \n",
       "L 462.358899 34.226925 \n",
       "L 461.048562 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_346\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 462.358899 88.586925 \n",
       "L 463.669237 88.586925 \n",
       "L 463.669237 34.226925 \n",
       "L 462.358899 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_347\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 463.669237 88.586925 \n",
       "L 464.979574 88.586925 \n",
       "L 464.979574 34.226925 \n",
       "L 463.669237 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_348\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 464.979574 88.586925 \n",
       "L 466.289912 88.586925 \n",
       "L 466.289912 34.226925 \n",
       "L 464.979574 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_349\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 466.289912 88.586925 \n",
       "L 467.600249 88.586925 \n",
       "L 467.600249 34.226925 \n",
       "L 466.289912 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_350\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 467.600249 88.586925 \n",
       "L 468.910587 88.586925 \n",
       "L 468.910587 34.226925 \n",
       "L 467.600249 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_351\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 468.910587 88.586925 \n",
       "L 470.220924 88.586925 \n",
       "L 470.220924 34.226925 \n",
       "L 468.910587 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_352\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 470.220924 88.586925 \n",
       "L 471.531262 88.586925 \n",
       "L 471.531262 34.226925 \n",
       "L 470.220924 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_353\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 471.531262 88.586925 \n",
       "L 472.841599 88.586925 \n",
       "L 472.841599 34.226925 \n",
       "L 471.531262 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_354\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 472.841599 88.586925 \n",
       "L 474.151937 88.586925 \n",
       "L 474.151937 34.226925 \n",
       "L 472.841599 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_355\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 474.151937 88.586925 \n",
       "L 475.462274 88.586925 \n",
       "L 475.462274 34.226925 \n",
       "L 474.151937 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_356\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 475.462274 88.586925 \n",
       "L 476.772612 88.586925 \n",
       "L 476.772612 34.226925 \n",
       "L 475.462274 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_357\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 476.772612 88.586925 \n",
       "L 478.082949 88.586925 \n",
       "L 478.082949 34.226925 \n",
       "L 476.772612 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_358\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 478.082949 88.586925 \n",
       "L 479.393287 88.586925 \n",
       "L 479.393287 34.226925 \n",
       "L 478.082949 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_359\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 479.393287 88.586925 \n",
       "L 480.703624 88.586925 \n",
       "L 480.703624 34.226925 \n",
       "L 479.393287 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_360\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 480.703624 88.586925 \n",
       "L 482.013962 88.586925 \n",
       "L 482.013962 34.226925 \n",
       "L 480.703624 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_361\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 482.013962 88.586925 \n",
       "L 483.324299 88.586925 \n",
       "L 483.324299 34.226925 \n",
       "L 482.013962 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_362\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 483.324299 88.586925 \n",
       "L 484.634636 88.586925 \n",
       "L 484.634636 34.226925 \n",
       "L 483.324299 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_363\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 484.634636 88.586925 \n",
       "L 485.944974 88.586925 \n",
       "L 485.944974 34.226925 \n",
       "L 484.634636 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_364\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 485.944974 88.586925 \n",
       "L 487.255311 88.586925 \n",
       "L 487.255311 34.226925 \n",
       "L 485.944974 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_365\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 487.255311 88.586925 \n",
       "L 488.565649 88.586925 \n",
       "L 488.565649 34.226925 \n",
       "L 487.255311 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_366\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 488.565649 88.586925 \n",
       "L 489.875986 88.586925 \n",
       "L 489.875986 34.226925 \n",
       "L 488.565649 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_367\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 489.875986 88.586925 \n",
       "L 491.186324 88.586925 \n",
       "L 491.186324 34.226925 \n",
       "L 489.875986 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_368\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 491.186324 88.586925 \n",
       "L 492.496661 88.586925 \n",
       "L 492.496661 34.226925 \n",
       "L 491.186324 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_369\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 492.496661 88.586925 \n",
       "L 493.806999 88.586925 \n",
       "L 493.806999 34.226925 \n",
       "L 492.496661 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_370\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 493.806999 88.586925 \n",
       "L 495.117336 88.586925 \n",
       "L 495.117336 34.226925 \n",
       "L 493.806999 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_371\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 495.117336 88.586925 \n",
       "L 496.427674 88.586925 \n",
       "L 496.427674 34.226925 \n",
       "L 495.117336 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_372\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 496.427674 88.586925 \n",
       "L 497.738011 88.586925 \n",
       "L 497.738011 34.226925 \n",
       "L 496.427674 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_373\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 497.738011 88.586925 \n",
       "L 499.048349 88.586925 \n",
       "L 499.048349 34.226925 \n",
       "L 497.738011 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_374\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 499.048349 88.586925 \n",
       "L 500.358686 88.586925 \n",
       "L 500.358686 34.226925 \n",
       "L 499.048349 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_375\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 500.358686 88.586925 \n",
       "L 501.669024 88.586925 \n",
       "L 501.669024 34.226925 \n",
       "L 500.358686 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_376\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 501.669024 88.586925 \n",
       "L 502.979361 88.586925 \n",
       "L 502.979361 34.226925 \n",
       "L 501.669024 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_377\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 502.979361 88.586925 \n",
       "L 504.289699 88.586925 \n",
       "L 504.289699 34.226925 \n",
       "L 502.979361 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_378\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 504.289699 88.586925 \n",
       "L 505.600036 88.586925 \n",
       "L 505.600036 34.226925 \n",
       "L 504.289699 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_379\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 505.600036 88.586925 \n",
       "L 506.910374 88.586925 \n",
       "L 506.910374 34.226925 \n",
       "L 505.600036 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_380\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 506.910374 88.586925 \n",
       "L 508.220711 88.586925 \n",
       "L 508.220711 34.226925 \n",
       "L 506.910374 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_381\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 508.220711 88.586925 \n",
       "L 509.531049 88.586925 \n",
       "L 509.531049 34.226925 \n",
       "L 508.220711 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_382\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 509.531049 88.586925 \n",
       "L 510.841386 88.586925 \n",
       "L 510.841386 34.226925 \n",
       "L 509.531049 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_383\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 510.841386 88.586925 \n",
       "L 512.151723 88.586925 \n",
       "L 512.151723 34.226925 \n",
       "L 510.841386 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_384\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 512.151723 88.586925 \n",
       "L 513.462061 88.586925 \n",
       "L 513.462061 34.226925 \n",
       "L 512.151723 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_385\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 513.462061 88.586925 \n",
       "L 514.772398 88.586925 \n",
       "L 514.772398 34.226925 \n",
       "L 513.462061 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_386\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 514.772398 88.586925 \n",
       "L 516.082736 88.586925 \n",
       "L 516.082736 34.226925 \n",
       "L 514.772398 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_387\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 516.082736 88.586925 \n",
       "L 517.393073 88.586925 \n",
       "L 517.393073 34.226925 \n",
       "L 516.082736 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_388\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 517.393073 88.586925 \n",
       "L 518.703411 88.586925 \n",
       "L 518.703411 34.226925 \n",
       "L 517.393073 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_389\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 518.703411 88.586925 \n",
       "L 520.013748 88.586925 \n",
       "L 520.013748 34.226925 \n",
       "L 518.703411 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_390\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 520.013748 88.586925 \n",
       "L 521.324086 88.586925 \n",
       "L 521.324086 34.226925 \n",
       "L 520.013748 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_391\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 521.324086 88.586925 \n",
       "L 522.634423 88.586925 \n",
       "L 522.634423 34.226925 \n",
       "L 521.324086 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_392\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 522.634423 88.586925 \n",
       "L 523.944761 88.586925 \n",
       "L 523.944761 34.226925 \n",
       "L 522.634423 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_393\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 523.944761 88.586925 \n",
       "L 525.255098 88.586925 \n",
       "L 525.255098 34.226925 \n",
       "L 523.944761 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_394\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 525.255098 88.586925 \n",
       "L 526.565436 88.586925 \n",
       "L 526.565436 34.226925 \n",
       "L 525.255098 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_395\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 526.565436 88.586925 \n",
       "L 527.875773 88.586925 \n",
       "L 527.875773 34.226925 \n",
       "L 526.565436 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_396\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 527.875773 88.586925 \n",
       "L 529.186111 88.586925 \n",
       "L 529.186111 34.226925 \n",
       "L 527.875773 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_397\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 529.186111 88.586925 \n",
       "L 530.496448 88.586925 \n",
       "L 530.496448 34.226925 \n",
       "L 529.186111 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_398\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 530.496448 88.586925 \n",
       "L 531.806786 88.586925 \n",
       "L 531.806786 34.226925 \n",
       "L 530.496448 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_399\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 531.806786 88.586925 \n",
       "L 533.117123 88.586925 \n",
       "L 533.117123 34.226925 \n",
       "L 531.806786 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_400\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 533.117123 88.586925 \n",
       "L 534.427461 88.586925 \n",
       "L 534.427461 34.226925 \n",
       "L 533.117123 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_401\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 534.427461 88.586925 \n",
       "L 535.737798 88.586925 \n",
       "L 535.737798 34.226925 \n",
       "L 534.427461 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_402\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 535.737798 88.586925 \n",
       "L 537.048136 88.586925 \n",
       "L 537.048136 34.226925 \n",
       "L 535.737798 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_403\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 537.048136 88.586925 \n",
       "L 538.358473 88.586925 \n",
       "L 538.358473 34.226925 \n",
       "L 537.048136 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_404\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 538.358473 88.586925 \n",
       "L 539.66881 88.586925 \n",
       "L 539.66881 34.226925 \n",
       "L 538.358473 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_405\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 539.66881 88.586925 \n",
       "L 540.979148 88.586925 \n",
       "L 540.979148 34.226925 \n",
       "L 539.66881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_406\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 540.979148 88.586925 \n",
       "L 542.289485 88.586925 \n",
       "L 542.289485 34.226925 \n",
       "L 540.979148 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_407\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 542.289485 88.586925 \n",
       "L 543.599823 88.586925 \n",
       "L 543.599823 34.226925 \n",
       "L 542.289485 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_408\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 543.599823 88.586925 \n",
       "L 544.91016 88.586925 \n",
       "L 544.91016 34.226925 \n",
       "L 543.599823 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_409\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 544.91016 88.586925 \n",
       "L 546.220498 88.586925 \n",
       "L 546.220498 34.226925 \n",
       "L 544.91016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_410\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 546.220498 88.586925 \n",
       "L 547.530835 88.586925 \n",
       "L 547.530835 34.226925 \n",
       "L 546.220498 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_411\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 547.530835 88.586925 \n",
       "L 548.841173 88.586925 \n",
       "L 548.841173 34.226925 \n",
       "L 547.530835 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_412\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 548.841173 88.586925 \n",
       "L 550.15151 88.586925 \n",
       "L 550.15151 34.226925 \n",
       "L 548.841173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_413\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 550.15151 88.586925 \n",
       "L 551.461848 88.586925 \n",
       "L 551.461848 34.226925 \n",
       "L 550.15151 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_414\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 551.461848 88.586925 \n",
       "L 552.772185 88.586925 \n",
       "L 552.772185 34.226925 \n",
       "L 551.461848 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_415\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 552.772185 88.586925 \n",
       "L 554.082523 88.586925 \n",
       "L 554.082523 34.226925 \n",
       "L 552.772185 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_416\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 554.082523 88.586925 \n",
       "L 555.39286 88.586925 \n",
       "L 555.39286 34.226925 \n",
       "L 554.082523 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_417\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 555.39286 88.586925 \n",
       "L 556.703198 88.586925 \n",
       "L 556.703198 34.226925 \n",
       "L 555.39286 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_418\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 556.703198 88.586925 \n",
       "L 558.013535 88.586925 \n",
       "L 558.013535 34.226925 \n",
       "L 556.703198 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_419\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 558.013535 88.586925 \n",
       "L 559.323873 88.586925 \n",
       "L 559.323873 34.226925 \n",
       "L 558.013535 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_420\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 559.323873 88.586925 \n",
       "L 560.63421 88.586925 \n",
       "L 560.63421 34.226925 \n",
       "L 559.323873 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_421\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 560.63421 88.586925 \n",
       "L 561.944548 88.586925 \n",
       "L 561.944548 34.226925 \n",
       "L 560.63421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_422\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 561.944548 88.586925 \n",
       "L 563.254885 88.586925 \n",
       "L 563.254885 34.226925 \n",
       "L 561.944548 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_423\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 563.254885 88.586925 \n",
       "L 564.565223 88.586925 \n",
       "L 564.565223 34.226925 \n",
       "L 563.254885 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_424\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 564.565223 88.586925 \n",
       "L 565.87556 88.586925 \n",
       "L 565.87556 34.226925 \n",
       "L 564.565223 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_425\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 565.87556 88.586925 \n",
       "L 567.185897 88.586925 \n",
       "L 567.185897 34.226925 \n",
       "L 565.87556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_426\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 567.185897 88.586925 \n",
       "L 568.496235 88.586925 \n",
       "L 568.496235 34.226925 \n",
       "L 567.185897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_427\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 568.496235 88.586925 \n",
       "L 569.806572 88.586925 \n",
       "L 569.806572 34.226925 \n",
       "L 568.496235 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_428\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 569.806572 88.586925 \n",
       "L 571.11691 88.586925 \n",
       "L 571.11691 34.226925 \n",
       "L 569.806572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_429\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 571.11691 88.586925 \n",
       "L 572.427247 88.586925 \n",
       "L 572.427247 34.226925 \n",
       "L 571.11691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_430\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 572.427247 88.586925 \n",
       "L 573.737585 88.586925 \n",
       "L 573.737585 34.226925 \n",
       "L 572.427247 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_431\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 573.737585 88.586925 \n",
       "L 575.047922 88.586925 \n",
       "L 575.047922 34.226925 \n",
       "L 573.737585 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_432\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 575.047922 88.586925 \n",
       "L 576.35826 88.586925 \n",
       "L 576.35826 34.226925 \n",
       "L 575.047922 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_433\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 576.35826 88.586925 \n",
       "L 577.668597 88.586925 \n",
       "L 577.668597 34.226925 \n",
       "L 576.35826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_434\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 577.668597 88.586925 \n",
       "L 578.978935 88.586925 \n",
       "L 578.978935 34.226925 \n",
       "L 577.668597 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_435\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 578.978935 88.586925 \n",
       "L 580.289272 88.586925 \n",
       "L 580.289272 34.226925 \n",
       "L 578.978935 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_436\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 580.289272 88.586925 \n",
       "L 581.59961 88.586925 \n",
       "L 581.59961 34.226925 \n",
       "L 580.289272 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_437\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 581.59961 88.586925 \n",
       "L 582.909947 88.586925 \n",
       "L 582.909947 34.226925 \n",
       "L 581.59961 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_438\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 582.909947 88.586925 \n",
       "L 584.220285 88.586925 \n",
       "L 584.220285 34.226925 \n",
       "L 582.909947 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_439\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 584.220285 88.586925 \n",
       "L 585.530622 88.586925 \n",
       "L 585.530622 34.226925 \n",
       "L 584.220285 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_440\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 585.530622 88.586925 \n",
       "L 586.84096 88.586925 \n",
       "L 586.84096 34.226925 \n",
       "L 585.530622 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_441\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 586.84096 88.586925 \n",
       "L 588.151297 88.586925 \n",
       "L 588.151297 34.226925 \n",
       "L 586.84096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_442\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 588.151297 88.586925 \n",
       "L 589.461635 88.586925 \n",
       "L 589.461635 34.226925 \n",
       "L 588.151297 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_443\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 589.461635 88.586925 \n",
       "L 590.771972 88.586925 \n",
       "L 590.771972 34.226925 \n",
       "L 589.461635 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_444\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 590.771972 88.586925 \n",
       "L 592.08231 88.586925 \n",
       "L 592.08231 34.226925 \n",
       "L 590.771972 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_445\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 592.08231 88.586925 \n",
       "L 593.392647 88.586925 \n",
       "L 593.392647 34.226925 \n",
       "L 592.08231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_446\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 593.392647 88.586925 \n",
       "L 594.702985 88.586925 \n",
       "L 594.702985 34.226925 \n",
       "L 593.392647 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_447\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 594.702985 88.586925 \n",
       "L 596.013322 88.586925 \n",
       "L 596.013322 34.226925 \n",
       "L 594.702985 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_448\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 596.013322 88.586925 \n",
       "L 597.323659 88.586925 \n",
       "L 597.323659 34.226925 \n",
       "L 596.013322 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_449\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 597.323659 88.586925 \n",
       "L 598.633997 88.586925 \n",
       "L 598.633997 34.226925 \n",
       "L 597.323659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_450\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 598.633997 88.586925 \n",
       "L 599.944334 88.586925 \n",
       "L 599.944334 34.226925 \n",
       "L 598.633997 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_451\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 599.944334 88.586925 \n",
       "L 601.254672 88.586925 \n",
       "L 601.254672 34.226925 \n",
       "L 599.944334 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_452\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 601.254672 88.586925 \n",
       "L 602.565009 88.586925 \n",
       "L 602.565009 34.226925 \n",
       "L 601.254672 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_453\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 602.565009 88.586925 \n",
       "L 603.875347 88.586925 \n",
       "L 603.875347 34.226925 \n",
       "L 602.565009 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_454\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 603.875347 88.586925 \n",
       "L 605.185684 88.586925 \n",
       "L 605.185684 34.226925 \n",
       "L 603.875347 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_455\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 605.185684 88.586925 \n",
       "L 606.496022 88.586925 \n",
       "L 606.496022 34.226925 \n",
       "L 605.185684 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_456\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 606.496022 88.586925 \n",
       "L 607.806359 88.586925 \n",
       "L 607.806359 34.226925 \n",
       "L 606.496022 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_457\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 607.806359 88.586925 \n",
       "L 609.116697 88.586925 \n",
       "L 609.116697 34.226925 \n",
       "L 607.806359 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_458\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 609.116697 88.586925 \n",
       "L 610.427034 88.586925 \n",
       "L 610.427034 34.226925 \n",
       "L 609.116697 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_459\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 610.427034 88.586925 \n",
       "L 611.737372 88.586925 \n",
       "L 611.737372 34.226925 \n",
       "L 610.427034 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_460\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 611.737372 88.586925 \n",
       "L 613.047709 88.586925 \n",
       "L 613.047709 34.226925 \n",
       "L 611.737372 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_461\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 613.047709 88.586925 \n",
       "L 614.358047 88.586925 \n",
       "L 614.358047 34.226925 \n",
       "L 613.047709 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_462\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 614.358047 88.586925 \n",
       "L 615.668384 88.586925 \n",
       "L 615.668384 34.226925 \n",
       "L 614.358047 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_463\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 615.668384 88.586925 \n",
       "L 616.978722 88.586925 \n",
       "L 616.978722 34.226925 \n",
       "L 615.668384 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_464\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 616.978722 88.586925 \n",
       "L 618.289059 88.586925 \n",
       "L 618.289059 34.226925 \n",
       "L 616.978722 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_465\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 618.289059 88.586925 \n",
       "L 619.599397 88.586925 \n",
       "L 619.599397 34.226925 \n",
       "L 618.289059 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_466\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 619.599397 88.586925 \n",
       "L 620.909734 88.586925 \n",
       "L 620.909734 34.226925 \n",
       "L 619.599397 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_467\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 620.909734 88.586925 \n",
       "L 622.220072 88.586925 \n",
       "L 622.220072 34.226925 \n",
       "L 620.909734 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_468\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 622.220072 88.586925 \n",
       "L 623.530409 88.586925 \n",
       "L 623.530409 34.226925 \n",
       "L 622.220072 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_469\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 623.530409 88.586925 \n",
       "L 624.840746 88.586925 \n",
       "L 624.840746 34.226925 \n",
       "L 623.530409 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_470\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 624.840746 88.586925 \n",
       "L 626.151084 88.586925 \n",
       "L 626.151084 34.226925 \n",
       "L 624.840746 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_471\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 626.151084 88.586925 \n",
       "L 627.461421 88.586925 \n",
       "L 627.461421 34.226925 \n",
       "L 626.151084 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_472\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 627.461421 88.586925 \n",
       "L 628.771759 88.586925 \n",
       "L 628.771759 34.226925 \n",
       "L 627.461421 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_473\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 628.771759 88.586925 \n",
       "L 630.082096 88.586925 \n",
       "L 630.082096 34.226925 \n",
       "L 628.771759 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_474\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 630.082096 88.586925 \n",
       "L 631.392434 88.586925 \n",
       "L 631.392434 34.226925 \n",
       "L 630.082096 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_475\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 631.392434 88.586925 \n",
       "L 632.702771 88.586925 \n",
       "L 632.702771 34.226925 \n",
       "L 631.392434 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_476\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 632.702771 88.586925 \n",
       "L 634.013109 88.586925 \n",
       "L 634.013109 34.226925 \n",
       "L 632.702771 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_477\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 634.013109 88.586925 \n",
       "L 635.323446 88.586925 \n",
       "L 635.323446 34.226925 \n",
       "L 634.013109 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_478\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 635.323446 88.586925 \n",
       "L 636.633784 88.586925 \n",
       "L 636.633784 34.226925 \n",
       "L 635.323446 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_479\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 636.633784 88.586925 \n",
       "L 637.944121 88.586925 \n",
       "L 637.944121 34.226925 \n",
       "L 636.633784 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_480\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 637.944121 88.586925 \n",
       "L 639.254459 88.586925 \n",
       "L 639.254459 34.226925 \n",
       "L 637.944121 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_481\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 639.254459 88.586925 \n",
       "L 640.564796 88.586925 \n",
       "L 640.564796 34.226925 \n",
       "L 639.254459 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_482\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 640.564796 88.586925 \n",
       "L 641.875134 88.586925 \n",
       "L 641.875134 34.226925 \n",
       "L 640.564796 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_483\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 641.875134 88.586925 \n",
       "L 643.185471 88.586925 \n",
       "L 643.185471 34.226925 \n",
       "L 641.875134 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_484\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 643.185471 88.586925 \n",
       "L 644.495809 88.586925 \n",
       "L 644.495809 34.226925 \n",
       "L 643.185471 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_485\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 644.495809 88.586925 \n",
       "L 645.806146 88.586925 \n",
       "L 645.806146 34.226925 \n",
       "L 644.495809 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_486\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 645.806146 88.586925 \n",
       "L 647.116484 88.586925 \n",
       "L 647.116484 34.226925 \n",
       "L 645.806146 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_487\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 647.116484 88.586925 \n",
       "L 648.426821 88.586925 \n",
       "L 648.426821 34.226925 \n",
       "L 647.116484 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_488\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 648.426821 88.586925 \n",
       "L 649.737159 88.586925 \n",
       "L 649.737159 34.226925 \n",
       "L 648.426821 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_489\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 649.737159 88.586925 \n",
       "L 651.047496 88.586925 \n",
       "L 651.047496 34.226925 \n",
       "L 649.737159 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_490\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 651.047496 88.586925 \n",
       "L 652.357833 88.586925 \n",
       "L 652.357833 34.226925 \n",
       "L 651.047496 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_491\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 652.357833 88.586925 \n",
       "L 653.668171 88.586925 \n",
       "L 653.668171 34.226925 \n",
       "L 652.357833 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_492\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 653.668171 88.586925 \n",
       "L 654.978508 88.586925 \n",
       "L 654.978508 34.226925 \n",
       "L 653.668171 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_493\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 654.978508 88.586925 \n",
       "L 656.288846 88.586925 \n",
       "L 656.288846 34.226925 \n",
       "L 654.978508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_494\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 656.288846 88.586925 \n",
       "L 657.599183 88.586925 \n",
       "L 657.599183 34.226925 \n",
       "L 656.288846 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_495\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 657.599183 88.586925 \n",
       "L 658.909521 88.586925 \n",
       "L 658.909521 34.226925 \n",
       "L 657.599183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_496\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 658.909521 88.586925 \n",
       "L 660.219858 88.586925 \n",
       "L 660.219858 34.226925 \n",
       "L 658.909521 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_497\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 660.219858 88.586925 \n",
       "L 661.530196 88.586925 \n",
       "L 661.530196 34.226925 \n",
       "L 660.219858 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_498\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 661.530196 88.586925 \n",
       "L 662.840533 88.586925 \n",
       "L 662.840533 34.226925 \n",
       "L 661.530196 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_499\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 662.840533 88.586925 \n",
       "L 664.150871 88.586925 \n",
       "L 664.150871 34.226925 \n",
       "L 662.840533 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_500\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 664.150871 88.586925 \n",
       "L 665.461208 88.586925 \n",
       "L 665.461208 34.226925 \n",
       "L 664.150871 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_501\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 665.461208 88.586925 \n",
       "L 666.771546 88.586925 \n",
       "L 666.771546 34.226925 \n",
       "L 665.461208 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_502\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 666.771546 88.586925 \n",
       "L 668.081883 88.586925 \n",
       "L 668.081883 34.226925 \n",
       "L 666.771546 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_503\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 668.081883 88.586925 \n",
       "L 669.392221 88.586925 \n",
       "L 669.392221 34.226925 \n",
       "L 668.081883 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_504\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 669.392221 88.586925 \n",
       "L 670.702558 88.586925 \n",
       "L 670.702558 34.226925 \n",
       "L 669.392221 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_505\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 670.702558 88.586925 \n",
       "L 672.012896 88.586925 \n",
       "L 672.012896 34.226925 \n",
       "L 670.702558 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_506\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 672.012896 88.586925 \n",
       "L 673.323233 88.586925 \n",
       "L 673.323233 34.226925 \n",
       "L 672.012896 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_507\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 673.323233 88.586925 \n",
       "L 674.633571 88.586925 \n",
       "L 674.633571 34.226925 \n",
       "L 673.323233 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_508\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 674.633571 88.586925 \n",
       "L 675.943908 88.586925 \n",
       "L 675.943908 34.226925 \n",
       "L 674.633571 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_509\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 675.943908 88.586925 \n",
       "L 677.254246 88.586925 \n",
       "L 677.254246 34.226925 \n",
       "L 675.943908 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_510\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 677.254246 88.586925 \n",
       "L 678.564583 88.586925 \n",
       "L 678.564583 34.226925 \n",
       "L 677.254246 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_511\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 678.564583 88.586925 \n",
       "L 679.87492 88.586925 \n",
       "L 679.87492 34.226925 \n",
       "L 678.564583 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_512\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 679.87492 88.586925 \n",
       "L 681.185258 88.586925 \n",
       "L 681.185258 34.226925 \n",
       "L 679.87492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_513\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 681.185258 88.586925 \n",
       "L 682.495595 88.586925 \n",
       "L 682.495595 34.226925 \n",
       "L 681.185258 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_514\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 682.495595 88.586925 \n",
       "L 683.805933 88.586925 \n",
       "L 683.805933 34.226925 \n",
       "L 682.495595 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_515\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 683.805933 88.586925 \n",
       "L 685.11627 88.586925 \n",
       "L 685.11627 34.226925 \n",
       "L 683.805933 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_516\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 685.11627 88.586925 \n",
       "L 686.426608 88.586925 \n",
       "L 686.426608 34.226925 \n",
       "L 685.11627 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_517\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 686.426608 88.586925 \n",
       "L 687.736945 88.586925 \n",
       "L 687.736945 34.226925 \n",
       "L 686.426608 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_518\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 687.736945 88.586925 \n",
       "L 689.047283 88.586925 \n",
       "L 689.047283 34.226925 \n",
       "L 687.736945 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_519\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 689.047283 88.586925 \n",
       "L 690.35762 88.586925 \n",
       "L 690.35762 34.226925 \n",
       "L 689.047283 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_520\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 690.35762 88.586925 \n",
       "L 691.667958 88.586925 \n",
       "L 691.667958 34.226925 \n",
       "L 690.35762 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_521\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 691.667958 88.586925 \n",
       "L 692.978295 88.586925 \n",
       "L 692.978295 34.226925 \n",
       "L 691.667958 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_522\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 692.978295 88.586925 \n",
       "L 694.288633 88.586925 \n",
       "L 694.288633 34.226925 \n",
       "L 692.978295 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_523\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 694.288633 88.586925 \n",
       "L 695.59897 88.586925 \n",
       "L 695.59897 34.226925 \n",
       "L 694.288633 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_524\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 695.59897 88.586925 \n",
       "L 696.909308 88.586925 \n",
       "L 696.909308 34.226925 \n",
       "L 695.59897 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_525\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 696.909308 88.586925 \n",
       "L 698.219645 88.586925 \n",
       "L 698.219645 34.226925 \n",
       "L 696.909308 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_526\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 698.219645 88.586925 \n",
       "L 699.529983 88.586925 \n",
       "L 699.529983 34.226925 \n",
       "L 698.219645 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_527\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 699.529983 88.586925 \n",
       "L 700.84032 88.586925 \n",
       "L 700.84032 34.226925 \n",
       "L 699.529983 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_528\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 700.84032 88.586925 \n",
       "L 702.150658 88.586925 \n",
       "L 702.150658 34.226925 \n",
       "L 700.84032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_529\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 702.150658 88.586925 \n",
       "L 703.460995 88.586925 \n",
       "L 703.460995 34.226925 \n",
       "L 702.150658 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_530\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 703.460995 88.586925 \n",
       "L 704.771333 88.586925 \n",
       "L 704.771333 34.226925 \n",
       "L 703.460995 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_531\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 704.771333 88.586925 \n",
       "L 706.08167 88.586925 \n",
       "L 706.08167 34.226925 \n",
       "L 704.771333 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_532\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 706.08167 88.586925 \n",
       "L 707.392007 88.586925 \n",
       "L 707.392007 34.226925 \n",
       "L 706.08167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_533\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 707.392007 88.586925 \n",
       "L 708.702345 88.586925 \n",
       "L 708.702345 34.226925 \n",
       "L 707.392007 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_534\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 708.702345 88.586925 \n",
       "L 710.012682 88.586925 \n",
       "L 710.012682 34.226925 \n",
       "L 708.702345 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_535\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 710.012682 88.586925 \n",
       "L 711.32302 88.586925 \n",
       "L 711.32302 34.226925 \n",
       "L 710.012682 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_536\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 711.32302 88.586925 \n",
       "L 712.633357 88.586925 \n",
       "L 712.633357 34.226925 \n",
       "L 711.32302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_537\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 712.633357 88.586925 \n",
       "L 713.943695 88.586925 \n",
       "L 713.943695 34.226925 \n",
       "L 712.633357 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_538\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 713.943695 88.586925 \n",
       "L 715.254032 88.586925 \n",
       "L 715.254032 34.226925 \n",
       "L 713.943695 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_539\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 715.254032 88.586925 \n",
       "L 716.56437 88.586925 \n",
       "L 716.56437 34.226925 \n",
       "L 715.254032 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_540\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 716.56437 88.586925 \n",
       "L 717.874707 88.586925 \n",
       "L 717.874707 34.226925 \n",
       "L 716.56437 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_541\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 717.874707 88.586925 \n",
       "L 719.185045 88.586925 \n",
       "L 719.185045 34.226925 \n",
       "L 717.874707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_542\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 719.185045 88.586925 \n",
       "L 720.495382 88.586925 \n",
       "L 720.495382 34.226925 \n",
       "L 719.185045 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_543\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 720.495382 88.586925 \n",
       "L 721.80572 88.586925 \n",
       "L 721.80572 34.226925 \n",
       "L 720.495382 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_544\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 721.80572 88.586925 \n",
       "L 723.116057 88.586925 \n",
       "L 723.116057 34.226925 \n",
       "L 721.80572 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_545\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 723.116057 88.586925 \n",
       "L 724.426395 88.586925 \n",
       "L 724.426395 34.226925 \n",
       "L 723.116057 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_546\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 724.426395 88.586925 \n",
       "L 725.736732 88.586925 \n",
       "L 725.736732 34.226925 \n",
       "L 724.426395 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_547\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 725.736732 88.586925 \n",
       "L 727.04707 88.586925 \n",
       "L 727.04707 34.226925 \n",
       "L 725.736732 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_548\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 727.04707 88.586925 \n",
       "L 728.357407 88.586925 \n",
       "L 728.357407 34.226925 \n",
       "L 727.04707 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_549\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 728.357407 88.586925 \n",
       "L 729.667745 88.586925 \n",
       "L 729.667745 34.226925 \n",
       "L 728.357407 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_550\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 729.667745 88.586925 \n",
       "L 730.978082 88.586925 \n",
       "L 730.978082 34.226925 \n",
       "L 729.667745 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_551\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 730.978082 88.586925 \n",
       "L 732.28842 88.586925 \n",
       "L 732.28842 34.226925 \n",
       "L 730.978082 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_552\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 732.28842 88.586925 \n",
       "L 733.598757 88.586925 \n",
       "L 733.598757 34.226925 \n",
       "L 732.28842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_553\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 733.598757 88.586925 \n",
       "L 734.909094 88.586925 \n",
       "L 734.909094 34.226925 \n",
       "L 733.598757 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_554\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 734.909094 88.586925 \n",
       "L 736.219432 88.586925 \n",
       "L 736.219432 34.226925 \n",
       "L 734.909094 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_555\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 736.219432 88.586925 \n",
       "L 737.529769 88.586925 \n",
       "L 737.529769 34.226925 \n",
       "L 736.219432 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_556\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 737.529769 88.586925 \n",
       "L 738.840107 88.586925 \n",
       "L 738.840107 34.226925 \n",
       "L 737.529769 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_557\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 738.840107 88.586925 \n",
       "L 740.150444 88.586925 \n",
       "L 740.150444 34.226925 \n",
       "L 738.840107 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_558\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 740.150444 88.586925 \n",
       "L 741.460782 88.586925 \n",
       "L 741.460782 34.226925 \n",
       "L 740.150444 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_559\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 741.460782 88.586925 \n",
       "L 742.771119 88.586925 \n",
       "L 742.771119 34.226925 \n",
       "L 741.460782 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_560\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 742.771119 88.586925 \n",
       "L 744.081457 88.586925 \n",
       "L 744.081457 34.226925 \n",
       "L 742.771119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_561\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 744.081457 88.586925 \n",
       "L 745.391794 88.586925 \n",
       "L 745.391794 34.226925 \n",
       "L 744.081457 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_562\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 745.391794 88.586925 \n",
       "L 746.702132 88.586925 \n",
       "L 746.702132 34.226925 \n",
       "L 745.391794 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_563\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 746.702132 88.586925 \n",
       "L 748.012469 88.586925 \n",
       "L 748.012469 34.226925 \n",
       "L 746.702132 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_564\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 748.012469 88.586925 \n",
       "L 749.322807 88.586925 \n",
       "L 749.322807 34.226925 \n",
       "L 748.012469 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_565\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 749.322807 88.586925 \n",
       "L 750.633144 88.586925 \n",
       "L 750.633144 34.226925 \n",
       "L 749.322807 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_566\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 750.633144 88.586925 \n",
       "L 751.943482 88.586925 \n",
       "L 751.943482 34.226925 \n",
       "L 750.633144 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_567\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 751.943482 88.586925 \n",
       "L 753.253819 88.586925 \n",
       "L 753.253819 34.226925 \n",
       "L 751.943482 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_568\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 753.253819 88.586925 \n",
       "L 754.564157 88.586925 \n",
       "L 754.564157 34.226925 \n",
       "L 753.253819 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_569\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 754.564157 88.586925 \n",
       "L 755.874494 88.586925 \n",
       "L 755.874494 34.226925 \n",
       "L 754.564157 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_570\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 755.874494 88.586925 \n",
       "L 757.184832 88.586925 \n",
       "L 757.184832 34.226925 \n",
       "L 755.874494 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_571\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 757.184832 88.586925 \n",
       "L 758.495169 88.586925 \n",
       "L 758.495169 34.226925 \n",
       "L 757.184832 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_572\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 758.495169 88.586925 \n",
       "L 759.805507 88.586925 \n",
       "L 759.805507 34.226925 \n",
       "L 758.495169 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_573\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 759.805507 88.586925 \n",
       "L 761.115844 88.586925 \n",
       "L 761.115844 34.226925 \n",
       "L 759.805507 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_574\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 761.115844 88.586925 \n",
       "L 762.426182 88.586925 \n",
       "L 762.426182 34.226925 \n",
       "L 761.115844 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_575\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 762.426182 88.586925 \n",
       "L 763.736519 88.586925 \n",
       "L 763.736519 34.226925 \n",
       "L 762.426182 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_576\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 763.736519 88.586925 \n",
       "L 765.046856 88.586925 \n",
       "L 765.046856 34.226925 \n",
       "L 763.736519 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_577\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 765.046856 88.586925 \n",
       "L 766.357194 88.586925 \n",
       "L 766.357194 34.226925 \n",
       "L 765.046856 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_578\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 766.357194 88.586925 \n",
       "L 767.667531 88.586925 \n",
       "L 767.667531 34.226925 \n",
       "L 766.357194 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_579\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 767.667531 88.586925 \n",
       "L 768.977869 88.586925 \n",
       "L 768.977869 34.226925 \n",
       "L 767.667531 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_580\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 768.977869 88.586925 \n",
       "L 770.288206 88.586925 \n",
       "L 770.288206 34.226925 \n",
       "L 768.977869 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_581\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 770.288206 88.586925 \n",
       "L 771.598544 88.586925 \n",
       "L 771.598544 34.226925 \n",
       "L 770.288206 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_582\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 771.598544 88.586925 \n",
       "L 772.908881 88.586925 \n",
       "L 772.908881 34.226925 \n",
       "L 771.598544 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_583\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 772.908881 88.586925 \n",
       "L 774.219219 88.586925 \n",
       "L 774.219219 34.226925 \n",
       "L 772.908881 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_584\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 774.219219 88.586925 \n",
       "L 775.529556 88.586925 \n",
       "L 775.529556 34.226925 \n",
       "L 774.219219 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_585\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 775.529556 88.586925 \n",
       "L 776.839894 88.586925 \n",
       "L 776.839894 34.226925 \n",
       "L 775.529556 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_586\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 776.839894 88.586925 \n",
       "L 778.150231 88.586925 \n",
       "L 778.150231 34.226925 \n",
       "L 776.839894 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_587\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 778.150231 88.586925 \n",
       "L 779.460569 88.586925 \n",
       "L 779.460569 34.226925 \n",
       "L 778.150231 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_588\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 779.460569 88.586925 \n",
       "L 780.770906 88.586925 \n",
       "L 780.770906 34.226925 \n",
       "L 779.460569 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_589\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 780.770906 88.586925 \n",
       "L 782.081244 88.586925 \n",
       "L 782.081244 34.226925 \n",
       "L 780.770906 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_590\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 782.081244 88.586925 \n",
       "L 783.391581 88.586925 \n",
       "L 783.391581 34.226925 \n",
       "L 782.081244 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_591\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 783.391581 88.586925 \n",
       "L 784.701919 88.586925 \n",
       "L 784.701919 34.226925 \n",
       "L 783.391581 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_592\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 784.701919 88.586925 \n",
       "L 786.012256 88.586925 \n",
       "L 786.012256 34.226925 \n",
       "L 784.701919 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_593\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 786.012256 88.586925 \n",
       "L 787.322594 88.586925 \n",
       "L 787.322594 34.226925 \n",
       "L 786.012256 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_594\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 787.322594 88.586925 \n",
       "L 788.632931 88.586925 \n",
       "L 788.632931 34.226925 \n",
       "L 787.322594 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_595\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 788.632931 88.586925 \n",
       "L 789.943269 88.586925 \n",
       "L 789.943269 34.226925 \n",
       "L 788.632931 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_596\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 789.943269 88.586925 \n",
       "L 791.253606 88.586925 \n",
       "L 791.253606 34.226925 \n",
       "L 789.943269 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_597\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 791.253606 88.586925 \n",
       "L 792.563943 88.586925 \n",
       "L 792.563943 34.226925 \n",
       "L 791.253606 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_598\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 792.563943 88.586925 \n",
       "L 793.874281 88.586925 \n",
       "L 793.874281 34.226925 \n",
       "L 792.563943 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_599\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 793.874281 88.586925 \n",
       "L 795.184618 88.586925 \n",
       "L 795.184618 34.226925 \n",
       "L 793.874281 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_600\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 795.184618 88.586925 \n",
       "L 796.494956 88.586925 \n",
       "L 796.494956 34.226925 \n",
       "L 795.184618 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_601\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 796.494956 88.586925 \n",
       "L 797.805293 88.586925 \n",
       "L 797.805293 34.226925 \n",
       "L 796.494956 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_602\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 797.805293 88.586925 \n",
       "L 799.115631 88.586925 \n",
       "L 799.115631 34.226925 \n",
       "L 797.805293 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_603\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 799.115631 88.586925 \n",
       "L 800.425968 88.586925 \n",
       "L 800.425968 34.226925 \n",
       "L 799.115631 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_604\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 800.425968 88.586925 \n",
       "L 801.736306 88.586925 \n",
       "L 801.736306 34.226925 \n",
       "L 800.425968 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_605\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 801.736306 88.586925 \n",
       "L 803.046643 88.586925 \n",
       "L 803.046643 34.226925 \n",
       "L 801.736306 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_606\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 803.046643 88.586925 \n",
       "L 804.356981 88.586925 \n",
       "L 804.356981 34.226925 \n",
       "L 803.046643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_607\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 804.356981 88.586925 \n",
       "L 805.667318 88.586925 \n",
       "L 805.667318 34.226925 \n",
       "L 804.356981 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_608\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 805.667318 88.586925 \n",
       "L 806.977656 88.586925 \n",
       "L 806.977656 34.226925 \n",
       "L 805.667318 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_609\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 806.977656 88.586925 \n",
       "L 808.287993 88.586925 \n",
       "L 808.287993 34.226925 \n",
       "L 806.977656 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_610\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 808.287993 88.586925 \n",
       "L 809.598331 88.586925 \n",
       "L 809.598331 34.226925 \n",
       "L 808.287993 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_611\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 809.598331 88.586925 \n",
       "L 810.908668 88.586925 \n",
       "L 810.908668 34.226925 \n",
       "L 809.598331 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_612\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 810.908668 88.586925 \n",
       "L 812.219006 88.586925 \n",
       "L 812.219006 34.226925 \n",
       "L 810.908668 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_613\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 812.219006 88.586925 \n",
       "L 813.529343 88.586925 \n",
       "L 813.529343 34.226925 \n",
       "L 812.219006 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_614\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 813.529343 88.586925 \n",
       "L 814.839681 88.586925 \n",
       "L 814.839681 34.226925 \n",
       "L 813.529343 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_615\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 814.839681 88.586925 \n",
       "L 816.150018 88.586925 \n",
       "L 816.150018 34.226925 \n",
       "L 814.839681 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_616\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 816.150018 88.586925 \n",
       "L 817.460356 88.586925 \n",
       "L 817.460356 34.226925 \n",
       "L 816.150018 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_617\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 817.460356 88.586925 \n",
       "L 818.770693 88.586925 \n",
       "L 818.770693 34.226925 \n",
       "L 817.460356 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_618\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 818.770693 88.586925 \n",
       "L 820.08103 88.586925 \n",
       "L 820.08103 34.226925 \n",
       "L 818.770693 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_619\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 820.08103 88.586925 \n",
       "L 821.391368 88.586925 \n",
       "L 821.391368 34.226925 \n",
       "L 820.08103 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_620\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 821.391368 88.586925 \n",
       "L 822.701705 88.586925 \n",
       "L 822.701705 34.226925 \n",
       "L 821.391368 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_621\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 822.701705 88.586925 \n",
       "L 824.012043 88.586925 \n",
       "L 824.012043 34.226925 \n",
       "L 822.701705 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_622\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 824.012043 88.586925 \n",
       "L 825.32238 88.586925 \n",
       "L 825.32238 34.226925 \n",
       "L 824.012043 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_623\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 825.32238 88.586925 \n",
       "L 826.632718 88.586925 \n",
       "L 826.632718 34.226925 \n",
       "L 825.32238 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_624\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 826.632718 88.586925 \n",
       "L 827.943055 88.586925 \n",
       "L 827.943055 34.226925 \n",
       "L 826.632718 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_625\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 827.943055 88.586925 \n",
       "L 829.253393 88.586925 \n",
       "L 829.253393 34.226925 \n",
       "L 827.943055 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_626\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 829.253393 88.586925 \n",
       "L 830.56373 88.586925 \n",
       "L 830.56373 34.226925 \n",
       "L 829.253393 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_627\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 830.56373 88.586925 \n",
       "L 831.874068 88.586925 \n",
       "L 831.874068 34.226925 \n",
       "L 830.56373 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_628\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 831.874068 88.586925 \n",
       "L 833.184405 88.586925 \n",
       "L 833.184405 34.226925 \n",
       "L 831.874068 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_629\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 833.184405 88.586925 \n",
       "L 834.494743 88.586925 \n",
       "L 834.494743 34.226925 \n",
       "L 833.184405 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_630\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 834.494743 88.586925 \n",
       "L 835.80508 88.586925 \n",
       "L 835.80508 34.226925 \n",
       "L 834.494743 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_631\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 835.80508 88.586925 \n",
       "L 837.115418 88.586925 \n",
       "L 837.115418 34.226925 \n",
       "L 835.80508 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_632\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 837.115418 88.586925 \n",
       "L 838.425755 88.586925 \n",
       "L 838.425755 34.226925 \n",
       "L 837.115418 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_633\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 838.425755 88.586925 \n",
       "L 839.736093 88.586925 \n",
       "L 839.736093 34.226925 \n",
       "L 838.425755 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_634\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 839.736093 88.586925 \n",
       "L 841.04643 88.586925 \n",
       "L 841.04643 34.226925 \n",
       "L 839.736093 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_635\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 841.04643 88.586925 \n",
       "L 842.356768 88.586925 \n",
       "L 842.356768 34.226925 \n",
       "L 841.04643 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_636\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 842.356768 88.586925 \n",
       "L 843.667105 88.586925 \n",
       "L 843.667105 34.226925 \n",
       "L 842.356768 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_637\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 843.667105 88.586925 \n",
       "L 844.977443 88.586925 \n",
       "L 844.977443 34.226925 \n",
       "L 843.667105 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_638\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 844.977443 88.586925 \n",
       "L 846.28778 88.586925 \n",
       "L 846.28778 34.226925 \n",
       "L 844.977443 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_639\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 846.28778 88.586925 \n",
       "L 847.598117 88.586925 \n",
       "L 847.598117 34.226925 \n",
       "L 846.28778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_640\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 847.598117 88.586925 \n",
       "L 848.908455 88.586925 \n",
       "L 848.908455 34.226925 \n",
       "L 847.598117 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_641\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 848.908455 88.586925 \n",
       "L 850.218792 88.586925 \n",
       "L 850.218792 34.226925 \n",
       "L 848.908455 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_642\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 850.218792 88.586925 \n",
       "L 851.52913 88.586925 \n",
       "L 851.52913 34.226925 \n",
       "L 850.218792 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_643\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 851.52913 88.586925 \n",
       "L 852.839467 88.586925 \n",
       "L 852.839467 34.226925 \n",
       "L 851.52913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_644\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 852.839467 88.586925 \n",
       "L 854.149805 88.586925 \n",
       "L 854.149805 34.226925 \n",
       "L 852.839467 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_645\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 854.149805 88.586925 \n",
       "L 855.460142 88.586925 \n",
       "L 855.460142 34.226925 \n",
       "L 854.149805 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_646\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 855.460142 88.586925 \n",
       "L 856.77048 88.586925 \n",
       "L 856.77048 34.226925 \n",
       "L 855.460142 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_647\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 856.77048 88.586925 \n",
       "L 858.080817 88.586925 \n",
       "L 858.080817 34.226925 \n",
       "L 856.77048 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_648\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 858.080817 88.586925 \n",
       "L 859.391155 88.586925 \n",
       "L 859.391155 34.226925 \n",
       "L 858.080817 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_649\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 859.391155 88.586925 \n",
       "L 860.701492 88.586925 \n",
       "L 860.701492 34.226925 \n",
       "L 859.391155 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_650\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 860.701492 88.586925 \n",
       "L 862.01183 88.586925 \n",
       "L 862.01183 34.226925 \n",
       "L 860.701492 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_651\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 862.01183 88.586925 \n",
       "L 863.322167 88.586925 \n",
       "L 863.322167 34.226925 \n",
       "L 862.01183 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_652\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 863.322167 88.586925 \n",
       "L 864.632505 88.586925 \n",
       "L 864.632505 34.226925 \n",
       "L 863.322167 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_653\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 864.632505 88.586925 \n",
       "L 865.942842 88.586925 \n",
       "L 865.942842 34.226925 \n",
       "L 864.632505 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_654\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 865.942842 88.586925 \n",
       "L 867.25318 88.586925 \n",
       "L 867.25318 34.226925 \n",
       "L 865.942842 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_655\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 867.25318 88.586925 \n",
       "L 868.563517 88.586925 \n",
       "L 868.563517 34.226925 \n",
       "L 867.25318 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_656\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 868.563517 88.586925 \n",
       "L 869.873855 88.586925 \n",
       "L 869.873855 34.226925 \n",
       "L 868.563517 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_657\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 869.873855 88.586925 \n",
       "L 871.184192 88.586925 \n",
       "L 871.184192 34.226925 \n",
       "L 869.873855 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_658\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 871.184192 88.586925 \n",
       "L 872.49453 88.586925 \n",
       "L 872.49453 34.226925 \n",
       "L 871.184192 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_659\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 872.49453 88.586925 \n",
       "L 873.804867 88.586925 \n",
       "L 873.804867 34.226925 \n",
       "L 872.49453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_660\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 873.804867 88.586925 \n",
       "L 875.115204 88.586925 \n",
       "L 875.115204 34.226925 \n",
       "L 873.804867 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_661\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 875.115204 88.586925 \n",
       "L 876.425542 88.586925 \n",
       "L 876.425542 34.226925 \n",
       "L 875.115204 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_662\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 876.425542 88.586925 \n",
       "L 877.735879 88.586925 \n",
       "L 877.735879 34.226925 \n",
       "L 876.425542 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_663\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 877.735879 88.586925 \n",
       "L 879.046217 88.586925 \n",
       "L 879.046217 34.226925 \n",
       "L 877.735879 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_664\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 879.046217 88.586925 \n",
       "L 880.356554 88.586925 \n",
       "L 880.356554 34.226925 \n",
       "L 879.046217 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_665\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 880.356554 88.586925 \n",
       "L 881.666892 88.586925 \n",
       "L 881.666892 34.226925 \n",
       "L 880.356554 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_666\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 881.666892 88.586925 \n",
       "L 882.977229 88.586925 \n",
       "L 882.977229 34.226925 \n",
       "L 881.666892 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_667\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 882.977229 88.586925 \n",
       "L 884.287567 88.586925 \n",
       "L 884.287567 34.226925 \n",
       "L 882.977229 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_668\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 884.287567 88.586925 \n",
       "L 885.597904 88.586925 \n",
       "L 885.597904 34.226925 \n",
       "L 884.287567 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_669\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 885.597904 88.586925 \n",
       "L 886.908242 88.586925 \n",
       "L 886.908242 34.226925 \n",
       "L 885.597904 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_670\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 886.908242 88.586925 \n",
       "L 888.218579 88.586925 \n",
       "L 888.218579 34.226925 \n",
       "L 886.908242 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_671\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 888.218579 88.586925 \n",
       "L 889.528917 88.586925 \n",
       "L 889.528917 34.226925 \n",
       "L 888.218579 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_672\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 889.528917 88.586925 \n",
       "L 890.839254 88.586925 \n",
       "L 890.839254 34.226925 \n",
       "L 889.528917 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_673\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 890.839254 88.586925 \n",
       "L 892.149592 88.586925 \n",
       "L 892.149592 34.226925 \n",
       "L 890.839254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_674\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 892.149592 88.586925 \n",
       "L 893.459929 88.586925 \n",
       "L 893.459929 34.226925 \n",
       "L 892.149592 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_675\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 893.459929 88.586925 \n",
       "L 894.770267 88.586925 \n",
       "L 894.770267 34.226925 \n",
       "L 893.459929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_676\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 894.770267 88.586925 \n",
       "L 896.080604 88.586925 \n",
       "L 896.080604 34.226925 \n",
       "L 894.770267 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_677\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 896.080604 88.586925 \n",
       "L 897.390942 88.586925 \n",
       "L 897.390942 34.226925 \n",
       "L 896.080604 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_678\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 897.390942 88.586925 \n",
       "L 898.701279 88.586925 \n",
       "L 898.701279 34.226925 \n",
       "L 897.390942 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_679\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 898.701279 88.586925 \n",
       "L 900.011617 88.586925 \n",
       "L 900.011617 34.226925 \n",
       "L 898.701279 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_680\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 900.011617 88.586925 \n",
       "L 901.321954 88.586925 \n",
       "L 901.321954 34.226925 \n",
       "L 900.011617 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_681\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 901.321954 88.586925 \n",
       "L 902.632292 88.586925 \n",
       "L 902.632292 34.226925 \n",
       "L 901.321954 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_682\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 902.632292 88.586925 \n",
       "L 903.942629 88.586925 \n",
       "L 903.942629 34.226925 \n",
       "L 902.632292 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_683\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 903.942629 88.586925 \n",
       "L 905.252966 88.586925 \n",
       "L 905.252966 34.226925 \n",
       "L 903.942629 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_684\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 905.252966 88.586925 \n",
       "L 906.563304 88.586925 \n",
       "L 906.563304 34.226925 \n",
       "L 905.252966 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_685\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 906.563304 88.586925 \n",
       "L 907.873641 88.586925 \n",
       "L 907.873641 34.226925 \n",
       "L 906.563304 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_686\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 907.873641 88.586925 \n",
       "L 909.183979 88.586925 \n",
       "L 909.183979 34.226925 \n",
       "L 907.873641 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_687\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 909.183979 88.586925 \n",
       "L 910.494316 88.586925 \n",
       "L 910.494316 34.226925 \n",
       "L 909.183979 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_688\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 910.494316 88.586925 \n",
       "L 911.804654 88.586925 \n",
       "L 911.804654 34.226925 \n",
       "L 910.494316 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_689\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 911.804654 88.586925 \n",
       "L 913.114991 88.586925 \n",
       "L 913.114991 34.226925 \n",
       "L 911.804654 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_690\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 913.114991 88.586925 \n",
       "L 914.425329 88.586925 \n",
       "L 914.425329 34.226925 \n",
       "L 913.114991 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_691\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 914.425329 88.586925 \n",
       "L 915.735666 88.586925 \n",
       "L 915.735666 34.226925 \n",
       "L 914.425329 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_692\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 915.735666 88.586925 \n",
       "L 917.046004 88.586925 \n",
       "L 917.046004 34.226925 \n",
       "L 915.735666 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_693\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 917.046004 88.586925 \n",
       "L 918.356341 88.586925 \n",
       "L 918.356341 34.226925 \n",
       "L 917.046004 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_694\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 918.356341 88.586925 \n",
       "L 919.666679 88.586925 \n",
       "L 919.666679 34.226925 \n",
       "L 918.356341 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_695\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 919.666679 88.586925 \n",
       "L 920.977016 88.586925 \n",
       "L 920.977016 34.226925 \n",
       "L 919.666679 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_696\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 920.977016 88.586925 \n",
       "L 922.287354 88.586925 \n",
       "L 922.287354 34.226925 \n",
       "L 920.977016 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_697\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 922.287354 88.586925 \n",
       "L 923.597691 88.586925 \n",
       "L 923.597691 34.226925 \n",
       "L 922.287354 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_698\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 923.597691 88.586925 \n",
       "L 924.908029 88.586925 \n",
       "L 924.908029 34.226925 \n",
       "L 923.597691 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_699\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 924.908029 88.586925 \n",
       "L 926.218366 88.586925 \n",
       "L 926.218366 34.226925 \n",
       "L 924.908029 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_700\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 926.218366 88.586925 \n",
       "L 927.528704 88.586925 \n",
       "L 927.528704 34.226925 \n",
       "L 926.218366 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_701\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 927.528704 88.586925 \n",
       "L 928.839041 88.586925 \n",
       "L 928.839041 34.226925 \n",
       "L 927.528704 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_702\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 928.839041 88.586925 \n",
       "L 930.149379 88.586925 \n",
       "L 930.149379 34.226925 \n",
       "L 928.839041 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_703\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 930.149379 88.586925 \n",
       "L 931.459716 88.586925 \n",
       "L 931.459716 34.226925 \n",
       "L 930.149379 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_704\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 931.459716 88.586925 \n",
       "L 932.770053 88.586925 \n",
       "L 932.770053 34.226925 \n",
       "L 931.459716 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_705\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 932.770053 88.586925 \n",
       "L 934.080391 88.586925 \n",
       "L 934.080391 34.226925 \n",
       "L 932.770053 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_706\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 934.080391 88.586925 \n",
       "L 935.390728 88.586925 \n",
       "L 935.390728 34.226925 \n",
       "L 934.080391 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_707\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 935.390728 88.586925 \n",
       "L 936.701066 88.586925 \n",
       "L 936.701066 34.226925 \n",
       "L 935.390728 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_708\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 936.701066 88.586925 \n",
       "L 938.011403 88.586925 \n",
       "L 938.011403 34.226925 \n",
       "L 936.701066 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_709\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 938.011403 88.586925 \n",
       "L 939.321741 88.586925 \n",
       "L 939.321741 34.226925 \n",
       "L 938.011403 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_710\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 939.321741 88.586925 \n",
       "L 940.632078 88.586925 \n",
       "L 940.632078 34.226925 \n",
       "L 939.321741 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_711\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 940.632078 88.586925 \n",
       "L 941.942416 88.586925 \n",
       "L 941.942416 34.226925 \n",
       "L 940.632078 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_712\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 941.942416 88.586925 \n",
       "L 943.252753 88.586925 \n",
       "L 943.252753 34.226925 \n",
       "L 941.942416 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_713\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 943.252753 88.586925 \n",
       "L 944.563091 88.586925 \n",
       "L 944.563091 34.226925 \n",
       "L 943.252753 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_714\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 944.563091 88.586925 \n",
       "L 945.873428 88.586925 \n",
       "L 945.873428 34.226925 \n",
       "L 944.563091 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_715\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 945.873428 88.586925 \n",
       "L 947.183766 88.586925 \n",
       "L 947.183766 34.226925 \n",
       "L 945.873428 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_716\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 947.183766 88.586925 \n",
       "L 948.494103 88.586925 \n",
       "L 948.494103 34.226925 \n",
       "L 947.183766 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_717\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 948.494103 88.586925 \n",
       "L 949.804441 88.586925 \n",
       "L 949.804441 34.226925 \n",
       "L 948.494103 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_718\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 949.804441 88.586925 \n",
       "L 951.114778 88.586925 \n",
       "L 951.114778 34.226925 \n",
       "L 949.804441 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_719\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 951.114778 88.586925 \n",
       "L 952.425116 88.586925 \n",
       "L 952.425116 34.226925 \n",
       "L 951.114778 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_720\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 952.425116 88.586925 \n",
       "L 953.735453 88.586925 \n",
       "L 953.735453 34.226925 \n",
       "L 952.425116 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_721\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 953.735453 88.586925 \n",
       "L 955.045791 88.586925 \n",
       "L 955.045791 34.226925 \n",
       "L 953.735453 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_722\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 955.045791 88.586925 \n",
       "L 956.356128 88.586925 \n",
       "L 956.356128 34.226925 \n",
       "L 955.045791 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_723\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 956.356128 88.586925 \n",
       "L 957.666466 88.586925 \n",
       "L 957.666466 34.226925 \n",
       "L 956.356128 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_724\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 957.666466 88.586925 \n",
       "L 958.976803 88.586925 \n",
       "L 958.976803 34.226925 \n",
       "L 957.666466 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_725\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 958.976803 88.586925 \n",
       "L 960.28714 88.586925 \n",
       "L 960.28714 34.226925 \n",
       "L 958.976803 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_726\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 960.28714 88.586925 \n",
       "L 961.597478 88.586925 \n",
       "L 961.597478 34.226925 \n",
       "L 960.28714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_727\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 961.597478 88.586925 \n",
       "L 962.907815 88.586925 \n",
       "L 962.907815 34.226925 \n",
       "L 961.597478 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_728\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 962.907815 88.586925 \n",
       "L 964.218153 88.586925 \n",
       "L 964.218153 34.226925 \n",
       "L 962.907815 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_729\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 964.218153 88.586925 \n",
       "L 965.52849 88.586925 \n",
       "L 965.52849 34.226925 \n",
       "L 964.218153 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_730\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 965.52849 88.586925 \n",
       "L 966.838828 88.586925 \n",
       "L 966.838828 34.226925 \n",
       "L 965.52849 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_731\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 966.838828 88.586925 \n",
       "L 968.149165 88.586925 \n",
       "L 968.149165 34.226925 \n",
       "L 966.838828 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_732\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 968.149165 88.586925 \n",
       "L 969.459503 88.586925 \n",
       "L 969.459503 34.226925 \n",
       "L 968.149165 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_733\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 969.459503 88.586925 \n",
       "L 970.76984 88.586925 \n",
       "L 970.76984 34.226925 \n",
       "L 969.459503 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_734\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 970.76984 88.586925 \n",
       "L 972.080178 88.586925 \n",
       "L 972.080178 34.226925 \n",
       "L 970.76984 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_735\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 972.080178 88.586925 \n",
       "L 973.390515 88.586925 \n",
       "L 973.390515 34.226925 \n",
       "L 972.080178 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_736\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 973.390515 88.586925 \n",
       "L 974.700853 88.586925 \n",
       "L 974.700853 34.226925 \n",
       "L 973.390515 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_737\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 974.700853 88.586925 \n",
       "L 976.01119 88.586925 \n",
       "L 976.01119 34.226925 \n",
       "L 974.700853 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_738\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 976.01119 88.586925 \n",
       "L 977.321528 88.586925 \n",
       "L 977.321528 34.226925 \n",
       "L 976.01119 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_739\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 977.321528 88.586925 \n",
       "L 978.631865 88.586925 \n",
       "L 978.631865 34.226925 \n",
       "L 977.321528 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_740\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 978.631865 88.586925 \n",
       "L 979.942203 88.586925 \n",
       "L 979.942203 34.226925 \n",
       "L 978.631865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_741\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 979.942203 88.586925 \n",
       "L 981.25254 88.586925 \n",
       "L 981.25254 34.226925 \n",
       "L 979.942203 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_742\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 981.25254 88.586925 \n",
       "L 982.562878 88.586925 \n",
       "L 982.562878 34.226925 \n",
       "L 981.25254 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_743\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 982.562878 88.586925 \n",
       "L 983.873215 88.586925 \n",
       "L 983.873215 34.226925 \n",
       "L 982.562878 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_744\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 983.873215 88.586925 \n",
       "L 985.183553 88.586925 \n",
       "L 985.183553 34.226925 \n",
       "L 983.873215 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_745\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 985.183553 88.586925 \n",
       "L 986.49389 88.586925 \n",
       "L 986.49389 34.226925 \n",
       "L 985.183553 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_746\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 986.49389 88.586925 \n",
       "L 987.804227 88.586925 \n",
       "L 987.804227 34.226925 \n",
       "L 986.49389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_747\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 987.804227 88.586925 \n",
       "L 989.114565 88.586925 \n",
       "L 989.114565 34.226925 \n",
       "L 987.804227 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_748\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 989.114565 88.586925 \n",
       "L 990.424902 88.586925 \n",
       "L 990.424902 34.226925 \n",
       "L 989.114565 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_749\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 990.424902 88.586925 \n",
       "L 991.73524 88.586925 \n",
       "L 991.73524 34.226925 \n",
       "L 990.424902 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_750\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 991.73524 88.586925 \n",
       "L 993.045577 88.586925 \n",
       "L 993.045577 34.226925 \n",
       "L 991.73524 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_751\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 993.045577 88.586925 \n",
       "L 994.355915 88.586925 \n",
       "L 994.355915 34.226925 \n",
       "L 993.045577 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_752\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 994.355915 88.586925 \n",
       "L 995.666252 88.586925 \n",
       "L 995.666252 34.226925 \n",
       "L 994.355915 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_753\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 995.666252 88.586925 \n",
       "L 996.97659 88.586925 \n",
       "L 996.97659 34.226925 \n",
       "L 995.666252 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_754\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 996.97659 88.586925 \n",
       "L 998.286927 88.586925 \n",
       "L 998.286927 34.226925 \n",
       "L 996.97659 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_755\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 998.286927 88.586925 \n",
       "L 999.597265 88.586925 \n",
       "L 999.597265 34.226925 \n",
       "L 998.286927 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_756\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 999.597265 88.586925 \n",
       "L 1000.907602 88.586925 \n",
       "L 1000.907602 34.226925 \n",
       "L 999.597265 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_757\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1000.907602 88.586925 \n",
       "L 1002.21794 88.586925 \n",
       "L 1002.21794 34.226925 \n",
       "L 1000.907602 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_758\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1002.21794 88.586925 \n",
       "L 1003.528277 88.586925 \n",
       "L 1003.528277 34.226925 \n",
       "L 1002.21794 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_759\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1003.528277 88.586925 \n",
       "L 1004.838615 88.586925 \n",
       "L 1004.838615 34.226925 \n",
       "L 1003.528277 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_760\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1004.838615 88.586925 \n",
       "L 1006.148952 88.586925 \n",
       "L 1006.148952 34.226925 \n",
       "L 1004.838615 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_761\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1006.148952 88.586925 \n",
       "L 1007.45929 88.586925 \n",
       "L 1007.45929 34.226925 \n",
       "L 1006.148952 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_762\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1007.45929 88.586925 \n",
       "L 1008.769627 88.586925 \n",
       "L 1008.769627 34.226925 \n",
       "L 1007.45929 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_763\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1008.769627 88.586925 \n",
       "L 1010.079965 88.586925 \n",
       "L 1010.079965 34.226925 \n",
       "L 1008.769627 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_764\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1010.079965 88.586925 \n",
       "L 1011.390302 88.586925 \n",
       "L 1011.390302 34.226925 \n",
       "L 1010.079965 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_765\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1011.390302 88.586925 \n",
       "L 1012.70064 88.586925 \n",
       "L 1012.70064 34.226925 \n",
       "L 1011.390302 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_766\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1012.70064 88.586925 \n",
       "L 1014.010977 88.586925 \n",
       "L 1014.010977 34.226925 \n",
       "L 1012.70064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_767\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1014.010977 88.586925 \n",
       "L 1015.321314 88.586925 \n",
       "L 1015.321314 34.226925 \n",
       "L 1014.010977 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_768\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1015.321314 88.586925 \n",
       "L 1016.631652 88.586925 \n",
       "L 1016.631652 34.226925 \n",
       "L 1015.321314 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_769\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1016.631652 88.586925 \n",
       "L 1017.941989 88.586925 \n",
       "L 1017.941989 34.226925 \n",
       "L 1016.631652 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_770\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1017.941989 88.586925 \n",
       "L 1019.252327 88.586925 \n",
       "L 1019.252327 34.226925 \n",
       "L 1017.941989 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_771\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1019.252327 88.586925 \n",
       "L 1020.562664 88.586925 \n",
       "L 1020.562664 34.226925 \n",
       "L 1019.252327 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_772\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1020.562664 88.586925 \n",
       "L 1021.873002 88.586925 \n",
       "L 1021.873002 34.226925 \n",
       "L 1020.562664 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_773\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1021.873002 88.586925 \n",
       "L 1023.183339 88.586925 \n",
       "L 1023.183339 34.226925 \n",
       "L 1021.873002 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_774\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1023.183339 88.586925 \n",
       "L 1024.493677 88.586925 \n",
       "L 1024.493677 34.226925 \n",
       "L 1023.183339 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_775\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1024.493677 88.586925 \n",
       "L 1025.804014 88.586925 \n",
       "L 1025.804014 34.226925 \n",
       "L 1024.493677 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_776\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1025.804014 88.586925 \n",
       "L 1027.114352 88.586925 \n",
       "L 1027.114352 34.226925 \n",
       "L 1025.804014 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_777\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1027.114352 88.586925 \n",
       "L 1028.424689 88.586925 \n",
       "L 1028.424689 34.226925 \n",
       "L 1027.114352 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_778\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1028.424689 88.586925 \n",
       "L 1029.735027 88.586925 \n",
       "L 1029.735027 34.226925 \n",
       "L 1028.424689 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_779\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1029.735027 88.586925 \n",
       "L 1031.045364 88.586925 \n",
       "L 1031.045364 34.226925 \n",
       "L 1029.735027 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_780\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1031.045364 88.586925 \n",
       "L 1032.355702 88.586925 \n",
       "L 1032.355702 34.226925 \n",
       "L 1031.045364 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_781\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1032.355702 88.586925 \n",
       "L 1033.666039 88.586925 \n",
       "L 1033.666039 34.226925 \n",
       "L 1032.355702 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_782\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1033.666039 88.586925 \n",
       "L 1034.976377 88.586925 \n",
       "L 1034.976377 34.226925 \n",
       "L 1033.666039 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_783\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1034.976377 88.586925 \n",
       "L 1036.286714 88.586925 \n",
       "L 1036.286714 34.226925 \n",
       "L 1034.976377 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_784\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1036.286714 88.586925 \n",
       "L 1037.597052 88.586925 \n",
       "L 1037.597052 34.226925 \n",
       "L 1036.286714 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_785\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1037.597052 88.586925 \n",
       "L 1038.907389 88.586925 \n",
       "L 1038.907389 34.226925 \n",
       "L 1037.597052 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_786\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1038.907389 88.586925 \n",
       "L 1040.217727 88.586925 \n",
       "L 1040.217727 34.226925 \n",
       "L 1038.907389 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_787\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1040.217727 88.586925 \n",
       "L 1041.528064 88.586925 \n",
       "L 1041.528064 34.226925 \n",
       "L 1040.217727 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_788\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1041.528064 88.586925 \n",
       "L 1042.838401 88.586925 \n",
       "L 1042.838401 34.226925 \n",
       "L 1041.528064 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_789\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1042.838401 88.586925 \n",
       "L 1044.148739 88.586925 \n",
       "L 1044.148739 34.226925 \n",
       "L 1042.838401 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_790\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1044.148739 88.586925 \n",
       "L 1045.459076 88.586925 \n",
       "L 1045.459076 34.226925 \n",
       "L 1044.148739 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_791\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1045.459076 88.586925 \n",
       "L 1046.769414 88.586925 \n",
       "L 1046.769414 34.226925 \n",
       "L 1045.459076 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_792\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1046.769414 88.586925 \n",
       "L 1048.079751 88.586925 \n",
       "L 1048.079751 34.226925 \n",
       "L 1046.769414 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_793\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1048.079751 88.586925 \n",
       "L 1049.390089 88.586925 \n",
       "L 1049.390089 34.226925 \n",
       "L 1048.079751 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_794\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1049.390089 88.586925 \n",
       "L 1050.700426 88.586925 \n",
       "L 1050.700426 34.226925 \n",
       "L 1049.390089 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_795\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1050.700426 88.586925 \n",
       "L 1052.010764 88.586925 \n",
       "L 1052.010764 34.226925 \n",
       "L 1050.700426 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_796\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1052.010764 88.586925 \n",
       "L 1053.321101 88.586925 \n",
       "L 1053.321101 34.226925 \n",
       "L 1052.010764 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_797\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1053.321101 88.586925 \n",
       "L 1054.631439 88.586925 \n",
       "L 1054.631439 34.226925 \n",
       "L 1053.321101 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_798\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1054.631439 88.586925 \n",
       "L 1055.941776 88.586925 \n",
       "L 1055.941776 34.226925 \n",
       "L 1054.631439 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_799\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1055.941776 88.586925 \n",
       "L 1057.252114 88.586925 \n",
       "L 1057.252114 34.226925 \n",
       "L 1055.941776 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_800\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1057.252114 88.586925 \n",
       "L 1058.562451 88.586925 \n",
       "L 1058.562451 34.226925 \n",
       "L 1057.252114 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_801\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1058.562451 88.586925 \n",
       "L 1059.872789 88.586925 \n",
       "L 1059.872789 34.226925 \n",
       "L 1058.562451 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_802\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1059.872789 88.586925 \n",
       "L 1061.183126 88.586925 \n",
       "L 1061.183126 34.226925 \n",
       "L 1059.872789 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_803\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1061.183126 88.586925 \n",
       "L 1062.493464 88.586925 \n",
       "L 1062.493464 34.226925 \n",
       "L 1061.183126 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_804\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1062.493464 88.586925 \n",
       "L 1063.803801 88.586925 \n",
       "L 1063.803801 34.226925 \n",
       "L 1062.493464 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_805\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1063.803801 88.586925 \n",
       "L 1065.114139 88.586925 \n",
       "L 1065.114139 34.226925 \n",
       "L 1063.803801 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_806\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1065.114139 88.586925 \n",
       "L 1066.424476 88.586925 \n",
       "L 1066.424476 34.226925 \n",
       "L 1065.114139 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_807\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1066.424476 88.586925 \n",
       "L 1067.734814 88.586925 \n",
       "L 1067.734814 34.226925 \n",
       "L 1066.424476 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_808\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1067.734814 88.586925 \n",
       "L 1069.045151 88.586925 \n",
       "L 1069.045151 34.226925 \n",
       "L 1067.734814 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_809\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1069.045151 88.586925 \n",
       "L 1070.355489 88.586925 \n",
       "L 1070.355489 34.226925 \n",
       "L 1069.045151 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_810\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1070.355489 88.586925 \n",
       "L 1071.665826 88.586925 \n",
       "L 1071.665826 34.226925 \n",
       "L 1070.355489 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_811\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1071.665826 88.586925 \n",
       "L 1072.976163 88.586925 \n",
       "L 1072.976163 34.226925 \n",
       "L 1071.665826 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_812\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1072.976163 88.586925 \n",
       "L 1074.286501 88.586925 \n",
       "L 1074.286501 34.226925 \n",
       "L 1072.976163 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_813\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1074.286501 88.586925 \n",
       "L 1075.596838 88.586925 \n",
       "L 1075.596838 34.226925 \n",
       "L 1074.286501 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_814\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1075.596838 88.586925 \n",
       "L 1076.907176 88.586925 \n",
       "L 1076.907176 34.226925 \n",
       "L 1075.596838 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_815\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1076.907176 88.586925 \n",
       "L 1078.217513 88.586925 \n",
       "L 1078.217513 34.226925 \n",
       "L 1076.907176 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_816\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1078.217513 88.586925 \n",
       "L 1079.527851 88.586925 \n",
       "L 1079.527851 34.226925 \n",
       "L 1078.217513 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_817\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1079.527851 88.586925 \n",
       "L 1080.838188 88.586925 \n",
       "L 1080.838188 34.226925 \n",
       "L 1079.527851 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_818\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1080.838188 88.586925 \n",
       "L 1082.148526 88.586925 \n",
       "L 1082.148526 34.226925 \n",
       "L 1080.838188 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_819\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1082.148526 88.586925 \n",
       "L 1083.458863 88.586925 \n",
       "L 1083.458863 34.226925 \n",
       "L 1082.148526 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_820\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1083.458863 88.586925 \n",
       "L 1084.769201 88.586925 \n",
       "L 1084.769201 34.226925 \n",
       "L 1083.458863 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_821\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1084.769201 88.586925 \n",
       "L 1086.079538 88.586925 \n",
       "L 1086.079538 34.226925 \n",
       "L 1084.769201 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_822\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1086.079538 88.586925 \n",
       "L 1087.389876 88.586925 \n",
       "L 1087.389876 34.226925 \n",
       "L 1086.079538 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_823\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1087.389876 88.586925 \n",
       "L 1088.700213 88.586925 \n",
       "L 1088.700213 34.226925 \n",
       "L 1087.389876 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_824\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1088.700213 88.586925 \n",
       "L 1090.010551 88.586925 \n",
       "L 1090.010551 34.226925 \n",
       "L 1088.700213 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_825\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1090.010551 88.586925 \n",
       "L 1091.320888 88.586925 \n",
       "L 1091.320888 34.226925 \n",
       "L 1090.010551 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_826\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1091.320888 88.586925 \n",
       "L 1092.631226 88.586925 \n",
       "L 1092.631226 34.226925 \n",
       "L 1091.320888 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_827\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1092.631226 88.586925 \n",
       "L 1093.941563 88.586925 \n",
       "L 1093.941563 34.226925 \n",
       "L 1092.631226 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_828\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1093.941563 88.586925 \n",
       "L 1095.251901 88.586925 \n",
       "L 1095.251901 34.226925 \n",
       "L 1093.941563 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_829\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1095.251901 88.586925 \n",
       "L 1096.562238 88.586925 \n",
       "L 1096.562238 34.226925 \n",
       "L 1095.251901 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_830\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1096.562238 88.586925 \n",
       "L 1097.872576 88.586925 \n",
       "L 1097.872576 34.226925 \n",
       "L 1096.562238 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_831\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1097.872576 88.586925 \n",
       "L 1099.182913 88.586925 \n",
       "L 1099.182913 34.226925 \n",
       "L 1097.872576 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_832\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1099.182913 88.586925 \n",
       "L 1100.49325 88.586925 \n",
       "L 1100.49325 34.226925 \n",
       "L 1099.182913 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_833\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1100.49325 88.586925 \n",
       "L 1101.803588 88.586925 \n",
       "L 1101.803588 34.226925 \n",
       "L 1100.49325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_834\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1101.803588 88.586925 \n",
       "L 1103.113925 88.586925 \n",
       "L 1103.113925 34.226925 \n",
       "L 1101.803588 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_835\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1103.113925 88.586925 \n",
       "L 1104.424263 88.586925 \n",
       "L 1104.424263 34.226925 \n",
       "L 1103.113925 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_836\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1104.424263 88.586925 \n",
       "L 1105.7346 88.586925 \n",
       "L 1105.7346 34.226925 \n",
       "L 1104.424263 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_837\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1105.7346 88.586925 \n",
       "L 1107.044938 88.586925 \n",
       "L 1107.044938 34.226925 \n",
       "L 1105.7346 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_838\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1107.044938 88.586925 \n",
       "L 1108.355275 88.586925 \n",
       "L 1108.355275 34.226925 \n",
       "L 1107.044938 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_839\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1108.355275 88.586925 \n",
       "L 1109.665613 88.586925 \n",
       "L 1109.665613 34.226925 \n",
       "L 1108.355275 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_840\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1109.665613 88.586925 \n",
       "L 1110.97595 88.586925 \n",
       "L 1110.97595 34.226925 \n",
       "L 1109.665613 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_841\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1110.97595 88.586925 \n",
       "L 1112.286288 88.586925 \n",
       "L 1112.286288 34.226925 \n",
       "L 1110.97595 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_842\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1112.286288 88.586925 \n",
       "L 1113.596625 88.586925 \n",
       "L 1113.596625 34.226925 \n",
       "L 1112.286288 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_843\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1113.596625 88.586925 \n",
       "L 1114.906963 88.586925 \n",
       "L 1114.906963 34.226925 \n",
       "L 1113.596625 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_844\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1114.906963 88.586925 \n",
       "L 1116.2173 88.586925 \n",
       "L 1116.2173 34.226925 \n",
       "L 1114.906963 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_845\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1116.2173 88.586925 \n",
       "L 1117.527638 88.586925 \n",
       "L 1117.527638 34.226925 \n",
       "L 1116.2173 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_846\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1117.527638 88.586925 \n",
       "L 1118.837975 88.586925 \n",
       "L 1118.837975 34.226925 \n",
       "L 1117.527638 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_847\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1118.837975 88.586925 \n",
       "L 1120.148313 88.586925 \n",
       "L 1120.148313 34.226925 \n",
       "L 1118.837975 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_848\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1120.148313 88.586925 \n",
       "L 1121.45865 88.586925 \n",
       "L 1121.45865 34.226925 \n",
       "L 1120.148313 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_849\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1121.45865 88.586925 \n",
       "L 1122.768988 88.586925 \n",
       "L 1122.768988 34.226925 \n",
       "L 1121.45865 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_850\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1122.768988 88.586925 \n",
       "L 1124.079325 88.586925 \n",
       "L 1124.079325 34.226925 \n",
       "L 1122.768988 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_851\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1124.079325 88.586925 \n",
       "L 1125.389663 88.586925 \n",
       "L 1125.389663 34.226925 \n",
       "L 1124.079325 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_852\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 1125.389663 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "L 1125.389663 34.226925 \n",
       "z\n",
       "\" style=\"fill:#377eb8;stroke:#000000;stroke-linejoin:miter;stroke-width:0.1;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m49614648bb\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"10.7\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0 -->\n",
       "      <g transform=\"translate(7.51875 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2034 4250 \n",
       "Q 1547 4250 1301 3770 \n",
       "Q 1056 3291 1056 2328 \n",
       "Q 1056 1369 1301 889 \n",
       "Q 1547 409 2034 409 \n",
       "Q 2525 409 2770 889 \n",
       "Q 3016 1369 3016 2328 \n",
       "Q 3016 3291 2770 3770 \n",
       "Q 2525 4250 2034 4250 \n",
       "z\n",
       "M 2034 4750 \n",
       "Q 2819 4750 3233 4129 \n",
       "Q 3647 3509 3647 2328 \n",
       "Q 3647 1150 3233 529 \n",
       "Q 2819 -91 2034 -91 \n",
       "Q 1250 -91 836 529 \n",
       "Q 422 1150 422 2328 \n",
       "Q 422 3509 836 4129 \n",
       "Q 1250 4750 2034 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-30\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"178.476886\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 50 -->\n",
       "      <g transform=\"translate(172.114386 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 691 4666 \n",
       "L 3169 4666 \n",
       "L 3169 4134 \n",
       "L 1269 4134 \n",
       "L 1269 2991 \n",
       "Q 1406 3038 1543 3061 \n",
       "Q 1681 3084 1819 3084 \n",
       "Q 2600 3084 3056 2656 \n",
       "Q 3513 2228 3513 1497 \n",
       "Q 3513 744 3044 326 \n",
       "Q 2575 -91 1722 -91 \n",
       "Q 1428 -91 1123 -41 \n",
       "Q 819 9 494 109 \n",
       "L 494 744 \n",
       "Q 775 591 1075 516 \n",
       "Q 1375 441 1709 441 \n",
       "Q 2250 441 2565 725 \n",
       "Q 2881 1009 2881 1497 \n",
       "Q 2881 1984 2565 2268 \n",
       "Q 2250 2553 1709 2553 \n",
       "Q 1456 2553 1204 2497 \n",
       "Q 953 2441 691 2322 \n",
       "L 691 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-35\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"346.253771\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 100 -->\n",
       "      <g transform=\"translate(336.710021 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 794 531 \n",
       "L 1825 531 \n",
       "L 1825 4091 \n",
       "L 703 3866 \n",
       "L 703 4441 \n",
       "L 1819 4666 \n",
       "L 2450 4666 \n",
       "L 2450 531 \n",
       "L 3481 531 \n",
       "L 3481 0 \n",
       "L 794 0 \n",
       "L 794 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-31\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"514.030657\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 150 -->\n",
       "      <g transform=\"translate(504.486907 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-31\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"681.807542\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 200 -->\n",
       "      <g transform=\"translate(672.263792 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 1228 531 \n",
       "L 3431 531 \n",
       "L 3431 0 \n",
       "L 469 0 \n",
       "L 469 531 \n",
       "Q 828 903 1448 1529 \n",
       "Q 2069 2156 2228 2338 \n",
       "Q 2531 2678 2651 2914 \n",
       "Q 2772 3150 2772 3378 \n",
       "Q 2772 3750 2511 3984 \n",
       "Q 2250 4219 1831 4219 \n",
       "Q 1534 4219 1204 4116 \n",
       "Q 875 4013 500 3803 \n",
       "L 500 4441 \n",
       "Q 881 4594 1212 4672 \n",
       "Q 1544 4750 1819 4750 \n",
       "Q 2544 4750 2975 4387 \n",
       "Q 3406 4025 3406 3419 \n",
       "Q 3406 3131 3298 2873 \n",
       "Q 3191 2616 2906 2266 \n",
       "Q 2828 2175 2409 1742 \n",
       "Q 1991 1309 1228 531 \n",
       "z\n",
       "\" id=\"DejaVuSans-32\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"849.584428\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 250 -->\n",
       "      <g transform=\"translate(840.040678 103.185362)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-32\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-35\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"1017.361314\" xlink:href=\"#m49614648bb\" y=\"88.586925\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 300 -->\n",
       "      <g transform=\"translate(1007.817564 103.185362)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 2597 2516 \n",
       "Q 3050 2419 3304 2112 \n",
       "Q 3559 1806 3559 1356 \n",
       "Q 3559 666 3084 287 \n",
       "Q 2609 -91 1734 -91 \n",
       "Q 1441 -91 1130 -33 \n",
       "Q 819 25 488 141 \n",
       "L 488 750 \n",
       "Q 750 597 1062 519 \n",
       "Q 1375 441 1716 441 \n",
       "Q 2309 441 2620 675 \n",
       "Q 2931 909 2931 1356 \n",
       "Q 2931 1769 2642 2001 \n",
       "Q 2353 2234 1838 2234 \n",
       "L 1294 2234 \n",
       "L 1294 2753 \n",
       "L 1863 2753 \n",
       "Q 2328 2753 2575 2939 \n",
       "Q 2822 3125 2822 3475 \n",
       "Q 2822 3834 2567 4026 \n",
       "Q 2313 4219 1838 4219 \n",
       "Q 1578 4219 1281 4162 \n",
       "Q 984 4106 628 3988 \n",
       "L 628 4550 \n",
       "Q 988 4650 1302 4700 \n",
       "Q 1616 4750 1894 4750 \n",
       "Q 2613 4750 3031 4423 \n",
       "Q 3450 4097 3450 3541 \n",
       "Q 3450 3153 3228 2886 \n",
       "Q 3006 2619 2597 2516 \n",
       "z\n",
       "\" id=\"DejaVuSans-33\" transform=\"scale(0.015625)\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-33\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-30\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_8\">\n",
       "     <!-- Distance [nm] -->\n",
       "     <g transform=\"translate(533.307813 116.863487)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 1259 4147 \n",
       "L 1259 519 \n",
       "L 2022 519 \n",
       "Q 2988 519 3436 956 \n",
       "Q 3884 1394 3884 2338 \n",
       "Q 3884 3275 3436 3711 \n",
       "Q 2988 4147 2022 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "M 628 4666 \n",
       "L 1925 4666 \n",
       "Q 3281 4666 3915 4102 \n",
       "Q 4550 3538 4550 2338 \n",
       "Q 4550 1131 3912 565 \n",
       "Q 3275 0 1925 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-44\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 603 3500 \n",
       "L 1178 3500 \n",
       "L 1178 0 \n",
       "L 603 0 \n",
       "L 603 3500 \n",
       "z\n",
       "M 603 4863 \n",
       "L 1178 4863 \n",
       "L 1178 4134 \n",
       "L 603 4134 \n",
       "L 603 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-69\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2834 3397 \n",
       "L 2834 2853 \n",
       "Q 2591 2978 2328 3040 \n",
       "Q 2066 3103 1784 3103 \n",
       "Q 1356 3103 1142 2972 \n",
       "Q 928 2841 928 2578 \n",
       "Q 928 2378 1081 2264 \n",
       "Q 1234 2150 1697 2047 \n",
       "L 1894 2003 \n",
       "Q 2506 1872 2764 1633 \n",
       "Q 3022 1394 3022 966 \n",
       "Q 3022 478 2636 193 \n",
       "Q 2250 -91 1575 -91 \n",
       "Q 1294 -91 989 -36 \n",
       "Q 684 19 347 128 \n",
       "L 347 722 \n",
       "Q 666 556 975 473 \n",
       "Q 1284 391 1588 391 \n",
       "Q 1994 391 2212 530 \n",
       "Q 2431 669 2431 922 \n",
       "Q 2431 1156 2273 1281 \n",
       "Q 2116 1406 1581 1522 \n",
       "L 1381 1569 \n",
       "Q 847 1681 609 1914 \n",
       "Q 372 2147 372 2553 \n",
       "Q 372 3047 722 3315 \n",
       "Q 1072 3584 1716 3584 \n",
       "Q 2034 3584 2315 3537 \n",
       "Q 2597 3491 2834 3397 \n",
       "z\n",
       "\" id=\"DejaVuSans-73\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1172 4494 \n",
       "L 1172 3500 \n",
       "L 2356 3500 \n",
       "L 2356 3053 \n",
       "L 1172 3053 \n",
       "L 1172 1153 \n",
       "Q 1172 725 1289 603 \n",
       "Q 1406 481 1766 481 \n",
       "L 2356 481 \n",
       "L 2356 0 \n",
       "L 1766 0 \n",
       "Q 1100 0 847 248 \n",
       "Q 594 497 594 1153 \n",
       "L 594 3053 \n",
       "L 172 3053 \n",
       "L 172 3500 \n",
       "L 594 3500 \n",
       "L 594 4494 \n",
       "L 1172 4494 \n",
       "z\n",
       "\" id=\"DejaVuSans-74\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2194 1759 \n",
       "Q 1497 1759 1228 1600 \n",
       "Q 959 1441 959 1056 \n",
       "Q 959 750 1161 570 \n",
       "Q 1363 391 1709 391 \n",
       "Q 2188 391 2477 730 \n",
       "Q 2766 1069 2766 1631 \n",
       "L 2766 1759 \n",
       "L 2194 1759 \n",
       "z\n",
       "M 3341 1997 \n",
       "L 3341 0 \n",
       "L 2766 0 \n",
       "L 2766 531 \n",
       "Q 2569 213 2275 61 \n",
       "Q 1981 -91 1556 -91 \n",
       "Q 1019 -91 701 211 \n",
       "Q 384 513 384 1019 \n",
       "Q 384 1609 779 1909 \n",
       "Q 1175 2209 1959 2209 \n",
       "L 2766 2209 \n",
       "L 2766 2266 \n",
       "Q 2766 2663 2505 2880 \n",
       "Q 2244 3097 1772 3097 \n",
       "Q 1472 3097 1187 3025 \n",
       "Q 903 2953 641 2809 \n",
       "L 641 3341 \n",
       "Q 956 3463 1253 3523 \n",
       "Q 1550 3584 1831 3584 \n",
       "Q 2591 3584 2966 3190 \n",
       "Q 3341 2797 3341 1997 \n",
       "z\n",
       "\" id=\"DejaVuSans-61\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3513 2113 \n",
       "L 3513 0 \n",
       "L 2938 0 \n",
       "L 2938 2094 \n",
       "Q 2938 2591 2744 2837 \n",
       "Q 2550 3084 2163 3084 \n",
       "Q 1697 3084 1428 2787 \n",
       "Q 1159 2491 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1366 3272 1645 3428 \n",
       "Q 1925 3584 2291 3584 \n",
       "Q 2894 3584 3203 3211 \n",
       "Q 3513 2838 3513 2113 \n",
       "z\n",
       "\" id=\"DejaVuSans-6e\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3122 3366 \n",
       "L 3122 2828 \n",
       "Q 2878 2963 2633 3030 \n",
       "Q 2388 3097 2138 3097 \n",
       "Q 1578 3097 1268 2742 \n",
       "Q 959 2388 959 1747 \n",
       "Q 959 1106 1268 751 \n",
       "Q 1578 397 2138 397 \n",
       "Q 2388 397 2633 464 \n",
       "Q 2878 531 3122 666 \n",
       "L 3122 134 \n",
       "Q 2881 22 2623 -34 \n",
       "Q 2366 -91 2075 -91 \n",
       "Q 1284 -91 818 406 \n",
       "Q 353 903 353 1747 \n",
       "Q 353 2603 823 3093 \n",
       "Q 1294 3584 2113 3584 \n",
       "Q 2378 3584 2631 3529 \n",
       "Q 2884 3475 3122 3366 \n",
       "z\n",
       "\" id=\"DejaVuSans-63\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3597 1894 \n",
       "L 3597 1613 \n",
       "L 953 1613 \n",
       "Q 991 1019 1311 708 \n",
       "Q 1631 397 2203 397 \n",
       "Q 2534 397 2845 478 \n",
       "Q 3156 559 3463 722 \n",
       "L 3463 178 \n",
       "Q 3153 47 2828 -22 \n",
       "Q 2503 -91 2169 -91 \n",
       "Q 1331 -91 842 396 \n",
       "Q 353 884 353 1716 \n",
       "Q 353 2575 817 3079 \n",
       "Q 1281 3584 2069 3584 \n",
       "Q 2775 3584 3186 3129 \n",
       "Q 3597 2675 3597 1894 \n",
       "z\n",
       "M 3022 2063 \n",
       "Q 3016 2534 2758 2815 \n",
       "Q 2500 3097 2075 3097 \n",
       "Q 1594 3097 1305 2825 \n",
       "Q 1016 2553 972 2059 \n",
       "L 3022 2063 \n",
       "z\n",
       "\" id=\"DejaVuSans-65\" transform=\"scale(0.015625)\"/>\n",
       "       <path id=\"DejaVuSans-20\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 550 4863 \n",
       "L 1875 4863 \n",
       "L 1875 4416 \n",
       "L 1125 4416 \n",
       "L 1125 -397 \n",
       "L 1875 -397 \n",
       "L 1875 -844 \n",
       "L 550 -844 \n",
       "L 550 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5b\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3328 2828 \n",
       "Q 3544 3216 3844 3400 \n",
       "Q 4144 3584 4550 3584 \n",
       "Q 5097 3584 5394 3201 \n",
       "Q 5691 2819 5691 2113 \n",
       "L 5691 0 \n",
       "L 5113 0 \n",
       "L 5113 2094 \n",
       "Q 5113 2597 4934 2840 \n",
       "Q 4756 3084 4391 3084 \n",
       "Q 3944 3084 3684 2787 \n",
       "Q 3425 2491 3425 1978 \n",
       "L 3425 0 \n",
       "L 2847 0 \n",
       "L 2847 2094 \n",
       "Q 2847 2600 2669 2842 \n",
       "Q 2491 3084 2119 3084 \n",
       "Q 1678 3084 1418 2786 \n",
       "Q 1159 2488 1159 1978 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 3500 \n",
       "L 1159 3500 \n",
       "L 1159 2956 \n",
       "Q 1356 3278 1631 3431 \n",
       "Q 1906 3584 2284 3584 \n",
       "Q 2666 3584 2933 3390 \n",
       "Q 3200 3197 3328 2828 \n",
       "z\n",
       "\" id=\"DejaVuSans-6d\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 1947 4863 \n",
       "L 1947 -844 \n",
       "L 622 -844 \n",
       "L 622 -397 \n",
       "L 1369 -397 \n",
       "L 1369 4416 \n",
       "L 622 4416 \n",
       "L 622 4863 \n",
       "L 1947 4863 \n",
       "z\n",
       "\" id=\"DejaVuSans-5d\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-44\"/>\n",
       "      <use x=\"77.001953\" xlink:href=\"#DejaVuSans-69\"/>\n",
       "      <use x=\"104.785156\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"156.884766\" xlink:href=\"#DejaVuSans-74\"/>\n",
       "      <use x=\"196.09375\" xlink:href=\"#DejaVuSans-61\"/>\n",
       "      <use x=\"257.373047\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"320.751953\" xlink:href=\"#DejaVuSans-63\"/>\n",
       "      <use x=\"375.732422\" xlink:href=\"#DejaVuSans-65\"/>\n",
       "      <use x=\"437.255859\" xlink:href=\"#DejaVuSans-20\"/>\n",
       "      <use x=\"469.042969\" xlink:href=\"#DejaVuSans-5b\"/>\n",
       "      <use x=\"508.056641\" xlink:href=\"#DejaVuSans-6e\"/>\n",
       "      <use x=\"571.435547\" xlink:href=\"#DejaVuSans-6d\"/>\n",
       "      <use x=\"668.847656\" xlink:href=\"#DejaVuSans-5d\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\"/>\n",
       "   <g id=\"line2d_8\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"line2d_9\">\n",
       "    <path clip-path=\"url(#p051bc9a1d4)\" d=\"M 10.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_853\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 10.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_854\">\n",
       "    <path d=\"M 1126.7 88.586925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_855\">\n",
       "    <path d=\"M 10.7 88.586925 \n",
       "L 1126.7 88.586925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_856\">\n",
       "    <path d=\"M 10.7 34.226925 \n",
       "L 1126.7 34.226925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"legend_1\">\n",
       "    <g id=\"line2d_10\">\n",
       "     <path d=\"M 19.7 15.298437 \n",
       "L 39.7 15.298437 \n",
       "\" style=\"fill:none;stroke:#e41a1c;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_11\"/>\n",
       "    <g id=\"text_9\">\n",
       "     <!-- SRO -->\n",
       "     <g transform=\"translate(47.7 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 3425 4513 \n",
       "L 3425 3897 \n",
       "Q 3066 4069 2747 4153 \n",
       "Q 2428 4238 2131 4238 \n",
       "Q 1616 4238 1336 4038 \n",
       "Q 1056 3838 1056 3469 \n",
       "Q 1056 3159 1242 3001 \n",
       "Q 1428 2844 1947 2747 \n",
       "L 2328 2669 \n",
       "Q 3034 2534 3370 2195 \n",
       "Q 3706 1856 3706 1288 \n",
       "Q 3706 609 3251 259 \n",
       "Q 2797 -91 1919 -91 \n",
       "Q 1588 -91 1214 -16 \n",
       "Q 841 59 441 206 \n",
       "L 441 856 \n",
       "Q 825 641 1194 531 \n",
       "Q 1563 422 1919 422 \n",
       "Q 2459 422 2753 634 \n",
       "Q 3047 847 3047 1241 \n",
       "Q 3047 1584 2836 1778 \n",
       "Q 2625 1972 2144 2069 \n",
       "L 1759 2144 \n",
       "Q 1053 2284 737 2584 \n",
       "Q 422 2884 422 3419 \n",
       "Q 422 4038 858 4394 \n",
       "Q 1294 4750 2059 4750 \n",
       "Q 2388 4750 2728 4690 \n",
       "Q 3069 4631 3425 4513 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2841 2188 \n",
       "Q 3044 2119 3236 1894 \n",
       "Q 3428 1669 3622 1275 \n",
       "L 4263 0 \n",
       "L 3584 0 \n",
       "L 2988 1197 \n",
       "Q 2756 1666 2539 1819 \n",
       "Q 2322 1972 1947 1972 \n",
       "L 1259 1972 \n",
       "L 1259 0 \n",
       "L 628 0 \n",
       "L 628 4666 \n",
       "L 2053 4666 \n",
       "Q 2853 4666 3247 4331 \n",
       "Q 3641 3997 3641 3322 \n",
       "Q 3641 2881 3436 2590 \n",
       "Q 3231 2300 2841 2188 \n",
       "z\n",
       "M 1259 4147 \n",
       "L 1259 2491 \n",
       "L 2053 2491 \n",
       "Q 2509 2491 2742 2702 \n",
       "Q 2975 2913 2975 3322 \n",
       "Q 2975 3731 2742 3939 \n",
       "Q 2509 4147 2053 4147 \n",
       "L 1259 4147 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 2522 4238 \n",
       "Q 1834 4238 1429 3725 \n",
       "Q 1025 3213 1025 2328 \n",
       "Q 1025 1447 1429 934 \n",
       "Q 1834 422 2522 422 \n",
       "Q 3209 422 3611 934 \n",
       "Q 4013 1447 4013 2328 \n",
       "Q 4013 3213 3611 3725 \n",
       "Q 3209 4238 2522 4238 \n",
       "z\n",
       "M 2522 4750 \n",
       "Q 3503 4750 4090 4092 \n",
       "Q 4678 3434 4678 2328 \n",
       "Q 4678 1225 4090 567 \n",
       "Q 3503 -91 2522 -91 \n",
       "Q 1538 -91 948 565 \n",
       "Q 359 1222 359 2328 \n",
       "Q 359 3434 948 4092 \n",
       "Q 1538 4750 2522 4750 \n",
       "z\n",
       "\" id=\"DejaVuSans-4f\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-52\"/>\n",
       "      <use x=\"132.958984\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"line2d_12\">\n",
       "     <path d=\"M 88.86875 15.298437 \n",
       "L 108.86875 15.298437 \n",
       "\" style=\"fill:none;stroke:#377eb8;stroke-linecap:square;stroke-width:8;\"/>\n",
       "    </g>\n",
       "    <g id=\"line2d_13\"/>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- STOsub -->\n",
       "     <g transform=\"translate(116.86875 18.798437)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M -19 4666 \n",
       "L 3928 4666 \n",
       "L 3928 4134 \n",
       "L 2272 4134 \n",
       "L 2272 0 \n",
       "L 1638 0 \n",
       "L 1638 4134 \n",
       "L -19 4134 \n",
       "L -19 4666 \n",
       "z\n",
       "\" id=\"DejaVuSans-54\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 544 1381 \n",
       "L 544 3500 \n",
       "L 1119 3500 \n",
       "L 1119 1403 \n",
       "Q 1119 906 1312 657 \n",
       "Q 1506 409 1894 409 \n",
       "Q 2359 409 2629 706 \n",
       "Q 2900 1003 2900 1516 \n",
       "L 2900 3500 \n",
       "L 3475 3500 \n",
       "L 3475 0 \n",
       "L 2900 0 \n",
       "L 2900 538 \n",
       "Q 2691 219 2414 64 \n",
       "Q 2138 -91 1772 -91 \n",
       "Q 1169 -91 856 284 \n",
       "Q 544 659 544 1381 \n",
       "z\n",
       "M 1991 3584 \n",
       "L 1991 3584 \n",
       "z\n",
       "\" id=\"DejaVuSans-75\" transform=\"scale(0.015625)\"/>\n",
       "       <path d=\"M 3116 1747 \n",
       "Q 3116 2381 2855 2742 \n",
       "Q 2594 3103 2138 3103 \n",
       "Q 1681 3103 1420 2742 \n",
       "Q 1159 2381 1159 1747 \n",
       "Q 1159 1113 1420 752 \n",
       "Q 1681 391 2138 391 \n",
       "Q 2594 391 2855 752 \n",
       "Q 3116 1113 3116 1747 \n",
       "z\n",
       "M 1159 2969 \n",
       "Q 1341 3281 1617 3432 \n",
       "Q 1894 3584 2278 3584 \n",
       "Q 2916 3584 3314 3078 \n",
       "Q 3713 2572 3713 1747 \n",
       "Q 3713 922 3314 415 \n",
       "Q 2916 -91 2278 -91 \n",
       "Q 1894 -91 1617 61 \n",
       "Q 1341 213 1159 525 \n",
       "L 1159 0 \n",
       "L 581 0 \n",
       "L 581 4863 \n",
       "L 1159 4863 \n",
       "L 1159 2969 \n",
       "z\n",
       "\" id=\"DejaVuSans-62\" transform=\"scale(0.015625)\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "      <use x=\"63.476562\" xlink:href=\"#DejaVuSans-54\"/>\n",
       "      <use x=\"124.560547\" xlink:href=\"#DejaVuSans-4f\"/>\n",
       "      <use x=\"203.271484\" xlink:href=\"#DejaVuSans-73\"/>\n",
       "      <use x=\"255.371094\" xlink:href=\"#DejaVuSans-75\"/>\n",
       "      <use x=\"318.75\" xlink:href=\"#DejaVuSans-62\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"p051bc9a1d4\">\n",
       "   <rect height=\"54.36\" width=\"1116\" x=\"10.7\" y=\"34.226925\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 1440x72 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "substrate = ud.Structure('Static Substrate')\n",
    "substrate.add_sub_structure(STO_sub, 1000000)\n",
    "\n",
    "S2.add_substrate(substrate)\n",
    "\n",
    "print(S2)\n",
    "\n",
    "S2.visualize()"
   ]
  }
 ],
 "metadata": {
  "interpreter": {
   "hash": "87a6fe894a5ea960ae12a5af334479cac21ecd8a09e9cb88f82aa88c015ae656"
  },
  "kernelspec": {
   "display_name": "Python 3",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8.9"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}
