{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "f555b259-73e0-4101-af31-b75a27de03d5",
   "metadata": {},
   "source": [
    "# Hydrogen Blending\n",
    "\n",
    "November, this year, came in with a bang [where I live](https://www.google.com/maps/place/Edmonton,+AB/@53.5266805,-113.4927372,10z/data=!3m1!4b1!4m5!3m4!1s0x53a0224580deff23:0x411fa00c4af6155d!8m2!3d53.5460983!4d-113.4937266): the temperature outside is currently -20°C, there is a pile of snow, and suddenly staying in and staying warm is very relevant. At the same time, with [COP27](https://www.un.org/en/climatechange/cop27) taking place in Egypt, climate change is top of mind. With Edmonton [evaluating its net zero strategy](https://www.cbc.ca/news/canada/edmonton/shocked-and-disappointed-edmonton-climate-advisory-committee-decries-proposed-budget-1.6646702), I thought it would be worthwhile to look at one of the largest sources of household energy use in Canada: space heating. Space heating [accounts for 61.6% of household energy use](https://oee.nrcan.gc.ca/publications/statistics/trends/2017/residential.cfm), and in the province of Alberta that is predominantly from burning natural gas.\n",
    "\n",
    "A commonly bandied about tool for reducing household carbon emissions is hydrogen blending, such as [this project in the Edmonton area](https://gas.atco.com/en-ca/community/projects/fort-saskatchewan-hydrogen-blending-project.html). The idea is to gradually increase the hydrogen content of the natural gas and, since hydrogen burns without producing any CO<sub>2</sub>, consequently reducing the carbon emissions from its use. This has the obvious advantage of continuing to use the existing gas distribution infrastructure, and existing appliances (e.g. people's furnaces).\n",
    "\n",
    "But is this realistic? A common criticism of hydrogen is its low energy density: for a given flowrate you would expect to get ~1/3 the energy from pure hydrogen than from natural gas (assuming you are combusting it). *But* hydrogen is also incredibly light and, since flowrate is $\\propto \\frac{1}{\\sqrt{\\rho}}$, for the same pressure drop across a pipe you would expect a greater flowrate. So which is it? Does the energy content decrease, increase, or stay the same? Instead of just waving my hands and guessing, I thought it might be worthwhile to work through some simple calculations to get a sense of the scale of things. \n",
    "\n",
    "That said, it is rarely the case in engineering that decisions are clear cut. Blending hydrogen will have advantages and disadvantages, and whether the one out-weighs the other depends greatly on the particular location, its needs, infrastructure, and a host of other factors."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "77445132-a4b0-4f15-86a7-78e5100794c0",
   "metadata": {},
   "source": [
    "## Energy density\n",
    "\n",
    "The obvious place to start, and where I have found people often end, is with the heating value. For convenience I am going to use [higher heating values](https://en.wikipedia.org/wiki/Heat_of_combustion#Higher_heating_value), given here per standard cubic meter. Where *standard* in this case means at 15&deg;C and 1atm."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "9b190ba5-c5d9-4179-8159-0aa87342b45a",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "35.396 MJ m^-3"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "using Unitful\n",
    "\n",
    "# Standard State\n",
    "R  = 8.31446261815324u\"m^3*Pa/K/mol\"\n",
    "Tᵣ = 288.15u\"K\"\n",
    "Pᵣ = 101325u\"Pa\"\n",
    "\n",
    "# Hydrogen, from the GPSA handbook, 13th ed.\n",
    "HHV_H2 = 12.109u\"MJ/m^3\"\n",
    "\n",
    "# Natural Gas, typical\n",
    "HHV_NG = 35.396u\"MJ/m^3\""
   ]
  },
  {
   "cell_type": "markdown",
   "id": "51d7f29c-454f-4ad3-bbf0-b1434757aea3",
   "metadata": {},
   "source": [
    "We can use a simple mixing rule to determine what the heating value would be with *x*% hydrogen by volume."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "71c60242-c112-4bc6-b35d-51fca0b03885",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "HHV (generic function with 1 method)"
      ]
     },
     "execution_count": 2,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "HHV(x) = x*HHV_H2 + (1-x)*HHV_NG"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "d6495e80-7c49-419d-97d7-0091ceac962b",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip370\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip370)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip371\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip370)\" d=\"\n",
       "M203.964 1423.18 L2352.76 1423.18 L2352.76 47.2441 L203.964 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip372\">\n",
       "    <rect x=\"203\" y=\"47\" width=\"2150\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  264.778,1423.18 264.778,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  771.569,1423.18 771.569,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1278.36,1423.18 1278.36,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1785.15,1423.18 1785.15,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2291.94,1423.18 2291.94,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  264.778,1423.18 264.778,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  771.569,1423.18 771.569,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1278.36,1423.18 1278.36,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1785.15,1423.18 1785.15,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2291.94,1423.18 2291.94,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip370)\" d=\"M264.778 1454.1 Q261.167 1454.1 259.339 1457.66 Q257.533 1461.2 257.533 1468.33 Q257.533 1475.44 259.339 1479.01 Q261.167 1482.55 264.778 1482.55 Q268.413 1482.55 270.218 1479.01 Q272.047 1475.44 272.047 1468.33 Q272.047 1461.2 270.218 1457.66 Q268.413 1454.1 264.778 1454.1 M264.778 1450.39 Q270.589 1450.39 273.644 1455 Q276.723 1459.58 276.723 1468.33 Q276.723 1477.06 273.644 1481.67 Q270.589 1486.25 264.778 1486.25 Q258.968 1486.25 255.89 1481.67 Q252.834 1477.06 252.834 1468.33 Q252.834 1459.58 255.89 1455 Q258.968 1450.39 264.778 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M750.84 1481.64 L767.159 1481.64 L767.159 1485.58 L745.215 1485.58 L745.215 1481.64 Q747.877 1478.89 752.46 1474.26 Q757.067 1469.61 758.247 1468.27 Q760.493 1465.74 761.372 1464.01 Q762.275 1462.25 762.275 1460.56 Q762.275 1457.8 760.331 1456.07 Q758.409 1454.33 755.308 1454.33 Q753.109 1454.33 750.655 1455.09 Q748.224 1455.86 745.447 1457.41 L745.447 1452.69 Q748.271 1451.55 750.724 1450.97 Q753.178 1450.39 755.215 1450.39 Q760.585 1450.39 763.78 1453.08 Q766.974 1455.77 766.974 1460.26 Q766.974 1462.39 766.164 1464.31 Q765.377 1466.2 763.271 1468.8 Q762.692 1469.47 759.59 1472.69 Q756.488 1475.88 750.84 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M777.02 1451.02 L795.377 1451.02 L795.377 1454.96 L781.303 1454.96 L781.303 1463.43 Q782.321 1463.08 783.34 1462.92 Q784.358 1462.73 785.377 1462.73 Q791.164 1462.73 794.544 1465.9 Q797.923 1469.08 797.923 1474.49 Q797.923 1480.07 794.451 1483.17 Q790.979 1486.25 784.659 1486.25 Q782.483 1486.25 780.215 1485.88 Q777.97 1485.51 775.562 1484.77 L775.562 1480.07 Q777.645 1481.2 779.868 1481.76 Q782.09 1482.32 784.567 1482.32 Q788.571 1482.32 790.909 1480.21 Q793.247 1478.1 793.247 1474.49 Q793.247 1470.88 790.909 1468.77 Q788.571 1466.67 784.567 1466.67 Q782.692 1466.67 780.817 1467.08 Q778.965 1467.5 777.02 1468.38 L777.02 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1253.06 1451.02 L1271.42 1451.02 L1271.42 1454.96 L1257.34 1454.96 L1257.34 1463.43 Q1258.36 1463.08 1259.38 1462.92 Q1260.4 1462.73 1261.42 1462.73 Q1267.2 1462.73 1270.58 1465.9 Q1273.96 1469.08 1273.96 1474.49 Q1273.96 1480.07 1270.49 1483.17 Q1267.02 1486.25 1260.7 1486.25 Q1258.52 1486.25 1256.25 1485.88 Q1254.01 1485.51 1251.6 1484.77 L1251.6 1480.07 Q1253.68 1481.2 1255.91 1481.76 Q1258.13 1482.32 1260.61 1482.32 Q1264.61 1482.32 1266.95 1480.21 Q1269.29 1478.1 1269.29 1474.49 Q1269.29 1470.88 1266.95 1468.77 Q1264.61 1466.67 1260.61 1466.67 Q1258.73 1466.67 1256.86 1467.08 Q1255 1467.5 1253.06 1468.38 L1253.06 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1293.17 1454.1 Q1289.56 1454.1 1287.73 1457.66 Q1285.93 1461.2 1285.93 1468.33 Q1285.93 1475.44 1287.73 1479.01 Q1289.56 1482.55 1293.17 1482.55 Q1296.81 1482.55 1298.61 1479.01 Q1300.44 1475.44 1300.44 1468.33 Q1300.44 1461.2 1298.61 1457.66 Q1296.81 1454.1 1293.17 1454.1 M1293.17 1450.39 Q1298.98 1450.39 1302.04 1455 Q1305.12 1459.58 1305.12 1468.33 Q1305.12 1477.06 1302.04 1481.67 Q1298.98 1486.25 1293.17 1486.25 Q1287.36 1486.25 1284.29 1481.67 Q1281.23 1477.06 1281.23 1468.33 Q1281.23 1459.58 1284.29 1455 Q1287.36 1450.39 1293.17 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1759 1451.02 L1781.23 1451.02 L1781.23 1453.01 L1768.68 1485.58 L1763.8 1485.58 L1775.6 1454.96 L1759 1454.96 L1759 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1790.39 1451.02 L1808.75 1451.02 L1808.75 1454.96 L1794.68 1454.96 L1794.68 1463.43 Q1795.69 1463.08 1796.71 1462.92 Q1797.73 1462.73 1798.75 1462.73 Q1804.54 1462.73 1807.92 1465.9 Q1811.3 1469.08 1811.3 1474.49 Q1811.3 1480.07 1807.82 1483.17 Q1804.35 1486.25 1798.03 1486.25 Q1795.86 1486.25 1793.59 1485.88 Q1791.34 1485.51 1788.94 1484.77 L1788.94 1480.07 Q1791.02 1481.2 1793.24 1481.76 Q1795.46 1482.32 1797.94 1482.32 Q1801.94 1482.32 1804.28 1480.21 Q1806.62 1478.1 1806.62 1474.49 Q1806.62 1470.88 1804.28 1468.77 Q1801.94 1466.67 1797.94 1466.67 Q1796.06 1466.67 1794.19 1467.08 Q1792.34 1467.5 1790.39 1468.38 L1790.39 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M2251.55 1481.64 L2259.19 1481.64 L2259.19 1455.28 L2250.88 1456.95 L2250.88 1452.69 L2259.14 1451.02 L2263.82 1451.02 L2263.82 1481.64 L2271.46 1481.64 L2271.46 1485.58 L2251.55 1485.58 L2251.55 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M2290.9 1454.1 Q2287.29 1454.1 2285.46 1457.66 Q2283.65 1461.2 2283.65 1468.33 Q2283.65 1475.44 2285.46 1479.01 Q2287.29 1482.55 2290.9 1482.55 Q2294.53 1482.55 2296.34 1479.01 Q2298.17 1475.44 2298.17 1468.33 Q2298.17 1461.2 2296.34 1457.66 Q2294.53 1454.1 2290.9 1454.1 M2290.9 1450.39 Q2296.71 1450.39 2299.77 1455 Q2302.84 1459.58 2302.84 1468.33 Q2302.84 1477.06 2299.77 1481.67 Q2296.71 1486.25 2290.9 1486.25 Q2285.09 1486.25 2282.01 1481.67 Q2278.95 1477.06 2278.95 1468.33 Q2278.95 1459.58 2282.01 1455 Q2285.09 1450.39 2290.9 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M2321.06 1454.1 Q2317.45 1454.1 2315.62 1457.66 Q2313.82 1461.2 2313.82 1468.33 Q2313.82 1475.44 2315.62 1479.01 Q2317.45 1482.55 2321.06 1482.55 Q2324.7 1482.55 2326.5 1479.01 Q2328.33 1475.44 2328.33 1468.33 Q2328.33 1461.2 2326.5 1457.66 Q2324.7 1454.1 2321.06 1454.1 M2321.06 1450.39 Q2326.87 1450.39 2329.93 1455 Q2333.01 1459.58 2333.01 1468.33 Q2333.01 1477.06 2329.93 1481.67 Q2326.87 1486.25 2321.06 1486.25 Q2315.25 1486.25 2312.17 1481.67 Q2309.12 1477.06 2309.12 1468.33 Q2309.12 1459.58 2312.17 1455 Q2315.25 1450.39 2321.06 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M983.58 1547.13 Q980.811 1547.13 979.219 1549.49 Q977.66 1551.84 977.66 1556.04 Q977.66 1560.18 979.219 1562.57 Q980.811 1564.92 983.58 1564.92 Q986.285 1564.92 987.845 1562.57 Q989.436 1560.18 989.436 1556.04 Q989.436 1551.87 987.845 1549.52 Q986.285 1547.13 983.58 1547.13 M983.58 1543.09 Q988.609 1543.09 991.569 1546.59 Q994.529 1550.09 994.529 1556.04 Q994.529 1562 991.537 1565.5 Q988.577 1568.97 983.58 1568.97 Q978.487 1568.97 975.527 1565.5 Q972.567 1562 972.567 1556.04 Q972.567 1550.06 975.527 1546.59 Q978.519 1543.09 983.58 1543.09 M950.733 1523.71 Q947.995 1523.71 946.404 1526.09 Q944.844 1528.45 944.844 1532.59 Q944.844 1536.79 946.404 1539.14 Q947.964 1541.5 950.733 1541.5 Q953.502 1541.5 955.061 1539.14 Q956.653 1536.79 956.653 1532.59 Q956.653 1528.48 955.061 1526.09 Q953.47 1523.71 950.733 1523.71 M979.474 1519.66 L984.566 1519.66 L954.839 1568.97 L949.746 1568.97 L979.474 1519.66 M950.733 1519.66 Q955.762 1519.66 958.754 1523.17 Q961.745 1526.63 961.745 1532.59 Q961.745 1538.6 958.754 1542.07 Q955.793 1545.54 950.733 1545.54 Q945.672 1545.54 942.712 1542.07 Q939.784 1538.57 939.784 1532.59 Q939.784 1526.67 942.744 1523.17 Q945.704 1519.66 950.733 1519.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1025.24 1520.52 L1031.67 1520.52 L1031.67 1540 L1055.03 1540 L1055.03 1520.52 L1061.46 1520.52 L1061.46 1568.04 L1055.03 1568.04 L1055.03 1545.41 L1031.67 1545.41 L1031.67 1568.04 L1025.24 1568.04 L1025.24 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1088.84 1571.35 Q1086.35 1577.72 1084 1579.66 Q1081.64 1581.6 1077.7 1581.6 L1073.02 1581.6 L1073.02 1576.7 L1076.46 1576.7 Q1078.87 1576.7 1080.21 1575.56 Q1081.55 1574.41 1083.17 1570.14 L1084.22 1567.47 L1069.8 1532.4 L1076.01 1532.4 L1087.15 1560.28 L1098.29 1532.4 L1104.5 1532.4 L1088.84 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1136.04 1537.81 L1136.04 1518.52 L1141.89 1518.52 L1141.89 1568.04 L1136.04 1568.04 L1136.04 1562.7 Q1134.19 1565.88 1131.36 1567.44 Q1128.56 1568.97 1124.61 1568.97 Q1118.15 1568.97 1114.08 1563.81 Q1110.03 1558.65 1110.03 1550.25 Q1110.03 1541.85 1114.08 1536.69 Q1118.15 1531.54 1124.61 1531.54 Q1128.56 1531.54 1131.36 1533.1 Q1134.19 1534.62 1136.04 1537.81 M1116.08 1550.25 Q1116.08 1556.71 1118.72 1560.4 Q1121.4 1564.07 1126.04 1564.07 Q1130.69 1564.07 1133.36 1560.4 Q1136.04 1556.71 1136.04 1550.25 Q1136.04 1543.79 1133.36 1540.13 Q1130.69 1536.44 1126.04 1536.44 Q1121.4 1536.44 1118.72 1540.13 Q1116.08 1543.79 1116.08 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1174.61 1537.87 Q1173.63 1537.3 1172.45 1537.04 Q1171.3 1536.76 1169.9 1536.76 Q1164.94 1536.76 1162.27 1540 Q1159.62 1543.22 1159.62 1549.27 L1159.62 1568.04 L1153.74 1568.04 L1153.74 1532.4 L1159.62 1532.4 L1159.62 1537.93 Q1161.47 1534.69 1164.43 1533.13 Q1167.39 1531.54 1171.62 1531.54 Q1172.23 1531.54 1172.96 1531.63 Q1173.69 1531.7 1174.58 1531.85 L1174.61 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1193.14 1536.5 Q1188.43 1536.5 1185.69 1540.19 Q1182.95 1543.85 1182.95 1550.25 Q1182.95 1556.65 1185.66 1560.34 Q1188.4 1564 1193.14 1564 Q1197.82 1564 1200.55 1560.31 Q1203.29 1556.62 1203.29 1550.25 Q1203.29 1543.92 1200.55 1540.23 Q1197.82 1536.5 1193.14 1536.5 M1193.14 1531.54 Q1200.78 1531.54 1205.14 1536.5 Q1209.5 1541.47 1209.5 1550.25 Q1209.5 1559 1205.14 1564 Q1200.78 1568.97 1193.14 1568.97 Q1185.47 1568.97 1181.11 1564 Q1176.78 1559 1176.78 1550.25 Q1176.78 1541.47 1181.11 1536.5 Q1185.47 1531.54 1193.14 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1242.66 1549.81 Q1242.66 1543.44 1240.02 1539.94 Q1237.41 1536.44 1232.67 1536.44 Q1227.96 1536.44 1225.32 1539.94 Q1222.71 1543.44 1222.71 1549.81 Q1222.71 1556.14 1225.32 1559.64 Q1227.96 1563.14 1232.67 1563.14 Q1237.41 1563.14 1240.02 1559.64 Q1242.66 1556.14 1242.66 1549.81 M1248.52 1563.62 Q1248.52 1572.72 1244.48 1577.15 Q1240.44 1581.6 1232.1 1581.6 Q1229.01 1581.6 1226.27 1581.13 Q1223.54 1580.68 1220.96 1579.72 L1220.96 1574.03 Q1223.54 1575.43 1226.05 1576.1 Q1228.56 1576.76 1231.17 1576.76 Q1236.93 1576.76 1239.8 1573.74 Q1242.66 1570.75 1242.66 1564.67 L1242.66 1561.77 Q1240.85 1564.92 1238.02 1566.48 Q1235.18 1568.04 1231.24 1568.04 Q1224.68 1568.04 1220.67 1563.05 Q1216.66 1558.05 1216.66 1549.81 Q1216.66 1541.53 1220.67 1536.53 Q1224.68 1531.54 1231.24 1531.54 Q1235.18 1531.54 1238.02 1533.1 Q1240.85 1534.66 1242.66 1537.81 L1242.66 1532.4 L1248.52 1532.4 L1248.52 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1291.08 1548.76 L1291.08 1551.62 L1264.15 1551.62 Q1264.53 1557.67 1267.78 1560.85 Q1271.06 1564 1276.88 1564 Q1280.25 1564 1283.4 1563.17 Q1286.59 1562.35 1289.71 1560.69 L1289.71 1566.23 Q1286.56 1567.57 1283.25 1568.27 Q1279.94 1568.97 1276.53 1568.97 Q1268 1568.97 1263 1564 Q1258.04 1559.04 1258.04 1550.57 Q1258.04 1541.82 1262.75 1536.69 Q1267.49 1531.54 1275.51 1531.54 Q1282.7 1531.54 1286.87 1536.18 Q1291.08 1540.8 1291.08 1548.76 M1285.22 1547.04 Q1285.16 1542.23 1282.51 1539.37 Q1279.9 1536.5 1275.57 1536.5 Q1270.67 1536.5 1267.71 1539.27 Q1264.78 1542.04 1264.34 1547.07 L1285.22 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1330.32 1546.53 L1330.32 1568.04 L1324.46 1568.04 L1324.46 1546.72 Q1324.46 1541.66 1322.49 1539.14 Q1320.52 1536.63 1316.57 1536.63 Q1311.83 1536.63 1309.09 1539.65 Q1306.35 1542.68 1306.35 1547.9 L1306.35 1568.04 L1300.46 1568.04 L1300.46 1532.4 L1306.35 1532.4 L1306.35 1537.93 Q1308.45 1534.72 1311.29 1533.13 Q1314.15 1531.54 1317.87 1531.54 Q1324.02 1531.54 1327.17 1535.36 Q1330.32 1539.14 1330.32 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1376.79 1518.58 Q1372.52 1525.9 1370.46 1533.06 Q1368.39 1540.23 1368.39 1547.58 Q1368.39 1554.93 1370.46 1562.16 Q1372.56 1569.35 1376.79 1576.64 L1371.7 1576.64 Q1366.92 1569.16 1364.54 1561.93 Q1362.18 1554.71 1362.18 1547.58 Q1362.18 1540.48 1364.54 1533.29 Q1366.89 1526.09 1371.7 1518.58 L1376.79 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1383.95 1532.4 L1390.16 1532.4 L1401.3 1562.31 L1412.44 1532.4 L1418.64 1532.4 L1405.28 1568.04 L1397.32 1568.04 L1383.95 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1440.54 1536.5 Q1435.83 1536.5 1433.09 1540.19 Q1430.36 1543.85 1430.36 1550.25 Q1430.36 1556.65 1433.06 1560.34 Q1435.8 1564 1440.54 1564 Q1445.22 1564 1447.96 1560.31 Q1450.7 1556.62 1450.7 1550.25 Q1450.7 1543.92 1447.96 1540.23 Q1445.22 1536.5 1440.54 1536.5 M1440.54 1531.54 Q1448.18 1531.54 1452.54 1536.5 Q1456.9 1541.47 1456.9 1550.25 Q1456.9 1559 1452.54 1564 Q1448.18 1568.97 1440.54 1568.97 Q1432.87 1568.97 1428.51 1564 Q1424.18 1559 1424.18 1550.25 Q1424.18 1541.47 1428.51 1536.5 Q1432.87 1531.54 1440.54 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1466.61 1518.52 L1472.47 1518.52 L1472.47 1568.04 L1466.61 1568.04 L1466.61 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1495.13 1520.52 L1500.54 1520.52 L1483.99 1574.09 L1478.58 1574.09 L1495.13 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1502.48 1532.4 L1508.69 1532.4 L1519.83 1562.31 L1530.97 1532.4 L1537.17 1532.4 L1523.81 1568.04 L1515.85 1568.04 L1502.48 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1559.07 1536.5 Q1554.36 1536.5 1551.62 1540.19 Q1548.89 1543.85 1548.89 1550.25 Q1548.89 1556.65 1551.59 1560.34 Q1554.33 1564 1559.07 1564 Q1563.75 1564 1566.49 1560.31 Q1569.22 1556.62 1569.22 1550.25 Q1569.22 1543.92 1566.49 1540.23 Q1563.75 1536.5 1559.07 1536.5 M1559.07 1531.54 Q1566.71 1531.54 1571.07 1536.5 Q1575.43 1541.47 1575.43 1550.25 Q1575.43 1559 1571.07 1564 Q1566.71 1568.97 1559.07 1568.97 Q1551.4 1568.97 1547.04 1564 Q1542.71 1559 1542.71 1550.25 Q1542.71 1541.47 1547.04 1536.5 Q1551.4 1531.54 1559.07 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1585.14 1518.52 L1591 1518.52 L1591 1568.04 L1585.14 1568.04 L1585.14 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M1602.33 1518.58 L1607.42 1518.58 Q1612.19 1526.09 1614.55 1533.29 Q1616.94 1540.48 1616.94 1547.58 Q1616.94 1554.71 1614.55 1561.93 Q1612.19 1569.16 1607.42 1576.64 L1602.33 1576.64 Q1606.56 1569.35 1608.63 1562.16 Q1610.73 1554.93 1610.73 1547.58 Q1610.73 1540.23 1608.63 1533.06 Q1606.56 1525.9 1602.33 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  203.964,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  203.964,1040.98 2352.76,1040.98 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  203.964,658.771 2352.76,658.771 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip372)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  203.964,276.567 2352.76,276.567 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,1423.18 203.964,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,1423.18 222.861,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,1040.98 222.861,1040.98 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,658.771 222.861,658.771 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip370)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  203.964,276.567 222.861,276.567 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip370)\" d=\"M156.019 1408.98 Q152.408 1408.98 150.579 1412.54 Q148.774 1416.08 148.774 1423.21 Q148.774 1430.32 150.579 1433.89 Q152.408 1437.43 156.019 1437.43 Q159.653 1437.43 161.459 1433.89 Q163.288 1430.32 163.288 1423.21 Q163.288 1416.08 161.459 1412.54 Q159.653 1408.98 156.019 1408.98 M156.019 1405.27 Q161.829 1405.27 164.885 1409.88 Q167.964 1414.46 167.964 1423.21 Q167.964 1431.94 164.885 1436.55 Q161.829 1441.13 156.019 1441.13 Q150.209 1441.13 147.13 1436.55 Q144.075 1431.94 144.075 1423.21 Q144.075 1414.46 147.13 1409.88 Q150.209 1405.27 156.019 1405.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M116.668 1054.32 L124.306 1054.32 L124.306 1027.95 L115.996 1029.62 L115.996 1025.36 L124.26 1023.7 L128.936 1023.7 L128.936 1054.32 L136.575 1054.32 L136.575 1058.26 L116.668 1058.26 L116.668 1054.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M156.019 1026.77 Q152.408 1026.77 150.579 1030.34 Q148.774 1033.88 148.774 1041.01 Q148.774 1048.12 150.579 1051.68 Q152.408 1055.22 156.019 1055.22 Q159.653 1055.22 161.459 1051.68 Q163.288 1048.12 163.288 1041.01 Q163.288 1033.88 161.459 1030.34 Q159.653 1026.77 156.019 1026.77 M156.019 1023.07 Q161.829 1023.07 164.885 1027.68 Q167.964 1032.26 167.964 1041.01 Q167.964 1049.74 164.885 1054.34 Q161.829 1058.93 156.019 1058.93 Q150.209 1058.93 147.13 1054.34 Q144.075 1049.74 144.075 1041.01 Q144.075 1032.26 147.13 1027.68 Q150.209 1023.07 156.019 1023.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M119.885 672.116 L136.204 672.116 L136.204 676.051 L114.26 676.051 L114.26 672.116 Q116.922 669.361 121.505 664.732 Q126.112 660.079 127.292 658.736 Q129.538 656.213 130.417 654.477 Q131.32 652.718 131.32 651.028 Q131.32 648.273 129.376 646.537 Q127.455 644.801 124.353 644.801 Q122.154 644.801 119.7 645.565 Q117.269 646.329 114.492 647.88 L114.492 643.158 Q117.316 642.023 119.769 641.445 Q122.223 640.866 124.26 640.866 Q129.63 640.866 132.825 643.551 Q136.019 646.236 136.019 650.727 Q136.019 652.857 135.209 654.778 Q134.422 656.676 132.316 659.269 Q131.737 659.94 128.635 663.158 Q125.533 666.352 119.885 672.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M156.019 644.57 Q152.408 644.57 150.579 648.135 Q148.774 651.676 148.774 658.806 Q148.774 665.912 150.579 669.477 Q152.408 673.019 156.019 673.019 Q159.653 673.019 161.459 669.477 Q163.288 665.912 163.288 658.806 Q163.288 651.676 161.459 648.135 Q159.653 644.57 156.019 644.57 M156.019 640.866 Q161.829 640.866 164.885 645.473 Q167.964 650.056 167.964 658.806 Q167.964 667.533 164.885 672.139 Q161.829 676.722 156.019 676.722 Q150.209 676.722 147.13 672.139 Q144.075 667.533 144.075 658.806 Q144.075 650.056 147.13 645.473 Q150.209 640.866 156.019 640.866 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M130.024 275.213 Q133.38 275.93 135.255 278.199 Q137.154 280.467 137.154 283.8 Q137.154 288.916 133.635 291.717 Q130.117 294.518 123.635 294.518 Q121.459 294.518 119.144 294.078 Q116.853 293.662 114.399 292.805 L114.399 288.291 Q116.343 289.425 118.658 290.004 Q120.973 290.583 123.496 290.583 Q127.894 290.583 130.186 288.847 Q132.501 287.111 132.501 283.8 Q132.501 280.745 130.348 279.032 Q128.218 277.296 124.399 277.296 L120.371 277.296 L120.371 273.453 L124.584 273.453 Q128.033 273.453 129.862 272.088 Q131.691 270.699 131.691 268.106 Q131.691 265.444 129.792 264.032 Q127.917 262.597 124.399 262.597 Q122.478 262.597 120.279 263.014 Q118.08 263.43 115.441 264.31 L115.441 260.143 Q118.103 259.402 120.418 259.032 Q122.755 258.662 124.816 258.662 Q130.14 258.662 133.242 261.092 Q136.343 263.5 136.343 267.62 Q136.343 270.49 134.7 272.481 Q133.056 274.449 130.024 275.213 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M156.019 262.365 Q152.408 262.365 150.579 265.93 Q148.774 269.472 148.774 276.601 Q148.774 283.708 150.579 287.273 Q152.408 290.814 156.019 290.814 Q159.653 290.814 161.459 287.273 Q163.288 283.708 163.288 276.601 Q163.288 269.472 161.459 265.93 Q159.653 262.365 156.019 262.365 M156.019 258.662 Q161.829 258.662 164.885 263.268 Q167.964 267.851 167.964 276.601 Q167.964 285.328 164.885 289.935 Q161.829 294.518 156.019 294.518 Q150.209 294.518 147.13 289.935 Q144.075 285.328 144.075 276.601 Q144.075 267.851 147.13 263.268 Q150.209 258.662 156.019 258.662 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M16.4842 1250.95 L16.4842 1244.52 L35.9632 1244.52 L35.9632 1221.15 L16.4842 1221.15 L16.4842 1214.72 L64.0042 1214.72 L64.0042 1221.15 L41.3741 1221.15 L41.3741 1244.52 L64.0042 1244.52 L64.0042 1250.95 L16.4842 1250.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M28.3562 1202.18 L28.3562 1196.33 L64.0042 1196.33 L64.0042 1202.18 L28.3562 1202.18 M14.479 1202.18 L14.479 1196.33 L21.895 1196.33 L21.895 1202.18 L14.479 1202.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M45.7664 1160.62 Q39.4007 1160.62 35.8996 1163.26 Q32.3984 1165.87 32.3984 1170.61 Q32.3984 1175.32 35.8996 1177.96 Q39.4007 1180.57 45.7664 1180.57 Q52.1003 1180.57 55.6014 1177.96 Q59.1026 1175.32 59.1026 1170.61 Q59.1026 1165.87 55.6014 1163.26 Q52.1003 1160.62 45.7664 1160.62 M59.58 1154.76 Q68.683 1154.76 73.1071 1158.8 Q77.5631 1162.84 77.5631 1171.18 Q77.5631 1174.27 77.0857 1177.01 Q76.6401 1179.75 75.6852 1182.32 L69.9879 1182.32 Q71.3884 1179.75 72.0568 1177.23 Q72.7252 1174.72 72.7252 1172.11 Q72.7252 1166.35 69.7015 1163.48 Q66.7096 1160.62 60.6303 1160.62 L57.7339 1160.62 Q60.885 1162.43 62.4446 1165.26 Q64.0042 1168.1 64.0042 1172.04 Q64.0042 1178.6 59.0071 1182.61 Q54.01 1186.62 45.7664 1186.62 Q37.491 1186.62 32.4939 1182.61 Q27.4968 1178.6 27.4968 1172.04 Q27.4968 1168.1 29.0564 1165.26 Q30.616 1162.43 33.7671 1160.62 L28.3562 1160.62 L28.3562 1154.76 L59.58 1154.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M42.4881 1113.06 L64.0042 1113.06 L64.0042 1118.92 L42.679 1118.92 Q37.6183 1118.92 35.1038 1120.89 Q32.5894 1122.87 32.5894 1126.81 Q32.5894 1131.56 35.6131 1134.29 Q38.6368 1137.03 43.8567 1137.03 L64.0042 1137.03 L64.0042 1142.92 L14.479 1142.92 L14.479 1137.03 L33.8944 1137.03 Q30.6797 1134.93 29.0883 1132.1 Q27.4968 1129.23 27.4968 1125.51 Q27.4968 1119.37 31.3163 1116.22 Q35.1038 1113.06 42.4881 1113.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M44.7161 1070.89 L47.5806 1070.89 L47.5806 1097.82 Q53.6281 1097.44 56.8109 1094.19 Q59.9619 1090.91 59.9619 1085.09 Q59.9619 1081.71 59.1344 1078.56 Q58.3069 1075.38 56.6518 1072.26 L62.1899 1072.26 Q63.5267 1075.41 64.227 1078.72 Q64.9272 1082.03 64.9272 1085.44 Q64.9272 1093.97 59.9619 1098.96 Q54.9967 1103.93 46.5303 1103.93 Q37.7774 1103.93 32.6531 1099.22 Q27.4968 1094.48 27.4968 1086.46 Q27.4968 1079.26 32.1438 1075.09 Q36.7589 1070.89 44.7161 1070.89 M42.9973 1076.75 Q38.1912 1076.81 35.3266 1079.45 Q32.4621 1082.06 32.4621 1086.39 Q32.4621 1091.29 35.2312 1094.25 Q38.0002 1097.18 43.0292 1097.63 L42.9973 1076.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M33.8307 1040.62 Q33.2578 1041.61 33.0032 1042.79 Q32.7167 1043.93 32.7167 1045.33 Q32.7167 1050.3 35.9632 1052.97 Q39.1779 1055.61 45.2253 1055.61 L64.0042 1055.61 L64.0042 1061.5 L28.3562 1061.5 L28.3562 1055.61 L33.8944 1055.61 Q30.6479 1053.77 29.0883 1050.81 Q27.4968 1047.85 27.4968 1043.61 Q27.4968 1043.01 27.5923 1042.28 Q27.656 1041.55 27.8151 1040.65 L33.8307 1040.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M16.4842 1013.5 L16.4842 1007.08 L35.9632 1007.08 L35.9632 983.713 L16.4842 983.713 L16.4842 977.284 L64.0042 977.284 L64.0042 983.713 L41.3741 983.713 L41.3741 1007.08 L64.0042 1007.08 L64.0042 1013.5 L16.4842 1013.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M44.7161 934.252 L47.5806 934.252 L47.5806 961.179 Q53.6281 960.797 56.8109 957.55 Q59.9619 954.272 59.9619 948.447 Q59.9619 945.073 59.1344 941.922 Q58.3069 938.74 56.6518 935.62 L62.1899 935.62 Q63.5267 938.771 64.227 942.082 Q64.9272 945.392 64.9272 948.797 Q64.9272 957.327 59.9619 962.324 Q54.9967 967.29 46.5303 967.29 Q37.7774 967.29 32.6531 962.579 Q27.4968 957.837 27.4968 949.816 Q27.4968 942.623 32.1438 938.453 Q36.7589 934.252 44.7161 934.252 M42.9973 940.108 Q38.1912 940.172 35.3266 942.814 Q32.4621 945.424 32.4621 949.752 Q32.4621 954.654 35.2312 957.614 Q38.0002 960.542 43.0292 960.988 L42.9973 940.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M46.0847 908.439 Q46.0847 915.537 47.7079 918.274 Q49.3312 921.011 53.2461 921.011 Q56.3653 921.011 58.2114 918.974 Q60.0256 916.905 60.0256 913.372 Q60.0256 908.502 56.5881 905.574 Q53.1188 902.614 47.3897 902.614 L46.0847 902.614 L46.0847 908.439 M43.6657 896.758 L64.0042 896.758 L64.0042 902.614 L58.5933 902.614 Q61.8398 904.619 63.3994 907.611 Q64.9272 910.603 64.9272 914.932 Q64.9272 920.406 61.8716 923.653 Q58.7843 926.867 53.6281 926.867 Q47.6125 926.867 44.5569 922.857 Q41.5014 918.815 41.5014 910.826 L41.5014 902.614 L40.9285 902.614 Q36.8862 902.614 34.6901 905.288 Q32.4621 907.93 32.4621 912.736 Q32.4621 915.791 33.1941 918.688 Q33.9262 921.584 35.3903 924.258 L29.9795 924.258 Q28.7381 921.043 28.1334 918.019 Q27.4968 914.995 27.4968 912.131 Q27.4968 904.397 31.5072 900.577 Q35.5176 896.758 43.6657 896.758 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M18.2347 878.902 L28.3562 878.902 L28.3562 866.839 L32.9077 866.839 L32.9077 878.902 L52.2594 878.902 Q56.6199 878.902 57.8613 877.724 Q59.1026 876.515 59.1026 872.854 L59.1026 866.839 L64.0042 866.839 L64.0042 872.854 Q64.0042 879.634 61.4897 882.212 Q58.9434 884.79 52.2594 884.79 L32.9077 884.79 L32.9077 889.087 L28.3562 889.087 L28.3562 884.79 L18.2347 884.79 L18.2347 878.902 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M28.3562 859.136 L28.3562 853.28 L64.0042 853.28 L64.0042 859.136 L28.3562 859.136 M14.479 859.136 L14.479 853.28 L21.895 853.28 L21.895 859.136 L14.479 859.136 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M42.4881 811.394 L64.0042 811.394 L64.0042 817.25 L42.679 817.25 Q37.6183 817.25 35.1038 819.223 Q32.5894 821.197 32.5894 825.143 Q32.5894 829.886 35.6131 832.623 Q38.6368 835.36 43.8567 835.36 L64.0042 835.36 L64.0042 841.249 L28.3562 841.249 L28.3562 835.36 L33.8944 835.36 Q30.6797 833.26 29.0883 830.427 Q27.4968 827.562 27.4968 823.839 Q27.4968 817.696 31.3163 814.545 Q35.1038 811.394 42.4881 811.394 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M45.7664 776.255 Q39.4007 776.255 35.8996 778.897 Q32.3984 781.507 32.3984 786.249 Q32.3984 790.96 35.8996 793.601 Q39.4007 796.211 45.7664 796.211 Q52.1003 796.211 55.6014 793.601 Q59.1026 790.96 59.1026 786.249 Q59.1026 781.507 55.6014 778.897 Q52.1003 776.255 45.7664 776.255 M59.58 770.398 Q68.683 770.398 73.1071 774.441 Q77.5631 778.483 77.5631 786.822 Q77.5631 789.909 77.0857 792.647 Q76.6401 795.384 75.6852 797.962 L69.9879 797.962 Q71.3884 795.384 72.0568 792.869 Q72.7252 790.355 72.7252 787.745 Q72.7252 781.984 69.7015 779.119 Q66.7096 776.255 60.6303 776.255 L57.7339 776.255 Q60.885 778.069 62.4446 780.902 Q64.0042 783.735 64.0042 787.681 Q64.0042 794.238 59.0071 798.248 Q54.01 802.259 45.7664 802.259 Q37.491 802.259 32.4939 798.248 Q27.4968 794.238 27.4968 787.681 Q27.4968 783.735 29.0564 780.902 Q30.616 778.069 33.7671 776.255 L28.3562 776.255 L28.3562 770.398 L59.58 770.398 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M64.0042 725.106 L16.4842 743.249 L16.4842 736.533 L56.4926 721.478 L16.4842 706.391 L16.4842 699.707 L64.0042 717.818 L64.0042 725.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M46.0847 681.883 Q46.0847 688.981 47.7079 691.718 Q49.3312 694.456 53.2461 694.456 Q56.3653 694.456 58.2114 692.419 Q60.0256 690.35 60.0256 686.817 Q60.0256 681.947 56.5881 679.019 Q53.1188 676.059 47.3897 676.059 L46.0847 676.059 L46.0847 681.883 M43.6657 670.202 L64.0042 670.202 L64.0042 676.059 L58.5933 676.059 Q61.8398 678.064 63.3994 681.056 Q64.9272 684.048 64.9272 688.376 Q64.9272 693.851 61.8716 697.097 Q58.7843 700.312 53.6281 700.312 Q47.6125 700.312 44.5569 696.302 Q41.5014 692.259 41.5014 684.27 L41.5014 676.059 L40.9285 676.059 Q36.8862 676.059 34.6901 678.732 Q32.4621 681.374 32.4621 686.18 Q32.4621 689.236 33.1941 692.132 Q33.9262 695.028 35.3903 697.702 L29.9795 697.702 Q28.7381 694.487 28.1334 691.464 Q27.4968 688.44 27.4968 685.575 Q27.4968 677.841 31.5072 674.022 Q35.5176 670.202 43.6657 670.202 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M14.479 658.139 L14.479 652.283 L64.0042 652.283 L64.0042 658.139 L14.479 658.139 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M49.9359 640.633 L28.3562 640.633 L28.3562 634.777 L49.7131 634.777 Q54.7739 634.777 57.3202 632.804 Q59.8346 630.83 59.8346 626.884 Q59.8346 622.141 56.8109 619.404 Q53.7872 616.635 48.5673 616.635 L28.3562 616.635 L28.3562 610.778 L64.0042 610.778 L64.0042 616.635 L58.5296 616.635 Q61.7762 618.767 63.3676 621.6 Q64.9272 624.401 64.9272 628.125 Q64.9272 634.268 61.1078 637.451 Q57.2883 640.633 49.9359 640.633 M27.4968 625.897 L27.4968 625.897 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M44.7161 568.224 L47.5806 568.224 L47.5806 595.151 Q53.6281 594.769 56.8109 591.522 Q59.9619 588.244 59.9619 582.419 Q59.9619 579.045 59.1344 575.894 Q58.3069 572.711 56.6518 569.592 L62.1899 569.592 Q63.5267 572.743 64.227 576.053 Q64.9272 579.364 64.9272 582.769 Q64.9272 591.299 59.9619 596.296 Q54.9967 601.262 46.5303 601.262 Q37.7774 601.262 32.6531 596.551 Q27.4968 591.809 27.4968 583.788 Q27.4968 576.594 32.1438 572.425 Q36.7589 568.224 44.7161 568.224 M42.9973 574.08 Q38.1912 574.144 35.3266 576.785 Q32.4621 579.395 32.4621 583.724 Q32.4621 588.626 35.2312 591.586 Q38.0002 594.514 43.0292 594.96 L42.9973 574.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M14.5426 523.823 Q21.8632 528.088 29.0246 530.157 Q36.186 532.225 43.5384 532.225 Q50.8908 532.225 58.1159 530.157 Q65.3091 528.056 72.5979 523.823 L72.5979 528.915 Q65.1182 533.69 57.8931 536.077 Q50.668 538.432 43.5384 538.432 Q36.4406 538.432 29.2474 536.077 Q22.0542 533.721 14.5426 528.915 L14.5426 523.823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M16.4842 512.205 L16.4842 502.625 L48.8219 490.498 L16.4842 478.308 L16.4842 468.728 L64.0042 468.728 L64.0042 474.998 L22.277 474.998 L54.8694 487.252 L54.8694 493.713 L22.277 505.967 L64.0042 505.967 L64.0042 512.205 L16.4842 512.205 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M16.4842 455.964 L16.4842 449.535 L60.694 449.535 Q69.2877 449.535 73.1708 452.813 Q77.0539 456.06 77.0539 463.285 L77.0539 465.736 L71.643 465.736 L71.643 463.73 Q71.643 459.465 69.2559 457.715 Q66.8687 455.964 60.694 455.964 L16.4842 455.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M35.1993 388.52 Q31.2526 386.324 29.3747 383.268 Q27.4968 380.212 27.4968 376.075 Q27.4968 370.505 31.4117 367.481 Q35.2948 364.457 42.4881 364.457 L64.0042 364.457 L64.0042 370.346 L42.679 370.346 Q37.5546 370.346 35.072 372.16 Q32.5894 373.974 32.5894 377.698 Q32.5894 382.249 35.6131 384.891 Q38.6368 387.533 43.8567 387.533 L64.0042 387.533 L64.0042 393.421 L42.679 393.421 Q37.5228 393.421 35.072 395.235 Q32.5894 397.05 32.5894 400.837 Q32.5894 405.325 35.6449 407.967 Q38.6686 410.609 43.8567 410.609 L64.0042 410.609 L64.0042 416.497 L28.3562 416.497 L28.3562 410.609 L33.8944 410.609 Q30.616 408.603 29.0564 405.803 Q27.4968 403.002 27.4968 399.15 Q27.4968 395.267 29.4702 392.562 Q31.4436 389.825 35.1993 388.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M16.4842 328.491 L34.2127 311.208 L34.2127 317.606 L21.6404 331.61 L34.2127 345.615 L34.2127 352.012 L16.4842 334.729 L16.4842 328.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M43.5384 301.119 L43.5384 283.963 L48.7583 283.963 L48.7583 301.119 L43.5384 301.119 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M38.3822 254.331 Q39.3689 249.715 42.4881 247.137 Q45.6073 244.527 50.1906 244.527 Q57.2247 244.527 61.0759 249.365 Q64.9272 254.203 64.9272 263.115 Q64.9272 266.107 64.3224 269.29 Q63.7495 272.441 62.5719 275.815 L56.3653 275.815 Q57.9249 273.141 58.7206 269.958 Q59.5163 266.776 59.5163 263.306 Q59.5163 257.259 57.1292 254.108 Q54.7421 250.925 50.1906 250.925 Q45.9892 250.925 43.6339 253.885 Q41.2468 256.813 41.2468 262.065 L41.2468 267.603 L35.9632 267.603 L35.9632 261.81 Q35.9632 257.068 34.0853 254.553 Q32.1756 252.039 28.6108 252.039 Q24.9505 252.039 23.009 254.649 Q21.0356 257.227 21.0356 262.065 Q21.0356 264.707 21.6086 267.73 Q22.1815 270.754 23.3909 274.383 L17.6618 274.383 Q16.6433 270.722 16.134 267.539 Q15.6248 264.325 15.6248 261.492 Q15.6248 254.171 18.9668 249.906 Q22.277 245.641 27.9424 245.641 Q31.8892 245.641 34.6264 247.901 Q37.3318 250.161 38.3822 254.331 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip370)\" d=\"M14.5426 234.088 L14.5426 228.995 Q22.0542 224.221 29.2474 221.865 Q36.4406 219.478 43.5384 219.478 Q50.668 219.478 57.8931 221.865 Q65.1182 224.221 72.5979 228.995 L72.5979 234.088 Q65.3091 229.854 58.1159 227.786 Q50.8908 225.685 43.5384 225.685 Q36.186 225.685 29.0246 227.786 Q21.8632 229.854 14.5426 234.088 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip372)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  264.778,70.3292 2291.94,960.369 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "\n",
    "using Plots\n",
    "\n",
    "colors = palette(:seaborn_bright)\n",
    "\n",
    "plot( [0,1].*100, [HHV(0),HHV(1)], ylim=(0,36), lab=false, color=colors[1],\n",
    "      ylabel=\"Higher Heating Value\", xlabel=\"% Hydrogen (vol/vol)\")"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "fdc11700-6b68-4f6d-8cb2-d5a527a13f48",
   "metadata": {},
   "source": [
    "Which clearly shows that increasing the hydrogen content decreases the overall heating value of the fuel. At 100% hydrogen the fuel gas has lost ~66% of it's heat content.\n",
    "\n",
    "Suppose you are a customer whose natural gas was transitioned entirely to hydrogen, now you are receiving about a third of the energy per unit volume than you were before. Well the obvious thing to do would be to increase the volume that you use (by a factor of three) to make up the difference. This does raise the obvious question of *can you actually do that?* Superficially, it looks like you are asking to triple the demand on the current infrastructure."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "da848742-6978-4be0-bd2b-e46413cbca8f",
   "metadata": {},
   "source": [
    "## Energy per unit of pressure drop\n",
    "\n",
    "The glaring omission with the previous analysis is that we know that flowrate, generally, is $\\propto \\frac{1}{\\sqrt{\\rho}}$, and natural gas is something like 9&times; denser than hydrogen. So, you would expect, for the same pressure drop in the same pipes, that you would get around 3&times; the flow of hydrogen.\n",
    "\n",
    "Suppose we are only looking at the \"last mile\" of the distribution network, perhaps the pipe connecting your house to the main, reducing the problem to that of simple pipe flow. Assuming the flow is nearly isothermal, and an ideal gas, the mass velocity, *G*, of the fuel gas arriving at your house is given by:\n",
    "\n",
    "$$ G = \\sqrt{ \\rho_1 P_1 } \\sqrt{ \\left(1 - \\left( P_2 \\over P_1 \\right)^2 \\right) \\over { K - 2\\log \\left( P_2 \\over P_1 \\right)} } $$\n",
    "\n",
    "Where 1 is the point just after the tee and 2 is the point just before your meter (e.g. a straight length of pipe). The volumetric flow rate, *Q*, at the upstream point 1, is then given by\n",
    "\n",
    "$$ Q_1 = {\\pi \\over 4} D^2 {G \\over \\rho_1} $$\n",
    "\n",
    "which, when corrected to the reference (standard) state is\n",
    "\n",
    "$$ Q_s = Q_1 \\cdot {v_{r} \\over v_1} $$\n",
    "\n",
    "Where *v* is the ideal gas molar volume (*RT*/*P*), a constant independent of the gas.\n",
    "\n",
    "The heat rate, *q*, is simply the higher heating value times the volumetric flowrate (at standard state)\n",
    "\n",
    "$$ q = HHV \\cdot Q_s = HHV \\cdot {\\pi \\over 4} D^2 \\sqrt{P_1 \\over \\rho_1} \\sqrt{ \\left(1 - \\left( P_2 \\over P_1 \\right)^2 \\right) \\over { K - 2\\log \\left( P_2 \\over P_1 \\right)} } \\cdot {v_{r} \\over v_1} $$\n",
    "\n",
    "This looks like a lot however most of that is a constant, i.e. it is a function of the *system* and not the gas moving through it. \n",
    "\n",
    "$$ q = \\sqrt{ HHV \\over \\rho_1} \\times \\textrm{a constant} $$\n",
    "\n",
    "So, assuming a constant pressure drop, along an identical pipe, with fully developed turbulent flow (i.e. *K* is constant) the ratio of heat delivered by hydrogen to that of natural gas is given by:\n",
    "\n",
    "$$ { q_{H_2} \\over q_{NG} } = { HHV_{H_2} \\over HHV_{NG} } \\sqrt{ \\rho_{NG} \\over \\rho_{H_2} } = { HHV_{H_2} \\over HHV_{NG} } \\sqrt{ MW_{NG} \\over MW_{H_2} }$$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "7812ae13-cacb-4c8d-9021-7241020616db",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "1.0639620426132184"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Hydrogen\n",
    "MW_H2 = 2.016e-3u\"kg/mol\"\n",
    "\n",
    "# Natural Gas\n",
    "MW_NG = 19.5e-3u\"kg/mol\"\n",
    "\n",
    "heat_ratio = (HHV_H2/HHV_NG)*√(MW_NG/MW_H2)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "bc5236f7-ed13-4493-8b0d-e6c2474d8989",
   "metadata": {},
   "source": [
    "So in total opposition to what we expected from merely looking at energy density we now expect, for the same system operating at the same pressures, to receive *slightly more* energy when transitioned over to pure hydrogen.\n",
    "\n",
    "But what about the in-between, when hydrogen is blended into natural gas? Is it just a straight line connecting these two?\n",
    "\n",
    "We can explore this more closely by first looking at how density, and thus volumetric flowrate, changes with the hydrogen content. I am assuming an ideal gas case and so the mixing rule is quite simple\n",
    "\n",
    "$$ \\rho = x_{H_2} \\rho_{H_2} + x_{NG} \\rho_{NG} $$\n",
    "\n",
    "where, for an ideal gas\n",
    "\n",
    "$$ \\rho = MW {P \\over {R T}} $$\n",
    "\n",
    "giving\n",
    "\n",
    "$$ \\rho = {P \\over {R T} } \\left( x_{H_2} MW_{H_2} + x_{NG} MW_{NG} \\right)$$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "b4fb26b1-9823-48ff-9388-5f753a2b7b39",
   "metadata": {},
   "outputs": [],
   "source": [
    "# ideal gas density\n",
    "ρ(x, T, P) = (P/(R*T))*( x*MW_H2 + (1-x)*MW_NG );"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "8220a511-3686-47d4-9091-dccf56976c5a",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip410\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip410)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip411\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip410)\" d=\"\n",
       "M219.866 1423.18 L2180.97 1423.18 L2180.97 47.2441 L219.866 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip412\">\n",
       "    <rect x=\"219\" y=\"47\" width=\"1962\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  275.369,1423.18 275.369,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  737.893,1423.18 737.893,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1200.42,1423.18 1200.42,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1662.94,1423.18 1662.94,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2125.46,1423.18 2125.46,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,1423.18 2180.97,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  275.369,1423.18 275.369,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  737.893,1423.18 737.893,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1200.42,1423.18 1200.42,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1662.94,1423.18 1662.94,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2125.46,1423.18 2125.46,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip410)\" d=\"M237.673 1454.1 Q234.061 1454.1 232.233 1457.66 Q230.427 1461.2 230.427 1468.33 Q230.427 1475.44 232.233 1479.01 Q234.061 1482.55 237.673 1482.55 Q241.307 1482.55 243.112 1479.01 Q244.941 1475.44 244.941 1468.33 Q244.941 1461.2 243.112 1457.66 Q241.307 1454.1 237.673 1454.1 M237.673 1450.39 Q243.483 1450.39 246.538 1455 Q249.617 1459.58 249.617 1468.33 Q249.617 1477.06 246.538 1481.67 Q243.483 1486.25 237.673 1486.25 Q231.862 1486.25 228.784 1481.67 Q225.728 1477.06 225.728 1468.33 Q225.728 1459.58 228.784 1455 Q231.862 1450.39 237.673 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M257.834 1479.7 L262.719 1479.7 L262.719 1485.58 L257.834 1485.58 L257.834 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M282.904 1454.1 Q279.293 1454.1 277.464 1457.66 Q275.658 1461.2 275.658 1468.33 Q275.658 1475.44 277.464 1479.01 Q279.293 1482.55 282.904 1482.55 Q286.538 1482.55 288.344 1479.01 Q290.172 1475.44 290.172 1468.33 Q290.172 1461.2 288.344 1457.66 Q286.538 1454.1 282.904 1454.1 M282.904 1450.39 Q288.714 1450.39 291.769 1455 Q294.848 1459.58 294.848 1468.33 Q294.848 1477.06 291.769 1481.67 Q288.714 1486.25 282.904 1486.25 Q277.094 1486.25 274.015 1481.67 Q270.959 1477.06 270.959 1468.33 Q270.959 1459.58 274.015 1455 Q277.094 1450.39 282.904 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M313.066 1454.1 Q309.455 1454.1 307.626 1457.66 Q305.82 1461.2 305.82 1468.33 Q305.82 1475.44 307.626 1479.01 Q309.455 1482.55 313.066 1482.55 Q316.7 1482.55 318.505 1479.01 Q320.334 1475.44 320.334 1468.33 Q320.334 1461.2 318.505 1457.66 Q316.7 1454.1 313.066 1454.1 M313.066 1450.39 Q318.876 1450.39 321.931 1455 Q325.01 1459.58 325.01 1468.33 Q325.01 1477.06 321.931 1481.67 Q318.876 1486.25 313.066 1486.25 Q307.256 1486.25 304.177 1481.67 Q301.121 1477.06 301.121 1468.33 Q301.121 1459.58 304.177 1455 Q307.256 1450.39 313.066 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M700.694 1454.1 Q697.083 1454.1 695.254 1457.66 Q693.449 1461.2 693.449 1468.33 Q693.449 1475.44 695.254 1479.01 Q697.083 1482.55 700.694 1482.55 Q704.328 1482.55 706.134 1479.01 Q707.962 1475.44 707.962 1468.33 Q707.962 1461.2 706.134 1457.66 Q704.328 1454.1 700.694 1454.1 M700.694 1450.39 Q706.504 1450.39 709.56 1455 Q712.638 1459.58 712.638 1468.33 Q712.638 1477.06 709.56 1481.67 Q706.504 1486.25 700.694 1486.25 Q694.884 1486.25 691.805 1481.67 Q688.75 1477.06 688.75 1468.33 Q688.75 1459.58 691.805 1455 Q694.884 1450.39 700.694 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M720.856 1479.7 L725.74 1479.7 L725.74 1485.58 L720.856 1485.58 L720.856 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M739.953 1481.64 L756.272 1481.64 L756.272 1485.58 L734.328 1485.58 L734.328 1481.64 Q736.99 1478.89 741.573 1474.26 Q746.18 1469.61 747.36 1468.27 Q749.606 1465.74 750.485 1464.01 Q751.388 1462.25 751.388 1460.56 Q751.388 1457.8 749.444 1456.07 Q747.522 1454.33 744.421 1454.33 Q742.222 1454.33 739.768 1455.09 Q737.337 1455.86 734.56 1457.41 L734.56 1452.69 Q737.384 1451.55 739.837 1450.97 Q742.291 1450.39 744.328 1450.39 Q749.698 1450.39 752.893 1453.08 Q756.087 1455.77 756.087 1460.26 Q756.087 1462.39 755.277 1464.31 Q754.49 1466.2 752.384 1468.8 Q751.805 1469.47 748.703 1472.69 Q745.601 1475.88 739.953 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M766.133 1451.02 L784.49 1451.02 L784.49 1454.96 L770.416 1454.96 L770.416 1463.43 Q771.434 1463.08 772.453 1462.92 Q773.471 1462.73 774.49 1462.73 Q780.277 1462.73 783.657 1465.9 Q787.036 1469.08 787.036 1474.49 Q787.036 1480.07 783.564 1483.17 Q780.092 1486.25 773.772 1486.25 Q771.596 1486.25 769.328 1485.88 Q767.083 1485.51 764.675 1484.77 L764.675 1480.07 Q766.758 1481.2 768.981 1481.76 Q771.203 1482.32 773.68 1482.32 Q777.684 1482.32 780.022 1480.21 Q782.36 1478.1 782.36 1474.49 Q782.36 1470.88 780.022 1468.77 Q777.684 1466.67 773.68 1466.67 Q771.805 1466.67 769.93 1467.08 Q768.078 1467.5 766.133 1468.38 L766.133 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1162.72 1454.1 Q1159.11 1454.1 1157.28 1457.66 Q1155.47 1461.2 1155.47 1468.33 Q1155.47 1475.44 1157.28 1479.01 Q1159.11 1482.55 1162.72 1482.55 Q1166.35 1482.55 1168.16 1479.01 Q1169.99 1475.44 1169.99 1468.33 Q1169.99 1461.2 1168.16 1457.66 Q1166.35 1454.1 1162.72 1454.1 M1162.72 1450.39 Q1168.53 1450.39 1171.59 1455 Q1174.66 1459.58 1174.66 1468.33 Q1174.66 1477.06 1171.59 1481.67 Q1168.53 1486.25 1162.72 1486.25 Q1156.91 1486.25 1153.83 1481.67 Q1150.78 1477.06 1150.78 1468.33 Q1150.78 1459.58 1153.83 1455 Q1156.91 1450.39 1162.72 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1182.88 1479.7 L1187.77 1479.7 L1187.77 1485.58 L1182.88 1485.58 L1182.88 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1198 1451.02 L1216.35 1451.02 L1216.35 1454.96 L1202.28 1454.96 L1202.28 1463.43 Q1203.3 1463.08 1204.32 1462.92 Q1205.34 1462.73 1206.35 1462.73 Q1212.14 1462.73 1215.52 1465.9 Q1218.9 1469.08 1218.9 1474.49 Q1218.9 1480.07 1215.43 1483.17 Q1211.96 1486.25 1205.64 1486.25 Q1203.46 1486.25 1201.19 1485.88 Q1198.95 1485.51 1196.54 1484.77 L1196.54 1480.07 Q1198.62 1481.2 1200.84 1481.76 Q1203.07 1482.32 1205.54 1482.32 Q1209.55 1482.32 1211.89 1480.21 Q1214.22 1478.1 1214.22 1474.49 Q1214.22 1470.88 1211.89 1468.77 Q1209.55 1466.67 1205.54 1466.67 Q1203.67 1466.67 1201.79 1467.08 Q1199.94 1467.5 1198 1468.38 L1198 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1238.11 1454.1 Q1234.5 1454.1 1232.67 1457.66 Q1230.87 1461.2 1230.87 1468.33 Q1230.87 1475.44 1232.67 1479.01 Q1234.5 1482.55 1238.11 1482.55 Q1241.75 1482.55 1243.55 1479.01 Q1245.38 1475.44 1245.38 1468.33 Q1245.38 1461.2 1243.55 1457.66 Q1241.75 1454.1 1238.11 1454.1 M1238.11 1450.39 Q1243.92 1450.39 1246.98 1455 Q1250.06 1459.58 1250.06 1468.33 Q1250.06 1477.06 1246.98 1481.67 Q1243.92 1486.25 1238.11 1486.25 Q1232.3 1486.25 1229.22 1481.67 Q1226.17 1477.06 1226.17 1468.33 Q1226.17 1459.58 1229.22 1455 Q1232.3 1450.39 1238.11 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1625.74 1454.1 Q1622.13 1454.1 1620.3 1457.66 Q1618.5 1461.2 1618.5 1468.33 Q1618.5 1475.44 1620.3 1479.01 Q1622.13 1482.55 1625.74 1482.55 Q1629.38 1482.55 1631.18 1479.01 Q1633.01 1475.44 1633.01 1468.33 Q1633.01 1461.2 1631.18 1457.66 Q1629.38 1454.1 1625.74 1454.1 M1625.74 1450.39 Q1631.55 1450.39 1634.61 1455 Q1637.69 1459.58 1637.69 1468.33 Q1637.69 1477.06 1634.61 1481.67 Q1631.55 1486.25 1625.74 1486.25 Q1619.93 1486.25 1616.85 1481.67 Q1613.8 1477.06 1613.8 1468.33 Q1613.8 1459.58 1616.85 1455 Q1619.93 1450.39 1625.74 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1645.9 1479.7 L1650.79 1479.7 L1650.79 1485.58 L1645.9 1485.58 L1645.9 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1659.79 1451.02 L1682.01 1451.02 L1682.01 1453.01 L1669.47 1485.58 L1664.58 1485.58 L1676.39 1454.96 L1659.79 1454.96 L1659.79 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1691.18 1451.02 L1709.54 1451.02 L1709.54 1454.96 L1695.46 1454.96 L1695.46 1463.43 Q1696.48 1463.08 1697.5 1462.92 Q1698.52 1462.73 1699.54 1462.73 Q1705.32 1462.73 1708.7 1465.9 Q1712.08 1469.08 1712.08 1474.49 Q1712.08 1480.07 1708.61 1483.17 Q1705.14 1486.25 1698.82 1486.25 Q1696.64 1486.25 1694.38 1485.88 Q1692.13 1485.51 1689.72 1484.77 L1689.72 1480.07 Q1691.81 1481.2 1694.03 1481.76 Q1696.25 1482.32 1698.73 1482.32 Q1702.73 1482.32 1705.07 1480.21 Q1707.41 1478.1 1707.41 1474.49 Q1707.41 1470.88 1705.07 1468.77 Q1702.73 1466.67 1698.73 1466.67 Q1696.85 1466.67 1694.98 1467.08 Q1693.13 1467.5 1691.18 1468.38 L1691.18 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2077.54 1481.64 L2085.18 1481.64 L2085.18 1455.28 L2076.86 1456.95 L2076.86 1452.69 L2085.13 1451.02 L2089.8 1451.02 L2089.8 1481.64 L2097.44 1481.64 L2097.44 1485.58 L2077.54 1485.58 L2077.54 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2106.89 1479.7 L2111.77 1479.7 L2111.77 1485.58 L2106.89 1485.58 L2106.89 1479.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2131.96 1454.1 Q2128.35 1454.1 2126.52 1457.66 Q2124.71 1461.2 2124.71 1468.33 Q2124.71 1475.44 2126.52 1479.01 Q2128.35 1482.55 2131.96 1482.55 Q2135.59 1482.55 2137.4 1479.01 Q2139.23 1475.44 2139.23 1468.33 Q2139.23 1461.2 2137.4 1457.66 Q2135.59 1454.1 2131.96 1454.1 M2131.96 1450.39 Q2137.77 1450.39 2140.82 1455 Q2143.9 1459.58 2143.9 1468.33 Q2143.9 1477.06 2140.82 1481.67 Q2137.77 1486.25 2131.96 1486.25 Q2126.15 1486.25 2123.07 1481.67 Q2120.01 1477.06 2120.01 1468.33 Q2120.01 1459.58 2123.07 1455 Q2126.15 1450.39 2131.96 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2162.12 1454.1 Q2158.51 1454.1 2156.68 1457.66 Q2154.87 1461.2 2154.87 1468.33 Q2154.87 1475.44 2156.68 1479.01 Q2158.51 1482.55 2162.12 1482.55 Q2165.75 1482.55 2167.56 1479.01 Q2169.39 1475.44 2169.39 1468.33 Q2169.39 1461.2 2167.56 1457.66 Q2165.75 1454.1 2162.12 1454.1 M2162.12 1450.39 Q2167.93 1450.39 2170.98 1455 Q2174.06 1459.58 2174.06 1468.33 Q2174.06 1477.06 2170.98 1481.67 Q2167.93 1486.25 2162.12 1486.25 Q2156.31 1486.25 2153.23 1481.67 Q2150.17 1477.06 2150.17 1468.33 Q2150.17 1459.58 2153.23 1455 Q2156.31 1450.39 2162.12 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M778.179 1520.52 L787.76 1520.52 L799.886 1552.86 L812.077 1520.52 L821.657 1520.52 L821.657 1568.04 L815.387 1568.04 L815.387 1526.32 L803.133 1558.91 L796.672 1558.91 L784.418 1526.32 L784.418 1568.04 L778.179 1568.04 L778.179 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M847.979 1536.5 Q843.269 1536.5 840.531 1540.19 Q837.794 1543.85 837.794 1550.25 Q837.794 1556.65 840.5 1560.34 Q843.237 1564 847.979 1564 Q852.658 1564 855.395 1560.31 Q858.133 1556.62 858.133 1550.25 Q858.133 1543.92 855.395 1540.23 Q852.658 1536.5 847.979 1536.5 M847.979 1531.54 Q855.618 1531.54 859.979 1536.5 Q864.339 1541.47 864.339 1550.25 Q864.339 1559 859.979 1564 Q855.618 1568.97 847.979 1568.97 Q840.309 1568.97 835.948 1564 Q831.619 1559 831.619 1550.25 Q831.619 1541.47 835.948 1536.5 Q840.309 1531.54 847.979 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M874.047 1518.52 L879.903 1518.52 L879.903 1568.04 L874.047 1568.04 L874.047 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M922.649 1548.76 L922.649 1551.62 L895.722 1551.62 Q896.104 1557.67 899.351 1560.85 Q902.629 1564 908.454 1564 Q911.827 1564 914.978 1563.17 Q918.161 1562.35 921.28 1560.69 L921.28 1566.23 Q918.129 1567.57 914.819 1568.27 Q911.509 1568.97 908.103 1568.97 Q899.573 1568.97 894.576 1564 Q889.611 1559.04 889.611 1550.57 Q889.611 1541.82 894.322 1536.69 Q899.064 1531.54 907.085 1531.54 Q914.278 1531.54 918.448 1536.18 Q922.649 1540.8 922.649 1548.76 M916.793 1547.04 Q916.729 1542.23 914.087 1539.37 Q911.477 1536.5 907.149 1536.5 Q902.247 1536.5 899.287 1539.27 Q896.359 1542.04 895.913 1547.07 L916.793 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M953.236 1520.52 L980.545 1520.52 L980.545 1525.93 L959.666 1525.93 L959.666 1539.94 L978.508 1539.94 L978.508 1545.35 L959.666 1545.35 L959.666 1568.04 L953.236 1568.04 L953.236 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1006.39 1537.87 Q1005.4 1537.3 1004.23 1537.04 Q1003.08 1536.76 1001.68 1536.76 Q996.714 1536.76 994.04 1540 Q991.399 1543.22 991.399 1549.27 L991.399 1568.04 L985.51 1568.04 L985.51 1532.4 L991.399 1532.4 L991.399 1537.93 Q993.245 1534.69 996.205 1533.13 Q999.165 1531.54 1003.4 1531.54 Q1004 1531.54 1004.73 1531.63 Q1005.47 1531.7 1006.36 1531.85 L1006.39 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1028.73 1550.12 Q1021.64 1550.12 1018.9 1551.75 Q1016.16 1553.37 1016.16 1557.29 Q1016.16 1560.4 1018.2 1562.25 Q1020.27 1564.07 1023.8 1564.07 Q1028.67 1564.07 1031.6 1560.63 Q1034.56 1557.16 1034.56 1551.43 L1034.56 1550.12 L1028.73 1550.12 M1040.41 1547.71 L1040.41 1568.04 L1034.56 1568.04 L1034.56 1562.63 Q1032.55 1565.88 1029.56 1567.44 Q1026.57 1568.97 1022.24 1568.97 Q1016.77 1568.97 1013.52 1565.91 Q1010.3 1562.82 1010.3 1557.67 Q1010.3 1551.65 1014.32 1548.6 Q1018.36 1545.54 1026.35 1545.54 L1034.56 1545.54 L1034.56 1544.97 Q1034.56 1540.93 1031.88 1538.73 Q1029.24 1536.5 1024.44 1536.5 Q1021.38 1536.5 1018.48 1537.23 Q1015.59 1537.97 1012.91 1539.43 L1012.91 1534.02 Q1016.13 1532.78 1019.15 1532.17 Q1022.18 1531.54 1025.04 1531.54 Q1032.78 1531.54 1036.6 1535.55 Q1040.41 1539.56 1040.41 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1078.13 1533.76 L1078.13 1539.24 Q1075.65 1537.87 1073.13 1537.2 Q1070.65 1536.5 1068.11 1536.5 Q1062.41 1536.5 1059.26 1540.13 Q1056.11 1543.73 1056.11 1550.25 Q1056.11 1556.78 1059.26 1560.4 Q1062.41 1564 1068.11 1564 Q1070.65 1564 1073.13 1563.33 Q1075.65 1562.63 1078.13 1561.26 L1078.13 1566.68 Q1075.68 1567.82 1073.04 1568.39 Q1070.43 1568.97 1067.47 1568.97 Q1059.42 1568.97 1054.67 1563.91 Q1049.93 1558.85 1049.93 1550.25 Q1049.93 1541.53 1054.71 1536.53 Q1059.51 1531.54 1067.85 1531.54 Q1070.56 1531.54 1073.13 1532.11 Q1075.71 1532.65 1078.13 1533.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1094.11 1522.27 L1094.11 1532.4 L1106.17 1532.4 L1106.17 1536.95 L1094.11 1536.95 L1094.11 1556.3 Q1094.11 1560.66 1095.29 1561.9 Q1096.5 1563.14 1100.16 1563.14 L1106.17 1563.14 L1106.17 1568.04 L1100.16 1568.04 Q1093.38 1568.04 1090.8 1565.53 Q1088.22 1562.98 1088.22 1556.3 L1088.22 1536.95 L1083.92 1536.95 L1083.92 1532.4 L1088.22 1532.4 L1088.22 1522.27 L1094.11 1522.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1113.87 1532.4 L1119.73 1532.4 L1119.73 1568.04 L1113.87 1568.04 L1113.87 1532.4 M1113.87 1518.52 L1119.73 1518.52 L1119.73 1525.93 L1113.87 1525.93 L1113.87 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1145.8 1536.5 Q1141.09 1536.5 1138.35 1540.19 Q1135.61 1543.85 1135.61 1550.25 Q1135.61 1556.65 1138.32 1560.34 Q1141.06 1564 1145.8 1564 Q1150.48 1564 1153.21 1560.31 Q1155.95 1556.62 1155.95 1550.25 Q1155.95 1543.92 1153.21 1540.23 Q1150.48 1536.5 1145.8 1536.5 M1145.8 1531.54 Q1153.44 1531.54 1157.8 1536.5 Q1162.16 1541.47 1162.16 1550.25 Q1162.16 1559 1157.8 1564 Q1153.44 1568.97 1145.8 1568.97 Q1138.13 1568.97 1133.77 1564 Q1129.44 1559 1129.44 1550.25 Q1129.44 1541.47 1133.77 1536.5 Q1138.13 1531.54 1145.8 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1201.5 1546.53 L1201.5 1568.04 L1195.64 1568.04 L1195.64 1546.72 Q1195.64 1541.66 1193.67 1539.14 Q1191.7 1536.63 1187.75 1536.63 Q1183.01 1536.63 1180.27 1539.65 Q1177.53 1542.68 1177.53 1547.9 L1177.53 1568.04 L1171.64 1568.04 L1171.64 1532.4 L1177.53 1532.4 L1177.53 1537.93 Q1179.63 1534.72 1182.47 1533.13 Q1185.33 1531.54 1189.05 1531.54 Q1195.2 1531.54 1198.35 1535.36 Q1201.5 1539.14 1201.5 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1234.15 1520.52 L1240.58 1520.52 L1240.58 1540 L1263.95 1540 L1263.95 1520.52 L1270.38 1520.52 L1270.38 1568.04 L1263.95 1568.04 L1263.95 1545.41 L1240.58 1545.41 L1240.58 1568.04 L1234.15 1568.04 L1234.15 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1297.75 1571.35 Q1295.27 1577.72 1292.91 1579.66 Q1290.56 1581.6 1286.61 1581.6 L1281.93 1581.6 L1281.93 1576.7 L1285.37 1576.7 Q1287.79 1576.7 1289.12 1575.56 Q1290.46 1574.41 1292.08 1570.14 L1293.13 1567.47 L1278.71 1532.4 L1284.92 1532.4 L1296.06 1560.28 L1307.2 1532.4 L1313.41 1532.4 L1297.75 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1344.95 1537.81 L1344.95 1518.52 L1350.81 1518.52 L1350.81 1568.04 L1344.95 1568.04 L1344.95 1562.7 Q1343.1 1565.88 1340.27 1567.44 Q1337.47 1568.97 1333.52 1568.97 Q1327.06 1568.97 1322.99 1563.81 Q1318.95 1558.65 1318.95 1550.25 Q1318.95 1541.85 1322.99 1536.69 Q1327.06 1531.54 1333.52 1531.54 Q1337.47 1531.54 1340.27 1533.1 Q1343.1 1534.62 1344.95 1537.81 M1324.99 1550.25 Q1324.99 1556.71 1327.64 1560.4 Q1330.31 1564.07 1334.96 1564.07 Q1339.6 1564.07 1342.28 1560.4 Q1344.95 1556.71 1344.95 1550.25 Q1344.95 1543.79 1342.28 1540.13 Q1339.6 1536.44 1334.96 1536.44 Q1330.31 1536.44 1327.64 1540.13 Q1324.99 1543.79 1324.99 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1383.53 1537.87 Q1382.54 1537.3 1381.36 1537.04 Q1380.22 1536.76 1378.82 1536.76 Q1373.85 1536.76 1371.18 1540 Q1368.53 1543.22 1368.53 1549.27 L1368.53 1568.04 L1362.65 1568.04 L1362.65 1532.4 L1368.53 1532.4 L1368.53 1537.93 Q1370.38 1534.69 1373.34 1533.13 Q1376.3 1531.54 1380.53 1531.54 Q1381.14 1531.54 1381.87 1531.63 Q1382.6 1531.7 1383.49 1531.85 L1383.53 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1402.05 1536.5 Q1397.34 1536.5 1394.6 1540.19 Q1391.87 1543.85 1391.87 1550.25 Q1391.87 1556.65 1394.57 1560.34 Q1397.31 1564 1402.05 1564 Q1406.73 1564 1409.47 1560.31 Q1412.2 1556.62 1412.2 1550.25 Q1412.2 1543.92 1409.47 1540.23 Q1406.73 1536.5 1402.05 1536.5 M1402.05 1531.54 Q1409.69 1531.54 1414.05 1536.5 Q1418.41 1541.47 1418.41 1550.25 Q1418.41 1559 1414.05 1564 Q1409.69 1568.97 1402.05 1568.97 Q1394.38 1568.97 1390.02 1564 Q1385.69 1559 1385.69 1550.25 Q1385.69 1541.47 1390.02 1536.5 Q1394.38 1531.54 1402.05 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1451.58 1549.81 Q1451.58 1543.44 1448.93 1539.94 Q1446.32 1536.44 1441.58 1536.44 Q1436.87 1536.44 1434.23 1539.94 Q1431.62 1543.44 1431.62 1549.81 Q1431.62 1556.14 1434.23 1559.64 Q1436.87 1563.14 1441.58 1563.14 Q1446.32 1563.14 1448.93 1559.64 Q1451.58 1556.14 1451.58 1549.81 M1457.43 1563.62 Q1457.43 1572.72 1453.39 1577.15 Q1449.35 1581.6 1441.01 1581.6 Q1437.92 1581.6 1435.18 1581.13 Q1432.45 1580.68 1429.87 1579.72 L1429.87 1574.03 Q1432.45 1575.43 1434.96 1576.1 Q1437.48 1576.76 1440.09 1576.76 Q1445.85 1576.76 1448.71 1573.74 Q1451.58 1570.75 1451.58 1564.67 L1451.58 1561.77 Q1449.76 1564.92 1446.93 1566.48 Q1444.1 1568.04 1440.15 1568.04 Q1433.59 1568.04 1429.58 1563.05 Q1425.57 1558.05 1425.57 1549.81 Q1425.57 1541.53 1429.58 1536.53 Q1433.59 1531.54 1440.15 1531.54 Q1444.1 1531.54 1446.93 1533.1 Q1449.76 1534.66 1451.58 1537.81 L1451.58 1532.4 L1457.43 1532.4 L1457.43 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1499.99 1548.76 L1499.99 1551.62 L1473.06 1551.62 Q1473.44 1557.67 1476.69 1560.85 Q1479.97 1564 1485.79 1564 Q1489.17 1564 1492.32 1563.17 Q1495.5 1562.35 1498.62 1560.69 L1498.62 1566.23 Q1495.47 1567.57 1492.16 1568.27 Q1488.85 1568.97 1485.44 1568.97 Q1476.91 1568.97 1471.91 1564 Q1466.95 1559.04 1466.95 1550.57 Q1466.95 1541.82 1471.66 1536.69 Q1476.4 1531.54 1484.42 1531.54 Q1491.62 1531.54 1495.79 1536.18 Q1499.99 1540.8 1499.99 1548.76 M1494.13 1547.04 Q1494.07 1542.23 1491.42 1539.37 Q1488.82 1536.5 1484.49 1536.5 Q1479.58 1536.5 1476.62 1539.27 Q1473.7 1542.04 1473.25 1547.07 L1494.13 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1539.23 1546.53 L1539.23 1568.04 L1533.37 1568.04 L1533.37 1546.72 Q1533.37 1541.66 1531.4 1539.14 Q1529.43 1536.63 1525.48 1536.63 Q1520.74 1536.63 1518 1539.65 Q1515.26 1542.68 1515.26 1547.9 L1515.26 1568.04 L1509.38 1568.04 L1509.38 1532.4 L1515.26 1532.4 L1515.26 1537.93 Q1517.37 1534.72 1520.2 1533.13 Q1523.06 1531.54 1526.79 1531.54 Q1532.93 1531.54 1536.08 1535.36 Q1539.23 1539.14 1539.23 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1552.41 1559.96 L1559.12 1559.96 L1559.12 1565.43 L1553.9 1575.62 L1549.8 1575.62 L1552.41 1565.43 L1552.41 1559.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1621.99 1532.4 L1609.1 1549.74 L1622.65 1568.04 L1615.75 1568.04 L1605.37 1554.04 L1594.99 1568.04 L1588.09 1568.04 L1601.93 1549.39 L1589.27 1532.4 L1596.17 1532.4 L1605.63 1545.1 L1615.08 1532.4 L1621.99 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,1423.18 219.866,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,1182.82 238.764,1182.82 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,831.732 238.764,831.732 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,480.643 238.764,480.643 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  219.866,129.553 238.764,129.553 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip410)\" d=\"M128.288 1168.62 Q124.677 1168.62 122.848 1172.18 Q121.043 1175.73 121.043 1182.86 Q121.043 1189.96 122.848 1193.53 Q124.677 1197.07 128.288 1197.07 Q131.922 1197.07 133.728 1193.53 Q135.556 1189.96 135.556 1182.86 Q135.556 1175.73 133.728 1172.18 Q131.922 1168.62 128.288 1168.62 M128.288 1164.92 Q134.098 1164.92 137.154 1169.52 Q140.232 1174.11 140.232 1182.86 Q140.232 1191.58 137.154 1196.19 Q134.098 1200.77 128.288 1200.77 Q122.478 1200.77 119.399 1196.19 Q116.343 1191.58 116.343 1182.86 Q116.343 1174.11 119.399 1169.52 Q122.478 1164.92 128.288 1164.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.45 1194.22 L153.334 1194.22 L153.334 1200.1 L148.45 1200.1 L148.45 1194.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M167.547 1196.17 L183.866 1196.17 L183.866 1200.1 L161.922 1200.1 L161.922 1196.17 Q164.584 1193.41 169.167 1188.78 Q173.774 1184.13 174.954 1182.79 Q177.2 1180.26 178.079 1178.53 Q178.982 1176.77 178.982 1175.08 Q178.982 1172.32 177.038 1170.59 Q175.116 1168.85 172.014 1168.85 Q169.815 1168.85 167.362 1169.62 Q164.931 1170.38 162.153 1171.93 L162.153 1167.21 Q164.977 1166.07 167.431 1165.5 Q169.885 1164.92 171.922 1164.92 Q177.292 1164.92 180.487 1167.6 Q183.681 1170.29 183.681 1174.78 Q183.681 1176.91 182.871 1178.83 Q182.084 1180.73 179.977 1183.32 Q179.399 1183.99 176.297 1187.21 Q173.195 1190.4 167.547 1196.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M126.205 817.531 Q122.593 817.531 120.765 821.096 Q118.959 824.637 118.959 831.767 Q118.959 838.873 120.765 842.438 Q122.593 845.98 126.205 845.98 Q129.839 845.98 131.644 842.438 Q133.473 838.873 133.473 831.767 Q133.473 824.637 131.644 821.096 Q129.839 817.531 126.205 817.531 M126.205 813.827 Q132.015 813.827 135.07 818.433 Q138.149 823.017 138.149 831.767 Q138.149 840.494 135.07 845.1 Q132.015 849.683 126.205 849.683 Q120.394 849.683 117.316 845.1 Q114.26 840.494 114.26 831.767 Q114.26 823.017 117.316 818.433 Q120.394 813.827 126.205 813.827 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M146.366 843.132 L151.251 843.132 L151.251 849.012 L146.366 849.012 L146.366 843.132 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M174.283 818.526 L162.477 836.975 L174.283 836.975 L174.283 818.526 M173.056 814.452 L178.936 814.452 L178.936 836.975 L183.866 836.975 L183.866 840.864 L178.936 840.864 L178.936 849.012 L174.283 849.012 L174.283 840.864 L158.681 840.864 L158.681 836.35 L173.056 814.452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M126.529 466.441 Q122.918 466.441 121.089 470.006 Q119.283 473.548 119.283 480.677 Q119.283 487.784 121.089 491.349 Q122.918 494.89 126.529 494.89 Q130.163 494.89 131.968 491.349 Q133.797 487.784 133.797 480.677 Q133.797 473.548 131.968 470.006 Q130.163 466.441 126.529 466.441 M126.529 462.738 Q132.339 462.738 135.394 467.344 Q138.473 471.927 138.473 480.677 Q138.473 489.404 135.394 494.011 Q132.339 498.594 126.529 498.594 Q120.718 498.594 117.64 494.011 Q114.584 489.404 114.584 480.677 Q114.584 471.927 117.64 467.344 Q120.718 462.738 126.529 462.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M146.691 492.043 L151.575 492.043 L151.575 497.923 L146.691 497.923 L146.691 492.043 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M172.339 478.779 Q169.19 478.779 167.339 480.932 Q165.51 483.085 165.51 486.835 Q165.51 490.562 167.339 492.737 Q169.19 494.89 172.339 494.89 Q175.487 494.89 177.315 492.737 Q179.167 490.562 179.167 486.835 Q179.167 483.085 177.315 480.932 Q175.487 478.779 172.339 478.779 M181.621 464.127 L181.621 468.386 Q179.862 467.552 178.056 467.113 Q176.274 466.673 174.514 466.673 Q169.885 466.673 167.431 469.798 Q165.001 472.923 164.653 479.242 Q166.019 477.228 168.079 476.164 Q170.139 475.076 172.616 475.076 Q177.825 475.076 180.834 478.247 Q183.866 481.395 183.866 486.835 Q183.866 492.159 180.718 495.376 Q177.57 498.594 172.339 498.594 Q166.343 498.594 163.172 494.011 Q160.001 489.404 160.001 480.677 Q160.001 472.483 163.89 467.622 Q167.778 462.738 174.329 462.738 Q176.089 462.738 177.871 463.085 Q179.676 463.432 181.621 464.127 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M126.783 115.352 Q123.172 115.352 121.343 118.917 Q119.538 122.458 119.538 129.588 Q119.538 136.694 121.343 140.259 Q123.172 143.801 126.783 143.801 Q130.417 143.801 132.223 140.259 Q134.052 136.694 134.052 129.588 Q134.052 122.458 132.223 118.917 Q130.417 115.352 126.783 115.352 M126.783 111.648 Q132.593 111.648 135.649 116.255 Q138.728 120.838 138.728 129.588 Q138.728 138.315 135.649 142.921 Q132.593 147.505 126.783 147.505 Q120.973 147.505 117.894 142.921 Q114.839 138.315 114.839 129.588 Q114.839 120.838 117.894 116.255 Q120.973 111.648 126.783 111.648 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M146.945 140.954 L151.829 140.954 L151.829 146.833 L146.945 146.833 L146.945 140.954 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M172.014 130.421 Q168.681 130.421 166.76 132.204 Q164.862 133.986 164.862 137.111 Q164.862 140.236 166.76 142.018 Q168.681 143.801 172.014 143.801 Q175.348 143.801 177.269 142.018 Q179.19 140.213 179.19 137.111 Q179.19 133.986 177.269 132.204 Q175.371 130.421 172.014 130.421 M167.339 128.431 Q164.329 127.69 162.64 125.63 Q160.973 123.57 160.973 120.607 Q160.973 116.463 163.913 114.056 Q166.876 111.648 172.014 111.648 Q177.176 111.648 180.116 114.056 Q183.056 116.463 183.056 120.607 Q183.056 123.57 181.366 125.63 Q179.7 127.69 176.714 128.431 Q180.093 129.218 181.968 131.509 Q183.866 133.801 183.866 137.111 Q183.866 142.134 180.788 144.819 Q177.732 147.505 172.014 147.505 Q166.297 147.505 163.218 144.819 Q160.163 142.134 160.163 137.111 Q160.163 133.801 162.061 131.509 Q163.959 129.218 167.339 128.431 M165.626 121.046 Q165.626 123.732 167.292 125.236 Q168.982 126.741 172.014 126.741 Q175.024 126.741 176.714 125.236 Q178.426 123.732 178.426 121.046 Q178.426 118.361 176.714 116.857 Q175.024 115.352 172.014 115.352 Q168.982 115.352 167.292 116.857 Q165.626 118.361 165.626 121.046 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M21.7677 1065.37 L58.7206 1065.37 L58.7206 1057.6 Q58.7206 1047.77 54.2646 1043.22 Q49.8086 1038.63 40.1964 1038.63 Q30.6479 1038.63 26.2237 1043.22 Q21.7677 1047.77 21.7677 1057.6 L21.7677 1065.37 M16.4842 1071.8 L16.4842 1058.59 Q16.4842 1044.78 22.2451 1038.32 Q27.9743 1031.85 40.1964 1031.85 Q52.4822 1031.85 58.2432 1038.35 Q64.0042 1044.84 64.0042 1058.59 L64.0042 1071.8 L16.4842 1071.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M44.7161 991.368 L47.5806 991.368 L47.5806 1018.29 Q53.6281 1017.91 56.8109 1014.67 Q59.9619 1011.39 59.9619 1005.56 Q59.9619 1002.19 59.1344 999.039 Q58.3069 995.856 56.6518 992.737 L62.1899 992.737 Q63.5267 995.888 64.227 999.198 Q64.9272 1002.51 64.9272 1005.91 Q64.9272 1014.44 59.9619 1019.44 Q54.9967 1024.41 46.5303 1024.41 Q37.7774 1024.41 32.6531 1019.7 Q27.4968 1014.95 27.4968 1006.93 Q27.4968 999.739 32.1438 995.569 Q36.7589 991.368 44.7161 991.368 M42.9973 997.224 Q38.1912 997.288 35.3266 999.93 Q32.4621 1002.54 32.4621 1006.87 Q32.4621 1011.77 35.2312 1014.73 Q38.0002 1017.66 43.0292 1018.1 L42.9973 997.224 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M42.4881 952.123 L64.0042 952.123 L64.0042 957.98 L42.679 957.98 Q37.6183 957.98 35.1038 959.953 Q32.5894 961.927 32.5894 965.873 Q32.5894 970.616 35.6131 973.353 Q38.6368 976.09 43.8567 976.09 L64.0042 976.09 L64.0042 981.979 L28.3562 981.979 L28.3562 976.09 L33.8944 976.09 Q30.6797 973.99 29.0883 971.157 Q27.4968 968.292 27.4968 964.568 Q27.4968 958.425 31.3163 955.274 Q35.1038 952.123 42.4881 952.123 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M29.4065 917.717 L34.9447 917.717 Q33.6716 920.199 33.035 922.873 Q32.3984 925.547 32.3984 928.411 Q32.3984 932.772 33.7352 934.968 Q35.072 937.132 37.7456 937.132 Q39.7826 937.132 40.9603 935.573 Q42.1061 934.013 43.1565 929.302 L43.6021 927.297 Q44.9389 921.059 47.3897 918.449 Q49.8086 915.807 54.1691 915.807 Q59.1344 915.807 62.0308 919.754 Q64.9272 923.669 64.9272 930.544 Q64.9272 933.408 64.3543 936.527 Q63.8132 939.615 62.6992 943.052 L56.6518 943.052 Q58.3387 939.806 59.198 936.655 Q60.0256 933.504 60.0256 930.416 Q60.0256 926.279 58.6251 924.051 Q57.1929 921.823 54.6147 921.823 Q52.2276 921.823 50.9545 923.446 Q49.6813 925.037 48.5037 930.48 L48.0262 932.517 Q46.8804 937.96 44.5251 940.379 Q42.138 942.798 38.0002 942.798 Q32.9713 942.798 30.2341 939.233 Q27.4968 935.668 27.4968 929.111 Q27.4968 925.865 27.9743 923 Q28.4517 920.136 29.4065 917.717 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M28.3562 906.481 L28.3562 900.625 L64.0042 900.625 L64.0042 906.481 L28.3562 906.481 M14.479 906.481 L14.479 900.625 L21.895 900.625 L21.895 906.481 L14.479 906.481 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M18.2347 882.578 L28.3562 882.578 L28.3562 870.515 L32.9077 870.515 L32.9077 882.578 L52.2594 882.578 Q56.6199 882.578 57.8613 881.4 Q59.1026 880.191 59.1026 876.531 L59.1026 870.515 L64.0042 870.515 L64.0042 876.531 Q64.0042 883.31 61.4897 885.888 Q58.9434 888.466 52.2594 888.466 L32.9077 888.466 L32.9077 892.763 L28.3562 892.763 L28.3562 888.466 L18.2347 888.466 L18.2347 882.578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M67.3143 847.98 Q73.68 850.463 75.6216 852.818 Q77.5631 855.174 77.5631 859.12 L77.5631 863.799 L72.6615 863.799 L72.6615 860.362 Q72.6615 857.943 71.5157 856.606 Q70.3699 855.269 66.1048 853.646 L63.4312 852.596 L28.3562 867.014 L28.3562 860.807 L56.238 849.667 L28.3562 838.527 L28.3562 832.321 L67.3143 847.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M55.9197 822.74 L55.9197 816.025 L61.3942 816.025 L71.5793 821.244 L71.5793 825.35 L61.3942 822.74 L55.9197 822.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M34.7219 780.154 Q31.4754 778.212 28.6108 773.406 Q27.4968 771.528 27.4968 765.736 Q27.4968 759.243 32.6531 755.2 Q37.8093 751.126 46.212 751.126 Q54.6147 751.126 59.771 755.2 Q64.9272 759.243 64.9272 765.736 Q64.9272 769.65 63.3994 772.483 Q61.8398 775.284 58.657 777.13 L77.5631 777.13 L77.5631 783.018 L46.5303 783.018 Q39.1779 783.018 34.7219 780.154 M46.212 757.205 Q39.7508 757.205 36.0905 759.879 Q32.3984 762.521 32.3984 767.168 Q32.3984 771.815 36.0905 774.488 Q39.7508 777.13 46.212 777.13 Q52.6732 777.13 56.3653 774.488 Q60.0256 771.815 60.0256 767.168 Q60.0256 762.521 56.3653 759.879 Q52.6732 757.205 46.212 757.205 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.5426 706.63 Q21.8632 710.895 29.0246 712.964 Q36.186 715.033 43.5384 715.033 Q50.8908 715.033 58.1159 712.964 Q65.3091 710.863 72.5979 706.63 L72.5979 711.723 Q65.1182 716.497 57.8931 718.884 Q50.668 721.239 43.5384 721.239 Q36.4406 721.239 29.2474 718.884 Q22.0542 716.529 14.5426 711.723 L14.5426 706.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.479 695.49 L14.479 689.602 L43.7294 689.602 L28.3562 672.128 L28.3562 664.648 L45.0344 683.554 L64.0042 663.852 L64.0042 671.491 L46.5939 689.602 L64.0042 689.602 L64.0042 695.49 L14.479 695.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M45.7664 634.061 Q39.4007 634.061 35.8996 636.703 Q32.3984 639.313 32.3984 644.055 Q32.3984 648.766 35.8996 651.407 Q39.4007 654.017 45.7664 654.017 Q52.1003 654.017 55.6014 651.407 Q59.1026 648.766 59.1026 644.055 Q59.1026 639.313 55.6014 636.703 Q52.1003 634.061 45.7664 634.061 M59.58 628.204 Q68.683 628.204 73.1071 632.247 Q77.5631 636.289 77.5631 644.628 Q77.5631 647.715 77.0857 650.453 Q76.6401 653.19 75.6852 655.768 L69.9879 655.768 Q71.3884 653.19 72.0568 650.675 Q72.7252 648.161 72.7252 645.551 Q72.7252 639.79 69.7015 636.925 Q66.7096 634.061 60.6303 634.061 L57.7339 634.061 Q60.885 635.875 62.4446 638.708 Q64.0042 641.541 64.0042 645.487 Q64.0042 652.044 59.0071 656.054 Q54.01 660.065 45.7664 660.065 Q37.491 660.065 32.4939 656.054 Q27.4968 652.044 27.4968 645.487 Q27.4968 641.541 29.0564 638.708 Q30.616 635.875 33.7671 634.061 L28.3562 634.061 L28.3562 628.204 L59.58 628.204 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M35.1993 567.667 Q31.2526 565.47 29.3747 562.415 Q27.4968 559.359 27.4968 555.222 Q27.4968 549.652 31.4117 546.628 Q35.2948 543.604 42.4881 543.604 L64.0042 543.604 L64.0042 549.492 L42.679 549.492 Q37.5546 549.492 35.072 551.307 Q32.5894 553.121 32.5894 556.845 Q32.5894 561.396 35.6131 564.038 Q38.6368 566.68 43.8567 566.68 L64.0042 566.68 L64.0042 572.568 L42.679 572.568 Q37.5228 572.568 35.072 574.382 Q32.5894 576.197 32.5894 579.984 Q32.5894 584.472 35.6449 587.114 Q38.6686 589.756 43.8567 589.756 L64.0042 589.756 L64.0042 595.644 L28.3562 595.644 L28.3562 589.756 L33.8944 589.756 Q30.616 587.75 29.0564 584.949 Q27.4968 582.149 27.4968 578.297 Q27.4968 574.414 29.4702 571.709 Q31.4436 568.972 35.1993 567.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M16.4842 507.638 L34.2127 490.355 L34.2127 496.753 L21.6404 510.757 L34.2127 524.762 L34.2127 531.159 L16.4842 513.876 L16.4842 507.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M43.5384 480.265 L43.5384 463.11 L48.7583 463.11 L48.7583 480.265 L43.5384 480.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M38.3822 433.477 Q39.3689 428.862 42.4881 426.284 Q45.6073 423.674 50.1906 423.674 Q57.2247 423.674 61.0759 428.512 Q64.9272 433.35 64.9272 442.262 Q64.9272 445.254 64.3224 448.437 Q63.7495 451.588 62.5719 454.962 L56.3653 454.962 Q57.9249 452.288 58.7206 449.105 Q59.5163 445.922 59.5163 442.453 Q59.5163 436.406 57.1292 433.255 Q54.7421 430.072 50.1906 430.072 Q45.9892 430.072 43.6339 433.032 Q41.2468 435.96 41.2468 441.212 L41.2468 446.75 L35.9632 446.75 L35.9632 440.957 Q35.9632 436.215 34.0853 433.7 Q32.1756 431.186 28.6108 431.186 Q24.9505 431.186 23.009 433.796 Q21.0356 436.374 21.0356 441.212 Q21.0356 443.854 21.6086 446.877 Q22.1815 449.901 23.3909 453.529 L17.6618 453.529 Q16.6433 449.869 16.134 446.686 Q15.6248 443.472 15.6248 440.639 Q15.6248 433.318 18.9668 429.053 Q22.277 424.788 27.9424 424.788 Q31.8892 424.788 34.6264 427.048 Q37.3318 429.308 38.3822 433.477 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.5426 413.235 L14.5426 408.142 Q22.0542 403.368 29.2474 401.012 Q36.4406 398.625 43.5384 398.625 Q50.668 398.625 57.8931 401.012 Q65.1182 403.368 72.5979 408.142 L72.5979 413.235 Q65.3091 409.001 58.1159 406.932 Q50.8908 404.832 43.5384 404.832 Q36.186 404.832 29.0246 406.932 Q21.8632 409.001 14.5426 413.235 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip412)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  275.369,86.1857 294.057,99.2973 312.745,112.409 331.433,125.521 350.12,138.632 368.808,151.744 387.496,164.856 406.184,177.967 424.872,191.079 443.56,204.19 \n",
       "  462.247,217.302 480.935,230.414 499.623,243.525 518.311,256.637 536.999,269.749 555.687,282.86 574.374,295.972 593.062,309.084 611.75,322.195 630.438,335.307 \n",
       "  649.126,348.419 667.814,361.53 686.501,374.642 705.189,387.753 723.877,400.865 742.565,413.977 761.253,427.088 779.941,440.2 798.628,453.312 817.316,466.423 \n",
       "  836.004,479.535 854.692,492.647 873.38,505.758 892.067,518.87 910.755,531.982 929.443,545.093 948.131,558.205 966.819,571.316 985.507,584.428 1004.19,597.54 \n",
       "  1022.88,610.651 1041.57,623.763 1060.26,636.875 1078.95,649.986 1097.63,663.098 1116.32,676.21 1135.01,689.321 1153.7,702.433 1172.38,715.545 1191.07,728.656 \n",
       "  1209.76,741.768 1228.45,754.879 1247.14,767.991 1265.82,781.103 1284.51,794.214 1303.2,807.326 1321.89,820.438 1340.58,833.549 1359.26,846.661 1377.95,859.773 \n",
       "  1396.64,872.884 1415.33,885.996 1434.01,899.107 1452.7,912.219 1471.39,925.331 1490.08,938.442 1508.77,951.554 1527.45,964.666 1546.14,977.777 1564.83,990.889 \n",
       "  1583.52,1004 1602.2,1017.11 1620.89,1030.22 1639.58,1043.34 1658.27,1056.45 1676.96,1069.56 1695.64,1082.67 1714.33,1095.78 1733.02,1108.89 1751.71,1122.01 \n",
       "  1770.4,1135.12 1789.08,1148.23 1807.77,1161.34 1826.46,1174.45 1845.15,1187.56 1863.83,1200.68 1882.52,1213.79 1901.21,1226.9 1919.9,1240.01 1938.59,1253.12 \n",
       "  1957.27,1266.23 1975.96,1279.35 1994.65,1292.46 2013.34,1305.57 2032.03,1318.68 2050.71,1331.79 2069.4,1344.9 2088.09,1358.01 2106.78,1371.13 2125.46,1384.24 \n",
       "  \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip410)\" d=\"\n",
       "M219.866 1423.18 L2180.97 1423.18 L2180.97 47.2441 L219.866 47.2441  Z\n",
       "  \" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"0\"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,1423.18 2180.97,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,1384.24 2162.07,1384.24 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,1076.66 2162.07,1076.66 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,769.072 2162.07,769.072 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,461.489 2162.07,461.489 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2180.97,153.905 2162.07,153.905 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip410)\" d=\"M2217.64 1397.58 L2225.28 1397.58 L2225.28 1371.22 L2216.97 1372.88 L2216.97 1368.62 L2225.23 1366.96 L2229.91 1366.96 L2229.91 1397.58 L2237.55 1397.58 L2237.55 1401.52 L2217.64 1401.52 L2217.64 1397.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2246.99 1395.64 L2251.87 1395.64 L2251.87 1401.52 L2246.99 1401.52 L2246.99 1395.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2272.06 1370.04 Q2268.45 1370.04 2266.62 1373.6 Q2264.81 1377.14 2264.81 1384.27 Q2264.81 1391.38 2266.62 1394.94 Q2268.45 1398.49 2272.06 1398.49 Q2275.69 1398.49 2277.5 1394.94 Q2279.33 1391.38 2279.33 1384.27 Q2279.33 1377.14 2277.5 1373.6 Q2275.69 1370.04 2272.06 1370.04 M2272.06 1366.33 Q2277.87 1366.33 2280.93 1370.94 Q2284 1375.52 2284 1384.27 Q2284 1393 2280.93 1397.61 Q2277.87 1402.19 2272.06 1402.19 Q2266.25 1402.19 2263.17 1397.61 Q2260.11 1393 2260.11 1384.27 Q2260.11 1375.52 2263.17 1370.94 Q2266.25 1366.33 2272.06 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2217.64 1090 L2225.28 1090 L2225.28 1063.63 L2216.97 1065.3 L2216.97 1061.04 L2225.23 1059.38 L2229.91 1059.38 L2229.91 1090 L2237.55 1090 L2237.55 1093.94 L2217.64 1093.94 L2217.64 1090 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2246.99 1088.06 L2251.87 1088.06 L2251.87 1093.94 L2246.99 1093.94 L2246.99 1088.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2262.11 1059.38 L2280.46 1059.38 L2280.46 1063.31 L2266.39 1063.31 L2266.39 1071.78 Q2267.41 1071.44 2268.43 1071.27 Q2269.44 1071.09 2270.46 1071.09 Q2276.25 1071.09 2279.63 1074.26 Q2283.01 1077.43 2283.01 1082.85 Q2283.01 1088.43 2279.54 1091.53 Q2276.06 1094.61 2269.74 1094.61 Q2267.57 1094.61 2265.3 1094.24 Q2263.05 1093.87 2260.65 1093.12 L2260.65 1088.43 Q2262.73 1089.56 2264.95 1090.12 Q2267.18 1090.67 2269.65 1090.67 Q2273.66 1090.67 2275.99 1088.56 Q2278.33 1086.46 2278.33 1082.85 Q2278.33 1079.24 2275.99 1077.13 Q2273.66 1075.02 2269.65 1075.02 Q2267.78 1075.02 2265.9 1075.44 Q2264.05 1075.86 2262.11 1076.74 L2262.11 1059.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2222.59 782.417 L2238.91 782.417 L2238.91 786.352 L2216.97 786.352 L2216.97 782.417 Q2219.63 779.662 2224.21 775.032 Q2228.82 770.38 2230 769.037 Q2232.24 766.514 2233.12 764.778 Q2234.03 763.019 2234.03 761.329 Q2234.03 758.574 2232.08 756.838 Q2230.16 755.102 2227.06 755.102 Q2224.86 755.102 2222.41 755.866 Q2219.98 756.63 2217.2 758.181 L2217.2 753.458 Q2220.02 752.324 2222.48 751.745 Q2224.93 751.167 2226.97 751.167 Q2232.34 751.167 2235.53 753.852 Q2238.73 756.537 2238.73 761.028 Q2238.73 763.157 2237.92 765.079 Q2237.13 766.977 2235.02 769.569 Q2234.44 770.241 2231.34 773.458 Q2228.24 776.653 2222.59 782.417 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2248.73 780.472 L2253.61 780.472 L2253.61 786.352 L2248.73 786.352 L2248.73 780.472 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2273.8 754.87 Q2270.18 754.87 2268.36 758.435 Q2266.55 761.977 2266.55 769.107 Q2266.55 776.213 2268.36 779.778 Q2270.18 783.319 2273.8 783.319 Q2277.43 783.319 2279.24 779.778 Q2281.06 776.213 2281.06 769.107 Q2281.06 761.977 2279.24 758.435 Q2277.43 754.87 2273.8 754.87 M2273.8 751.167 Q2279.61 751.167 2282.66 755.773 Q2285.74 760.357 2285.74 769.107 Q2285.74 777.833 2282.66 782.44 Q2279.61 787.023 2273.8 787.023 Q2267.99 787.023 2264.91 782.44 Q2261.85 777.833 2261.85 769.107 Q2261.85 760.357 2264.91 755.773 Q2267.99 751.167 2273.8 751.167 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2222.59 474.833 L2238.91 474.833 L2238.91 478.769 L2216.97 478.769 L2216.97 474.833 Q2219.63 472.079 2224.21 467.449 Q2228.82 462.796 2230 461.454 Q2232.24 458.931 2233.12 457.195 Q2234.03 455.435 2234.03 453.746 Q2234.03 450.991 2232.08 449.255 Q2230.16 447.519 2227.06 447.519 Q2224.86 447.519 2222.41 448.283 Q2219.98 449.046 2217.2 450.597 L2217.2 445.875 Q2220.02 444.741 2222.48 444.162 Q2224.93 443.584 2226.97 443.584 Q2232.34 443.584 2235.53 446.269 Q2238.73 448.954 2238.73 453.445 Q2238.73 455.574 2237.92 457.496 Q2237.13 459.394 2235.02 461.986 Q2234.44 462.658 2231.34 465.875 Q2228.24 469.07 2222.59 474.833 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2248.73 472.889 L2253.61 472.889 L2253.61 478.769 L2248.73 478.769 L2248.73 472.889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2263.84 444.209 L2282.2 444.209 L2282.2 448.144 L2268.12 448.144 L2268.12 456.616 Q2269.14 456.269 2270.16 456.107 Q2271.18 455.921 2272.2 455.921 Q2277.99 455.921 2281.36 459.093 Q2284.74 462.264 2284.74 467.681 Q2284.74 473.259 2281.27 476.361 Q2277.8 479.44 2271.48 479.44 Q2269.3 479.44 2267.04 479.069 Q2264.79 478.699 2262.38 477.958 L2262.38 473.259 Q2264.47 474.394 2266.69 474.949 Q2268.91 475.505 2271.39 475.505 Q2275.39 475.505 2277.73 473.398 Q2280.07 471.292 2280.07 467.681 Q2280.07 464.07 2277.73 461.963 Q2275.39 459.857 2271.39 459.857 Q2269.51 459.857 2267.64 460.273 Q2265.79 460.69 2263.84 461.57 L2263.84 444.209 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2232.59 152.551 Q2235.95 153.269 2237.82 155.537 Q2239.72 157.806 2239.72 161.139 Q2239.72 166.255 2236.2 169.056 Q2232.68 171.857 2226.2 171.857 Q2224.03 171.857 2221.71 171.417 Q2219.42 171 2216.97 170.144 L2216.97 165.63 Q2218.91 166.764 2221.23 167.343 Q2223.54 167.921 2226.06 167.921 Q2230.46 167.921 2232.75 166.185 Q2235.07 164.449 2235.07 161.139 Q2235.07 158.084 2232.92 156.371 Q2230.79 154.634 2226.97 154.634 L2222.94 154.634 L2222.94 150.792 L2227.15 150.792 Q2230.6 150.792 2232.43 149.426 Q2234.26 148.037 2234.26 145.445 Q2234.26 142.783 2232.36 141.371 Q2230.49 139.935 2226.97 139.935 Q2225.05 139.935 2222.85 140.352 Q2220.65 140.769 2218.01 141.648 L2218.01 137.482 Q2220.67 136.741 2222.99 136.371 Q2225.32 136 2227.38 136 Q2232.71 136 2235.81 138.431 Q2238.91 140.838 2238.91 144.959 Q2238.91 147.829 2237.27 149.82 Q2235.62 151.787 2232.59 152.551 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2248.59 165.306 L2253.47 165.306 L2253.47 171.185 L2248.59 171.185 L2248.59 165.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2273.66 139.704 Q2270.05 139.704 2268.22 143.269 Q2266.41 146.81 2266.41 153.94 Q2266.41 161.046 2268.22 164.611 Q2270.05 168.153 2273.66 168.153 Q2277.29 168.153 2279.1 164.611 Q2280.93 161.046 2280.93 153.94 Q2280.93 146.81 2279.1 143.269 Q2277.29 139.704 2273.66 139.704 M2273.66 136 Q2279.47 136 2282.52 140.607 Q2285.6 145.19 2285.6 153.94 Q2285.6 162.667 2282.52 167.273 Q2279.47 171.857 2273.66 171.857 Q2267.85 171.857 2264.77 167.273 Q2261.71 162.667 2261.71 153.94 Q2261.71 145.19 2264.77 140.607 Q2267.85 136 2273.66 136 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2356.48 982.87 Q2357.18 980.801 2359.48 978.859 Q2361.77 976.886 2365.78 974.913 L2378.76 968.388 L2378.76 975.295 L2366.57 981.374 Q2361.8 983.729 2360.24 985.957 Q2358.68 988.153 2358.68 991.973 L2358.68 998.975 L2378.76 998.975 L2378.76 1005.4 L2331.24 1005.4 L2331.24 990.891 Q2331.24 982.742 2334.65 978.732 Q2338.06 974.722 2344.93 974.722 Q2349.42 974.722 2352.38 976.822 Q2355.34 978.891 2356.48 982.87 M2336.53 998.975 L2353.4 998.975 L2353.4 990.891 Q2353.4 986.244 2351.26 983.888 Q2349.1 981.501 2344.93 981.501 Q2340.76 981.501 2338.66 983.888 Q2336.53 986.244 2336.53 990.891 L2336.53 998.975 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2359.48 932.804 L2362.34 932.804 L2362.34 959.73 Q2368.39 959.348 2371.57 956.102 Q2374.72 952.824 2374.72 946.999 Q2374.72 943.625 2373.89 940.474 Q2373.07 937.291 2371.41 934.172 L2376.95 934.172 Q2378.29 937.323 2378.99 940.633 Q2379.69 943.943 2379.69 947.349 Q2379.69 955.879 2374.72 960.876 Q2369.76 965.842 2361.29 965.842 Q2352.54 965.842 2347.41 961.131 Q2342.26 956.388 2342.26 948.368 Q2342.26 941.174 2346.9 937.005 Q2351.52 932.804 2359.48 932.804 M2357.76 938.66 Q2352.95 938.724 2350.09 941.365 Q2347.22 943.975 2347.22 948.304 Q2347.22 953.206 2349.99 956.166 Q2352.76 959.094 2357.79 959.539 L2357.76 938.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2329.24 923.191 L2329.24 917.335 L2378.76 917.335 L2378.76 923.191 L2329.24 923.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2360.84 888.88 Q2360.84 895.978 2362.47 898.715 Q2364.09 901.452 2368.01 901.452 Q2371.12 901.452 2372.97 899.415 Q2374.79 897.347 2374.79 893.814 Q2374.79 888.944 2371.35 886.016 Q2367.88 883.056 2362.15 883.056 L2360.84 883.056 L2360.84 888.88 M2358.43 877.199 L2378.76 877.199 L2378.76 883.056 L2373.35 883.056 Q2376.6 885.061 2378.16 888.053 Q2379.69 891.044 2379.69 895.373 Q2379.69 900.848 2376.63 904.094 Q2373.54 907.309 2368.39 907.309 Q2362.37 907.309 2359.32 903.298 Q2356.26 899.256 2356.26 891.267 L2356.26 883.056 L2355.69 883.056 Q2351.65 883.056 2349.45 885.729 Q2347.22 888.371 2347.22 893.177 Q2347.22 896.233 2347.95 899.129 Q2348.69 902.025 2350.15 904.699 L2344.74 904.699 Q2343.5 901.484 2342.89 898.461 Q2342.26 895.437 2342.26 892.572 Q2342.26 884.838 2346.27 881.018 Q2350.28 877.199 2358.43 877.199 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2332.99 859.343 L2343.12 859.343 L2343.12 847.28 L2347.67 847.28 L2347.67 859.343 L2367.02 859.343 Q2371.38 859.343 2372.62 858.166 Q2373.86 856.956 2373.86 853.296 L2373.86 847.28 L2378.76 847.28 L2378.76 853.296 Q2378.76 860.075 2376.25 862.653 Q2373.7 865.232 2367.02 865.232 L2347.67 865.232 L2347.67 869.528 L2343.12 869.528 L2343.12 865.232 L2332.99 865.232 L2332.99 859.343 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2343.12 839.578 L2343.12 833.721 L2378.76 833.721 L2378.76 839.578 L2343.12 839.578 M2329.24 839.578 L2329.24 833.721 L2336.65 833.721 L2336.65 839.578 L2329.24 839.578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2343.12 825.669 L2343.12 819.462 L2373.03 808.322 L2343.12 797.182 L2343.12 790.976 L2378.76 804.344 L2378.76 812.301 L2343.12 825.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2359.48 752.399 L2362.34 752.399 L2362.34 779.326 Q2368.39 778.944 2371.57 775.698 Q2374.72 772.42 2374.72 766.595 Q2374.72 763.221 2373.89 760.07 Q2373.07 756.887 2371.41 753.768 L2376.95 753.768 Q2378.29 756.919 2378.99 760.229 Q2379.69 763.539 2379.69 766.945 Q2379.69 775.475 2374.72 780.472 Q2369.76 785.437 2361.29 785.437 Q2352.54 785.437 2347.41 780.727 Q2342.26 775.984 2342.26 767.964 Q2342.26 760.77 2346.9 756.601 Q2351.52 752.399 2359.48 752.399 M2357.76 758.256 Q2352.95 758.319 2350.09 760.961 Q2347.22 763.571 2347.22 767.9 Q2347.22 772.801 2349.99 775.762 Q2352.76 778.69 2357.79 779.135 L2357.76 758.256 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2329.24 704.02 L2334.11 704.02 L2334.11 709.622 Q2334.11 712.773 2335.38 714.014 Q2336.65 715.224 2339.96 715.224 L2343.12 715.224 L2343.12 705.58 L2347.67 705.58 L2347.67 715.224 L2378.76 715.224 L2378.76 721.112 L2347.67 721.112 L2347.67 726.714 L2343.12 726.714 L2343.12 721.112 L2340.63 721.112 Q2334.68 721.112 2331.98 718.343 Q2329.24 715.574 2329.24 709.558 L2329.24 704.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2329.24 699.118 L2329.24 693.262 L2378.76 693.262 L2378.76 699.118 L2329.24 699.118 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2347.22 667.194 Q2347.22 671.905 2350.91 674.642 Q2354.57 677.38 2360.97 677.38 Q2367.37 677.38 2371.06 674.674 Q2374.72 671.937 2374.72 667.194 Q2374.72 662.516 2371.03 659.778 Q2367.34 657.041 2360.97 657.041 Q2354.64 657.041 2350.95 659.778 Q2347.22 662.516 2347.22 667.194 M2342.26 667.194 Q2342.26 659.556 2347.22 655.195 Q2352.19 650.835 2360.97 650.835 Q2369.72 650.835 2374.72 655.195 Q2379.69 659.556 2379.69 667.194 Q2379.69 674.865 2374.72 679.226 Q2369.72 683.554 2360.97 683.554 Q2352.19 683.554 2347.22 679.226 Q2342.26 674.865 2342.26 667.194 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2343.12 644.532 L2343.12 638.676 L2370.93 631.355 L2343.12 624.067 L2343.12 617.16 L2370.93 609.839 L2343.12 602.551 L2343.12 596.694 L2378.76 606.02 L2378.76 612.927 L2349.55 620.597 L2378.76 628.3 L2378.76 635.207 L2343.12 644.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2348.59 567.157 Q2348.02 568.144 2347.76 569.322 Q2347.48 570.467 2347.48 571.868 Q2347.48 576.833 2350.72 579.507 Q2353.94 582.149 2359.99 582.149 L2378.76 582.149 L2378.76 588.037 L2343.12 588.037 L2343.12 582.149 L2348.65 582.149 Q2345.41 580.302 2343.85 577.342 Q2342.26 574.382 2342.26 570.149 Q2342.26 569.544 2342.35 568.812 Q2342.42 568.08 2342.57 567.189 L2348.59 567.157 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2360.84 544.814 Q2360.84 551.911 2362.47 554.649 Q2364.09 557.386 2368.01 557.386 Q2371.12 557.386 2372.97 555.349 Q2374.79 553.28 2374.79 549.747 Q2374.79 544.877 2371.35 541.949 Q2367.88 538.989 2362.15 538.989 L2360.84 538.989 L2360.84 544.814 M2358.43 533.133 L2378.76 533.133 L2378.76 538.989 L2373.35 538.989 Q2376.6 540.994 2378.16 543.986 Q2379.69 546.978 2379.69 551.307 Q2379.69 556.781 2376.63 560.028 Q2373.54 563.242 2368.39 563.242 Q2362.37 563.242 2359.32 559.232 Q2356.26 555.19 2356.26 547.201 L2356.26 538.989 L2355.69 538.989 Q2351.65 538.989 2349.45 541.663 Q2347.22 544.304 2347.22 549.111 Q2347.22 552.166 2347.95 555.062 Q2348.69 557.959 2350.15 560.632 L2344.74 560.632 Q2343.5 557.418 2342.89 554.394 Q2342.26 551.37 2342.26 548.506 Q2342.26 540.771 2346.27 536.952 Q2350.28 533.133 2358.43 533.133 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2332.99 515.277 L2343.12 515.277 L2343.12 503.214 L2347.67 503.214 L2347.67 515.277 L2367.02 515.277 Q2371.38 515.277 2372.62 514.099 Q2373.86 512.89 2373.86 509.229 L2373.86 503.214 L2378.76 503.214 L2378.76 509.229 Q2378.76 516.009 2376.25 518.587 Q2373.7 521.165 2367.02 521.165 L2347.67 521.165 L2347.67 525.462 L2343.12 525.462 L2343.12 521.165 L2332.99 521.165 L2332.99 515.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2359.48 465.02 L2362.34 465.02 L2362.34 491.946 Q2368.39 491.565 2371.57 488.318 Q2374.72 485.04 2374.72 479.215 Q2374.72 475.841 2373.89 472.69 Q2373.07 469.507 2371.41 466.388 L2376.95 466.388 Q2378.29 469.539 2378.99 472.849 Q2379.69 476.16 2379.69 479.565 Q2379.69 488.095 2374.72 493.092 Q2369.76 498.058 2361.29 498.058 Q2352.54 498.058 2347.41 493.347 Q2342.26 488.604 2342.26 480.584 Q2342.26 473.39 2346.9 469.221 Q2351.52 465.02 2359.48 465.02 M2357.76 470.876 Q2352.95 470.94 2350.09 473.581 Q2347.22 476.191 2347.22 480.52 Q2347.22 485.422 2349.99 488.382 Q2352.76 491.31 2357.79 491.756 L2357.76 470.876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip412)\" style=\"stroke:#ff7c00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  275.369,1384.24 294.057,1381.43 312.745,1378.59 331.433,1375.71 350.12,1372.78 368.808,1369.82 387.496,1366.81 406.184,1363.76 424.872,1360.66 443.56,1357.52 \n",
       "  462.247,1354.33 480.935,1351.1 499.623,1347.81 518.311,1344.48 536.999,1341.09 555.687,1337.65 574.374,1334.15 593.062,1330.6 611.75,1326.99 630.438,1323.33 \n",
       "  649.126,1319.6 667.814,1315.81 686.501,1311.95 705.189,1308.03 723.877,1304.04 742.565,1299.98 761.253,1295.85 779.941,1291.65 798.628,1287.37 817.316,1283.01 \n",
       "  836.004,1278.57 854.692,1274.04 873.38,1269.43 892.067,1264.73 910.755,1259.94 929.443,1255.05 948.131,1250.07 966.819,1244.98 985.507,1239.79 1004.19,1234.49 \n",
       "  1022.88,1229.08 1041.57,1223.55 1060.26,1217.9 1078.95,1212.13 1097.63,1206.22 1116.32,1200.18 1135.01,1194 1153.7,1187.68 1172.38,1181.2 1191.07,1174.57 \n",
       "  1209.76,1167.77 1228.45,1160.8 1247.14,1153.65 1265.82,1146.32 1284.51,1138.79 1303.2,1131.06 1321.89,1123.12 1340.58,1114.95 1359.26,1106.55 1377.95,1097.91 \n",
       "  1396.64,1089.02 1415.33,1079.85 1434.01,1070.4 1452.7,1060.66 1471.39,1050.6 1490.08,1040.21 1508.77,1029.47 1527.45,1018.37 1546.14,1006.87 1564.83,994.958 \n",
       "  1583.52,982.607 1602.2,969.789 1620.89,956.474 1639.58,942.629 1658.27,928.217 1676.96,913.199 1695.64,897.531 1714.33,881.165 1733.02,864.047 1751.71,846.119 \n",
       "  1770.4,827.313 1789.08,807.556 1807.77,786.766 1826.46,764.848 1845.15,741.696 1863.83,717.192 1882.52,691.197 1901.21,663.554 1919.9,634.081 1938.59,602.568 \n",
       "  1957.27,568.766 1975.96,532.385 1994.65,493.08 2013.34,450.437 2032.03,403.953 2050.71,353.017 2069.4,296.869 2088.09,234.554 2106.78,164.854 2125.46,86.1857 \n",
       "  \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "let\n",
    "\n",
    "xs = range(0.0, 1.0, 100)\n",
    "plot( xs, [ρ(x,Tᵣ,Pᵣ) for x in xs], ylabel=\"Density, ρ\", \n",
    "      xlabel=\"Mole Fraction Hydrogen, x\", lab=false, color=colors[1])\n",
    "plot!(twinx(), xs, [ √(ρ(0,Tᵣ,Pᵣ)/ρ(x,Tᵣ,Pᵣ)) for x in xs], ylabel=\"Relative flowrate\", \n",
    "      lab=false, color=colors[2])\n",
    "\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4c7c8bcf-5a3a-4a97-a69b-43591a3d576e",
   "metadata": {},
   "source": [
    "So we have two competing effects: as the mole fraction increases the heating value of the gas decreases but at the same time the flowrate increases. We can explore this further by plotting the ratio of the heat rate with blended fuel gas to the heat rate with straight natural gas."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "35c10598-43b4-48a2-b7d6-359173a78fdc",
   "metadata": {},
   "outputs": [],
   "source": [
    "# heat rate for blended fuel gas relative to natural gas\n",
    "q_ratio(x) = (HHV(x)/HHV_NG)*√(ρ(0,Tᵣ,Pᵣ)/ρ(x,Tᵣ,Pᵣ));"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "5d245287-1e0d-4947-a7bb-41c54bfed827",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip450\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip450)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip451\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip450)\" d=\"\n",
       "M249.542 1423.18 L2352.76 1423.18 L2352.76 47.2441 L249.542 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip452\">\n",
       "    <rect x=\"249\" y=\"47\" width=\"2104\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  309.067,1423.18 309.067,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  805.108,1423.18 805.108,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1301.15,1423.18 1301.15,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1797.19,1423.18 1797.19,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2293.23,1423.18 2293.23,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  309.067,1423.18 309.067,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  805.108,1423.18 805.108,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1301.15,1423.18 1301.15,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1797.19,1423.18 1797.19,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2293.23,1423.18 2293.23,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip450)\" d=\"M309.067 1454.1 Q305.456 1454.1 303.627 1457.66 Q301.822 1461.2 301.822 1468.33 Q301.822 1475.44 303.627 1479.01 Q305.456 1482.55 309.067 1482.55 Q312.701 1482.55 314.507 1479.01 Q316.335 1475.44 316.335 1468.33 Q316.335 1461.2 314.507 1457.66 Q312.701 1454.1 309.067 1454.1 M309.067 1450.39 Q314.877 1450.39 317.933 1455 Q321.011 1459.58 321.011 1468.33 Q321.011 1477.06 317.933 1481.67 Q314.877 1486.25 309.067 1486.25 Q303.257 1486.25 300.178 1481.67 Q297.123 1477.06 297.123 1468.33 Q297.123 1459.58 300.178 1455 Q303.257 1450.39 309.067 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M784.379 1481.64 L800.698 1481.64 L800.698 1485.58 L778.754 1485.58 L778.754 1481.64 Q781.416 1478.89 785.999 1474.26 Q790.606 1469.61 791.786 1468.27 Q794.032 1465.74 794.911 1464.01 Q795.814 1462.25 795.814 1460.56 Q795.814 1457.8 793.87 1456.07 Q791.948 1454.33 788.846 1454.33 Q786.647 1454.33 784.194 1455.09 Q781.763 1455.86 778.985 1457.41 L778.985 1452.69 Q781.809 1451.55 784.263 1450.97 Q786.717 1450.39 788.754 1450.39 Q794.124 1450.39 797.319 1453.08 Q800.513 1455.77 800.513 1460.26 Q800.513 1462.39 799.703 1464.31 Q798.916 1466.2 796.809 1468.8 Q796.231 1469.47 793.129 1472.69 Q790.027 1475.88 784.379 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M810.559 1451.02 L828.916 1451.02 L828.916 1454.96 L814.842 1454.96 L814.842 1463.43 Q815.86 1463.08 816.879 1462.92 Q817.897 1462.73 818.916 1462.73 Q824.703 1462.73 828.082 1465.9 Q831.462 1469.08 831.462 1474.49 Q831.462 1480.07 827.99 1483.17 Q824.518 1486.25 818.198 1486.25 Q816.022 1486.25 813.754 1485.88 Q811.508 1485.51 809.101 1484.77 L809.101 1480.07 Q811.184 1481.2 813.407 1481.76 Q815.629 1482.32 818.106 1482.32 Q822.11 1482.32 824.448 1480.21 Q826.786 1478.1 826.786 1474.49 Q826.786 1470.88 824.448 1468.77 Q822.11 1466.67 818.106 1466.67 Q816.231 1466.67 814.356 1467.08 Q812.504 1467.5 810.559 1468.38 L810.559 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1275.85 1451.02 L1294.2 1451.02 L1294.2 1454.96 L1280.13 1454.96 L1280.13 1463.43 Q1281.15 1463.08 1282.17 1462.92 Q1283.19 1462.73 1284.2 1462.73 Q1289.99 1462.73 1293.37 1465.9 Q1296.75 1469.08 1296.75 1474.49 Q1296.75 1480.07 1293.28 1483.17 Q1289.81 1486.25 1283.49 1486.25 Q1281.31 1486.25 1279.04 1485.88 Q1276.8 1485.51 1274.39 1484.77 L1274.39 1480.07 Q1276.47 1481.2 1278.7 1481.76 Q1280.92 1482.32 1283.39 1482.32 Q1287.4 1482.32 1289.74 1480.21 Q1292.07 1478.1 1292.07 1474.49 Q1292.07 1470.88 1289.74 1468.77 Q1287.4 1466.67 1283.39 1466.67 Q1281.52 1466.67 1279.64 1467.08 Q1277.79 1467.5 1275.85 1468.38 L1275.85 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1315.96 1454.1 Q1312.35 1454.1 1310.52 1457.66 Q1308.72 1461.2 1308.72 1468.33 Q1308.72 1475.44 1310.52 1479.01 Q1312.35 1482.55 1315.96 1482.55 Q1319.6 1482.55 1321.4 1479.01 Q1323.23 1475.44 1323.23 1468.33 Q1323.23 1461.2 1321.4 1457.66 Q1319.6 1454.1 1315.96 1454.1 M1315.96 1450.39 Q1321.77 1450.39 1324.83 1455 Q1327.91 1459.58 1327.91 1468.33 Q1327.91 1477.06 1324.83 1481.67 Q1321.77 1486.25 1315.96 1486.25 Q1310.15 1486.25 1307.07 1481.67 Q1304.02 1477.06 1304.02 1468.33 Q1304.02 1459.58 1307.07 1455 Q1310.15 1450.39 1315.96 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1771.04 1451.02 L1793.27 1451.02 L1793.27 1453.01 L1780.72 1485.58 L1775.84 1485.58 L1787.64 1454.96 L1771.04 1454.96 L1771.04 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1802.43 1451.02 L1820.79 1451.02 L1820.79 1454.96 L1806.72 1454.96 L1806.72 1463.43 Q1807.73 1463.08 1808.75 1462.92 Q1809.77 1462.73 1810.79 1462.73 Q1816.58 1462.73 1819.96 1465.9 Q1823.34 1469.08 1823.34 1474.49 Q1823.34 1480.07 1819.86 1483.17 Q1816.39 1486.25 1810.07 1486.25 Q1807.9 1486.25 1805.63 1485.88 Q1803.38 1485.51 1800.97 1484.77 L1800.97 1480.07 Q1803.06 1481.2 1805.28 1481.76 Q1807.5 1482.32 1809.98 1482.32 Q1813.98 1482.32 1816.32 1480.21 Q1818.66 1478.1 1818.66 1474.49 Q1818.66 1470.88 1816.32 1468.77 Q1813.98 1466.67 1809.98 1466.67 Q1808.1 1466.67 1806.23 1467.08 Q1804.38 1467.5 1802.43 1468.38 L1802.43 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M2252.84 1481.64 L2260.48 1481.64 L2260.48 1455.28 L2252.17 1456.95 L2252.17 1452.69 L2260.43 1451.02 L2265.11 1451.02 L2265.11 1481.64 L2272.74 1481.64 L2272.74 1485.58 L2252.84 1485.58 L2252.84 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M2292.19 1454.1 Q2288.58 1454.1 2286.75 1457.66 Q2284.94 1461.2 2284.94 1468.33 Q2284.94 1475.44 2286.75 1479.01 Q2288.58 1482.55 2292.19 1482.55 Q2295.82 1482.55 2297.63 1479.01 Q2299.46 1475.44 2299.46 1468.33 Q2299.46 1461.2 2297.63 1457.66 Q2295.82 1454.1 2292.19 1454.1 M2292.19 1450.39 Q2298 1450.39 2301.06 1455 Q2304.13 1459.58 2304.13 1468.33 Q2304.13 1477.06 2301.06 1481.67 Q2298 1486.25 2292.19 1486.25 Q2286.38 1486.25 2283.3 1481.67 Q2280.24 1477.06 2280.24 1468.33 Q2280.24 1459.58 2283.3 1455 Q2286.38 1450.39 2292.19 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M2322.35 1454.1 Q2318.74 1454.1 2316.91 1457.66 Q2315.11 1461.2 2315.11 1468.33 Q2315.11 1475.44 2316.91 1479.01 Q2318.74 1482.55 2322.35 1482.55 Q2325.99 1482.55 2327.79 1479.01 Q2329.62 1475.44 2329.62 1468.33 Q2329.62 1461.2 2327.79 1457.66 Q2325.99 1454.1 2322.35 1454.1 M2322.35 1450.39 Q2328.16 1450.39 2331.22 1455 Q2334.3 1459.58 2334.3 1468.33 Q2334.3 1477.06 2331.22 1481.67 Q2328.16 1486.25 2322.35 1486.25 Q2316.54 1486.25 2313.46 1481.67 Q2310.41 1477.06 2310.41 1468.33 Q2310.41 1459.58 2313.46 1455 Q2316.54 1450.39 2322.35 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1006.37 1547.13 Q1003.6 1547.13 1002.01 1549.49 Q1000.45 1551.84 1000.45 1556.04 Q1000.45 1560.18 1002.01 1562.57 Q1003.6 1564.92 1006.37 1564.92 Q1009.07 1564.92 1010.63 1562.57 Q1012.23 1560.18 1012.23 1556.04 Q1012.23 1551.87 1010.63 1549.52 Q1009.07 1547.13 1006.37 1547.13 M1006.37 1543.09 Q1011.4 1543.09 1014.36 1546.59 Q1017.32 1550.09 1017.32 1556.04 Q1017.32 1562 1014.33 1565.5 Q1011.37 1568.97 1006.37 1568.97 Q1001.28 1568.97 998.316 1565.5 Q995.356 1562 995.356 1556.04 Q995.356 1550.06 998.316 1546.59 Q1001.31 1543.09 1006.37 1543.09 M973.522 1523.71 Q970.785 1523.71 969.193 1526.09 Q967.634 1528.45 967.634 1532.59 Q967.634 1536.79 969.193 1539.14 Q970.753 1541.5 973.522 1541.5 Q976.291 1541.5 977.851 1539.14 Q979.442 1536.79 979.442 1532.59 Q979.442 1528.48 977.851 1526.09 Q976.259 1523.71 973.522 1523.71 M1002.26 1519.66 L1007.36 1519.66 L977.628 1568.97 L972.535 1568.97 L1002.26 1519.66 M973.522 1519.66 Q978.551 1519.66 981.543 1523.17 Q984.535 1526.63 984.535 1532.59 Q984.535 1538.6 981.543 1542.07 Q978.583 1545.54 973.522 1545.54 Q968.461 1545.54 965.501 1542.07 Q962.573 1538.57 962.573 1532.59 Q962.573 1526.67 965.533 1523.17 Q968.493 1519.66 973.522 1519.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1048.03 1520.52 L1054.46 1520.52 L1054.46 1540 L1077.82 1540 L1077.82 1520.52 L1084.25 1520.52 L1084.25 1568.04 L1077.82 1568.04 L1077.82 1545.41 L1054.46 1545.41 L1054.46 1568.04 L1048.03 1568.04 L1048.03 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1111.63 1571.35 Q1109.14 1577.72 1106.79 1579.66 Q1104.43 1581.6 1100.49 1581.6 L1095.81 1581.6 L1095.81 1576.7 L1099.24 1576.7 Q1101.66 1576.7 1103 1575.56 Q1104.34 1574.41 1105.96 1570.14 L1107.01 1567.47 L1092.59 1532.4 L1098.8 1532.4 L1109.94 1560.28 L1121.08 1532.4 L1127.29 1532.4 L1111.63 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1158.83 1537.81 L1158.83 1518.52 L1164.68 1518.52 L1164.68 1568.04 L1158.83 1568.04 L1158.83 1562.7 Q1156.98 1565.88 1154.15 1567.44 Q1151.35 1568.97 1147.4 1568.97 Q1140.94 1568.97 1136.87 1563.81 Q1132.82 1558.65 1132.82 1550.25 Q1132.82 1541.85 1136.87 1536.69 Q1140.94 1531.54 1147.4 1531.54 Q1151.35 1531.54 1154.15 1533.1 Q1156.98 1534.62 1158.83 1537.81 M1138.87 1550.25 Q1138.87 1556.71 1141.51 1560.4 Q1144.19 1564.07 1148.83 1564.07 Q1153.48 1564.07 1156.15 1560.4 Q1158.83 1556.71 1158.83 1550.25 Q1158.83 1543.79 1156.15 1540.13 Q1153.48 1536.44 1148.83 1536.44 Q1144.19 1536.44 1141.51 1540.13 Q1138.87 1543.79 1138.87 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1197.4 1537.87 Q1196.42 1537.3 1195.24 1537.04 Q1194.09 1536.76 1192.69 1536.76 Q1187.73 1536.76 1185.05 1540 Q1182.41 1543.22 1182.41 1549.27 L1182.41 1568.04 L1176.52 1568.04 L1176.52 1532.4 L1182.41 1532.4 L1182.41 1537.93 Q1184.26 1534.69 1187.22 1533.13 Q1190.18 1531.54 1194.41 1531.54 Q1195.02 1531.54 1195.75 1531.63 Q1196.48 1531.7 1197.37 1531.85 L1197.4 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1215.93 1536.5 Q1211.22 1536.5 1208.48 1540.19 Q1205.74 1543.85 1205.74 1550.25 Q1205.74 1556.65 1208.45 1560.34 Q1211.19 1564 1215.93 1564 Q1220.61 1564 1223.34 1560.31 Q1226.08 1556.62 1226.08 1550.25 Q1226.08 1543.92 1223.34 1540.23 Q1220.61 1536.5 1215.93 1536.5 M1215.93 1531.54 Q1223.57 1531.54 1227.93 1536.5 Q1232.29 1541.47 1232.29 1550.25 Q1232.29 1559 1227.93 1564 Q1223.57 1568.97 1215.93 1568.97 Q1208.26 1568.97 1203.9 1564 Q1199.57 1559 1199.57 1550.25 Q1199.57 1541.47 1203.9 1536.5 Q1208.26 1531.54 1215.93 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1265.45 1549.81 Q1265.45 1543.44 1262.81 1539.94 Q1260.2 1536.44 1255.46 1536.44 Q1250.75 1536.44 1248.11 1539.94 Q1245.5 1543.44 1245.5 1549.81 Q1245.5 1556.14 1248.11 1559.64 Q1250.75 1563.14 1255.46 1563.14 Q1260.2 1563.14 1262.81 1559.64 Q1265.45 1556.14 1265.45 1549.81 M1271.31 1563.62 Q1271.31 1572.72 1267.27 1577.15 Q1263.23 1581.6 1254.89 1581.6 Q1251.8 1581.6 1249.06 1581.13 Q1246.32 1580.68 1243.75 1579.72 L1243.75 1574.03 Q1246.32 1575.43 1248.84 1576.1 Q1251.35 1576.76 1253.96 1576.76 Q1259.72 1576.76 1262.59 1573.74 Q1265.45 1570.75 1265.45 1564.67 L1265.45 1561.77 Q1263.64 1564.92 1260.81 1566.48 Q1257.97 1568.04 1254.03 1568.04 Q1247.47 1568.04 1243.46 1563.05 Q1239.45 1558.05 1239.45 1549.81 Q1239.45 1541.53 1243.46 1536.53 Q1247.47 1531.54 1254.03 1531.54 Q1257.97 1531.54 1260.81 1533.1 Q1263.64 1534.66 1265.45 1537.81 L1265.45 1532.4 L1271.31 1532.4 L1271.31 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1313.86 1548.76 L1313.86 1551.62 L1286.94 1551.62 Q1287.32 1557.67 1290.57 1560.85 Q1293.84 1564 1299.67 1564 Q1303.04 1564 1306.19 1563.17 Q1309.38 1562.35 1312.5 1560.69 L1312.5 1566.23 Q1309.34 1567.57 1306.03 1568.27 Q1302.72 1568.97 1299.32 1568.97 Q1290.79 1568.97 1285.79 1564 Q1280.83 1559.04 1280.83 1550.57 Q1280.83 1541.82 1285.54 1536.69 Q1290.28 1531.54 1298.3 1531.54 Q1305.49 1531.54 1309.66 1536.18 Q1313.86 1540.8 1313.86 1548.76 M1308.01 1547.04 Q1307.94 1542.23 1305.3 1539.37 Q1302.69 1536.5 1298.36 1536.5 Q1293.46 1536.5 1290.5 1539.27 Q1287.57 1542.04 1287.13 1547.07 L1308.01 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1353.11 1546.53 L1353.11 1568.04 L1347.25 1568.04 L1347.25 1546.72 Q1347.25 1541.66 1345.28 1539.14 Q1343.31 1536.63 1339.36 1536.63 Q1334.62 1536.63 1331.88 1539.65 Q1329.14 1542.68 1329.14 1547.9 L1329.14 1568.04 L1323.25 1568.04 L1323.25 1532.4 L1329.14 1532.4 L1329.14 1537.93 Q1331.24 1534.72 1334.08 1533.13 Q1336.94 1531.54 1340.66 1531.54 Q1346.81 1531.54 1349.96 1535.36 Q1353.11 1539.14 1353.11 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1399.58 1518.58 Q1395.31 1525.9 1393.24 1533.06 Q1391.18 1540.23 1391.18 1547.58 Q1391.18 1554.93 1393.24 1562.16 Q1395.35 1569.35 1399.58 1576.64 L1394.49 1576.64 Q1389.71 1569.16 1387.32 1561.93 Q1384.97 1554.71 1384.97 1547.58 Q1384.97 1540.48 1387.32 1533.29 Q1389.68 1526.09 1394.49 1518.58 L1399.58 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1406.74 1532.4 L1412.95 1532.4 L1424.09 1562.31 L1435.23 1532.4 L1441.43 1532.4 L1428.07 1568.04 L1420.11 1568.04 L1406.74 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1463.33 1536.5 Q1458.62 1536.5 1455.88 1540.19 Q1453.15 1543.85 1453.15 1550.25 Q1453.15 1556.65 1455.85 1560.34 Q1458.59 1564 1463.33 1564 Q1468.01 1564 1470.75 1560.31 Q1473.48 1556.62 1473.48 1550.25 Q1473.48 1543.92 1470.75 1540.23 Q1468.01 1536.5 1463.33 1536.5 M1463.33 1531.54 Q1470.97 1531.54 1475.33 1536.5 Q1479.69 1541.47 1479.69 1550.25 Q1479.69 1559 1475.33 1564 Q1470.97 1568.97 1463.33 1568.97 Q1455.66 1568.97 1451.3 1564 Q1446.97 1559 1446.97 1550.25 Q1446.97 1541.47 1451.3 1536.5 Q1455.66 1531.54 1463.33 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1489.4 1518.52 L1495.26 1518.52 L1495.26 1568.04 L1489.4 1568.04 L1489.4 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1517.92 1520.52 L1523.33 1520.52 L1506.78 1574.09 L1501.37 1574.09 L1517.92 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1525.27 1532.4 L1531.48 1532.4 L1542.62 1562.31 L1553.76 1532.4 L1559.96 1532.4 L1546.59 1568.04 L1538.64 1568.04 L1525.27 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1581.86 1536.5 Q1577.15 1536.5 1574.41 1540.19 Q1571.68 1543.85 1571.68 1550.25 Q1571.68 1556.65 1574.38 1560.34 Q1577.12 1564 1581.86 1564 Q1586.54 1564 1589.28 1560.31 Q1592.01 1556.62 1592.01 1550.25 Q1592.01 1543.92 1589.28 1540.23 Q1586.54 1536.5 1581.86 1536.5 M1581.86 1531.54 Q1589.5 1531.54 1593.86 1536.5 Q1598.22 1541.47 1598.22 1550.25 Q1598.22 1559 1593.86 1564 Q1589.5 1568.97 1581.86 1568.97 Q1574.19 1568.97 1569.83 1564 Q1565.5 1559 1565.5 1550.25 Q1565.5 1541.47 1569.83 1536.5 Q1574.19 1531.54 1581.86 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1607.93 1518.52 L1613.78 1518.52 L1613.78 1568.04 L1607.93 1568.04 L1607.93 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1625.12 1518.58 L1630.21 1518.58 Q1634.98 1526.09 1637.34 1533.29 Q1639.72 1540.48 1639.72 1547.58 Q1639.72 1554.71 1637.34 1561.93 Q1634.98 1569.16 1630.21 1576.64 L1625.12 1576.64 Q1629.35 1569.35 1631.42 1562.16 Q1633.52 1554.93 1633.52 1547.58 Q1633.52 1540.23 1631.42 1533.06 Q1629.35 1525.9 1625.12 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  249.542,1268.73 2352.76,1268.73 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  249.542,908.112 2352.76,908.112 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  249.542,547.498 2352.76,547.498 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip452)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  249.542,186.884 2352.76,186.884 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,1423.18 249.542,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,1268.73 268.44,1268.73 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,908.112 268.44,908.112 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,547.498 268.44,547.498 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  249.542,186.884 268.44,186.884 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip450)\" d=\"M126.205 1254.53 Q122.593 1254.53 120.765 1258.09 Q118.959 1261.63 118.959 1268.76 Q118.959 1275.87 120.765 1279.43 Q122.593 1282.97 126.205 1282.97 Q129.839 1282.97 131.644 1279.43 Q133.473 1275.87 133.473 1268.76 Q133.473 1261.63 131.644 1258.09 Q129.839 1254.53 126.205 1254.53 M126.205 1250.82 Q132.015 1250.82 135.07 1255.43 Q138.149 1260.01 138.149 1268.76 Q138.149 1277.49 135.07 1282.09 Q132.015 1286.68 126.205 1286.68 Q120.394 1286.68 117.316 1282.09 Q114.26 1277.49 114.26 1268.76 Q114.26 1260.01 117.316 1255.43 Q120.394 1250.82 126.205 1250.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M146.366 1280.13 L151.251 1280.13 L151.251 1286.01 L146.366 1286.01 L146.366 1280.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M161.575 1285.29 L161.575 1281.03 Q163.334 1281.86 165.14 1282.3 Q166.945 1282.74 168.681 1282.74 Q173.311 1282.74 175.741 1279.64 Q178.195 1276.52 178.542 1270.17 Q177.2 1272.16 175.139 1273.23 Q173.079 1274.29 170.579 1274.29 Q165.394 1274.29 162.362 1271.17 Q159.353 1268.02 159.353 1262.58 Q159.353 1257.26 162.501 1254.04 Q165.649 1250.82 170.88 1250.82 Q176.876 1250.82 180.024 1255.43 Q183.195 1260.01 183.195 1268.76 Q183.195 1276.93 179.306 1281.82 Q175.44 1286.68 168.889 1286.68 Q167.13 1286.68 165.325 1286.33 Q163.519 1285.98 161.575 1285.29 M170.88 1270.64 Q174.028 1270.64 175.857 1268.48 Q177.709 1266.33 177.709 1262.58 Q177.709 1258.85 175.857 1256.7 Q174.028 1254.53 170.88 1254.53 Q167.732 1254.53 165.88 1256.7 Q164.052 1258.85 164.052 1262.58 Q164.052 1266.33 165.88 1268.48 Q167.732 1270.64 170.88 1270.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M201.598 1254.53 Q197.987 1254.53 196.158 1258.09 Q194.352 1261.63 194.352 1268.76 Q194.352 1275.87 196.158 1279.43 Q197.987 1282.97 201.598 1282.97 Q205.232 1282.97 207.037 1279.43 Q208.866 1275.87 208.866 1268.76 Q208.866 1261.63 207.037 1258.09 Q205.232 1254.53 201.598 1254.53 M201.598 1250.82 Q207.408 1250.82 210.463 1255.43 Q213.542 1260.01 213.542 1268.76 Q213.542 1277.49 210.463 1282.09 Q207.408 1286.68 201.598 1286.68 Q195.787 1286.68 192.709 1282.09 Q189.653 1277.49 189.653 1268.76 Q189.653 1260.01 192.709 1255.43 Q195.787 1250.82 201.598 1250.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M127.2 893.911 Q123.589 893.911 121.76 897.476 Q119.955 901.017 119.955 908.147 Q119.955 915.254 121.76 918.818 Q123.589 922.36 127.2 922.36 Q130.834 922.36 132.64 918.818 Q134.468 915.254 134.468 908.147 Q134.468 901.017 132.64 897.476 Q130.834 893.911 127.2 893.911 M127.2 890.207 Q133.01 890.207 136.066 894.814 Q139.144 899.397 139.144 908.147 Q139.144 916.874 136.066 921.48 Q133.01 926.064 127.2 926.064 Q121.39 926.064 118.311 921.48 Q115.256 916.874 115.256 908.147 Q115.256 899.397 118.311 894.814 Q121.39 890.207 127.2 890.207 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M147.362 919.513 L152.246 919.513 L152.246 925.392 L147.362 925.392 L147.362 919.513 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M162.57 924.675 L162.57 920.416 Q164.329 921.249 166.135 921.689 Q167.94 922.128 169.677 922.128 Q174.306 922.128 176.737 919.027 Q179.19 915.902 179.538 909.559 Q178.195 911.55 176.135 912.615 Q174.075 913.679 171.575 913.679 Q166.39 913.679 163.357 910.554 Q160.348 907.406 160.348 901.967 Q160.348 896.643 163.496 893.425 Q166.644 890.207 171.876 890.207 Q177.871 890.207 181.019 894.814 Q184.19 899.397 184.19 908.147 Q184.19 916.318 180.301 921.203 Q176.436 926.064 169.885 926.064 Q168.126 926.064 166.32 925.716 Q164.515 925.369 162.57 924.675 M171.876 910.022 Q175.024 910.022 176.852 907.869 Q178.704 905.717 178.704 901.967 Q178.704 898.24 176.852 896.087 Q175.024 893.911 171.876 893.911 Q168.727 893.911 166.876 896.087 Q165.047 898.24 165.047 901.967 Q165.047 905.717 166.876 907.869 Q168.727 910.022 171.876 910.022 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M192.639 890.832 L210.996 890.832 L210.996 894.768 L196.922 894.768 L196.922 903.24 Q197.94 902.892 198.959 902.73 Q199.977 902.545 200.996 902.545 Q206.783 902.545 210.162 905.717 Q213.542 908.888 213.542 914.304 Q213.542 919.883 210.07 922.985 Q206.598 926.064 200.278 926.064 Q198.102 926.064 195.834 925.693 Q193.588 925.323 191.181 924.582 L191.181 919.883 Q193.264 921.017 195.487 921.573 Q197.709 922.128 200.186 922.128 Q204.19 922.128 206.528 920.022 Q208.866 917.916 208.866 914.304 Q208.866 910.693 206.528 908.587 Q204.19 906.48 200.186 906.48 Q198.311 906.48 196.436 906.897 Q194.584 907.314 192.639 908.193 L192.639 890.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M117.015 560.843 L124.654 560.843 L124.654 534.477 L116.343 536.144 L116.343 531.885 L124.607 530.218 L129.283 530.218 L129.283 560.843 L136.922 560.843 L136.922 564.778 L117.015 564.778 L117.015 560.843 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M146.366 558.899 L151.251 558.899 L151.251 564.778 L146.366 564.778 L146.366 558.899 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M171.436 533.297 Q167.825 533.297 165.996 536.862 Q164.19 540.403 164.19 547.533 Q164.19 554.639 165.996 558.204 Q167.825 561.746 171.436 561.746 Q175.07 561.746 176.876 558.204 Q178.704 554.639 178.704 547.533 Q178.704 540.403 176.876 536.862 Q175.07 533.297 171.436 533.297 M171.436 529.593 Q177.246 529.593 180.301 534.2 Q183.38 538.783 183.38 547.533 Q183.38 556.26 180.301 560.866 Q177.246 565.449 171.436 565.449 Q165.626 565.449 162.547 560.866 Q159.491 556.26 159.491 547.533 Q159.491 538.783 162.547 534.2 Q165.626 529.593 171.436 529.593 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M201.598 533.297 Q197.987 533.297 196.158 536.862 Q194.352 540.403 194.352 547.533 Q194.352 554.639 196.158 558.204 Q197.987 561.746 201.598 561.746 Q205.232 561.746 207.037 558.204 Q208.866 554.639 208.866 547.533 Q208.866 540.403 207.037 536.862 Q205.232 533.297 201.598 533.297 M201.598 529.593 Q207.408 529.593 210.463 534.2 Q213.542 538.783 213.542 547.533 Q213.542 556.26 210.463 560.866 Q207.408 565.449 201.598 565.449 Q195.787 565.449 192.709 560.866 Q189.653 556.26 189.653 547.533 Q189.653 538.783 192.709 534.2 Q195.787 529.593 201.598 529.593 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M118.01 200.229 L125.649 200.229 L125.649 173.863 L117.339 175.53 L117.339 171.271 L125.603 169.604 L130.279 169.604 L130.279 200.229 L137.917 200.229 L137.917 204.164 L118.01 204.164 L118.01 200.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M147.362 198.284 L152.246 198.284 L152.246 204.164 L147.362 204.164 L147.362 198.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M172.431 172.683 Q168.82 172.683 166.991 176.247 Q165.186 179.789 165.186 186.919 Q165.186 194.025 166.991 197.59 Q168.82 201.132 172.431 201.132 Q176.065 201.132 177.871 197.59 Q179.7 194.025 179.7 186.919 Q179.7 179.789 177.871 176.247 Q176.065 172.683 172.431 172.683 M172.431 168.979 Q178.241 168.979 181.297 173.585 Q184.376 178.169 184.376 186.919 Q184.376 195.645 181.297 200.252 Q178.241 204.835 172.431 204.835 Q166.621 204.835 163.542 200.252 Q160.487 195.645 160.487 186.919 Q160.487 178.169 163.542 173.585 Q166.621 168.979 172.431 168.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M192.639 169.604 L210.996 169.604 L210.996 173.539 L196.922 173.539 L196.922 182.011 Q197.94 181.664 198.959 181.502 Q199.977 181.317 200.996 181.317 Q206.783 181.317 210.162 184.488 Q213.542 187.659 213.542 193.076 Q213.542 198.655 210.07 201.757 Q206.598 204.835 200.278 204.835 Q198.102 204.835 195.834 204.465 Q193.588 204.094 191.181 203.354 L191.181 198.655 Q193.264 199.789 195.487 200.344 Q197.709 200.9 200.186 200.9 Q204.19 200.9 206.528 198.794 Q208.866 196.687 208.866 193.076 Q208.866 189.465 206.528 187.358 Q204.19 185.252 200.186 185.252 Q198.311 185.252 196.436 185.669 Q194.584 186.085 192.639 186.965 L192.639 169.604 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M41.7242 1005.96 Q42.4244 1003.89 44.7161 1001.95 Q47.0077 999.978 51.0181 998.004 L64.0042 991.479 L64.0042 998.386 L51.8138 1004.47 Q47.0395 1006.82 45.48 1009.05 Q43.9204 1011.24 43.9204 1015.06 L43.9204 1022.07 L64.0042 1022.07 L64.0042 1028.5 L16.4842 1028.5 L16.4842 1013.98 Q16.4842 1005.83 19.8898 1001.82 Q23.2955 997.813 30.1704 997.813 Q34.6582 997.813 37.6183 999.914 Q40.5784 1001.98 41.7242 1005.96 M21.7677 1022.07 L38.6368 1022.07 L38.6368 1013.98 Q38.6368 1009.34 36.5043 1006.98 Q34.34 1004.59 30.1704 1004.59 Q26.0009 1004.59 23.9002 1006.98 Q21.7677 1009.34 21.7677 1013.98 L21.7677 1022.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M46.0847 968.69 Q46.0847 975.788 47.7079 978.525 Q49.3312 981.262 53.2461 981.262 Q56.3653 981.262 58.2114 979.225 Q60.0256 977.157 60.0256 973.624 Q60.0256 968.754 56.5881 965.826 Q53.1188 962.866 47.3897 962.866 L46.0847 962.866 L46.0847 968.69 M43.6657 957.009 L64.0042 957.009 L64.0042 962.866 L58.5933 962.866 Q61.8398 964.871 63.3994 967.863 Q64.9272 970.855 64.9272 975.183 Q64.9272 980.658 61.8716 983.904 Q58.7843 987.119 53.6281 987.119 Q47.6125 987.119 44.5569 983.108 Q41.5014 979.066 41.5014 971.077 L41.5014 962.866 L40.9285 962.866 Q36.8862 962.866 34.6901 965.539 Q32.4621 968.181 32.4621 972.987 Q32.4621 976.043 33.1941 978.939 Q33.9262 981.835 35.3903 984.509 L29.9795 984.509 Q28.7381 981.294 28.1334 978.271 Q27.4968 975.247 27.4968 972.382 Q27.4968 964.648 31.5072 960.829 Q35.5176 957.009 43.6657 957.009 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M18.2347 939.153 L28.3562 939.153 L28.3562 927.09 L32.9077 927.09 L32.9077 939.153 L52.2594 939.153 Q56.6199 939.153 57.8613 937.976 Q59.1026 936.766 59.1026 933.106 L59.1026 927.09 L64.0042 927.09 L64.0042 933.106 Q64.0042 939.885 61.4897 942.463 Q58.9434 945.042 52.2594 945.042 L32.9077 945.042 L32.9077 949.338 L28.3562 949.338 L28.3562 945.042 L18.2347 945.042 L18.2347 939.153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M28.3562 919.388 L28.3562 913.531 L64.0042 913.531 L64.0042 919.388 L28.3562 919.388 M14.479 919.388 L14.479 913.531 L21.895 913.531 L21.895 919.388 L14.479 919.388 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M32.4621 887.464 Q32.4621 892.174 36.1542 894.912 Q39.8145 897.649 46.212 897.649 Q52.6095 897.649 56.3017 894.943 Q59.9619 892.206 59.9619 887.464 Q59.9619 882.785 56.2698 880.048 Q52.5777 877.31 46.212 877.31 Q39.8781 877.31 36.186 880.048 Q32.4621 882.785 32.4621 887.464 M27.4968 887.464 Q27.4968 879.825 32.4621 875.464 Q37.4273 871.104 46.212 871.104 Q54.9649 871.104 59.9619 875.464 Q64.9272 879.825 64.9272 887.464 Q64.9272 895.134 59.9619 899.495 Q54.9649 903.824 46.212 903.824 Q37.4273 903.824 32.4621 899.495 Q27.4968 895.134 27.4968 887.464 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M32.4621 826.862 Q32.4621 831.573 36.1542 834.31 Q39.8145 837.047 46.212 837.047 Q52.6095 837.047 56.3017 834.342 Q59.9619 831.605 59.9619 826.862 Q59.9619 822.183 56.2698 819.446 Q52.5777 816.709 46.212 816.709 Q39.8781 816.709 36.186 819.446 Q32.4621 822.183 32.4621 826.862 M27.4968 826.862 Q27.4968 819.223 32.4621 814.863 Q37.4273 810.502 46.212 810.502 Q54.9649 810.502 59.9619 814.863 Q64.9272 819.223 64.9272 826.862 Q64.9272 834.533 59.9619 838.893 Q54.9649 843.222 46.212 843.222 Q37.4273 843.222 32.4621 838.893 Q27.4968 834.533 27.4968 826.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M14.479 782.748 L19.3487 782.748 L19.3487 788.35 Q19.3487 791.501 20.6219 792.742 Q21.895 793.952 25.2052 793.952 L28.3562 793.952 L28.3562 784.307 L32.9077 784.307 L32.9077 793.952 L64.0042 793.952 L64.0042 799.84 L32.9077 799.84 L32.9077 805.442 L28.3562 805.442 L28.3562 799.84 L25.8736 799.84 Q19.9216 799.84 17.2162 797.071 Q14.479 794.302 14.479 788.286 L14.479 782.748 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M16.4842 756.871 L16.4842 750.442 L35.9632 750.442 L35.9632 727.08 L16.4842 727.08 L16.4842 720.65 L64.0042 720.65 L64.0042 727.08 L41.3741 727.08 L41.3741 750.442 L64.0042 750.442 L64.0042 756.871 L16.4842 756.871 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M44.7161 677.618 L47.5806 677.618 L47.5806 704.545 Q53.6281 704.163 56.8109 700.917 Q59.9619 697.638 59.9619 691.814 Q59.9619 688.44 59.1344 685.289 Q58.3069 682.106 56.6518 678.987 L62.1899 678.987 Q63.5267 682.138 64.227 685.448 Q64.9272 688.758 64.9272 692.164 Q64.9272 700.694 59.9619 705.691 Q54.9967 710.656 46.5303 710.656 Q37.7774 710.656 32.6531 705.946 Q27.4968 701.203 27.4968 693.182 Q27.4968 685.989 32.1438 681.82 Q36.7589 677.618 44.7161 677.618 M42.9973 683.475 Q38.1912 683.538 35.3266 686.18 Q32.4621 688.79 32.4621 693.119 Q32.4621 698.02 35.2312 700.98 Q38.0002 703.909 43.0292 704.354 L42.9973 683.475 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M46.0847 651.805 Q46.0847 658.903 47.7079 661.64 Q49.3312 664.378 53.2461 664.378 Q56.3653 664.378 58.2114 662.341 Q60.0256 660.272 60.0256 656.739 Q60.0256 651.869 56.5881 648.941 Q53.1188 645.981 47.3897 645.981 L46.0847 645.981 L46.0847 651.805 M43.6657 640.124 L64.0042 640.124 L64.0042 645.981 L58.5933 645.981 Q61.8398 647.986 63.3994 650.978 Q64.9272 653.97 64.9272 658.298 Q64.9272 663.773 61.8716 667.019 Q58.7843 670.234 53.6281 670.234 Q47.6125 670.234 44.5569 666.224 Q41.5014 662.181 41.5014 654.192 L41.5014 645.981 L40.9285 645.981 Q36.8862 645.981 34.6901 648.654 Q32.4621 651.296 32.4621 656.102 Q32.4621 659.158 33.1941 662.054 Q33.9262 664.95 35.3903 667.624 L29.9795 667.624 Q28.7381 664.409 28.1334 661.386 Q27.4968 658.362 27.4968 655.497 Q27.4968 647.763 31.5072 643.944 Q35.5176 640.124 43.6657 640.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M18.2347 622.268 L28.3562 622.268 L28.3562 610.205 L32.9077 610.205 L32.9077 622.268 L52.2594 622.268 Q56.6199 622.268 57.8613 621.091 Q59.1026 619.881 59.1026 616.221 L59.1026 610.205 L64.0042 610.205 L64.0042 616.221 Q64.0042 623 61.4897 625.579 Q58.9434 628.157 52.2594 628.157 L32.9077 628.157 L32.9077 632.454 L28.3562 632.454 L28.3562 628.157 L18.2347 628.157 L18.2347 622.268 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M41.7242 558.993 Q42.4244 556.924 44.7161 554.983 Q47.0077 553.01 51.0181 551.036 L64.0042 544.511 L64.0042 551.418 L51.8138 557.497 Q47.0395 559.853 45.48 562.081 Q43.9204 564.277 43.9204 568.096 L43.9204 575.099 L64.0042 575.099 L64.0042 581.528 L16.4842 581.528 L16.4842 567.014 Q16.4842 558.866 19.8898 554.856 Q23.2955 550.845 30.1704 550.845 Q34.6582 550.845 37.6183 552.946 Q40.5784 555.015 41.7242 558.993 M21.7677 575.099 L38.6368 575.099 L38.6368 567.014 Q38.6368 562.367 36.5043 560.012 Q34.34 557.625 30.1704 557.625 Q26.0009 557.625 23.9002 560.012 Q21.7677 562.367 21.7677 567.014 L21.7677 575.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M46.0847 521.722 Q46.0847 528.82 47.7079 531.557 Q49.3312 534.294 53.2461 534.294 Q56.3653 534.294 58.2114 532.257 Q60.0256 530.188 60.0256 526.656 Q60.0256 521.786 56.5881 518.858 Q53.1188 515.897 47.3897 515.897 L46.0847 515.897 L46.0847 521.722 M43.6657 510.041 L64.0042 510.041 L64.0042 515.897 L58.5933 515.897 Q61.8398 517.903 63.3994 520.895 Q64.9272 523.886 64.9272 528.215 Q64.9272 533.69 61.8716 536.936 Q58.7843 540.151 53.6281 540.151 Q47.6125 540.151 44.5569 536.14 Q41.5014 532.098 41.5014 524.109 L41.5014 515.897 L40.9285 515.897 Q36.8862 515.897 34.6901 518.571 Q32.4621 521.213 32.4621 526.019 Q32.4621 529.074 33.1941 531.971 Q33.9262 534.867 35.3903 537.541 L29.9795 537.541 Q28.7381 534.326 28.1334 531.302 Q27.4968 528.279 27.4968 525.414 Q27.4968 517.68 31.5072 513.86 Q35.5176 510.041 43.6657 510.041 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M18.2347 492.185 L28.3562 492.185 L28.3562 480.122 L32.9077 480.122 L32.9077 492.185 L52.2594 492.185 Q56.6199 492.185 57.8613 491.008 Q59.1026 489.798 59.1026 486.138 L59.1026 480.122 L64.0042 480.122 L64.0042 486.138 Q64.0042 492.917 61.4897 495.495 Q58.9434 498.073 52.2594 498.073 L32.9077 498.073 L32.9077 502.37 L28.3562 502.37 L28.3562 498.073 L18.2347 498.073 L18.2347 492.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M44.7161 441.928 L47.5806 441.928 L47.5806 468.855 Q53.6281 468.473 56.8109 465.226 Q59.9619 461.948 59.9619 456.123 Q59.9619 452.75 59.1344 449.599 Q58.3069 446.416 56.6518 443.297 L62.1899 443.297 Q63.5267 446.448 64.227 449.758 Q64.9272 453.068 64.9272 456.474 Q64.9272 465.004 59.9619 470.001 Q54.9967 474.966 46.5303 474.966 Q37.7774 474.966 32.6531 470.255 Q27.4968 465.513 27.4968 457.492 Q27.4968 450.299 32.1438 446.129 Q36.7589 441.928 44.7161 441.928 M42.9973 447.784 Q38.1912 447.848 35.3266 450.49 Q32.4621 453.1 32.4621 457.428 Q32.4621 462.33 35.2312 465.29 Q38.0002 468.218 43.0292 468.664 L42.9973 447.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip452)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  309.067,547.498 329.109,562.762 349.151,578.015 369.193,593.256 389.235,608.484 409.277,623.697 429.319,638.893 449.361,654.072 469.403,669.231 489.446,684.369 \n",
       "  509.488,699.484 529.53,714.575 549.572,729.639 569.614,744.674 589.656,759.679 609.698,774.651 629.74,789.588 649.782,804.488 669.824,819.347 689.866,834.164 \n",
       "  709.908,848.936 729.95,863.659 749.992,878.331 770.034,892.949 790.076,907.509 810.118,922.007 830.161,936.441 850.203,950.806 870.245,965.098 890.287,979.313 \n",
       "  910.329,993.446 930.371,1007.49 950.413,1021.45 970.455,1035.31 990.497,1049.06 1010.54,1062.71 1030.58,1076.25 1050.62,1089.66 1070.67,1102.95 1090.71,1116.1 \n",
       "  1110.75,1129.11 1130.79,1141.96 1150.83,1154.66 1170.88,1167.19 1190.92,1179.55 1210.96,1191.71 1231,1203.67 1251.04,1215.43 1271.09,1226.96 1291.13,1238.25 \n",
       "  1311.17,1249.3 1331.21,1260.07 1351.25,1270.57 1371.3,1280.77 1391.34,1290.65 1411.38,1300.2 1431.42,1309.39 1451.46,1318.2 1471.51,1326.6 1491.55,1334.58 \n",
       "  1511.59,1342.1 1531.63,1349.13 1551.67,1355.65 1571.72,1361.61 1591.76,1366.97 1611.8,1371.71 1631.84,1375.76 1651.89,1379.09 1671.93,1381.65 1691.97,1383.36 \n",
       "  1712.01,1384.18 1732.05,1384.03 1752.1,1382.83 1772.14,1380.51 1792.18,1376.97 1812.22,1372.11 1832.26,1365.82 1852.31,1357.98 1872.35,1348.44 1892.39,1337.05 \n",
       "  1912.43,1323.64 1932.47,1308.01 1952.52,1289.95 1972.56,1269.19 1992.6,1245.47 2012.64,1218.45 2032.68,1187.76 2052.73,1152.97 2072.77,1113.58 2092.81,1069 \n",
       "  2112.85,1018.56 2132.89,961.43 2152.94,896.646 2172.98,823.035 2193.02,739.174 2213.06,643.308 2233.1,533.256 2253.15,406.26 2273.19,258.779 2293.23,86.1857 \n",
       "  \n",
       "  \"/>\n",
       "<circle clip-path=\"url(#clip452)\" cx=\"1719.06\" cy=\"1384.24\" r=\"14.4\" fill=\"#ff7c00\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip452)\" cx=\"2230.66\" cy=\"547.498\" r=\"14.4\" fill=\"#1ac938\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<path clip-path=\"url(#clip450)\" d=\"\n",
       "M319.649 248.629 L1037.17 248.629 L1037.17 93.1086 L319.649 93.1086  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<polyline clip-path=\"url(#clip450)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  319.649,248.629 1037.17,248.629 1037.17,93.1086 319.649,93.1086 319.649,248.629 \n",
       "  \"/>\n",
       "<circle clip-path=\"url(#clip450)\" cx=\"413.125\" cy=\"144.949\" r=\"23.04\" fill=\"#ff7c00\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"5.12\"/>\n",
       "<path clip-path=\"url(#clip450)\" d=\"M506.602 127.669 L513.569 127.669 L522.388 151.187 L531.254 127.669 L538.222 127.669 L538.222 162.229 L533.662 162.229 L533.662 131.882 L524.75 155.585 L520.051 155.585 L511.139 131.882 L511.139 162.229 L506.602 162.229 L506.602 127.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M547.319 136.303 L551.578 136.303 L551.578 162.229 L547.319 162.229 L547.319 136.303 M547.319 126.21 L551.578 126.21 L551.578 131.604 L547.319 131.604 L547.319 126.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M582.041 146.581 L582.041 162.229 L577.782 162.229 L577.782 146.719 Q577.782 143.039 576.347 141.21 Q574.911 139.382 572.041 139.382 Q568.592 139.382 566.601 141.581 Q564.61 143.78 564.61 147.576 L564.61 162.229 L560.328 162.229 L560.328 136.303 L564.61 136.303 L564.61 140.331 Q566.138 137.993 568.198 136.835 Q570.282 135.678 572.99 135.678 Q577.458 135.678 579.749 138.456 Q582.041 141.21 582.041 146.581 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M590.536 136.303 L594.795 136.303 L594.795 162.229 L590.536 162.229 L590.536 136.303 M590.536 126.21 L594.795 126.21 L594.795 131.604 L590.536 131.604 L590.536 126.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M623.893 141.28 Q625.49 138.409 627.712 137.044 Q629.934 135.678 632.943 135.678 Q636.994 135.678 639.193 138.525 Q641.392 141.349 641.392 146.581 L641.392 162.229 L637.11 162.229 L637.11 146.719 Q637.11 142.993 635.791 141.187 Q634.471 139.382 631.763 139.382 Q628.453 139.382 626.531 141.581 Q624.61 143.78 624.61 147.576 L624.61 162.229 L620.328 162.229 L620.328 146.719 Q620.328 142.969 619.008 141.187 Q617.689 139.382 614.934 139.382 Q611.67 139.382 609.749 141.604 Q607.828 143.803 607.828 147.576 L607.828 162.229 L603.545 162.229 L603.545 136.303 L607.828 136.303 L607.828 140.331 Q609.286 137.946 611.323 136.812 Q613.36 135.678 616.161 135.678 Q618.985 135.678 620.953 137.113 Q622.943 138.548 623.893 141.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M649.448 151.997 L649.448 136.303 L653.707 136.303 L653.707 151.835 Q653.707 155.516 655.142 157.368 Q656.578 159.196 659.448 159.196 Q662.897 159.196 664.888 156.997 Q666.902 154.798 666.902 151.002 L666.902 136.303 L671.161 136.303 L671.161 162.229 L666.902 162.229 L666.902 158.247 Q665.351 160.608 663.29 161.766 Q661.253 162.9 658.545 162.9 Q654.078 162.9 651.763 160.122 Q649.448 157.344 649.448 151.997 M660.165 135.678 L660.165 135.678 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M700.119 141.28 Q701.716 138.409 703.938 137.044 Q706.161 135.678 709.17 135.678 Q713.221 135.678 715.42 138.525 Q717.619 141.349 717.619 146.581 L717.619 162.229 L713.337 162.229 L713.337 146.719 Q713.337 142.993 712.017 141.187 Q710.698 139.382 707.989 139.382 Q704.679 139.382 702.758 141.581 Q700.837 143.78 700.837 147.576 L700.837 162.229 L696.554 162.229 L696.554 146.719 Q696.554 142.969 695.235 141.187 Q693.915 139.382 691.161 139.382 Q687.897 139.382 685.976 141.604 Q684.054 143.803 684.054 147.576 L684.054 162.229 L679.772 162.229 L679.772 136.303 L684.054 136.303 L684.054 140.331 Q685.513 137.946 687.55 136.812 Q689.587 135.678 692.388 135.678 Q695.212 135.678 697.179 137.113 Q699.17 138.548 700.119 141.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M762.734 146.581 L762.734 162.229 L758.475 162.229 L758.475 146.719 Q758.475 143.039 757.04 141.21 Q755.605 139.382 752.734 139.382 Q749.285 139.382 747.295 141.581 Q745.304 143.78 745.304 147.576 L745.304 162.229 L741.022 162.229 L741.022 126.21 L745.304 126.21 L745.304 140.331 Q746.832 137.993 748.892 136.835 Q750.975 135.678 753.684 135.678 Q758.151 135.678 760.443 138.456 Q762.734 141.21 762.734 146.581 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M793.406 148.201 L793.406 150.284 L773.822 150.284 Q774.1 154.682 776.461 156.997 Q778.845 159.289 783.082 159.289 Q785.535 159.289 787.827 158.687 Q790.142 158.085 792.41 156.881 L792.41 160.909 Q790.119 161.881 787.711 162.391 Q785.304 162.9 782.827 162.9 Q776.623 162.9 772.989 159.289 Q769.378 155.678 769.378 149.52 Q769.378 143.155 772.804 139.428 Q776.253 135.678 782.086 135.678 Q787.318 135.678 790.35 139.057 Q793.406 142.414 793.406 148.201 M789.146 146.951 Q789.1 143.456 787.179 141.372 Q785.281 139.289 782.132 139.289 Q778.568 139.289 776.415 141.303 Q774.285 143.317 773.961 146.974 L789.146 146.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M812.179 149.196 Q807.017 149.196 805.026 150.377 Q803.035 151.557 803.035 154.405 Q803.035 156.673 804.517 158.016 Q806.021 159.335 808.591 159.335 Q812.132 159.335 814.262 156.835 Q816.415 154.312 816.415 150.145 L816.415 149.196 L812.179 149.196 M820.674 147.437 L820.674 162.229 L816.415 162.229 L816.415 158.293 Q814.956 160.655 812.78 161.789 Q810.605 162.9 807.456 162.9 Q803.475 162.9 801.114 160.678 Q798.776 158.432 798.776 154.682 Q798.776 150.307 801.693 148.085 Q804.632 145.863 810.442 145.863 L816.415 145.863 L816.415 145.446 Q816.415 142.507 814.47 140.909 Q812.549 139.289 809.054 139.289 Q806.831 139.289 804.725 139.821 Q802.618 140.354 800.674 141.419 L800.674 137.483 Q803.012 136.581 805.211 136.141 Q807.41 135.678 809.493 135.678 Q815.118 135.678 817.896 138.594 Q820.674 141.511 820.674 147.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M833.66 128.942 L833.66 136.303 L842.433 136.303 L842.433 139.613 L833.66 139.613 L833.66 153.687 Q833.66 156.858 834.516 157.761 Q835.396 158.664 838.058 158.664 L842.433 158.664 L842.433 162.229 L838.058 162.229 Q833.128 162.229 831.253 160.4 Q829.378 158.548 829.378 153.687 L829.378 139.613 L826.253 139.613 L826.253 136.303 L829.378 136.303 L829.378 128.942 L833.66 128.942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M878.127 140.284 Q877.41 139.868 876.553 139.682 Q875.72 139.474 874.701 139.474 Q871.09 139.474 869.146 141.835 Q867.225 144.173 867.225 148.571 L867.225 162.229 L862.942 162.229 L862.942 136.303 L867.225 136.303 L867.225 140.331 Q868.567 137.969 870.72 136.835 Q872.873 135.678 875.951 135.678 Q876.391 135.678 876.924 135.747 Q877.456 135.794 878.104 135.909 L878.127 140.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M894.377 149.196 Q889.215 149.196 887.224 150.377 Q885.234 151.557 885.234 154.405 Q885.234 156.673 886.715 158.016 Q888.22 159.335 890.789 159.335 Q894.331 159.335 896.461 156.835 Q898.613 154.312 898.613 150.145 L898.613 149.196 L894.377 149.196 M902.873 147.437 L902.873 162.229 L898.613 162.229 L898.613 158.293 Q897.155 160.655 894.979 161.789 Q892.803 162.9 889.655 162.9 Q885.674 162.9 883.312 160.678 Q880.975 158.432 880.975 154.682 Q880.975 150.307 883.891 148.085 Q886.831 145.863 892.641 145.863 L898.613 145.863 L898.613 145.446 Q898.613 142.507 896.669 140.909 Q894.748 139.289 891.252 139.289 Q889.03 139.289 886.924 139.821 Q884.817 140.354 882.873 141.419 L882.873 137.483 Q885.211 136.581 887.41 136.141 Q889.609 135.678 891.692 135.678 Q897.317 135.678 900.095 138.594 Q902.873 141.511 902.873 147.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M915.859 128.942 L915.859 136.303 L924.632 136.303 L924.632 139.613 L915.859 139.613 L915.859 153.687 Q915.859 156.858 916.715 157.761 Q917.595 158.664 920.257 158.664 L924.632 158.664 L924.632 162.229 L920.257 162.229 Q915.326 162.229 913.451 160.4 Q911.576 158.548 911.576 153.687 L911.576 139.613 L908.451 139.613 L908.451 136.303 L911.576 136.303 L911.576 128.942 L915.859 128.942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M930.233 136.303 L934.493 136.303 L934.493 162.229 L930.233 162.229 L930.233 136.303 M930.233 126.21 L934.493 126.21 L934.493 131.604 L930.233 131.604 L930.233 126.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M953.451 139.289 Q950.025 139.289 948.034 141.974 Q946.044 144.636 946.044 149.289 Q946.044 153.942 948.011 156.627 Q950.002 159.289 953.451 159.289 Q956.854 159.289 958.844 156.604 Q960.835 153.918 960.835 149.289 Q960.835 144.682 958.844 141.997 Q956.854 139.289 953.451 139.289 M953.451 135.678 Q959.006 135.678 962.178 139.289 Q965.349 142.9 965.349 149.289 Q965.349 155.655 962.178 159.289 Q959.006 162.9 953.451 162.9 Q947.872 162.9 944.701 159.289 Q941.553 155.655 941.553 149.289 Q941.553 142.9 944.701 139.289 Q947.872 135.678 953.451 135.678 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip450)\" cx=\"413.125\" cy=\"196.789\" r=\"23.04\" fill=\"#1ac938\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"5.12\"/>\n",
       "<path clip-path=\"url(#clip450)\" d=\"M511.277 197.564 L511.277 210.226 L518.777 210.226 Q522.55 210.226 524.356 208.675 Q526.185 207.101 526.185 203.883 Q526.185 200.643 524.356 199.115 Q522.55 197.564 518.777 197.564 L511.277 197.564 M511.277 183.351 L511.277 193.768 L518.199 193.768 Q521.625 193.768 523.291 192.495 Q524.981 191.198 524.981 188.559 Q524.981 185.944 523.291 184.647 Q521.625 183.351 518.199 183.351 L511.277 183.351 M506.602 179.509 L518.546 179.509 Q523.893 179.509 526.787 181.731 Q529.68 183.953 529.68 188.05 Q529.68 191.222 528.199 193.097 Q526.717 194.971 523.847 195.434 Q527.296 196.175 529.194 198.536 Q531.115 200.874 531.115 204.393 Q531.115 209.022 527.967 211.545 Q524.819 214.069 519.009 214.069 L506.602 214.069 L506.602 179.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M553.962 192.124 Q553.245 191.708 552.388 191.522 Q551.555 191.314 550.536 191.314 Q546.925 191.314 544.981 193.675 Q543.06 196.013 543.06 200.411 L543.06 214.069 L538.777 214.069 L538.777 188.143 L543.06 188.143 L543.06 192.171 Q544.402 189.809 546.555 188.675 Q548.708 187.518 551.786 187.518 Q552.226 187.518 552.759 187.587 Q553.291 187.634 553.939 187.749 L553.962 192.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M579.564 200.041 L579.564 202.124 L559.981 202.124 Q560.259 206.522 562.62 208.837 Q565.004 211.129 569.24 211.129 Q571.694 211.129 573.985 210.527 Q576.3 209.925 578.569 208.721 L578.569 212.749 Q576.277 213.721 573.87 214.231 Q571.462 214.74 568.985 214.74 Q562.782 214.74 559.148 211.129 Q555.536 207.518 555.536 201.36 Q555.536 194.995 558.962 191.268 Q562.411 187.518 568.245 187.518 Q573.476 187.518 576.509 190.897 Q579.564 194.254 579.564 200.041 M575.305 198.791 Q575.259 195.296 573.337 193.212 Q571.439 191.129 568.291 191.129 Q564.726 191.129 562.573 193.143 Q560.444 195.157 560.12 198.814 L575.305 198.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M598.337 201.036 Q593.175 201.036 591.184 202.217 Q589.194 203.397 589.194 206.245 Q589.194 208.513 590.675 209.856 Q592.18 211.175 594.749 211.175 Q598.291 211.175 600.42 208.675 Q602.573 206.152 602.573 201.985 L602.573 201.036 L598.337 201.036 M606.832 199.277 L606.832 214.069 L602.573 214.069 L602.573 210.133 Q601.115 212.495 598.939 213.629 Q596.763 214.74 593.615 214.74 Q589.633 214.74 587.272 212.518 Q584.934 210.272 584.934 206.522 Q584.934 202.147 587.851 199.925 Q590.791 197.703 596.601 197.703 L602.573 197.703 L602.573 197.286 Q602.573 194.347 600.629 192.749 Q598.707 191.129 595.212 191.129 Q592.99 191.129 590.883 191.661 Q588.777 192.194 586.833 193.259 L586.833 189.323 Q589.171 188.421 591.37 187.981 Q593.569 187.518 595.652 187.518 Q601.277 187.518 604.055 190.434 Q606.832 193.351 606.832 199.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M615.444 178.05 L619.726 178.05 L619.726 199.323 L632.434 188.143 L637.874 188.143 L624.124 200.272 L638.453 214.069 L632.897 214.069 L619.726 201.407 L619.726 214.069 L615.444 214.069 L615.444 178.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M680.304 200.041 L680.304 202.124 L660.721 202.124 Q660.999 206.522 663.36 208.837 Q665.744 211.129 669.98 211.129 Q672.434 211.129 674.726 210.527 Q677.04 209.925 679.309 208.721 L679.309 212.749 Q677.017 213.721 674.61 214.231 Q672.202 214.74 669.726 214.74 Q663.522 214.74 659.888 211.129 Q656.277 207.518 656.277 201.36 Q656.277 194.995 659.703 191.268 Q663.152 187.518 668.985 187.518 Q674.216 187.518 677.249 190.897 Q680.304 194.254 680.304 200.041 M676.045 198.791 Q675.999 195.296 674.077 193.212 Q672.179 191.129 669.031 191.129 Q665.466 191.129 663.314 193.143 Q661.184 195.157 660.86 198.814 L676.045 198.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M684.239 188.143 L688.753 188.143 L696.855 209.902 L704.957 188.143 L709.471 188.143 L699.749 214.069 L693.962 214.069 L684.239 188.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M737.526 200.041 L737.526 202.124 L717.943 202.124 Q718.221 206.522 720.582 208.837 Q722.966 211.129 727.202 211.129 Q729.656 211.129 731.948 210.527 Q734.262 209.925 736.531 208.721 L736.531 212.749 Q734.239 213.721 731.832 214.231 Q729.424 214.74 726.948 214.74 Q720.744 214.74 717.11 211.129 Q713.499 207.518 713.499 201.36 Q713.499 194.995 716.924 191.268 Q720.374 187.518 726.207 187.518 Q731.438 187.518 734.471 190.897 Q737.526 194.254 737.526 200.041 M733.267 198.791 Q733.221 195.296 731.299 193.212 Q729.401 191.129 726.253 191.129 Q722.688 191.129 720.536 193.143 Q718.406 195.157 718.082 198.814 L733.267 198.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M766.068 198.421 L766.068 214.069 L761.808 214.069 L761.808 198.559 Q761.808 194.879 760.373 193.05 Q758.938 191.222 756.068 191.222 Q752.619 191.222 750.628 193.421 Q748.637 195.62 748.637 199.416 L748.637 214.069 L744.355 214.069 L744.355 188.143 L748.637 188.143 L748.637 192.171 Q750.165 189.833 752.225 188.675 Q754.309 187.518 757.017 187.518 Q761.484 187.518 763.776 190.296 Q766.068 193.05 766.068 198.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M811.183 198.421 L811.183 214.069 L806.924 214.069 L806.924 198.559 Q806.924 194.879 805.489 193.05 Q804.054 191.222 801.183 191.222 Q797.734 191.222 795.743 193.421 Q793.753 195.62 793.753 199.416 L793.753 214.069 L789.47 214.069 L789.47 178.05 L793.753 178.05 L793.753 192.171 Q795.281 189.833 797.341 188.675 Q799.424 187.518 802.132 187.518 Q806.6 187.518 808.892 190.296 Q811.183 193.05 811.183 198.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M841.854 200.041 L841.854 202.124 L822.271 202.124 Q822.549 206.522 824.91 208.837 Q827.294 211.129 831.53 211.129 Q833.984 211.129 836.276 210.527 Q838.59 209.925 840.859 208.721 L840.859 212.749 Q838.567 213.721 836.16 214.231 Q833.753 214.74 831.276 214.74 Q825.072 214.74 821.438 211.129 Q817.827 207.518 817.827 201.36 Q817.827 194.995 821.253 191.268 Q824.702 187.518 830.535 187.518 Q835.766 187.518 838.799 190.897 Q841.854 194.254 841.854 200.041 M837.595 198.791 Q837.549 195.296 835.628 193.212 Q833.729 191.129 830.581 191.129 Q827.016 191.129 824.864 193.143 Q822.734 195.157 822.41 198.814 L837.595 198.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M860.627 201.036 Q855.465 201.036 853.475 202.217 Q851.484 203.397 851.484 206.245 Q851.484 208.513 852.965 209.856 Q854.47 211.175 857.039 211.175 Q860.581 211.175 862.711 208.675 Q864.863 206.152 864.863 201.985 L864.863 201.036 L860.627 201.036 M869.123 199.277 L869.123 214.069 L864.863 214.069 L864.863 210.133 Q863.405 212.495 861.229 213.629 Q859.053 214.74 855.905 214.74 Q851.924 214.74 849.563 212.518 Q847.225 210.272 847.225 206.522 Q847.225 202.147 850.141 199.925 Q853.081 197.703 858.891 197.703 L864.863 197.703 L864.863 197.286 Q864.863 194.347 862.919 192.749 Q860.998 191.129 857.502 191.129 Q855.28 191.129 853.174 191.661 Q851.067 192.194 849.123 193.259 L849.123 189.323 Q851.461 188.421 853.66 187.981 Q855.859 187.518 857.942 187.518 Q863.567 187.518 866.345 190.434 Q869.123 193.351 869.123 199.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M882.109 180.782 L882.109 188.143 L890.882 188.143 L890.882 191.453 L882.109 191.453 L882.109 205.527 Q882.109 208.698 882.965 209.601 Q883.845 210.504 886.507 210.504 L890.882 210.504 L890.882 214.069 L886.507 214.069 Q881.576 214.069 879.701 212.24 Q877.826 210.388 877.826 205.527 L877.826 191.453 L874.701 191.453 L874.701 188.143 L877.826 188.143 L877.826 180.782 L882.109 180.782 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M926.576 192.124 Q925.859 191.708 925.002 191.522 Q924.169 191.314 923.15 191.314 Q919.539 191.314 917.595 193.675 Q915.673 196.013 915.673 200.411 L915.673 214.069 L911.391 214.069 L911.391 188.143 L915.673 188.143 L915.673 192.171 Q917.016 189.809 919.169 188.675 Q921.322 187.518 924.4 187.518 Q924.84 187.518 925.372 187.587 Q925.905 187.634 926.553 187.749 L926.576 192.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M942.826 201.036 Q937.664 201.036 935.673 202.217 Q933.683 203.397 933.683 206.245 Q933.683 208.513 935.164 209.856 Q936.669 211.175 939.238 211.175 Q942.78 211.175 944.909 208.675 Q947.062 206.152 947.062 201.985 L947.062 201.036 L942.826 201.036 M951.321 199.277 L951.321 214.069 L947.062 214.069 L947.062 210.133 Q945.604 212.495 943.428 213.629 Q941.252 214.74 938.104 214.74 Q934.122 214.74 931.761 212.518 Q929.423 210.272 929.423 206.522 Q929.423 202.147 932.34 199.925 Q935.28 197.703 941.09 197.703 L947.062 197.703 L947.062 197.286 Q947.062 194.347 945.118 192.749 Q943.196 191.129 939.701 191.129 Q937.479 191.129 935.372 191.661 Q933.266 192.194 931.321 193.259 L931.321 189.323 Q933.659 188.421 935.858 187.981 Q938.058 187.518 940.141 187.518 Q945.766 187.518 948.544 190.434 Q951.321 193.351 951.321 199.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M964.307 180.782 L964.307 188.143 L973.08 188.143 L973.08 191.453 L964.307 191.453 L964.307 205.527 Q964.307 208.698 965.164 209.601 Q966.043 210.504 968.706 210.504 L973.08 210.504 L973.08 214.069 L968.706 214.069 Q963.775 214.069 961.9 212.24 Q960.025 210.388 960.025 205.527 L960.025 191.453 L956.9 191.453 L956.9 188.143 L960.025 188.143 L960.025 180.782 L964.307 180.782 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M978.682 188.143 L982.942 188.143 L982.942 214.069 L978.682 214.069 L978.682 188.143 M978.682 178.05 L982.942 178.05 L982.942 183.444 L978.682 183.444 L978.682 178.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip450)\" d=\"M1001.9 191.129 Q998.474 191.129 996.483 193.814 Q994.492 196.476 994.492 201.129 Q994.492 205.782 996.46 208.467 Q998.451 211.129 1001.9 211.129 Q1005.3 211.129 1007.29 208.444 Q1009.28 205.758 1009.28 201.129 Q1009.28 196.522 1007.29 193.837 Q1005.3 191.129 1001.9 191.129 M1001.9 187.518 Q1007.46 187.518 1010.63 191.129 Q1013.8 194.74 1013.8 201.129 Q1013.8 207.495 1010.63 211.129 Q1007.46 214.74 1001.9 214.74 Q996.321 214.74 993.15 211.129 Q990.002 207.495 990.002 201.129 Q990.002 194.74 993.15 191.129 Q996.321 187.518 1001.9 187.518 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "let\n",
    "\n",
    "xs = range(0.0, 1.0, 100)\n",
    "plot( xs.*100, [q_ratio(x) for x in xs], lab=false, color=colors[1])\n",
    "plot!([0.7106211503798253].*100, [0.8839840357969662], lab=\"Minimum heat ratio\", \n",
    "      seriestype=:scatter, color=colors[2], legend=:topleft)\n",
    "plot!([0.9684672945947692].*100, [1.0], lab=\"Break even heat ratio\",\n",
    "      seriestype=:scatter, color=colors[3])\n",
    "plot!(ylabel=\"Ratio of Heat Rate\", xlabel=\"% Hydrogen (vol/vol)\", lab=false)\n",
    "\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "dfaae9ce-bfd1-4a89-90d7-4bc452c9d611",
   "metadata": {},
   "source": [
    "Initially the loss of heating value \"wins out\" and increasing the hydrogen content merely decreases the energy supplied at a given pressure. But once the stream is predominantly hydrogen, the lower density takes over and the heat rate increases.\n",
    "\n",
    "The minimum ratio can be found by setting the derivative to zero"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "97fe8c41-62cd-49c3-8dfa-5560f2070036",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(0.7106211503798253, 0.8839840357969662)"
      ]
     },
     "execution_count": 9,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "using ForwardDiff: derivative\n",
    "using Roots: find_zero\n",
    "\n",
    "∂q_ratio(x) = derivative(q_ratio,x)\n",
    "xₘᵢₙ = find_zero(∂q_ratio,(0,1))\n",
    "\n",
    "xₘᵢₙ, q_ratio(xₘᵢₙ)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "902e4cc1-d9d2-4dc7-91f5-8603fc46fb8a",
   "metadata": {},
   "source": [
    "Initially, blending hydrogen decreases the overall energy delivered, bottoming out at ~12% less, when hydrogen makes up 71% of the fuel gas. While this is not the 66% decline predicted by a naive look at energy density, neither is it nothing.\n",
    "\n",
    "Another important point is where the ratio becomes one: the concentration where the blended hydrogen fuel gas reattains the energy content of the original natural gas stream"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "6d3f358d-d65c-4335-84b9-3bfd15db1123",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "0.9684672945947692"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "xₑᵥₑₙ = find_zero( (x)-> q_ratio(x)-1, (xₘᵢₙ,1))"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "079e46b7-a5bd-4ccb-8083-ca436084ed91",
   "metadata": {},
   "source": [
    "The system doesn't recover the original energy supply until the hydrogen content is >96.8%, at which point a whole host of other concerns may become more relevant -- burning pure and nearly pure hydrogen comes with its own issues."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1e452dc6-0374-47f3-aafa-7cb58b12a96e",
   "metadata": {},
   "source": [
    "## Greenhouse gas emissions\n",
    "\n",
    "The whole point of doing this is to decrease the carbon emissions associated with space heating (plus the other uses of household natural gas, but mostly space heating). So it is worth circling back to answer the question: does this actually do that? and by how much?\n",
    "\n",
    "The dominant greenhouse gas associated with combustion is carbon dioxide, and the carbon dioxide emissions from combustion are fairly easy to calculate from stoichiometry, for a generic hydrocarbon the combustion equation is\n",
    "$$ C_n H_m + \\left( n + {m \\over 4} \\right) O_2 \\rightarrow n CO_2 + {m \\over 2} H_2 O $$\n",
    "\n",
    "If we presume the natural gas is mostly methane and *n*&approx;1, then there is one mole of carbon dioxide produced per mole of natural gas delivered (assuming perfectly complete combustion). When combusting hydrogen there is no carbon dioxide produced, and so the moles of carbon dioxide produced from the combustion of a blended hydrogen fuel gas is\n",
    "\n",
    "$$ \\dot{n}_{CO_2} = \\left( 1 - x_{H_2} \\right) \\dot{n}_{FG} $$\n",
    "\n",
    "Where $\\dot{n}$ is the molar flowrate. We don't actually know the molar flowrate of fuel gas, but we can calculate it from the ideal gas law and the volumetric flowrate at standard state *Q*<sub>s</sub>\n",
    "\n",
    "$$ \\dot{n}_{FG} = {P_r \\over {R T_r} } Q_s $$\n",
    "\n",
    "$$ \\dot{n}_{CO_2} = \\left( 1 - x_{H_2} \\right) {P_r \\over {R T_r} } Q_s $$\n",
    "\n",
    "What we want is the *mass* flowrate of carbon dioxide, so simply multiply both sides by the molar weight\n",
    "\n",
    "$$ \\dot{m}_{CO_2} = \\left( 1 - x_{H_2} \\right) MW_{CO_2} {P_r \\over {R T_r} } Q_s \\\\ = \\left( 1 - x_{H_2} \\right) \\rho_{CO_2,r} Q_s $$\n",
    "\n",
    "If we assume that the users of fuel gas are using a fixed amount of energy, regardless of the actual flowrate, then what we want is the carbon *intensity* of the fuel: how much carbon dioxide is emitted *per Megajoule* of heat generated?\n",
    "\n",
    "$$ E = \\frac{\\dot{m}_{CO_2}}{q} = { {\\left( 1 - x_{H_2} \\right) \\rho_{CO_2,r} Q_s} \\over {HHV(x) Q_s} } = { { \\left( 1 - x_{H_2} \\right) \\rho_{CO_2,r} } \\over {HHV(x)} }$$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "e6464333-5bf9-4d74-94c7-a75d3e46a6f8",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "E (generic function with 1 method)"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Carbon Dioxide\n",
    "MW_CO2 = 44.009e-3u\"kg/mol\"\n",
    "ρ_CO2 = MW_CO2*Pᵣ/(R*Tᵣ)\n",
    "\n",
    "E(x) = (1-x)*ρ_CO2/HHV(x)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "4bb2a865-ae35-435d-a3b0-b7cb13bee105",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip490\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip490)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip491\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip490)\" d=\"\n",
       "M250.028 1423.18 L2352.76 1423.18 L2352.76 47.2441 L250.028 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip492\">\n",
       "    <rect x=\"250\" y=\"47\" width=\"2104\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  309.539,1423.18 309.539,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  805.466,1423.18 805.466,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1301.39,1423.18 1301.39,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1797.32,1423.18 1797.32,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2293.24,1423.18 2293.24,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  309.539,1423.18 309.539,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  805.466,1423.18 805.466,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1301.39,1423.18 1301.39,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1797.32,1423.18 1797.32,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2293.24,1423.18 2293.24,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip490)\" d=\"M309.539 1454.1 Q305.928 1454.1 304.1 1457.66 Q302.294 1461.2 302.294 1468.33 Q302.294 1475.44 304.1 1479.01 Q305.928 1482.55 309.539 1482.55 Q313.174 1482.55 314.979 1479.01 Q316.808 1475.44 316.808 1468.33 Q316.808 1461.2 314.979 1457.66 Q313.174 1454.1 309.539 1454.1 M309.539 1450.39 Q315.349 1450.39 318.405 1455 Q321.484 1459.58 321.484 1468.33 Q321.484 1477.06 318.405 1481.67 Q315.349 1486.25 309.539 1486.25 Q303.729 1486.25 300.65 1481.67 Q297.595 1477.06 297.595 1468.33 Q297.595 1459.58 300.65 1455 Q303.729 1450.39 309.539 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M784.737 1481.64 L801.056 1481.64 L801.056 1485.58 L779.112 1485.58 L779.112 1481.64 Q781.774 1478.89 786.357 1474.26 Q790.963 1469.61 792.144 1468.27 Q794.389 1465.74 795.269 1464.01 Q796.172 1462.25 796.172 1460.56 Q796.172 1457.8 794.227 1456.07 Q792.306 1454.33 789.204 1454.33 Q787.005 1454.33 784.551 1455.09 Q782.121 1455.86 779.343 1457.41 L779.343 1452.69 Q782.167 1451.55 784.621 1450.97 Q787.075 1450.39 789.112 1450.39 Q794.482 1450.39 797.676 1453.08 Q800.871 1455.77 800.871 1460.26 Q800.871 1462.39 800.061 1464.31 Q799.274 1466.2 797.167 1468.8 Q796.588 1469.47 793.487 1472.69 Q790.385 1475.88 784.737 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M810.917 1451.02 L829.273 1451.02 L829.273 1454.96 L815.199 1454.96 L815.199 1463.43 Q816.218 1463.08 817.236 1462.92 Q818.255 1462.73 819.273 1462.73 Q825.06 1462.73 828.44 1465.9 Q831.82 1469.08 831.82 1474.49 Q831.82 1480.07 828.347 1483.17 Q824.875 1486.25 818.556 1486.25 Q816.38 1486.25 814.111 1485.88 Q811.866 1485.51 809.459 1484.77 L809.459 1480.07 Q811.542 1481.2 813.764 1481.76 Q815.986 1482.32 818.463 1482.32 Q822.468 1482.32 824.806 1480.21 Q827.144 1478.1 827.144 1474.49 Q827.144 1470.88 824.806 1468.77 Q822.468 1466.67 818.463 1466.67 Q816.588 1466.67 814.713 1467.08 Q812.861 1467.5 810.917 1468.38 L810.917 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1276.09 1451.02 L1294.45 1451.02 L1294.45 1454.96 L1280.37 1454.96 L1280.37 1463.43 Q1281.39 1463.08 1282.41 1462.92 Q1283.43 1462.73 1284.45 1462.73 Q1290.23 1462.73 1293.61 1465.9 Q1296.99 1469.08 1296.99 1474.49 Q1296.99 1480.07 1293.52 1483.17 Q1290.05 1486.25 1283.73 1486.25 Q1281.55 1486.25 1279.29 1485.88 Q1277.04 1485.51 1274.63 1484.77 L1274.63 1480.07 Q1276.72 1481.2 1278.94 1481.76 Q1281.16 1482.32 1283.64 1482.32 Q1287.64 1482.32 1289.98 1480.21 Q1292.32 1478.1 1292.32 1474.49 Q1292.32 1470.88 1289.98 1468.77 Q1287.64 1466.67 1283.64 1466.67 Q1281.76 1466.67 1279.89 1467.08 Q1278.04 1467.5 1276.09 1468.38 L1276.09 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1316.21 1454.1 Q1312.6 1454.1 1310.77 1457.66 Q1308.96 1461.2 1308.96 1468.33 Q1308.96 1475.44 1310.77 1479.01 Q1312.6 1482.55 1316.21 1482.55 Q1319.84 1482.55 1321.65 1479.01 Q1323.48 1475.44 1323.48 1468.33 Q1323.48 1461.2 1321.65 1457.66 Q1319.84 1454.1 1316.21 1454.1 M1316.21 1450.39 Q1322.02 1450.39 1325.07 1455 Q1328.15 1459.58 1328.15 1468.33 Q1328.15 1477.06 1325.07 1481.67 Q1322.02 1486.25 1316.21 1486.25 Q1310.4 1486.25 1307.32 1481.67 Q1304.26 1477.06 1304.26 1468.33 Q1304.26 1459.58 1307.32 1455 Q1310.4 1450.39 1316.21 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1771.17 1451.02 L1793.39 1451.02 L1793.39 1453.01 L1780.85 1485.58 L1775.96 1485.58 L1787.77 1454.96 L1771.17 1454.96 L1771.17 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1802.56 1451.02 L1820.92 1451.02 L1820.92 1454.96 L1806.84 1454.96 L1806.84 1463.43 Q1807.86 1463.08 1808.88 1462.92 Q1809.9 1462.73 1810.92 1462.73 Q1816.7 1462.73 1820.08 1465.9 Q1823.46 1469.08 1823.46 1474.49 Q1823.46 1480.07 1819.99 1483.17 Q1816.52 1486.25 1810.2 1486.25 Q1808.02 1486.25 1805.76 1485.88 Q1803.51 1485.51 1801.1 1484.77 L1801.1 1480.07 Q1803.19 1481.2 1805.41 1481.76 Q1807.63 1482.32 1810.11 1482.32 Q1814.11 1482.32 1816.45 1480.21 Q1818.79 1478.1 1818.79 1474.49 Q1818.79 1470.88 1816.45 1468.77 Q1814.11 1466.67 1810.11 1466.67 Q1808.23 1466.67 1806.36 1467.08 Q1804.51 1467.5 1802.56 1468.38 L1802.56 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M2252.85 1481.64 L2260.49 1481.64 L2260.49 1455.28 L2252.18 1456.95 L2252.18 1452.69 L2260.44 1451.02 L2265.12 1451.02 L2265.12 1481.64 L2272.76 1481.64 L2272.76 1485.58 L2252.85 1485.58 L2252.85 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M2292.2 1454.1 Q2288.59 1454.1 2286.76 1457.66 Q2284.96 1461.2 2284.96 1468.33 Q2284.96 1475.44 2286.76 1479.01 Q2288.59 1482.55 2292.2 1482.55 Q2295.84 1482.55 2297.64 1479.01 Q2299.47 1475.44 2299.47 1468.33 Q2299.47 1461.2 2297.64 1457.66 Q2295.84 1454.1 2292.2 1454.1 M2292.2 1450.39 Q2298.01 1450.39 2301.07 1455 Q2304.15 1459.58 2304.15 1468.33 Q2304.15 1477.06 2301.07 1481.67 Q2298.01 1486.25 2292.2 1486.25 Q2286.39 1486.25 2283.31 1481.67 Q2280.26 1477.06 2280.26 1468.33 Q2280.26 1459.58 2283.31 1455 Q2286.39 1450.39 2292.2 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M2322.36 1454.1 Q2318.75 1454.1 2316.93 1457.66 Q2315.12 1461.2 2315.12 1468.33 Q2315.12 1475.44 2316.93 1479.01 Q2318.75 1482.55 2322.36 1482.55 Q2326 1482.55 2327.8 1479.01 Q2329.63 1475.44 2329.63 1468.33 Q2329.63 1461.2 2327.8 1457.66 Q2326 1454.1 2322.36 1454.1 M2322.36 1450.39 Q2328.18 1450.39 2331.23 1455 Q2334.31 1459.58 2334.31 1468.33 Q2334.31 1477.06 2331.23 1481.67 Q2328.18 1486.25 2322.36 1486.25 Q2316.55 1486.25 2313.48 1481.67 Q2310.42 1477.06 2310.42 1468.33 Q2310.42 1459.58 2313.48 1455 Q2316.55 1450.39 2322.36 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1006.61 1547.13 Q1003.84 1547.13 1002.25 1549.49 Q1000.69 1551.84 1000.69 1556.04 Q1000.69 1560.18 1002.25 1562.57 Q1003.84 1564.92 1006.61 1564.92 Q1009.32 1564.92 1010.88 1562.57 Q1012.47 1560.18 1012.47 1556.04 Q1012.47 1551.87 1010.88 1549.52 Q1009.32 1547.13 1006.61 1547.13 M1006.61 1543.09 Q1011.64 1543.09 1014.6 1546.59 Q1017.56 1550.09 1017.56 1556.04 Q1017.56 1562 1014.57 1565.5 Q1011.61 1568.97 1006.61 1568.97 Q1001.52 1568.97 998.559 1565.5 Q995.599 1562 995.599 1556.04 Q995.599 1550.06 998.559 1546.59 Q1001.55 1543.09 1006.61 1543.09 M973.765 1523.71 Q971.028 1523.71 969.436 1526.09 Q967.877 1528.45 967.877 1532.59 Q967.877 1536.79 969.436 1539.14 Q970.996 1541.5 973.765 1541.5 Q976.534 1541.5 978.094 1539.14 Q979.685 1536.79 979.685 1532.59 Q979.685 1528.48 978.094 1526.09 Q976.502 1523.71 973.765 1523.71 M1002.51 1519.66 L1007.6 1519.66 L977.871 1568.97 L972.778 1568.97 L1002.51 1519.66 M973.765 1519.66 Q978.794 1519.66 981.786 1523.17 Q984.778 1526.63 984.778 1532.59 Q984.778 1538.6 981.786 1542.07 Q978.826 1545.54 973.765 1545.54 Q968.704 1545.54 965.744 1542.07 Q962.816 1538.57 962.816 1532.59 Q962.816 1526.67 965.776 1523.17 Q968.736 1519.66 973.765 1519.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1048.28 1520.52 L1054.7 1520.52 L1054.7 1540 L1078.07 1540 L1078.07 1520.52 L1084.5 1520.52 L1084.5 1568.04 L1078.07 1568.04 L1078.07 1545.41 L1054.7 1545.41 L1054.7 1568.04 L1048.28 1568.04 L1048.28 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1111.87 1571.35 Q1109.39 1577.72 1107.03 1579.66 Q1104.68 1581.6 1100.73 1581.6 L1096.05 1581.6 L1096.05 1576.7 L1099.49 1576.7 Q1101.91 1576.7 1103.24 1575.56 Q1104.58 1574.41 1106.2 1570.14 L1107.25 1567.47 L1092.84 1532.4 L1099.04 1532.4 L1110.18 1560.28 L1121.32 1532.4 L1127.53 1532.4 L1111.87 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1159.07 1537.81 L1159.07 1518.52 L1164.93 1518.52 L1164.93 1568.04 L1159.07 1568.04 L1159.07 1562.7 Q1157.22 1565.88 1154.39 1567.44 Q1151.59 1568.97 1147.64 1568.97 Q1141.18 1568.97 1137.11 1563.81 Q1133.07 1558.65 1133.07 1550.25 Q1133.07 1541.85 1137.11 1536.69 Q1141.18 1531.54 1147.64 1531.54 Q1151.59 1531.54 1154.39 1533.1 Q1157.22 1534.62 1159.07 1537.81 M1139.11 1550.25 Q1139.11 1556.71 1141.76 1560.4 Q1144.43 1564.07 1149.08 1564.07 Q1153.72 1564.07 1156.4 1560.4 Q1159.07 1556.71 1159.07 1550.25 Q1159.07 1543.79 1156.4 1540.13 Q1153.72 1536.44 1149.08 1536.44 Q1144.43 1536.44 1141.76 1540.13 Q1139.11 1543.79 1139.11 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1197.65 1537.87 Q1196.66 1537.3 1195.48 1537.04 Q1194.34 1536.76 1192.94 1536.76 Q1187.97 1536.76 1185.3 1540 Q1182.66 1543.22 1182.66 1549.27 L1182.66 1568.04 L1176.77 1568.04 L1176.77 1532.4 L1182.66 1532.4 L1182.66 1537.93 Q1184.5 1534.69 1187.46 1533.13 Q1190.42 1531.54 1194.66 1531.54 Q1195.26 1531.54 1195.99 1531.63 Q1196.72 1531.7 1197.62 1531.85 L1197.65 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1216.17 1536.5 Q1211.46 1536.5 1208.72 1540.19 Q1205.99 1543.85 1205.99 1550.25 Q1205.99 1556.65 1208.69 1560.34 Q1211.43 1564 1216.17 1564 Q1220.85 1564 1223.59 1560.31 Q1226.32 1556.62 1226.32 1550.25 Q1226.32 1543.92 1223.59 1540.23 Q1220.85 1536.5 1216.17 1536.5 M1216.17 1531.54 Q1223.81 1531.54 1228.17 1536.5 Q1232.53 1541.47 1232.53 1550.25 Q1232.53 1559 1228.17 1564 Q1223.81 1568.97 1216.17 1568.97 Q1208.5 1568.97 1204.14 1564 Q1199.81 1559 1199.81 1550.25 Q1199.81 1541.47 1204.14 1536.5 Q1208.5 1531.54 1216.17 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1265.7 1549.81 Q1265.7 1543.44 1263.05 1539.94 Q1260.44 1536.44 1255.7 1536.44 Q1250.99 1536.44 1248.35 1539.94 Q1245.74 1543.44 1245.74 1549.81 Q1245.74 1556.14 1248.35 1559.64 Q1250.99 1563.14 1255.7 1563.14 Q1260.44 1563.14 1263.05 1559.64 Q1265.7 1556.14 1265.7 1549.81 M1271.55 1563.62 Q1271.55 1572.72 1267.51 1577.15 Q1263.47 1581.6 1255.13 1581.6 Q1252.04 1581.6 1249.3 1581.13 Q1246.57 1580.68 1243.99 1579.72 L1243.99 1574.03 Q1246.57 1575.43 1249.08 1576.1 Q1251.6 1576.76 1254.21 1576.76 Q1259.97 1576.76 1262.83 1573.74 Q1265.7 1570.75 1265.7 1564.67 L1265.7 1561.77 Q1263.88 1564.92 1261.05 1566.48 Q1258.22 1568.04 1254.27 1568.04 Q1247.71 1568.04 1243.7 1563.05 Q1239.69 1558.05 1239.69 1549.81 Q1239.69 1541.53 1243.7 1536.53 Q1247.71 1531.54 1254.27 1531.54 Q1258.22 1531.54 1261.05 1533.1 Q1263.88 1534.66 1265.7 1537.81 L1265.7 1532.4 L1271.55 1532.4 L1271.55 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1314.11 1548.76 L1314.11 1551.62 L1287.18 1551.62 Q1287.56 1557.67 1290.81 1560.85 Q1294.09 1564 1299.91 1564 Q1303.29 1564 1306.44 1563.17 Q1309.62 1562.35 1312.74 1560.69 L1312.74 1566.23 Q1309.59 1567.57 1306.28 1568.27 Q1302.97 1568.97 1299.56 1568.97 Q1291.03 1568.97 1286.03 1564 Q1281.07 1559.04 1281.07 1550.57 Q1281.07 1541.82 1285.78 1536.69 Q1290.52 1531.54 1298.54 1531.54 Q1305.74 1531.54 1309.91 1536.18 Q1314.11 1540.8 1314.11 1548.76 M1308.25 1547.04 Q1308.19 1542.23 1305.55 1539.37 Q1302.94 1536.5 1298.61 1536.5 Q1293.71 1536.5 1290.75 1539.27 Q1287.82 1542.04 1287.37 1547.07 L1308.25 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1353.35 1546.53 L1353.35 1568.04 L1347.5 1568.04 L1347.5 1546.72 Q1347.5 1541.66 1345.52 1539.14 Q1343.55 1536.63 1339.6 1536.63 Q1334.86 1536.63 1332.12 1539.65 Q1329.39 1542.68 1329.39 1547.9 L1329.39 1568.04 L1323.5 1568.04 L1323.5 1532.4 L1329.39 1532.4 L1329.39 1537.93 Q1331.49 1534.72 1334.32 1533.13 Q1337.18 1531.54 1340.91 1531.54 Q1347.05 1531.54 1350.2 1535.36 Q1353.35 1539.14 1353.35 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1399.82 1518.58 Q1395.56 1525.9 1393.49 1533.06 Q1391.42 1540.23 1391.42 1547.58 Q1391.42 1554.93 1393.49 1562.16 Q1395.59 1569.35 1399.82 1576.64 L1394.73 1576.64 Q1389.95 1569.16 1387.57 1561.93 Q1385.21 1554.71 1385.21 1547.58 Q1385.21 1540.48 1387.57 1533.29 Q1389.92 1526.09 1394.73 1518.58 L1399.82 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1406.98 1532.4 L1413.19 1532.4 L1424.33 1562.31 L1435.47 1532.4 L1441.68 1532.4 L1428.31 1568.04 L1420.35 1568.04 L1406.98 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1463.57 1536.5 Q1458.86 1536.5 1456.13 1540.19 Q1453.39 1543.85 1453.39 1550.25 Q1453.39 1556.65 1456.09 1560.34 Q1458.83 1564 1463.57 1564 Q1468.25 1564 1470.99 1560.31 Q1473.73 1556.62 1473.73 1550.25 Q1473.73 1543.92 1470.99 1540.23 Q1468.25 1536.5 1463.57 1536.5 M1463.57 1531.54 Q1471.21 1531.54 1475.57 1536.5 Q1479.93 1541.47 1479.93 1550.25 Q1479.93 1559 1475.57 1564 Q1471.21 1568.97 1463.57 1568.97 Q1455.9 1568.97 1451.54 1564 Q1447.21 1559 1447.21 1550.25 Q1447.21 1541.47 1451.54 1536.5 Q1455.9 1531.54 1463.57 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1489.64 1518.52 L1495.5 1518.52 L1495.5 1568.04 L1489.64 1568.04 L1489.64 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1518.16 1520.52 L1523.57 1520.52 L1507.02 1574.09 L1501.61 1574.09 L1518.16 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1525.51 1532.4 L1531.72 1532.4 L1542.86 1562.31 L1554 1532.4 L1560.21 1532.4 L1546.84 1568.04 L1538.88 1568.04 L1525.51 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1582.1 1536.5 Q1577.39 1536.5 1574.66 1540.19 Q1571.92 1543.85 1571.92 1550.25 Q1571.92 1556.65 1574.62 1560.34 Q1577.36 1564 1582.1 1564 Q1586.78 1564 1589.52 1560.31 Q1592.26 1556.62 1592.26 1550.25 Q1592.26 1543.92 1589.52 1540.23 Q1586.78 1536.5 1582.1 1536.5 M1582.1 1531.54 Q1589.74 1531.54 1594.1 1536.5 Q1598.46 1541.47 1598.46 1550.25 Q1598.46 1559 1594.1 1564 Q1589.74 1568.97 1582.1 1568.97 Q1574.43 1568.97 1570.07 1564 Q1565.74 1559 1565.74 1550.25 Q1565.74 1541.47 1570.07 1536.5 Q1574.43 1531.54 1582.1 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1608.17 1518.52 L1614.03 1518.52 L1614.03 1568.04 L1608.17 1568.04 L1608.17 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M1625.36 1518.58 L1630.45 1518.58 Q1635.23 1526.09 1637.58 1533.29 Q1639.97 1540.48 1639.97 1547.58 Q1639.97 1554.71 1637.58 1561.93 Q1635.23 1569.16 1630.45 1576.64 L1625.36 1576.64 Q1629.59 1569.35 1631.66 1562.16 Q1633.76 1554.93 1633.76 1547.58 Q1633.76 1540.23 1631.66 1533.06 Q1629.59 1525.9 1625.36 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,1384.24 2352.76,1384.24 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,1137.38 2352.76,1137.38 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,890.529 2352.76,890.529 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,643.675 2352.76,643.675 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,396.82 2352.76,396.82 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip492)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  250.028,149.965 2352.76,149.965 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,1423.18 250.028,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,1384.24 268.926,1384.24 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,1137.38 268.926,1137.38 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,890.529 268.926,890.529 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,643.675 268.926,643.675 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,396.82 268.926,396.82 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip490)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  250.028,149.965 268.926,149.965 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip490)\" d=\"M126.691 1370.04 Q123.08 1370.04 121.251 1373.6 Q119.445 1377.14 119.445 1384.27 Q119.445 1391.38 121.251 1394.94 Q123.08 1398.49 126.691 1398.49 Q130.325 1398.49 132.13 1394.94 Q133.959 1391.38 133.959 1384.27 Q133.959 1377.14 132.13 1373.6 Q130.325 1370.04 126.691 1370.04 M126.691 1366.33 Q132.501 1366.33 135.556 1370.94 Q138.635 1375.52 138.635 1384.27 Q138.635 1393 135.556 1397.61 Q132.501 1402.19 126.691 1402.19 Q120.88 1402.19 117.802 1397.61 Q114.746 1393 114.746 1384.27 Q114.746 1375.52 117.802 1370.94 Q120.88 1366.33 126.691 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M146.853 1395.64 L151.737 1395.64 L151.737 1401.52 L146.853 1401.52 L146.853 1395.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M171.922 1370.04 Q168.311 1370.04 166.482 1373.6 Q164.677 1377.14 164.677 1384.27 Q164.677 1391.38 166.482 1394.94 Q168.311 1398.49 171.922 1398.49 Q175.556 1398.49 177.362 1394.94 Q179.19 1391.38 179.19 1384.27 Q179.19 1377.14 177.362 1373.6 Q175.556 1370.04 171.922 1370.04 M171.922 1366.33 Q177.732 1366.33 180.788 1370.94 Q183.866 1375.52 183.866 1384.27 Q183.866 1393 180.788 1397.61 Q177.732 1402.19 171.922 1402.19 Q166.112 1402.19 163.033 1397.61 Q159.978 1393 159.978 1384.27 Q159.978 1375.52 163.033 1370.94 Q166.112 1366.33 171.922 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M202.084 1370.04 Q198.473 1370.04 196.644 1373.6 Q194.838 1377.14 194.838 1384.27 Q194.838 1391.38 196.644 1394.94 Q198.473 1398.49 202.084 1398.49 Q205.718 1398.49 207.524 1394.94 Q209.352 1391.38 209.352 1384.27 Q209.352 1377.14 207.524 1373.6 Q205.718 1370.04 202.084 1370.04 M202.084 1366.33 Q207.894 1366.33 210.949 1370.94 Q214.028 1375.52 214.028 1384.27 Q214.028 1393 210.949 1397.61 Q207.894 1402.19 202.084 1402.19 Q196.274 1402.19 193.195 1397.61 Q190.139 1393 190.139 1384.27 Q190.139 1375.52 193.195 1370.94 Q196.274 1366.33 202.084 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M127.917 1123.18 Q124.306 1123.18 122.478 1126.75 Q120.672 1130.29 120.672 1137.42 Q120.672 1144.52 122.478 1148.09 Q124.306 1151.63 127.917 1151.63 Q131.552 1151.63 133.357 1148.09 Q135.186 1144.52 135.186 1137.42 Q135.186 1130.29 133.357 1126.75 Q131.552 1123.18 127.917 1123.18 M127.917 1119.48 Q133.728 1119.48 136.783 1124.09 Q139.862 1128.67 139.862 1137.42 Q139.862 1146.15 136.783 1150.75 Q133.728 1155.33 127.917 1155.33 Q122.107 1155.33 119.029 1150.75 Q115.973 1146.15 115.973 1137.42 Q115.973 1128.67 119.029 1124.09 Q122.107 1119.48 127.917 1119.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M148.079 1148.78 L152.964 1148.78 L152.964 1154.66 L148.079 1154.66 L148.079 1148.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M173.149 1123.18 Q169.538 1123.18 167.709 1126.75 Q165.903 1130.29 165.903 1137.42 Q165.903 1144.52 167.709 1148.09 Q169.538 1151.63 173.149 1151.63 Q176.783 1151.63 178.589 1148.09 Q180.417 1144.52 180.417 1137.42 Q180.417 1130.29 178.589 1126.75 Q176.783 1123.18 173.149 1123.18 M173.149 1119.48 Q178.959 1119.48 182.014 1124.09 Q185.093 1128.67 185.093 1137.42 Q185.093 1146.15 182.014 1150.75 Q178.959 1155.33 173.149 1155.33 Q167.339 1155.33 164.26 1150.75 Q161.204 1146.15 161.204 1137.42 Q161.204 1128.67 164.26 1124.09 Q167.339 1119.48 173.149 1119.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M194.121 1150.73 L201.76 1150.73 L201.76 1124.36 L193.45 1126.03 L193.45 1121.77 L201.713 1120.1 L206.389 1120.1 L206.389 1150.73 L214.028 1150.73 L214.028 1154.66 L194.121 1154.66 L194.121 1150.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M128.288 876.328 Q124.677 876.328 122.848 879.893 Q121.043 883.434 121.043 890.564 Q121.043 897.67 122.848 901.235 Q124.677 904.777 128.288 904.777 Q131.922 904.777 133.728 901.235 Q135.556 897.67 135.556 890.564 Q135.556 883.434 133.728 879.893 Q131.922 876.328 128.288 876.328 M128.288 872.624 Q134.098 872.624 137.154 877.231 Q140.232 881.814 140.232 890.564 Q140.232 899.291 137.154 903.897 Q134.098 908.48 128.288 908.48 Q122.478 908.48 119.399 903.897 Q116.343 899.291 116.343 890.564 Q116.343 881.814 119.399 877.231 Q122.478 872.624 128.288 872.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M148.45 901.93 L153.334 901.93 L153.334 907.809 L148.45 907.809 L148.45 901.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M173.519 876.328 Q169.908 876.328 168.079 879.893 Q166.274 883.434 166.274 890.564 Q166.274 897.67 168.079 901.235 Q169.908 904.777 173.519 904.777 Q177.153 904.777 178.959 901.235 Q180.788 897.67 180.788 890.564 Q180.788 883.434 178.959 879.893 Q177.153 876.328 173.519 876.328 M173.519 872.624 Q179.329 872.624 182.385 877.231 Q185.463 881.814 185.463 890.564 Q185.463 899.291 182.385 903.897 Q179.329 908.48 173.519 908.48 Q167.709 908.48 164.63 903.897 Q161.575 899.291 161.575 890.564 Q161.575 881.814 164.63 877.231 Q167.709 872.624 173.519 872.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M197.709 903.874 L214.028 903.874 L214.028 907.809 L192.084 907.809 L192.084 903.874 Q194.746 901.119 199.329 896.49 Q203.936 891.837 205.116 890.494 Q207.362 887.971 208.241 886.235 Q209.144 884.476 209.144 882.786 Q209.144 880.031 207.199 878.295 Q205.278 876.559 202.176 876.559 Q199.977 876.559 197.524 877.323 Q195.093 878.087 192.315 879.638 L192.315 874.916 Q195.139 873.782 197.593 873.203 Q200.047 872.624 202.084 872.624 Q207.454 872.624 210.649 875.309 Q213.843 877.994 213.843 882.485 Q213.843 884.615 213.033 886.536 Q212.246 888.434 210.139 891.027 Q209.561 891.698 206.459 894.916 Q203.357 898.11 197.709 903.874 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M127.339 629.473 Q123.728 629.473 121.899 633.038 Q120.093 636.58 120.093 643.709 Q120.093 650.816 121.899 654.381 Q123.728 657.922 127.339 657.922 Q130.973 657.922 132.779 654.381 Q134.607 650.816 134.607 643.709 Q134.607 636.58 132.779 633.038 Q130.973 629.473 127.339 629.473 M127.339 625.77 Q133.149 625.77 136.204 630.376 Q139.283 634.959 139.283 643.709 Q139.283 652.436 136.204 657.043 Q133.149 661.626 127.339 661.626 Q121.529 661.626 118.45 657.043 Q115.394 652.436 115.394 643.709 Q115.394 634.959 118.45 630.376 Q121.529 625.77 127.339 625.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M147.501 655.075 L152.385 655.075 L152.385 660.955 L147.501 660.955 L147.501 655.075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M172.57 629.473 Q168.959 629.473 167.13 633.038 Q165.325 636.58 165.325 643.709 Q165.325 650.816 167.13 654.381 Q168.959 657.922 172.57 657.922 Q176.204 657.922 178.01 654.381 Q179.839 650.816 179.839 643.709 Q179.839 636.58 178.01 633.038 Q176.204 629.473 172.57 629.473 M172.57 625.77 Q178.38 625.77 181.436 630.376 Q184.514 634.959 184.514 643.709 Q184.514 652.436 181.436 657.043 Q178.38 661.626 172.57 661.626 Q166.76 661.626 163.681 657.043 Q160.626 652.436 160.626 643.709 Q160.626 634.959 163.681 630.376 Q166.76 625.77 172.57 625.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M206.899 642.32 Q210.255 643.038 212.13 645.306 Q214.028 647.575 214.028 650.908 Q214.028 656.024 210.51 658.825 Q206.991 661.626 200.51 661.626 Q198.334 661.626 196.019 661.186 Q193.727 660.769 191.274 659.913 L191.274 655.399 Q193.218 656.533 195.533 657.112 Q197.848 657.691 200.371 657.691 Q204.769 657.691 207.061 655.955 Q209.375 654.218 209.375 650.908 Q209.375 647.853 207.223 646.14 Q205.093 644.404 201.274 644.404 L197.246 644.404 L197.246 640.561 L201.459 640.561 Q204.908 640.561 206.737 639.195 Q208.565 637.807 208.565 635.214 Q208.565 632.552 206.667 631.14 Q204.792 629.705 201.274 629.705 Q199.352 629.705 197.153 630.121 Q194.954 630.538 192.315 631.418 L192.315 627.251 Q194.977 626.51 197.292 626.14 Q199.63 625.77 201.69 625.77 Q207.014 625.77 210.116 628.2 Q213.218 630.607 213.218 634.728 Q213.218 637.598 211.574 639.589 Q209.931 641.557 206.899 642.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M126.205 382.619 Q122.593 382.619 120.765 386.183 Q118.959 389.725 118.959 396.855 Q118.959 403.961 120.765 407.526 Q122.593 411.068 126.205 411.068 Q129.839 411.068 131.644 407.526 Q133.473 403.961 133.473 396.855 Q133.473 389.725 131.644 386.183 Q129.839 382.619 126.205 382.619 M126.205 378.915 Q132.015 378.915 135.07 383.521 Q138.149 388.105 138.149 396.855 Q138.149 405.582 135.07 410.188 Q132.015 414.771 126.205 414.771 Q120.394 414.771 117.316 410.188 Q114.26 405.582 114.26 396.855 Q114.26 388.105 117.316 383.521 Q120.394 378.915 126.205 378.915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M146.366 408.22 L151.251 408.22 L151.251 414.1 L146.366 414.1 L146.366 408.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M171.436 382.619 Q167.825 382.619 165.996 386.183 Q164.19 389.725 164.19 396.855 Q164.19 403.961 165.996 407.526 Q167.825 411.068 171.436 411.068 Q175.07 411.068 176.876 407.526 Q178.704 403.961 178.704 396.855 Q178.704 389.725 176.876 386.183 Q175.07 382.619 171.436 382.619 M171.436 378.915 Q177.246 378.915 180.301 383.521 Q183.38 388.105 183.38 396.855 Q183.38 405.582 180.301 410.188 Q177.246 414.771 171.436 414.771 Q165.626 414.771 162.547 410.188 Q159.491 405.582 159.491 396.855 Q159.491 388.105 162.547 383.521 Q165.626 378.915 171.436 378.915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M204.445 383.614 L192.639 402.063 L204.445 402.063 L204.445 383.614 M203.218 379.54 L209.098 379.54 L209.098 402.063 L214.028 402.063 L214.028 405.952 L209.098 405.952 L209.098 414.1 L204.445 414.1 L204.445 405.952 L188.843 405.952 L188.843 401.438 L203.218 379.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M127.686 135.764 Q124.075 135.764 122.246 139.329 Q120.441 142.871 120.441 150 Q120.441 157.107 122.246 160.671 Q124.075 164.213 127.686 164.213 Q131.32 164.213 133.126 160.671 Q134.954 157.107 134.954 150 Q134.954 142.871 133.126 139.329 Q131.32 135.764 127.686 135.764 M127.686 132.06 Q133.496 132.06 136.552 136.667 Q139.63 141.25 139.63 150 Q139.63 158.727 136.552 163.333 Q133.496 167.917 127.686 167.917 Q121.876 167.917 118.797 163.333 Q115.742 158.727 115.742 150 Q115.742 141.25 118.797 136.667 Q121.876 132.06 127.686 132.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M147.848 161.366 L152.732 161.366 L152.732 167.245 L147.848 167.245 L147.848 161.366 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M172.917 135.764 Q169.306 135.764 167.477 139.329 Q165.672 142.871 165.672 150 Q165.672 157.107 167.477 160.671 Q169.306 164.213 172.917 164.213 Q176.551 164.213 178.357 160.671 Q180.186 157.107 180.186 150 Q180.186 142.871 178.357 139.329 Q176.551 135.764 172.917 135.764 M172.917 132.06 Q178.727 132.06 181.783 136.667 Q184.862 141.25 184.862 150 Q184.862 158.727 181.783 163.333 Q178.727 167.917 172.917 167.917 Q167.107 167.917 164.028 163.333 Q160.973 158.727 160.973 150 Q160.973 141.25 164.028 136.667 Q167.107 132.06 172.917 132.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M193.125 132.685 L211.482 132.685 L211.482 136.621 L197.408 136.621 L197.408 145.093 Q198.426 144.746 199.445 144.583 Q200.463 144.398 201.482 144.398 Q207.269 144.398 210.649 147.57 Q214.028 150.741 214.028 156.158 Q214.028 161.736 210.556 164.838 Q207.084 167.917 200.764 167.917 Q198.588 167.917 196.32 167.546 Q194.075 167.176 191.667 166.435 L191.667 161.736 Q193.75 162.87 195.973 163.426 Q198.195 163.982 200.672 163.982 Q204.676 163.982 207.014 161.875 Q209.352 159.769 209.352 156.158 Q209.352 152.546 207.014 150.44 Q204.676 148.333 200.672 148.333 Q198.797 148.333 196.922 148.75 Q195.07 149.167 193.125 150.046 L193.125 132.685 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 1267.99 L16.4842 1237.94 L21.895 1237.94 L21.895 1261.56 L35.9632 1261.56 L35.9632 1238.93 L41.3741 1238.93 L41.3741 1261.56 L58.5933 1261.56 L58.5933 1237.37 L64.0042 1237.37 L64.0042 1267.99 L16.4842 1267.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M35.1993 1199.3 Q31.2526 1197.11 29.3747 1194.05 Q27.4968 1191 27.4968 1186.86 Q27.4968 1181.29 31.4117 1178.27 Q35.2948 1175.24 42.4881 1175.24 L64.0042 1175.24 L64.0042 1181.13 L42.679 1181.13 Q37.5546 1181.13 35.072 1182.94 Q32.5894 1184.76 32.5894 1188.48 Q32.5894 1193.03 35.6131 1195.68 Q38.6368 1198.32 43.8567 1198.32 L64.0042 1198.32 L64.0042 1204.21 L42.679 1204.21 Q37.5228 1204.21 35.072 1206.02 Q32.5894 1207.83 32.5894 1211.62 Q32.5894 1216.11 35.6449 1218.75 Q38.6686 1221.39 43.8567 1221.39 L64.0042 1221.39 L64.0042 1227.28 L28.3562 1227.28 L28.3562 1221.39 L33.8944 1221.39 Q30.616 1219.39 29.0564 1216.59 Q27.4968 1213.79 27.4968 1209.93 Q27.4968 1206.05 29.4702 1203.35 Q31.4436 1200.61 35.1993 1199.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M28.3562 1163.56 L28.3562 1157.7 L64.0042 1157.7 L64.0042 1163.56 L28.3562 1163.56 M14.479 1163.56 L14.479 1157.7 L21.895 1157.7 L21.895 1163.56 L14.479 1163.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M29.4065 1122.72 L34.9447 1122.72 Q33.6716 1125.21 33.035 1127.88 Q32.3984 1130.55 32.3984 1133.42 Q32.3984 1137.78 33.7352 1139.98 Q35.072 1142.14 37.7456 1142.14 Q39.7826 1142.14 40.9603 1140.58 Q42.1061 1139.02 43.1565 1134.31 L43.6021 1132.3 Q44.9389 1126.07 47.3897 1123.46 Q49.8086 1120.81 54.1691 1120.81 Q59.1344 1120.81 62.0308 1124.76 Q64.9272 1128.68 64.9272 1135.55 Q64.9272 1138.42 64.3543 1141.54 Q63.8132 1144.62 62.6992 1148.06 L56.6518 1148.06 Q58.3387 1144.81 59.198 1141.66 Q60.0256 1138.51 60.0256 1135.42 Q60.0256 1131.29 58.6251 1129.06 Q57.1929 1126.83 54.6147 1126.83 Q52.2276 1126.83 50.9545 1128.45 Q49.6813 1130.04 48.5037 1135.49 L48.0262 1137.52 Q46.8804 1142.97 44.5251 1145.39 Q42.138 1147.81 38.0002 1147.81 Q32.9713 1147.81 30.2341 1144.24 Q27.4968 1140.68 27.4968 1134.12 Q27.4968 1130.87 27.9743 1128.01 Q28.4517 1125.14 29.4065 1122.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M29.4065 1088.76 L34.9447 1088.76 Q33.6716 1091.25 33.035 1093.92 Q32.3984 1096.59 32.3984 1099.46 Q32.3984 1103.82 33.7352 1106.01 Q35.072 1108.18 37.7456 1108.18 Q39.7826 1108.18 40.9603 1106.62 Q42.1061 1105.06 43.1565 1100.35 L43.6021 1098.34 Q44.9389 1092.11 47.3897 1089.5 Q49.8086 1086.85 54.1691 1086.85 Q59.1344 1086.85 62.0308 1090.8 Q64.9272 1094.72 64.9272 1101.59 Q64.9272 1104.45 64.3543 1107.57 Q63.8132 1110.66 62.6992 1114.1 L56.6518 1114.1 Q58.3387 1110.85 59.198 1107.7 Q60.0256 1104.55 60.0256 1101.46 Q60.0256 1097.33 58.6251 1095.1 Q57.1929 1092.87 54.6147 1092.87 Q52.2276 1092.87 50.9545 1094.49 Q49.6813 1096.08 48.5037 1101.53 L48.0262 1103.56 Q46.8804 1109.01 44.5251 1111.43 Q42.138 1113.84 38.0002 1113.84 Q32.9713 1113.84 30.2341 1110.28 Q27.4968 1106.71 27.4968 1100.16 Q27.4968 1096.91 27.9743 1094.05 Q28.4517 1091.18 29.4065 1088.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M28.3562 1077.53 L28.3562 1071.67 L64.0042 1071.67 L64.0042 1077.53 L28.3562 1077.53 M14.479 1077.53 L14.479 1071.67 L21.895 1071.67 L21.895 1077.53 L14.479 1077.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M32.4621 1045.6 Q32.4621 1050.31 36.1542 1053.05 Q39.8145 1055.79 46.212 1055.79 Q52.6095 1055.79 56.3017 1053.08 Q59.9619 1050.35 59.9619 1045.6 Q59.9619 1040.93 56.2698 1038.19 Q52.5777 1035.45 46.212 1035.45 Q39.8781 1035.45 36.186 1038.19 Q32.4621 1040.93 32.4621 1045.6 M27.4968 1045.6 Q27.4968 1037.96 32.4621 1033.6 Q37.4273 1029.24 46.212 1029.24 Q54.9649 1029.24 59.9619 1033.6 Q64.9272 1037.96 64.9272 1045.6 Q64.9272 1053.27 59.9619 1057.64 Q54.9649 1061.96 46.212 1061.96 Q37.4273 1061.96 32.4621 1057.64 Q27.4968 1053.27 27.4968 1045.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M42.4881 989.904 L64.0042 989.904 L64.0042 995.76 L42.679 995.76 Q37.6183 995.76 35.1038 997.734 Q32.5894 999.707 32.5894 1003.65 Q32.5894 1008.4 35.6131 1011.13 Q38.6368 1013.87 43.8567 1013.87 L64.0042 1013.87 L64.0042 1019.76 L28.3562 1019.76 L28.3562 1013.87 L33.8944 1013.87 Q30.6797 1011.77 29.0883 1008.94 Q27.4968 1006.07 27.4968 1002.35 Q27.4968 996.206 31.3163 993.055 Q35.1038 989.904 42.4881 989.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M29.4065 955.497 L34.9447 955.497 Q33.6716 957.98 33.035 960.653 Q32.3984 963.327 32.3984 966.192 Q32.3984 970.552 33.7352 972.748 Q35.072 974.913 37.7456 974.913 Q39.7826 974.913 40.9603 973.353 Q42.1061 971.793 43.1565 967.083 L43.6021 965.078 Q44.9389 958.839 47.3897 956.229 Q49.8086 953.588 54.1691 953.588 Q59.1344 953.588 62.0308 957.534 Q64.9272 961.449 64.9272 968.324 Q64.9272 971.189 64.3543 974.308 Q63.8132 977.395 62.6992 980.833 L56.6518 980.833 Q58.3387 977.586 59.198 974.435 Q60.0256 971.284 60.0256 968.197 Q60.0256 964.059 58.6251 961.831 Q57.1929 959.603 54.6147 959.603 Q52.2276 959.603 50.9545 961.226 Q49.6813 962.818 48.5037 968.26 L48.0262 970.298 Q46.8804 975.74 44.5251 978.159 Q42.138 980.578 38.0002 980.578 Q32.9713 980.578 30.2341 977.013 Q27.4968 973.449 27.4968 966.892 Q27.4968 963.645 27.9743 960.781 Q28.4517 957.916 29.4065 955.497 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 923.287 L16.4842 916.857 L64.0042 916.857 L64.0042 923.287 L16.4842 923.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M42.4881 874.685 L64.0042 874.685 L64.0042 880.541 L42.679 880.541 Q37.6183 880.541 35.1038 882.514 Q32.5894 884.488 32.5894 888.435 Q32.5894 893.177 35.6131 895.914 Q38.6368 898.651 43.8567 898.651 L64.0042 898.651 L64.0042 904.54 L28.3562 904.54 L28.3562 898.651 L33.8944 898.651 Q30.6797 896.551 29.0883 893.718 Q27.4968 890.853 27.4968 887.13 Q27.4968 880.987 31.3163 877.836 Q35.1038 874.685 42.4881 874.685 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M18.2347 857.211 L28.3562 857.211 L28.3562 845.148 L32.9077 845.148 L32.9077 857.211 L52.2594 857.211 Q56.6199 857.211 57.8613 856.033 Q59.1026 854.824 59.1026 851.163 L59.1026 845.148 L64.0042 845.148 L64.0042 851.163 Q64.0042 857.943 61.4897 860.521 Q58.9434 863.099 52.2594 863.099 L32.9077 863.099 L32.9077 867.396 L28.3562 867.396 L28.3562 863.099 L18.2347 863.099 L18.2347 857.211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M44.7161 806.953 L47.5806 806.953 L47.5806 833.88 Q53.6281 833.498 56.8109 830.252 Q59.9619 826.974 59.9619 821.149 Q59.9619 817.775 59.1344 814.624 Q58.3069 811.441 56.6518 808.322 L62.1899 808.322 Q63.5267 811.473 64.227 814.783 Q64.9272 818.093 64.9272 821.499 Q64.9272 830.029 59.9619 835.026 Q54.9967 839.991 46.5303 839.991 Q37.7774 839.991 32.6531 835.281 Q27.4968 830.538 27.4968 822.518 Q27.4968 815.324 32.1438 811.155 Q36.7589 806.953 44.7161 806.953 M42.9973 812.81 Q38.1912 812.874 35.3266 815.515 Q32.4621 818.125 32.4621 822.454 Q32.4621 827.356 35.2312 830.316 Q38.0002 833.244 43.0292 833.689 L42.9973 812.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M42.4881 767.709 L64.0042 767.709 L64.0042 773.565 L42.679 773.565 Q37.6183 773.565 35.1038 775.539 Q32.5894 777.512 32.5894 781.459 Q32.5894 786.201 35.6131 788.939 Q38.6368 791.676 43.8567 791.676 L64.0042 791.676 L64.0042 797.564 L28.3562 797.564 L28.3562 791.676 L33.8944 791.676 Q30.6797 789.575 29.0883 786.742 Q27.4968 783.878 27.4968 780.154 Q27.4968 774.011 31.3163 770.86 Q35.1038 767.709 42.4881 767.709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M29.4065 733.302 L34.9447 733.302 Q33.6716 735.785 33.035 738.458 Q32.3984 741.132 32.3984 743.997 Q32.3984 748.357 33.7352 750.553 Q35.072 752.718 37.7456 752.718 Q39.7826 752.718 40.9603 751.158 Q42.1061 749.598 43.1565 744.888 L43.6021 742.883 Q44.9389 736.644 47.3897 734.034 Q49.8086 731.393 54.1691 731.393 Q59.1344 731.393 62.0308 735.339 Q64.9272 739.254 64.9272 746.129 Q64.9272 748.994 64.3543 752.113 Q63.8132 755.2 62.6992 758.638 L56.6518 758.638 Q58.3387 755.391 59.198 752.24 Q60.0256 749.089 60.0256 746.002 Q60.0256 741.864 58.6251 739.636 Q57.1929 737.408 54.6147 737.408 Q52.2276 737.408 50.9545 739.031 Q49.6813 740.623 48.5037 746.065 L48.0262 748.103 Q46.8804 753.545 44.5251 755.964 Q42.138 758.383 38.0002 758.383 Q32.9713 758.383 30.2341 754.818 Q27.4968 751.254 27.4968 744.697 Q27.4968 741.45 27.9743 738.586 Q28.4517 735.721 29.4065 733.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M28.3562 722.067 L28.3562 716.21 L64.0042 716.21 L64.0042 722.067 L28.3562 722.067 M14.479 722.067 L14.479 716.21 L21.895 716.21 L21.895 722.067 L14.479 722.067 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M18.2347 698.164 L28.3562 698.164 L28.3562 686.101 L32.9077 686.101 L32.9077 698.164 L52.2594 698.164 Q56.6199 698.164 57.8613 696.986 Q59.1026 695.776 59.1026 692.116 L59.1026 686.101 L64.0042 686.101 L64.0042 692.116 Q64.0042 698.896 61.4897 701.474 Q58.9434 704.052 52.2594 704.052 L32.9077 704.052 L32.9077 708.349 L28.3562 708.349 L28.3562 704.052 L18.2347 704.052 L18.2347 698.164 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M67.3143 663.566 Q73.68 666.049 75.6216 668.404 Q77.5631 670.759 77.5631 674.706 L77.5631 679.385 L72.6615 679.385 L72.6615 675.947 Q72.6615 673.528 71.5157 672.191 Q70.3699 670.855 66.1048 669.231 L63.4312 668.181 L28.3562 682.599 L28.3562 676.393 L56.238 665.253 L28.3562 654.113 L28.3562 647.906 L67.3143 663.566 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M55.9197 638.326 L55.9197 631.61 L61.3942 631.61 L71.5793 636.83 L71.5793 640.936 L61.3942 638.326 L55.9197 638.326 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 598.126 L16.4842 568.08 L21.895 568.08 L21.895 591.697 L35.9632 591.697 L35.9632 569.067 L41.3741 569.067 L41.3741 591.697 L58.5933 591.697 L58.5933 567.507 L64.0042 567.507 L64.0042 598.126 L16.4842 598.126 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M14.5426 522.406 Q21.8632 526.671 29.0246 528.74 Q36.186 530.809 43.5384 530.809 Q50.8908 530.809 58.1159 528.74 Q65.3091 526.64 72.5979 522.406 L72.5979 527.499 Q65.1182 532.273 57.8931 534.66 Q50.668 537.016 43.5384 537.016 Q36.4406 537.016 29.2474 534.66 Q22.0542 532.305 14.5426 527.499 L14.5426 522.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M14.479 511.266 L14.479 505.378 L43.7294 505.378 L28.3562 487.904 L28.3562 480.425 L45.0344 499.331 L64.0042 479.629 L64.0042 487.268 L46.5939 505.378 L64.0042 505.378 L64.0042 511.266 L14.479 511.266 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M45.7664 449.837 Q39.4007 449.837 35.8996 452.479 Q32.3984 455.089 32.3984 459.831 Q32.3984 464.542 35.8996 467.184 Q39.4007 469.794 45.7664 469.794 Q52.1003 469.794 55.6014 467.184 Q59.1026 464.542 59.1026 459.831 Q59.1026 455.089 55.6014 452.479 Q52.1003 449.837 45.7664 449.837 M59.58 443.981 Q68.683 443.981 73.1071 448.023 Q77.5631 452.065 77.5631 460.404 Q77.5631 463.492 77.0857 466.229 Q76.6401 468.966 75.6852 471.544 L69.9879 471.544 Q71.3884 468.966 72.0568 466.452 Q72.7252 463.937 72.7252 461.327 Q72.7252 455.566 69.7015 452.702 Q66.7096 449.837 60.6303 449.837 L57.7339 449.837 Q60.885 451.652 62.4446 454.484 Q64.0042 457.317 64.0042 461.264 Q64.0042 467.82 59.0071 471.831 Q54.01 475.841 45.7664 475.841 Q37.491 475.841 32.4939 471.831 Q27.4968 467.82 27.4968 461.264 Q27.4968 457.317 29.0564 454.484 Q30.616 451.652 33.7671 449.837 L28.3562 449.837 L28.3562 443.981 L59.58 443.981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 410.943 L16.4842 401.362 L48.8219 389.236 L16.4842 377.045 L16.4842 367.465 L64.0042 367.465 L64.0042 373.735 L22.277 373.735 L54.8694 385.989 L54.8694 392.45 L22.277 404.704 L64.0042 404.704 L64.0042 410.943 L16.4842 410.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 354.702 L16.4842 348.272 L60.694 348.272 Q69.2877 348.272 73.1708 351.551 Q77.0539 354.797 77.0539 362.022 L77.0539 364.473 L71.643 364.473 L71.643 362.468 Q71.643 358.203 69.2559 356.452 Q66.8687 354.702 60.694 354.702 L16.4842 354.702 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M16.4842 311.447 L34.2127 294.164 L34.2127 300.562 L21.6404 314.566 L34.2127 328.571 L34.2127 334.968 L16.4842 317.685 L16.4842 311.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M43.5384 284.074 L43.5384 266.919 L48.7583 266.919 L48.7583 284.074 L43.5384 284.074 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M58.5933 255.651 L58.5933 245.148 L22.3406 245.148 L24.6323 256.574 L18.7758 256.574 L16.4842 245.212 L16.4842 238.782 L58.5933 238.782 L58.5933 228.279 L64.0042 228.279 L64.0042 255.651 L58.5933 255.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip490)\" d=\"M14.5426 217.043 L14.5426 211.951 Q22.0542 207.177 29.2474 204.821 Q36.4406 202.434 43.5384 202.434 Q50.668 202.434 57.8931 204.821 Q65.1182 207.177 72.5979 211.951 L72.5979 217.043 Q65.3091 212.81 58.1159 210.741 Q50.8908 208.641 43.5384 208.641 Q36.186 208.641 29.0246 210.741 Q21.8632 212.81 14.5426 217.043 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip492)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  309.539,86.1857 329.577,90.7012 349.614,95.2775 369.652,99.9159 389.689,104.618 409.726,109.384 429.764,114.216 449.801,119.116 469.839,124.085 489.876,129.123 \n",
       "  509.914,134.234 529.951,139.417 549.988,144.676 570.026,150.011 590.063,155.424 610.101,160.918 630.138,166.493 650.176,172.151 670.213,177.895 690.25,183.726 \n",
       "  710.288,189.647 730.325,195.659 750.363,201.764 770.4,207.966 790.438,214.265 810.475,220.665 830.512,227.168 850.55,233.776 870.587,240.492 890.625,247.318 \n",
       "  910.662,254.258 930.7,261.314 950.737,268.489 970.774,275.787 990.812,283.209 1010.85,290.76 1030.89,298.444 1050.92,306.262 1070.96,314.219 1091,322.32 \n",
       "  1111.04,330.567 1131.07,338.964 1151.11,347.517 1171.15,356.228 1191.19,365.103 1211.22,374.147 1231.26,383.363 1251.3,392.758 1271.34,402.336 1291.37,412.103 \n",
       "  1311.41,422.064 1331.45,432.225 1351.49,442.593 1371.52,453.174 1391.56,463.974 1411.6,475 1431.64,486.259 1451.67,497.76 1471.71,509.509 1491.75,521.515 \n",
       "  1511.79,533.786 1531.82,546.332 1551.86,559.161 1571.9,572.284 1591.93,585.71 1611.97,599.45 1632.01,613.515 1652.05,627.918 1672.08,642.67 1692.12,657.783 \n",
       "  1712.16,673.273 1732.2,689.152 1752.23,705.436 1772.27,722.14 1792.31,739.281 1812.35,756.876 1832.38,774.944 1852.42,793.504 1872.46,812.575 1892.5,832.18 \n",
       "  1912.53,852.342 1932.57,873.084 1952.61,894.432 1972.65,916.412 1992.68,939.054 2012.72,962.387 2032.76,986.444 2052.8,1011.26 2072.83,1036.87 2092.87,1063.31 \n",
       "  2112.91,1090.63 2132.95,1118.86 2152.98,1148.06 2173.02,1178.28 2193.06,1209.57 2213.1,1241.98 2233.13,1275.59 2253.17,1310.45 2273.21,1346.64 2293.24,1384.24 \n",
       "  \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "let\n",
    "\n",
    "xs = range(0.0, 1.0, 100)\n",
    "plot( xs.*100, [E(x) for x in xs], lab=false, color=colors[1],\n",
    "      ylabel=\"Emissions Intensity, E\", xlabel=\"% Hydrogen (vol/vol)\")\n",
    "\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e550c2ed-b16c-413b-a0fb-569a240f6292",
   "metadata": {},
   "source": [
    "So there are emissions reductions but *at a cost*, beyond whatever method is used to generate the hydrogen in the first place. The system must be operated at greater pressures to supply the same amount of energy, which itself takes some energy, at least until the hydrogen exceeds 96.8%. At that high level the system seems like an easy win: it takes *less* pressure to supply the same amount of energy and the emissions intensity is a ~8.7% that of natural gas (a ~91% reduction)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "b489cad5-0b9a-4637-9b50-560000835931",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "0.08690379085511468"
      ]
     },
     "execution_count": 13,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "E(xₑᵥₑₙ)/E(0)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "57338a65-ffe5-4aac-bdd2-c75100fd1aca",
   "metadata": {},
   "source": [
    "There are a few caveats with this: for one carbon dioxide is not the only significant greenhouse gas that comes from combustion, there is also methane and nitrous oxide. Like carbon dioxide, methane would not be expected to be produced from burning pure hydrogen. [Nitrous oxide](https://en.wikipedia.org/wiki/Nitrous_oxide#Atmospheric_occurrence), however, is also produced when hydrogen is combusted with air because, like many other nitrogen oxides, it is generated from the high temperature reaction of the nitrogen and oxygen from the air. So burning pure hydrogen is only net zero for very particular definitions of zero, it is *not* net zero greenhouse gas emissions though it is net zero carbon dioxide and methane emissions."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "12dc4a76-d8fc-4abd-b823-2a055322f6d6",
   "metadata": {},
   "source": [
    "## Material concerns\n",
    "\n",
    "So far the analysis has completely ignored the *material* issues that hydrogen brings. At high temperatures (such as, say, inside a furnace that is burning hydrogen) [high temperature hydrogen attack](https://en.wikipedia.org/wiki/High_temperature_hydrogen_attack) is a real concern and using hydrogen as a fuel gas would eventually destroy most burners that were designed for use with natural gas. Similarly [hydrogen embrittlement](https://en.wikipedia.org/wiki/Hydrogen_embrittlement) would be a concern for the entire system, wherever steel is used. Neither of these are insurmountable but they would require extensive retrofitting to with different materials and special alloys. This dampens a lot of the advantages of hydrogen blending, namely being able to use the existing infrastructure.\n",
    "\n",
    "To skip over the details (I'm not a materials engineer), I think it is fair to say that the mechanical integrity of the system is strongly dependent on the hydrogen content and it likely will be a limiting factor in any hydrogen blending project."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e4011661-0167-4d31-88cb-e84e79ec2a80",
   "metadata": {},
   "source": [
    "## Conclusions\n",
    "\n",
    "At the level of \"back of the envelope\" calculations like I have done above, it is fairly clear that blending hydrogen into the utility natural gas system is not a panacea, but then neither is it completely infeasible. I think there are several other factors that need to be considered when evaluating the possible role of hydrogen blending in the future energy mix:\n",
    "\n",
    "+ *Availability of hydrogen* - in areas like Edmonton, there are already industrial suppliers of hydrogen (and large industrial consumers), with a roadmap to both expand that capacity and bring it to net zero emissions. Tying into that existing network significantly lowers the barrier for a blending project and can realize *real emissions reductions* now.\n",
    "+ *Feasibility of alternatives* - it seems to be accepted wisdom that, at least for now, air source heat pumps are not very effective below -20&deg;C. It is entirely possible that, while retrofitting to add heat pumps to homes would be hugely effective for most of the year, households in Edmonton would still require some additional source of space heating for those extremely cold days. Not only are -20&deg;C days fairly normal in the winter, it is not at all uncommon to exceed -30&deg;C and periodically it gets to -40&deg;C. Hydrogen blending could be part of that energy future, as people with heat pumps keep their furnaces around.\n",
    "+ *Existing housing stock/pace of retrofits* - it may be the case that, after performing a full life cycle analysis, heat pumps + resistive heating is the better technology. But that may fail to acknowledge the greater metropolitan area of 1.4M people that is Edmonton who, almost universally, live in buildings that do not have heat pumps and resistive heating, and instead rely on natural gas fired heaters (e.g. furnaces, boilers). With the majority of household energy use being space heating, hydrogen blending may have a role in realizing significant emissions reductions while the existing housing stock is transitioned over.\n",
    "\n",
    "Personally I think hydrogen's role in the future is over-hyped. A lot of people working in the fossil fuel space have pinned their industry's future on hydrogen, which comes with a certain amount of motivated reasoning. Also hydrogen is appealing as it looks like the easy solution: swap the burning of one fuel for the burning of another, and we don't have to make sweeping and systemic change. But I think the answer will turn out to be not one silver bullet but an entire ecosystem of different technologies, often hyper specific to different locations, and what will connect them all will be the electrification of everything. That said, we have a vast, globe spanning, infrastructure and centuries of know-how in burning things and that gives hydrogen a big leg-up as a transitional solution."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "fec2c52c-6b59-45dd-b579-ecd8d9c19749",
   "metadata": {},
   "source": [
    "## An example system\n",
    "\n",
    "I thought I would end with a basic pipe flow example, if you wanted to look at specific numbers this is how you might start that. This is also an example of the life changing magic of solving problems with code: once you have solved them once you never have to solve them again. Since I have frequently worked out pipe flow problems with julia, I can throw together a *more detailed than is at all necessary* model through the magic of copying and pasting."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "f02fd80f-9db1-431b-bd56-1b3288e6b28e",
   "metadata": {
    "tags": []
   },
   "source": [
    "### Mixture viscosity\n",
    "\n",
    "We've already worked out the mixture density and heating value, and the next most important material property is viscosity. I don't have a curve for natural gas, so I am just going to use methane as a proxy. I am already treating natural gas like a homogeneous substance, so this is simply an extension of that."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "731267ae-ed34-41c4-8f44-b98ab48f5ad1",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "μ_NG (generic function with 2 methods)"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "using UnitfulCorrelations\n",
    "\n",
    "# Hydrogen - from Perry's, 8th ed.\n",
    "μ_H2(T) = (1.797e-7*T^0.685)/(1-0.59/T+140/(T^2));\n",
    "@ucorrel μ_H2 u\"K\" u\"Pa*s\"\n",
    "\n",
    "# Methane (Natural Gas) - from Perry's, 8th ed. \n",
    "μ_NG(T) = (5.2546e-7*T^0.59006)/(1+105.67/T);\n",
    "@ucorrel μ_NG u\"K\" u\"Pa*s\""
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4695fbbe-fd47-42f6-81e3-826697bb161a",
   "metadata": {},
   "source": [
    "Where I have used [a macro that I wrote previously](https://github.com/aefarrell/UnitfulCorrelations.jl) to turn correlations into correlations *with units*."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7d23514f-fa7e-4184-9175-8a9950366b71",
   "metadata": {},
   "source": [
    "At standard conditions the viscosity of hydrogen and that of natural gas (methane) are not too different, so we can get away with using a simple method for estimating the viscosity of the overall mixture."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "1fdfc7a6-8d78-4d91-b391-2fe888adedeb",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "0.8004989026814741"
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "μ_H2(Tᵣ)/μ_NG(Tᵣ)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "61c9adec-ef9c-47b4-80d7-7b19c52aeaed",
   "metadata": {},
   "source": [
    "I happen to already have Wilke's method for a binary mixture worked out, I just need to swap in what the two components are. A more fulsome analysis would have a complete composition of natural gas (broken down into methane, ethane, propane, etc.) in which case the generalized Wilke's method could be used as well."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "109ea297-2245-4cb2-8796-1c4b7d927378",
   "metadata": {},
   "outputs": [],
   "source": [
    "# mixture viscosity using Wilke method\n",
    "# from *The Properties of Gases and Liquids* 5th ed.\n",
    "function μ(x,T)\n",
    "    μ₁ = μ_H2(T)\n",
    "    M₁ = MW_H2\n",
    "    y₁ = x\n",
    "    \n",
    "    μ₂ = μ_NG(T)\n",
    "    M₂ = MW_NG\n",
    "    y₂ = 1-x\n",
    "    \n",
    "    ϕ₁₂ = ((1+√((μ₁/μ₂)*√(M₂/M₁)))^2)/√(8*(1+(M₁/M₂)))\n",
    "    ϕ₂₁ = ϕ₁₂*(μ₂/μ₁)*(M₁/M₂)\n",
    "    \n",
    "    μ = (y₁*μ₁/(y₁+y₂*ϕ₁₂)) + (y₂*μ₂/(y₂+y₁*ϕ₂₁))\n",
    "    return μ\n",
    "end;"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "ce187aaa-ff75-476e-b987-50cf05a43dff",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip530\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip530)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip531\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip530)\" d=\"\n",
       "M400.671 1423.18 L2352.76 1423.18 L2352.76 47.2441 L400.671 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip532\">\n",
       "    <rect x=\"400\" y=\"47\" width=\"1953\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  455.919,1423.18 455.919,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  916.316,1423.18 916.316,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1376.71,1423.18 1376.71,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1837.11,1423.18 1837.11,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2297.51,1423.18 2297.51,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  455.919,1423.18 455.919,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  916.316,1423.18 916.316,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1376.71,1423.18 1376.71,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1837.11,1423.18 1837.11,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2297.51,1423.18 2297.51,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip530)\" d=\"M455.919 1454.1 Q452.308 1454.1 450.479 1457.66 Q448.673 1461.2 448.673 1468.33 Q448.673 1475.44 450.479 1479.01 Q452.308 1482.55 455.919 1482.55 Q459.553 1482.55 461.359 1479.01 Q463.187 1475.44 463.187 1468.33 Q463.187 1461.2 461.359 1457.66 Q459.553 1454.1 455.919 1454.1 M455.919 1450.39 Q461.729 1450.39 464.785 1455 Q467.863 1459.58 467.863 1468.33 Q467.863 1477.06 464.785 1481.67 Q461.729 1486.25 455.919 1486.25 Q450.109 1486.25 447.03 1481.67 Q443.974 1477.06 443.974 1468.33 Q443.974 1459.58 447.03 1455 Q450.109 1450.39 455.919 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M895.587 1481.64 L911.906 1481.64 L911.906 1485.58 L889.962 1485.58 L889.962 1481.64 Q892.624 1478.89 897.207 1474.26 Q901.814 1469.61 902.994 1468.27 Q905.24 1465.74 906.119 1464.01 Q907.022 1462.25 907.022 1460.56 Q907.022 1457.8 905.078 1456.07 Q903.157 1454.33 900.055 1454.33 Q897.856 1454.33 895.402 1455.09 Q892.971 1455.86 890.194 1457.41 L890.194 1452.69 Q893.018 1451.55 895.471 1450.97 Q897.925 1450.39 899.962 1450.39 Q905.332 1450.39 908.527 1453.08 Q911.721 1455.77 911.721 1460.26 Q911.721 1462.39 910.911 1464.31 Q910.124 1466.2 908.018 1468.8 Q907.439 1469.47 904.337 1472.69 Q901.235 1475.88 895.587 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M921.768 1451.02 L940.124 1451.02 L940.124 1454.96 L926.05 1454.96 L926.05 1463.43 Q927.068 1463.08 928.087 1462.92 Q929.105 1462.73 930.124 1462.73 Q935.911 1462.73 939.291 1465.9 Q942.67 1469.08 942.67 1474.49 Q942.67 1480.07 939.198 1483.17 Q935.726 1486.25 929.406 1486.25 Q927.23 1486.25 924.962 1485.88 Q922.717 1485.51 920.309 1484.77 L920.309 1480.07 Q922.393 1481.2 924.615 1481.76 Q926.837 1482.32 929.314 1482.32 Q933.318 1482.32 935.656 1480.21 Q937.994 1478.1 937.994 1474.49 Q937.994 1470.88 935.656 1468.77 Q933.318 1466.67 929.314 1466.67 Q927.439 1466.67 925.564 1467.08 Q923.712 1467.5 921.768 1468.38 L921.768 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1351.41 1451.02 L1369.77 1451.02 L1369.77 1454.96 L1355.7 1454.96 L1355.7 1463.43 Q1356.71 1463.08 1357.73 1462.92 Q1358.75 1462.73 1359.77 1462.73 Q1365.56 1462.73 1368.94 1465.9 Q1372.32 1469.08 1372.32 1474.49 Q1372.32 1480.07 1368.84 1483.17 Q1365.37 1486.25 1359.05 1486.25 Q1356.88 1486.25 1354.61 1485.88 Q1352.36 1485.51 1349.95 1484.77 L1349.95 1480.07 Q1352.04 1481.2 1354.26 1481.76 Q1356.48 1482.32 1358.96 1482.32 Q1362.96 1482.32 1365.3 1480.21 Q1367.64 1478.1 1367.64 1474.49 Q1367.64 1470.88 1365.3 1468.77 Q1362.96 1466.67 1358.96 1466.67 Q1357.08 1466.67 1355.21 1467.08 Q1353.36 1467.5 1351.41 1468.38 L1351.41 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1391.53 1454.1 Q1387.92 1454.1 1386.09 1457.66 Q1384.28 1461.2 1384.28 1468.33 Q1384.28 1475.44 1386.09 1479.01 Q1387.92 1482.55 1391.53 1482.55 Q1395.16 1482.55 1396.97 1479.01 Q1398.8 1475.44 1398.8 1468.33 Q1398.8 1461.2 1396.97 1457.66 Q1395.16 1454.1 1391.53 1454.1 M1391.53 1450.39 Q1397.34 1450.39 1400.39 1455 Q1403.47 1459.58 1403.47 1468.33 Q1403.47 1477.06 1400.39 1481.67 Q1397.34 1486.25 1391.53 1486.25 Q1385.72 1486.25 1382.64 1481.67 Q1379.58 1477.06 1379.58 1468.33 Q1379.58 1459.58 1382.64 1455 Q1385.72 1450.39 1391.53 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1810.97 1451.02 L1833.19 1451.02 L1833.19 1453.01 L1820.64 1485.58 L1815.76 1485.58 L1827.56 1454.96 L1810.97 1454.96 L1810.97 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1842.35 1451.02 L1860.71 1451.02 L1860.71 1454.96 L1846.64 1454.96 L1846.64 1463.43 Q1847.65 1463.08 1848.67 1462.92 Q1849.69 1462.73 1850.71 1462.73 Q1856.5 1462.73 1859.88 1465.9 Q1863.26 1469.08 1863.26 1474.49 Q1863.26 1480.07 1859.78 1483.17 Q1856.31 1486.25 1849.99 1486.25 Q1847.82 1486.25 1845.55 1485.88 Q1843.3 1485.51 1840.9 1484.77 L1840.9 1480.07 Q1842.98 1481.2 1845.2 1481.76 Q1847.42 1482.32 1849.9 1482.32 Q1853.9 1482.32 1856.24 1480.21 Q1858.58 1478.1 1858.58 1474.49 Q1858.58 1470.88 1856.24 1468.77 Q1853.9 1466.67 1849.9 1466.67 Q1848.03 1466.67 1846.15 1467.08 Q1844.3 1467.5 1842.35 1468.38 L1842.35 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M2257.11 1481.64 L2264.75 1481.64 L2264.75 1455.28 L2256.44 1456.95 L2256.44 1452.69 L2264.71 1451.02 L2269.38 1451.02 L2269.38 1481.64 L2277.02 1481.64 L2277.02 1485.58 L2257.11 1485.58 L2257.11 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M2296.47 1454.1 Q2292.86 1454.1 2291.03 1457.66 Q2289.22 1461.2 2289.22 1468.33 Q2289.22 1475.44 2291.03 1479.01 Q2292.86 1482.55 2296.47 1482.55 Q2300.1 1482.55 2301.91 1479.01 Q2303.74 1475.44 2303.74 1468.33 Q2303.74 1461.2 2301.91 1457.66 Q2300.1 1454.1 2296.47 1454.1 M2296.47 1450.39 Q2302.28 1450.39 2305.33 1455 Q2308.41 1459.58 2308.41 1468.33 Q2308.41 1477.06 2305.33 1481.67 Q2302.28 1486.25 2296.47 1486.25 Q2290.66 1486.25 2287.58 1481.67 Q2284.52 1477.06 2284.52 1468.33 Q2284.52 1459.58 2287.58 1455 Q2290.66 1450.39 2296.47 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M2326.63 1454.1 Q2323.02 1454.1 2321.19 1457.66 Q2319.38 1461.2 2319.38 1468.33 Q2319.38 1475.44 2321.19 1479.01 Q2323.02 1482.55 2326.63 1482.55 Q2330.26 1482.55 2332.07 1479.01 Q2333.9 1475.44 2333.9 1468.33 Q2333.9 1461.2 2332.07 1457.66 Q2330.26 1454.1 2326.63 1454.1 M2326.63 1450.39 Q2332.44 1450.39 2335.49 1455 Q2338.57 1459.58 2338.57 1468.33 Q2338.57 1477.06 2335.49 1481.67 Q2332.44 1486.25 2326.63 1486.25 Q2320.82 1486.25 2317.74 1481.67 Q2314.68 1477.06 2314.68 1468.33 Q2314.68 1459.58 2317.74 1455 Q2320.82 1450.39 2326.63 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1081.93 1547.13 Q1079.16 1547.13 1077.57 1549.49 Q1076.01 1551.84 1076.01 1556.04 Q1076.01 1560.18 1077.57 1562.57 Q1079.16 1564.92 1081.93 1564.92 Q1084.64 1564.92 1086.2 1562.57 Q1087.79 1560.18 1087.79 1556.04 Q1087.79 1551.87 1086.2 1549.52 Q1084.64 1547.13 1081.93 1547.13 M1081.93 1543.09 Q1086.96 1543.09 1089.92 1546.59 Q1092.88 1550.09 1092.88 1556.04 Q1092.88 1562 1089.89 1565.5 Q1086.93 1568.97 1081.93 1568.97 Q1076.84 1568.97 1073.88 1565.5 Q1070.92 1562 1070.92 1556.04 Q1070.92 1550.06 1073.88 1546.59 Q1076.87 1543.09 1081.93 1543.09 M1049.09 1523.71 Q1046.35 1523.71 1044.76 1526.09 Q1043.2 1528.45 1043.2 1532.59 Q1043.2 1536.79 1044.76 1539.14 Q1046.32 1541.5 1049.09 1541.5 Q1051.86 1541.5 1053.42 1539.14 Q1055.01 1536.79 1055.01 1532.59 Q1055.01 1528.48 1053.42 1526.09 Q1051.82 1523.71 1049.09 1523.71 M1077.83 1519.66 L1082.92 1519.66 L1053.19 1568.97 L1048.1 1568.97 L1077.83 1519.66 M1049.09 1519.66 Q1054.12 1519.66 1057.11 1523.17 Q1060.1 1526.63 1060.1 1532.59 Q1060.1 1538.6 1057.11 1542.07 Q1054.15 1545.54 1049.09 1545.54 Q1044.03 1545.54 1041.07 1542.07 Q1038.14 1538.57 1038.14 1532.59 Q1038.14 1526.67 1041.1 1523.17 Q1044.06 1519.66 1049.09 1519.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1123.6 1520.52 L1130.03 1520.52 L1130.03 1540 L1153.39 1540 L1153.39 1520.52 L1159.82 1520.52 L1159.82 1568.04 L1153.39 1568.04 L1153.39 1545.41 L1130.03 1545.41 L1130.03 1568.04 L1123.6 1568.04 L1123.6 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1187.19 1571.35 Q1184.71 1577.72 1182.35 1579.66 Q1180 1581.6 1176.05 1581.6 L1171.37 1581.6 L1171.37 1576.7 L1174.81 1576.7 Q1177.23 1576.7 1178.56 1575.56 Q1179.9 1574.41 1181.53 1570.14 L1182.58 1567.47 L1168.16 1532.4 L1174.36 1532.4 L1185.5 1560.28 L1196.64 1532.4 L1202.85 1532.4 L1187.19 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1234.39 1537.81 L1234.39 1518.52 L1240.25 1518.52 L1240.25 1568.04 L1234.39 1568.04 L1234.39 1562.7 Q1232.55 1565.88 1229.71 1567.44 Q1226.91 1568.97 1222.97 1568.97 Q1216.5 1568.97 1212.43 1563.81 Q1208.39 1558.65 1208.39 1550.25 Q1208.39 1541.85 1212.43 1536.69 Q1216.5 1531.54 1222.97 1531.54 Q1226.91 1531.54 1229.71 1533.1 Q1232.55 1534.62 1234.39 1537.81 M1214.44 1550.25 Q1214.44 1556.71 1217.08 1560.4 Q1219.75 1564.07 1224.4 1564.07 Q1229.05 1564.07 1231.72 1560.4 Q1234.39 1556.71 1234.39 1550.25 Q1234.39 1543.79 1231.72 1540.13 Q1229.05 1536.44 1224.4 1536.44 Q1219.75 1536.44 1217.08 1540.13 Q1214.44 1543.79 1214.44 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1272.97 1537.87 Q1271.98 1537.3 1270.8 1537.04 Q1269.66 1536.76 1268.26 1536.76 Q1263.29 1536.76 1260.62 1540 Q1257.98 1543.22 1257.98 1549.27 L1257.98 1568.04 L1252.09 1568.04 L1252.09 1532.4 L1257.98 1532.4 L1257.98 1537.93 Q1259.82 1534.69 1262.78 1533.13 Q1265.74 1531.54 1269.98 1531.54 Q1270.58 1531.54 1271.31 1531.63 Q1272.05 1531.7 1272.94 1531.85 L1272.97 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1291.49 1536.5 Q1286.78 1536.5 1284.04 1540.19 Q1281.31 1543.85 1281.31 1550.25 Q1281.31 1556.65 1284.01 1560.34 Q1286.75 1564 1291.49 1564 Q1296.17 1564 1298.91 1560.31 Q1301.65 1556.62 1301.65 1550.25 Q1301.65 1543.92 1298.91 1540.23 Q1296.17 1536.5 1291.49 1536.5 M1291.49 1531.54 Q1299.13 1531.54 1303.49 1536.5 Q1307.85 1541.47 1307.85 1550.25 Q1307.85 1559 1303.49 1564 Q1299.13 1568.97 1291.49 1568.97 Q1283.82 1568.97 1279.46 1564 Q1275.13 1559 1275.13 1550.25 Q1275.13 1541.47 1279.46 1536.5 Q1283.82 1531.54 1291.49 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1341.02 1549.81 Q1341.02 1543.44 1338.38 1539.94 Q1335.77 1536.44 1331.02 1536.44 Q1326.31 1536.44 1323.67 1539.94 Q1321.06 1543.44 1321.06 1549.81 Q1321.06 1556.14 1323.67 1559.64 Q1326.31 1563.14 1331.02 1563.14 Q1335.77 1563.14 1338.38 1559.64 Q1341.02 1556.14 1341.02 1549.81 M1346.87 1563.62 Q1346.87 1572.72 1342.83 1577.15 Q1338.79 1581.6 1330.45 1581.6 Q1327.36 1581.6 1324.63 1581.13 Q1321.89 1580.68 1319.31 1579.72 L1319.31 1574.03 Q1321.89 1575.43 1324.4 1576.1 Q1326.92 1576.76 1329.53 1576.76 Q1335.29 1576.76 1338.15 1573.74 Q1341.02 1570.75 1341.02 1564.67 L1341.02 1561.77 Q1339.2 1564.92 1336.37 1566.48 Q1333.54 1568.04 1329.59 1568.04 Q1323.03 1568.04 1319.02 1563.05 Q1315.01 1558.05 1315.01 1549.81 Q1315.01 1541.53 1319.02 1536.53 Q1323.03 1531.54 1329.59 1531.54 Q1333.54 1531.54 1336.37 1533.1 Q1339.2 1534.66 1341.02 1537.81 L1341.02 1532.4 L1346.87 1532.4 L1346.87 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1389.43 1548.76 L1389.43 1551.62 L1362.5 1551.62 Q1362.88 1557.67 1366.13 1560.85 Q1369.41 1564 1375.23 1564 Q1378.61 1564 1381.76 1563.17 Q1384.94 1562.35 1388.06 1560.69 L1388.06 1566.23 Q1384.91 1567.57 1381.6 1568.27 Q1378.29 1568.97 1374.88 1568.97 Q1366.35 1568.97 1361.36 1564 Q1356.39 1559.04 1356.39 1550.57 Q1356.39 1541.82 1361.1 1536.69 Q1365.84 1531.54 1373.86 1531.54 Q1381.06 1531.54 1385.23 1536.18 Q1389.43 1540.8 1389.43 1548.76 M1383.57 1547.04 Q1383.51 1542.23 1380.87 1539.37 Q1378.26 1536.5 1373.93 1536.5 Q1369.03 1536.5 1366.07 1539.27 Q1363.14 1542.04 1362.69 1547.07 L1383.57 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1428.67 1546.53 L1428.67 1568.04 L1422.82 1568.04 L1422.82 1546.72 Q1422.82 1541.66 1420.84 1539.14 Q1418.87 1536.63 1414.92 1536.63 Q1410.18 1536.63 1407.44 1539.65 Q1404.71 1542.68 1404.71 1547.9 L1404.71 1568.04 L1398.82 1568.04 L1398.82 1532.4 L1404.71 1532.4 L1404.71 1537.93 Q1406.81 1534.72 1409.64 1533.13 Q1412.5 1531.54 1416.23 1531.54 Q1422.37 1531.54 1425.52 1535.36 Q1428.67 1539.14 1428.67 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1475.14 1518.58 Q1470.88 1525.9 1468.81 1533.06 Q1466.74 1540.23 1466.74 1547.58 Q1466.74 1554.93 1468.81 1562.16 Q1470.91 1569.35 1475.14 1576.64 L1470.05 1576.64 Q1465.28 1569.16 1462.89 1561.93 Q1460.53 1554.71 1460.53 1547.58 Q1460.53 1540.48 1462.89 1533.29 Q1465.24 1526.09 1470.05 1518.58 L1475.14 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1482.3 1532.4 L1488.51 1532.4 L1499.65 1562.31 L1510.79 1532.4 L1517 1532.4 L1503.63 1568.04 L1495.67 1568.04 L1482.3 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1538.9 1536.5 Q1534.19 1536.5 1531.45 1540.19 Q1528.71 1543.85 1528.71 1550.25 Q1528.71 1556.65 1531.42 1560.34 Q1534.15 1564 1538.9 1564 Q1543.57 1564 1546.31 1560.31 Q1549.05 1556.62 1549.05 1550.25 Q1549.05 1543.92 1546.31 1540.23 Q1543.57 1536.5 1538.9 1536.5 M1538.9 1531.54 Q1546.53 1531.54 1550.9 1536.5 Q1555.26 1541.47 1555.26 1550.25 Q1555.26 1559 1550.9 1564 Q1546.53 1568.97 1538.9 1568.97 Q1531.23 1568.97 1526.86 1564 Q1522.54 1559 1522.54 1550.25 Q1522.54 1541.47 1526.86 1536.5 Q1531.23 1531.54 1538.9 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1564.96 1518.52 L1570.82 1518.52 L1570.82 1568.04 L1564.96 1568.04 L1564.96 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1593.48 1520.52 L1598.89 1520.52 L1582.34 1574.09 L1576.93 1574.09 L1593.48 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1600.83 1532.4 L1607.04 1532.4 L1618.18 1562.31 L1629.32 1532.4 L1635.53 1532.4 L1622.16 1568.04 L1614.2 1568.04 L1600.83 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1657.43 1536.5 Q1652.71 1536.5 1649.98 1540.19 Q1647.24 1543.85 1647.24 1550.25 Q1647.24 1556.65 1649.95 1560.34 Q1652.68 1564 1657.43 1564 Q1662.1 1564 1664.84 1560.31 Q1667.58 1556.62 1667.58 1550.25 Q1667.58 1543.92 1664.84 1540.23 Q1662.1 1536.5 1657.43 1536.5 M1657.43 1531.54 Q1665.06 1531.54 1669.42 1536.5 Q1673.79 1541.47 1673.79 1550.25 Q1673.79 1559 1669.42 1564 Q1665.06 1568.97 1657.43 1568.97 Q1649.75 1568.97 1645.39 1564 Q1641.07 1559 1641.07 1550.25 Q1641.07 1541.47 1645.39 1536.5 Q1649.75 1531.54 1657.43 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1683.49 1518.52 L1689.35 1518.52 L1689.35 1568.04 L1683.49 1568.04 L1683.49 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M1700.68 1518.58 L1705.77 1518.58 Q1710.55 1526.09 1712.9 1533.29 Q1715.29 1540.48 1715.29 1547.58 Q1715.29 1554.71 1712.9 1561.93 Q1710.55 1569.16 1705.77 1576.64 L1700.68 1576.64 Q1704.91 1569.35 1706.98 1562.16 Q1709.08 1554.93 1709.08 1547.58 Q1709.08 1540.23 1706.98 1533.06 Q1704.91 1525.9 1700.68 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,1193.86 2352.76,1193.86 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,964.535 2352.76,964.535 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,735.212 2352.76,735.212 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,505.889 2352.76,505.889 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,276.567 2352.76,276.567 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip532)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  400.671,47.2441 2352.76,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,1423.18 400.671,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,1423.18 419.569,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,1193.86 419.569,1193.86 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,964.535 419.569,964.535 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,735.212 419.569,735.212 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,505.889 419.569,505.889 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,276.567 419.569,276.567 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip530)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  400.671,47.2441 419.569,47.2441 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip530)\" d=\"M352.727 1408.98 Q349.116 1408.98 347.287 1412.54 Q345.481 1416.08 345.481 1423.21 Q345.481 1430.32 347.287 1433.89 Q349.116 1437.43 352.727 1437.43 Q356.361 1437.43 358.167 1433.89 Q359.995 1430.32 359.995 1423.21 Q359.995 1416.08 358.167 1412.54 Q356.361 1408.98 352.727 1408.98 M352.727 1405.27 Q358.537 1405.27 361.592 1409.88 Q364.671 1414.46 364.671 1423.21 Q364.671 1431.94 361.592 1436.55 Q358.537 1441.13 352.727 1441.13 Q346.917 1441.13 343.838 1436.55 Q340.782 1431.94 340.782 1423.21 Q340.782 1414.46 343.838 1409.88 Q346.917 1405.27 352.727 1405.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M121.043 1213.65 L137.362 1213.65 L137.362 1217.58 L115.418 1217.58 L115.418 1213.65 Q118.08 1210.9 122.663 1206.27 Q127.269 1201.61 128.45 1200.27 Q130.695 1197.75 131.575 1196.01 Q132.478 1194.25 132.478 1192.56 Q132.478 1189.81 130.533 1188.07 Q128.612 1186.33 125.51 1186.33 Q123.311 1186.33 120.857 1187.1 Q118.427 1187.86 115.649 1189.41 L115.649 1184.69 Q118.473 1183.56 120.927 1182.98 Q123.38 1182.4 125.418 1182.4 Q130.788 1182.4 133.982 1185.08 Q137.177 1187.77 137.177 1192.26 Q137.177 1194.39 136.367 1196.31 Q135.579 1198.21 133.473 1200.8 Q132.894 1201.47 129.792 1204.69 Q126.691 1207.89 121.043 1213.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M147.177 1211.71 L152.061 1211.71 L152.061 1217.58 L147.177 1217.58 L147.177 1211.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M172.246 1186.1 Q168.635 1186.1 166.806 1189.67 Q165.001 1193.21 165.001 1200.34 Q165.001 1207.45 166.806 1211.01 Q168.635 1214.55 172.246 1214.55 Q175.88 1214.55 177.686 1211.01 Q179.514 1207.45 179.514 1200.34 Q179.514 1193.21 177.686 1189.67 Q175.88 1186.1 172.246 1186.1 M172.246 1182.4 Q178.056 1182.4 181.112 1187.01 Q184.19 1191.59 184.19 1200.34 Q184.19 1209.07 181.112 1213.67 Q178.056 1218.26 172.246 1218.26 Q166.436 1218.26 163.357 1213.67 Q160.302 1209.07 160.302 1200.34 Q160.302 1191.59 163.357 1187.01 Q166.436 1182.4 172.246 1182.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M202.408 1186.1 Q198.797 1186.1 196.968 1189.67 Q195.163 1193.21 195.163 1200.34 Q195.163 1207.45 196.968 1211.01 Q198.797 1214.55 202.408 1214.55 Q206.042 1214.55 207.848 1211.01 Q209.676 1207.45 209.676 1200.34 Q209.676 1193.21 207.848 1189.67 Q206.042 1186.1 202.408 1186.1 M202.408 1182.4 Q208.218 1182.4 211.274 1187.01 Q214.352 1191.59 214.352 1200.34 Q214.352 1209.07 211.274 1213.67 Q208.218 1218.26 202.408 1218.26 Q196.598 1218.26 193.519 1213.67 Q190.463 1209.07 190.463 1200.34 Q190.463 1191.59 193.519 1187.01 Q196.598 1182.4 202.408 1182.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M250.741 1192.12 L240.162 1202.75 L250.741 1213.33 L247.986 1216.13 L237.361 1205.5 L226.736 1216.13 L224.005 1213.33 L234.56 1202.75 L224.005 1192.12 L226.736 1189.32 L237.361 1199.95 L247.986 1189.32 L250.741 1192.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M263.102 1213.65 L270.741 1213.65 L270.741 1187.28 L262.431 1188.95 L262.431 1184.69 L270.695 1183.02 L275.37 1183.02 L275.37 1213.65 L283.009 1213.65 L283.009 1217.58 L263.102 1217.58 L263.102 1213.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M302.454 1186.1 Q298.843 1186.1 297.014 1189.67 Q295.208 1193.21 295.208 1200.34 Q295.208 1207.45 297.014 1211.01 Q298.843 1214.55 302.454 1214.55 Q306.088 1214.55 307.893 1211.01 Q309.722 1207.45 309.722 1200.34 Q309.722 1193.21 307.893 1189.67 Q306.088 1186.1 302.454 1186.1 M302.454 1182.4 Q308.264 1182.4 311.319 1187.01 Q314.398 1191.59 314.398 1200.34 Q314.398 1209.07 311.319 1213.67 Q308.264 1218.26 302.454 1218.26 Q296.643 1218.26 293.565 1213.67 Q290.509 1209.07 290.509 1200.34 Q290.509 1191.59 293.565 1187.01 Q296.643 1182.4 302.454 1182.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M314.398 1176.5 L338.51 1176.5 L338.51 1179.7 L314.398 1179.7 L314.398 1176.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M355.305 1174.62 Q352.747 1174.62 351.242 1176.37 Q349.757 1178.12 349.757 1181.17 Q349.757 1184.19 351.242 1185.96 Q352.747 1187.71 355.305 1187.71 Q357.863 1187.71 359.349 1185.96 Q360.853 1184.19 360.853 1181.17 Q360.853 1178.12 359.349 1176.37 Q357.863 1174.62 355.305 1174.62 M362.847 1162.72 L362.847 1166.18 Q361.417 1165.5 359.95 1165.14 Q358.502 1164.78 357.073 1164.78 Q353.311 1164.78 351.318 1167.32 Q349.343 1169.86 349.061 1175 Q350.17 1173.36 351.844 1172.5 Q353.518 1171.61 355.531 1171.61 Q359.762 1171.61 362.207 1174.19 Q364.671 1176.75 364.671 1181.17 Q364.671 1185.49 362.113 1188.11 Q359.555 1190.72 355.305 1190.72 Q350.434 1190.72 347.857 1187 Q345.28 1183.25 345.28 1176.16 Q345.28 1169.5 348.44 1165.56 Q351.6 1161.59 356.922 1161.59 Q358.352 1161.59 359.8 1161.87 Q361.267 1162.15 362.847 1162.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M129.862 957.776 L118.056 976.225 L129.862 976.225 L129.862 957.776 M128.635 953.702 L134.515 953.702 L134.515 976.225 L139.445 976.225 L139.445 980.114 L134.515 980.114 L134.515 988.262 L129.862 988.262 L129.862 980.114 L114.26 980.114 L114.26 975.6 L128.635 953.702 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M147.177 982.383 L152.061 982.383 L152.061 988.262 L147.177 988.262 L147.177 982.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M172.246 956.781 Q168.635 956.781 166.806 960.346 Q165.001 963.887 165.001 971.017 Q165.001 978.123 166.806 981.688 Q168.635 985.23 172.246 985.23 Q175.88 985.23 177.686 981.688 Q179.514 978.123 179.514 971.017 Q179.514 963.887 177.686 960.346 Q175.88 956.781 172.246 956.781 M172.246 953.077 Q178.056 953.077 181.112 957.684 Q184.19 962.267 184.19 971.017 Q184.19 979.744 181.112 984.35 Q178.056 988.933 172.246 988.933 Q166.436 988.933 163.357 984.35 Q160.302 979.744 160.302 971.017 Q160.302 962.267 163.357 957.684 Q166.436 953.077 172.246 953.077 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M202.408 956.781 Q198.797 956.781 196.968 960.346 Q195.163 963.887 195.163 971.017 Q195.163 978.123 196.968 981.688 Q198.797 985.23 202.408 985.23 Q206.042 985.23 207.848 981.688 Q209.676 978.123 209.676 971.017 Q209.676 963.887 207.848 960.346 Q206.042 956.781 202.408 956.781 M202.408 953.077 Q208.218 953.077 211.274 957.684 Q214.352 962.267 214.352 971.017 Q214.352 979.744 211.274 984.35 Q208.218 988.933 202.408 988.933 Q196.598 988.933 193.519 984.35 Q190.463 979.744 190.463 971.017 Q190.463 962.267 193.519 957.684 Q196.598 953.077 202.408 953.077 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M250.741 962.799 L240.162 973.424 L250.741 984.003 L247.986 986.804 L237.361 976.179 L226.736 986.804 L224.005 984.003 L234.56 973.424 L224.005 962.799 L226.736 959.998 L237.361 970.623 L247.986 959.998 L250.741 962.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M263.102 984.327 L270.741 984.327 L270.741 957.961 L262.431 959.628 L262.431 955.369 L270.695 953.702 L275.37 953.702 L275.37 984.327 L283.009 984.327 L283.009 988.262 L263.102 988.262 L263.102 984.327 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M302.454 956.781 Q298.843 956.781 297.014 960.346 Q295.208 963.887 295.208 971.017 Q295.208 978.123 297.014 981.688 Q298.843 985.23 302.454 985.23 Q306.088 985.23 307.893 981.688 Q309.722 978.123 309.722 971.017 Q309.722 963.887 307.893 960.346 Q306.088 956.781 302.454 956.781 M302.454 953.077 Q308.264 953.077 311.319 957.684 Q314.398 962.267 314.398 971.017 Q314.398 979.744 311.319 984.35 Q308.264 988.933 302.454 988.933 Q296.643 988.933 293.565 984.35 Q290.509 979.744 290.509 971.017 Q290.509 962.267 293.565 957.684 Q296.643 953.077 302.454 953.077 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M314.398 947.179 L338.51 947.179 L338.51 950.376 L314.398 950.376 L314.398 947.179 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M355.305 945.298 Q352.747 945.298 351.242 947.047 Q349.757 948.796 349.757 951.843 Q349.757 954.871 351.242 956.639 Q352.747 958.388 355.305 958.388 Q357.863 958.388 359.349 956.639 Q360.853 954.871 360.853 951.843 Q360.853 948.796 359.349 947.047 Q357.863 945.298 355.305 945.298 M362.847 933.392 L362.847 936.853 Q361.417 936.176 359.95 935.819 Q358.502 935.461 357.073 935.461 Q353.311 935.461 351.318 938 Q349.343 940.539 349.061 945.674 Q350.17 944.038 351.844 943.172 Q353.518 942.289 355.531 942.289 Q359.762 942.289 362.207 944.865 Q364.671 947.423 364.671 951.843 Q364.671 956.169 362.113 958.783 Q359.555 961.397 355.305 961.397 Q350.434 961.397 347.857 957.673 Q345.28 953.931 345.28 946.84 Q345.28 940.182 348.44 936.232 Q351.6 932.264 356.922 932.264 Q358.352 932.264 359.8 932.546 Q361.267 932.828 362.847 933.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M127.593 739.796 Q124.445 739.796 122.593 741.949 Q120.765 744.102 120.765 747.852 Q120.765 751.578 122.593 753.754 Q124.445 755.907 127.593 755.907 Q130.742 755.907 132.57 753.754 Q134.422 751.578 134.422 747.852 Q134.422 744.102 132.57 741.949 Q130.742 739.796 127.593 739.796 M136.876 725.143 L136.876 729.403 Q135.117 728.569 133.311 728.13 Q131.529 727.69 129.769 727.69 Q125.14 727.69 122.686 730.815 Q120.255 733.94 119.908 740.259 Q121.274 738.245 123.334 737.18 Q125.394 736.092 127.871 736.092 Q133.08 736.092 136.089 739.264 Q139.121 742.412 139.121 747.852 Q139.121 753.176 135.973 756.393 Q132.825 759.611 127.593 759.611 Q121.598 759.611 118.427 755.028 Q115.256 750.421 115.256 741.694 Q115.256 733.5 119.144 728.639 Q123.033 723.755 129.584 723.755 Q131.343 723.755 133.126 724.102 Q134.931 724.449 136.876 725.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M147.177 753.06 L152.061 753.06 L152.061 758.94 L147.177 758.94 L147.177 753.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M172.246 727.458 Q168.635 727.458 166.806 731.023 Q165.001 734.565 165.001 741.694 Q165.001 748.801 166.806 752.366 Q168.635 755.907 172.246 755.907 Q175.88 755.907 177.686 752.366 Q179.514 748.801 179.514 741.694 Q179.514 734.565 177.686 731.023 Q175.88 727.458 172.246 727.458 M172.246 723.755 Q178.056 723.755 181.112 728.361 Q184.19 732.944 184.19 741.694 Q184.19 750.421 181.112 755.028 Q178.056 759.611 172.246 759.611 Q166.436 759.611 163.357 755.028 Q160.302 750.421 160.302 741.694 Q160.302 732.944 163.357 728.361 Q166.436 723.755 172.246 723.755 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M202.408 727.458 Q198.797 727.458 196.968 731.023 Q195.163 734.565 195.163 741.694 Q195.163 748.801 196.968 752.366 Q198.797 755.907 202.408 755.907 Q206.042 755.907 207.848 752.366 Q209.676 748.801 209.676 741.694 Q209.676 734.565 207.848 731.023 Q206.042 727.458 202.408 727.458 M202.408 723.755 Q208.218 723.755 211.274 728.361 Q214.352 732.944 214.352 741.694 Q214.352 750.421 211.274 755.028 Q208.218 759.611 202.408 759.611 Q196.598 759.611 193.519 755.028 Q190.463 750.421 190.463 741.694 Q190.463 732.944 193.519 728.361 Q196.598 723.755 202.408 723.755 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M250.741 733.477 L240.162 744.102 L250.741 754.68 L247.986 757.481 L237.361 746.856 L226.736 757.481 L224.005 754.68 L234.56 744.102 L224.005 733.477 L226.736 730.676 L237.361 741.301 L247.986 730.676 L250.741 733.477 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M263.102 755.004 L270.741 755.004 L270.741 728.639 L262.431 730.305 L262.431 726.046 L270.695 724.38 L275.37 724.38 L275.37 755.004 L283.009 755.004 L283.009 758.94 L263.102 758.94 L263.102 755.004 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M302.454 727.458 Q298.843 727.458 297.014 731.023 Q295.208 734.565 295.208 741.694 Q295.208 748.801 297.014 752.366 Q298.843 755.907 302.454 755.907 Q306.088 755.907 307.893 752.366 Q309.722 748.801 309.722 741.694 Q309.722 734.565 307.893 731.023 Q306.088 727.458 302.454 727.458 M302.454 723.755 Q308.264 723.755 311.319 728.361 Q314.398 732.944 314.398 741.694 Q314.398 750.421 311.319 755.028 Q308.264 759.611 302.454 759.611 Q296.643 759.611 293.565 755.028 Q290.509 750.421 290.509 741.694 Q290.509 732.944 293.565 728.361 Q296.643 723.755 302.454 723.755 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M314.398 717.856 L338.51 717.856 L338.51 721.053 L314.398 721.053 L314.398 717.856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M355.305 715.975 Q352.747 715.975 351.242 717.724 Q349.757 719.473 349.757 722.52 Q349.757 725.548 351.242 727.316 Q352.747 729.065 355.305 729.065 Q357.863 729.065 359.349 727.316 Q360.853 725.548 360.853 722.52 Q360.853 719.473 359.349 717.724 Q357.863 715.975 355.305 715.975 M362.847 704.07 L362.847 707.53 Q361.417 706.853 359.95 706.496 Q358.502 706.139 357.073 706.139 Q353.311 706.139 351.318 708.678 Q349.343 711.217 349.061 716.351 Q350.17 714.715 351.844 713.85 Q353.518 712.966 355.531 712.966 Q359.762 712.966 362.207 715.543 Q364.671 718.1 364.671 722.52 Q364.671 726.846 362.113 729.46 Q359.555 732.075 355.305 732.075 Q350.434 732.075 347.857 728.351 Q345.28 724.608 345.28 717.517 Q345.28 710.859 348.44 706.91 Q351.6 702.941 356.922 702.941 Q358.352 702.941 359.8 703.223 Q361.267 703.506 362.847 704.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M127.015 513.205 Q123.681 513.205 121.76 514.987 Q119.862 516.77 119.862 519.895 Q119.862 523.02 121.76 524.802 Q123.681 526.585 127.015 526.585 Q130.348 526.585 132.269 524.802 Q134.191 522.997 134.191 519.895 Q134.191 516.77 132.269 514.987 Q130.371 513.205 127.015 513.205 M122.339 511.214 Q119.33 510.474 117.64 508.413 Q115.973 506.353 115.973 503.39 Q115.973 499.247 118.913 496.839 Q121.876 494.432 127.015 494.432 Q132.177 494.432 135.117 496.839 Q138.056 499.247 138.056 503.39 Q138.056 506.353 136.367 508.413 Q134.7 510.474 131.714 511.214 Q135.093 512.001 136.968 514.293 Q138.867 516.585 138.867 519.895 Q138.867 524.918 135.788 527.603 Q132.732 530.288 127.015 530.288 Q121.297 530.288 118.218 527.603 Q115.163 524.918 115.163 519.895 Q115.163 516.585 117.061 514.293 Q118.959 512.001 122.339 511.214 M120.626 503.83 Q120.626 506.515 122.293 508.02 Q123.982 509.524 127.015 509.524 Q130.024 509.524 131.714 508.02 Q133.427 506.515 133.427 503.83 Q133.427 501.145 131.714 499.64 Q130.024 498.136 127.015 498.136 Q123.982 498.136 122.293 499.64 Q120.626 501.145 120.626 503.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M147.177 523.737 L152.061 523.737 L152.061 529.617 L147.177 529.617 L147.177 523.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M172.246 498.136 Q168.635 498.136 166.806 501.7 Q165.001 505.242 165.001 512.372 Q165.001 519.478 166.806 523.043 Q168.635 526.585 172.246 526.585 Q175.88 526.585 177.686 523.043 Q179.514 519.478 179.514 512.372 Q179.514 505.242 177.686 501.7 Q175.88 498.136 172.246 498.136 M172.246 494.432 Q178.056 494.432 181.112 499.038 Q184.19 503.622 184.19 512.372 Q184.19 521.098 181.112 525.705 Q178.056 530.288 172.246 530.288 Q166.436 530.288 163.357 525.705 Q160.302 521.098 160.302 512.372 Q160.302 503.622 163.357 499.038 Q166.436 494.432 172.246 494.432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M202.408 498.136 Q198.797 498.136 196.968 501.7 Q195.163 505.242 195.163 512.372 Q195.163 519.478 196.968 523.043 Q198.797 526.585 202.408 526.585 Q206.042 526.585 207.848 523.043 Q209.676 519.478 209.676 512.372 Q209.676 505.242 207.848 501.7 Q206.042 498.136 202.408 498.136 M202.408 494.432 Q208.218 494.432 211.274 499.038 Q214.352 503.622 214.352 512.372 Q214.352 521.098 211.274 525.705 Q208.218 530.288 202.408 530.288 Q196.598 530.288 193.519 525.705 Q190.463 521.098 190.463 512.372 Q190.463 503.622 193.519 499.038 Q196.598 494.432 202.408 494.432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M250.741 504.154 L240.162 514.779 L250.741 525.358 L247.986 528.159 L237.361 517.534 L226.736 528.159 L224.005 525.358 L234.56 514.779 L224.005 504.154 L226.736 501.353 L237.361 511.978 L247.986 501.353 L250.741 504.154 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M263.102 525.682 L270.741 525.682 L270.741 499.316 L262.431 500.983 L262.431 496.724 L270.695 495.057 L275.37 495.057 L275.37 525.682 L283.009 525.682 L283.009 529.617 L263.102 529.617 L263.102 525.682 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M302.454 498.136 Q298.843 498.136 297.014 501.7 Q295.208 505.242 295.208 512.372 Q295.208 519.478 297.014 523.043 Q298.843 526.585 302.454 526.585 Q306.088 526.585 307.893 523.043 Q309.722 519.478 309.722 512.372 Q309.722 505.242 307.893 501.7 Q306.088 498.136 302.454 498.136 M302.454 494.432 Q308.264 494.432 311.319 499.038 Q314.398 503.622 314.398 512.372 Q314.398 521.098 311.319 525.705 Q308.264 530.288 302.454 530.288 Q296.643 530.288 293.565 525.705 Q290.509 521.098 290.509 512.372 Q290.509 503.622 293.565 499.038 Q296.643 494.432 302.454 494.432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M314.398 488.533 L338.51 488.533 L338.51 491.731 L314.398 491.731 L314.398 488.533 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M355.305 486.653 Q352.747 486.653 351.242 488.402 Q349.757 490.151 349.757 493.198 Q349.757 496.226 351.242 497.994 Q352.747 499.743 355.305 499.743 Q357.863 499.743 359.349 497.994 Q360.853 496.226 360.853 493.198 Q360.853 490.151 359.349 488.402 Q357.863 486.653 355.305 486.653 M362.847 474.747 L362.847 478.208 Q361.417 477.531 359.95 477.173 Q358.502 476.816 357.073 476.816 Q353.311 476.816 351.318 479.355 Q349.343 481.894 349.061 487.029 Q350.17 485.392 351.844 484.527 Q353.518 483.643 355.531 483.643 Q359.762 483.643 362.207 486.22 Q364.671 488.778 364.671 493.198 Q364.671 497.523 362.113 500.138 Q359.555 502.752 355.305 502.752 Q350.434 502.752 347.857 499.028 Q345.28 495.285 345.28 488.195 Q345.28 481.537 348.44 477.587 Q351.6 473.619 356.922 473.619 Q358.352 473.619 359.8 473.901 Q361.267 474.183 362.847 474.747 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M118.765 296.359 L126.404 296.359 L126.404 269.994 L118.094 271.66 L118.094 267.401 L126.358 265.734 L131.034 265.734 L131.034 296.359 L138.673 296.359 L138.673 300.294 L118.765 300.294 L118.765 296.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M148.117 294.415 L153.001 294.415 L153.001 300.294 L148.117 300.294 L148.117 294.415 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M173.186 268.813 Q169.575 268.813 167.747 272.378 Q165.941 275.919 165.941 283.049 Q165.941 290.155 167.747 293.72 Q169.575 297.262 173.186 297.262 Q176.821 297.262 178.626 293.72 Q180.455 290.155 180.455 283.049 Q180.455 275.919 178.626 272.378 Q176.821 268.813 173.186 268.813 M173.186 265.109 Q178.997 265.109 182.052 269.716 Q185.131 274.299 185.131 283.049 Q185.131 291.776 182.052 296.382 Q178.997 300.966 173.186 300.966 Q167.376 300.966 164.298 296.382 Q161.242 291.776 161.242 283.049 Q161.242 274.299 164.298 269.716 Q167.376 265.109 173.186 265.109 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M203.348 268.813 Q199.737 268.813 197.908 272.378 Q196.103 275.919 196.103 283.049 Q196.103 290.155 197.908 293.72 Q199.737 297.262 203.348 297.262 Q206.982 297.262 208.788 293.72 Q210.617 290.155 210.617 283.049 Q210.617 275.919 208.788 272.378 Q206.982 268.813 203.348 268.813 M203.348 265.109 Q209.158 265.109 212.214 269.716 Q215.293 274.299 215.293 283.049 Q215.293 291.776 212.214 296.382 Q209.158 300.966 203.348 300.966 Q197.538 300.966 194.459 296.382 Q191.404 291.776 191.404 283.049 Q191.404 274.299 194.459 269.716 Q197.538 265.109 203.348 265.109 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M251.681 274.831 L241.103 285.456 L251.681 296.035 L248.927 298.836 L238.302 288.211 L227.677 298.836 L224.945 296.035 L235.501 285.456 L224.945 274.831 L227.677 272.031 L238.302 282.656 L248.927 272.031 L251.681 274.831 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M264.042 296.359 L271.681 296.359 L271.681 269.994 L263.371 271.66 L263.371 267.401 L271.635 265.734 L276.311 265.734 L276.311 296.359 L283.95 296.359 L283.95 300.294 L264.042 300.294 L264.042 296.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M303.394 268.813 Q299.783 268.813 297.954 272.378 Q296.149 275.919 296.149 283.049 Q296.149 290.155 297.954 293.72 Q299.783 297.262 303.394 297.262 Q307.028 297.262 308.834 293.72 Q310.662 290.155 310.662 283.049 Q310.662 275.919 308.834 272.378 Q307.028 268.813 303.394 268.813 M303.394 265.109 Q309.204 265.109 312.26 269.716 Q315.338 274.299 315.338 283.049 Q315.338 291.776 312.26 296.382 Q309.204 300.966 303.394 300.966 Q297.584 300.966 294.505 296.382 Q291.45 291.776 291.45 283.049 Q291.45 274.299 294.505 269.716 Q297.584 265.109 303.394 265.109 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M315.338 259.211 L339.45 259.211 L339.45 262.408 L315.338 262.408 L315.338 259.211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M347.688 244.804 L362.602 244.804 L362.602 248.001 L351.167 248.001 L351.167 254.885 Q351.995 254.603 352.822 254.471 Q353.65 254.321 354.477 254.321 Q359.179 254.321 361.925 256.897 Q364.671 259.474 364.671 263.875 Q364.671 268.408 361.85 270.928 Q359.029 273.429 353.894 273.429 Q352.126 273.429 350.283 273.128 Q348.459 272.827 346.503 272.226 L346.503 268.408 Q348.196 269.329 350.001 269.781 Q351.807 270.232 353.819 270.232 Q357.073 270.232 358.972 268.521 Q360.872 266.809 360.872 263.875 Q360.872 260.941 358.972 259.229 Q357.073 257.518 353.819 257.518 Q352.296 257.518 350.772 257.857 Q349.268 258.195 347.688 258.91 L347.688 244.804 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M118.765 67.0365 L126.404 67.0365 L126.404 40.6709 L118.094 42.3376 L118.094 38.0784 L126.358 36.4117 L131.034 36.4117 L131.034 67.0365 L138.673 67.0365 L138.673 70.9717 L118.765 70.9717 L118.765 67.0365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M148.117 65.0921 L153.001 65.0921 L153.001 70.9717 L148.117 70.9717 L148.117 65.0921 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M167.214 67.0365 L183.534 67.0365 L183.534 70.9717 L161.589 70.9717 L161.589 67.0365 Q164.251 64.2819 168.835 59.6523 Q173.441 54.9996 174.622 53.657 Q176.867 51.1338 177.747 49.3977 Q178.649 47.6385 178.649 45.9487 Q178.649 43.1941 176.705 41.458 Q174.784 39.7219 171.682 39.7219 Q169.483 39.7219 167.029 40.4857 Q164.598 41.2496 161.821 42.8005 L161.821 38.0784 Q164.645 36.9441 167.098 36.3654 Q169.552 35.7867 171.589 35.7867 Q176.959 35.7867 180.154 38.4719 Q183.348 41.157 183.348 45.6478 Q183.348 47.7774 182.538 49.6987 Q181.751 51.5968 179.645 54.1894 Q179.066 54.8607 175.964 58.0782 Q172.862 61.2727 167.214 67.0365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M203.348 39.4904 Q199.737 39.4904 197.908 43.0552 Q196.103 46.5968 196.103 53.7264 Q196.103 60.8329 197.908 64.3977 Q199.737 67.9393 203.348 67.9393 Q206.982 67.9393 208.788 64.3977 Q210.617 60.8329 210.617 53.7264 Q210.617 46.5968 208.788 43.0552 Q206.982 39.4904 203.348 39.4904 M203.348 35.7867 Q209.158 35.7867 212.214 40.3932 Q215.293 44.9765 215.293 53.7264 Q215.293 62.4532 212.214 67.0597 Q209.158 71.643 203.348 71.643 Q197.538 71.643 194.459 67.0597 Q191.404 62.4532 191.404 53.7264 Q191.404 44.9765 194.459 40.3932 Q197.538 35.7867 203.348 35.7867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M251.681 45.5089 L241.103 56.1338 L251.681 66.7125 L248.927 69.5134 L238.302 58.8884 L227.677 69.5134 L224.945 66.7125 L235.501 56.1338 L224.945 45.5089 L227.677 42.708 L238.302 53.3329 L248.927 42.708 L251.681 45.5089 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M264.042 67.0365 L271.681 67.0365 L271.681 40.6709 L263.371 42.3376 L263.371 38.0784 L271.635 36.4117 L276.311 36.4117 L276.311 67.0365 L283.95 67.0365 L283.95 70.9717 L264.042 70.9717 L264.042 67.0365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M303.394 39.4904 Q299.783 39.4904 297.954 43.0552 Q296.149 46.5968 296.149 53.7264 Q296.149 60.8329 297.954 64.3977 Q299.783 67.9393 303.394 67.9393 Q307.028 67.9393 308.834 64.3977 Q310.662 60.8329 310.662 53.7264 Q310.662 46.5968 308.834 43.0552 Q307.028 39.4904 303.394 39.4904 M303.394 35.7867 Q309.204 35.7867 312.26 40.3932 Q315.338 44.9765 315.338 53.7264 Q315.338 62.4532 312.26 67.0597 Q309.204 71.643 303.394 71.643 Q297.584 71.643 294.505 67.0597 Q291.45 62.4532 291.45 53.7264 Q291.45 44.9765 294.505 40.3932 Q297.584 35.7867 303.394 35.7867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M315.338 29.888 L339.45 29.888 L339.45 33.0854 L315.338 33.0854 L315.338 29.888 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M347.688 15.4813 L362.602 15.4813 L362.602 18.6786 L351.167 18.6786 L351.167 25.5623 Q351.995 25.2801 352.822 25.1485 Q353.65 24.998 354.477 24.998 Q359.179 24.998 361.925 27.5747 Q364.671 30.1514 364.671 34.5524 Q364.671 39.085 361.85 41.6053 Q359.029 44.1067 353.894 44.1067 Q352.126 44.1067 350.283 43.8058 Q348.459 43.5049 346.503 42.903 L346.503 39.085 Q348.196 40.0066 350.001 40.458 Q351.807 40.9094 353.819 40.9094 Q357.073 40.9094 358.972 39.1979 Q360.872 37.4864 360.872 34.5524 Q360.872 31.6184 358.972 29.9069 Q357.073 28.1953 353.819 28.1953 Q352.296 28.1953 350.772 28.5339 Q349.268 28.8724 347.688 29.5871 L347.688 15.4813 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M64.0042 1010.7 L16.4842 1028.85 L16.4842 1022.13 L56.4926 1007.08 L16.4842 991.989 L16.4842 985.305 L64.0042 1003.42 L64.0042 1010.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M28.3562 980.053 L28.3562 974.197 L64.0042 974.197 L64.0042 980.053 L28.3562 980.053 M14.479 980.053 L14.479 974.197 L21.895 974.197 L21.895 980.053 L14.479 980.053 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M29.4065 939.217 L34.9447 939.217 Q33.6716 941.7 33.035 944.373 Q32.3984 947.047 32.3984 949.911 Q32.3984 954.272 33.7352 956.468 Q35.072 958.632 37.7456 958.632 Q39.7826 958.632 40.9603 957.073 Q42.1061 955.513 43.1565 950.803 L43.6021 948.797 Q44.9389 942.559 47.3897 939.949 Q49.8086 937.307 54.1691 937.307 Q59.1344 937.307 62.0308 941.254 Q64.9272 945.169 64.9272 952.044 Q64.9272 954.908 64.3543 958.028 Q63.8132 961.115 62.6992 964.552 L56.6518 964.552 Q58.3387 961.306 59.198 958.155 Q60.0256 955.004 60.0256 951.917 Q60.0256 947.779 58.6251 945.551 Q57.1929 943.323 54.6147 943.323 Q52.2276 943.323 50.9545 944.946 Q49.6813 946.538 48.5037 951.98 L48.0262 954.017 Q46.8804 959.46 44.5251 961.879 Q42.138 964.298 38.0002 964.298 Q32.9713 964.298 30.2341 960.733 Q27.4968 957.168 27.4968 950.612 Q27.4968 947.365 27.9743 944.5 Q28.4517 941.636 29.4065 939.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M29.7248 902.328 L35.1993 902.328 Q33.8307 904.81 33.1623 907.325 Q32.4621 909.807 32.4621 912.354 Q32.4621 918.051 36.0905 921.202 Q39.6872 924.353 46.212 924.353 Q52.7369 924.353 56.3653 921.202 Q59.9619 918.051 59.9619 912.354 Q59.9619 909.807 59.2935 907.325 Q58.5933 904.81 57.2247 902.328 L62.6355 902.328 Q63.7814 904.778 64.3543 907.42 Q64.9272 910.03 64.9272 912.99 Q64.9272 921.043 59.8664 925.785 Q54.8057 930.528 46.212 930.528 Q37.491 930.528 32.4939 925.753 Q27.4968 920.947 27.4968 912.608 Q27.4968 909.903 28.0697 907.325 Q28.6108 904.747 29.7248 902.328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M32.4621 878.329 Q32.4621 883.04 36.1542 885.777 Q39.8145 888.514 46.212 888.514 Q52.6095 888.514 56.3017 885.809 Q59.9619 883.071 59.9619 878.329 Q59.9619 873.65 56.2698 870.913 Q52.5777 868.176 46.212 868.176 Q39.8781 868.176 36.186 870.913 Q32.4621 873.65 32.4621 878.329 M27.4968 878.329 Q27.4968 870.69 32.4621 866.33 Q37.4273 861.969 46.212 861.969 Q54.9649 861.969 59.9619 866.33 Q64.9272 870.69 64.9272 878.329 Q64.9272 886 59.9619 890.36 Q54.9649 894.689 46.212 894.689 Q37.4273 894.689 32.4621 890.36 Q27.4968 886 27.4968 878.329 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M29.4065 829.536 L34.9447 829.536 Q33.6716 832.018 33.035 834.692 Q32.3984 837.366 32.3984 840.23 Q32.3984 844.591 33.7352 846.787 Q35.072 848.951 37.7456 848.951 Q39.7826 848.951 40.9603 847.392 Q42.1061 845.832 43.1565 841.121 L43.6021 839.116 Q44.9389 832.878 47.3897 830.268 Q49.8086 827.626 54.1691 827.626 Q59.1344 827.626 62.0308 831.573 Q64.9272 835.488 64.9272 842.363 Q64.9272 845.227 64.3543 848.346 Q63.8132 851.434 62.6992 854.871 L56.6518 854.871 Q58.3387 851.625 59.198 848.474 Q60.0256 845.323 60.0256 842.235 Q60.0256 838.098 58.6251 835.87 Q57.1929 833.642 54.6147 833.642 Q52.2276 833.642 50.9545 835.265 Q49.6813 836.856 48.5037 842.299 L48.0262 844.336 Q46.8804 849.779 44.5251 852.198 Q42.138 854.617 38.0002 854.617 Q32.9713 854.617 30.2341 851.052 Q27.4968 847.487 27.4968 840.93 Q27.4968 837.684 27.9743 834.819 Q28.4517 831.955 29.4065 829.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M28.3562 818.3 L28.3562 812.444 L64.0042 812.444 L64.0042 818.3 L28.3562 818.3 M14.479 818.3 L14.479 812.444 L21.895 812.444 L21.895 818.3 L14.479 818.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M18.2347 794.397 L28.3562 794.397 L28.3562 782.334 L32.9077 782.334 L32.9077 794.397 L52.2594 794.397 Q56.6199 794.397 57.8613 793.219 Q59.1026 792.01 59.1026 788.35 L59.1026 782.334 L64.0042 782.334 L64.0042 788.35 Q64.0042 795.129 61.4897 797.707 Q58.9434 800.285 52.2594 800.285 L32.9077 800.285 L32.9077 804.582 L28.3562 804.582 L28.3562 800.285 L18.2347 800.285 L18.2347 794.397 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M67.3143 759.8 Q73.68 762.282 75.6216 764.637 Q77.5631 766.993 77.5631 770.939 L77.5631 775.618 L72.6615 775.618 L72.6615 772.181 Q72.6615 769.762 71.5157 768.425 Q70.3699 767.088 66.1048 765.465 L63.4312 764.415 L28.3562 778.833 L28.3562 772.626 L56.238 761.486 L28.3562 750.346 L28.3562 744.14 L67.3143 759.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M55.9197 734.559 L55.9197 727.844 L61.3942 727.844 L71.5793 733.064 L71.5793 737.169 L61.3942 734.559 L55.9197 734.559 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M77.5631 695.219 L28.3562 695.219 L28.3562 689.363 L50.5089 689.363 Q55.124 689.363 57.4793 687.167 Q59.8346 684.971 59.8346 680.674 Q59.8346 675.963 57.161 673.608 Q54.4874 671.221 49.1402 671.221 L28.3562 671.221 L28.3562 665.364 L55.7924 665.364 Q57.7021 665.364 58.6251 664.823 Q59.5163 664.25 59.5163 663.073 Q59.5163 662.786 59.3572 662.277 Q59.1662 661.768 58.7843 660.876 L63.4949 660.876 Q64.227 662.181 64.5771 663.359 Q64.9272 664.505 64.9272 665.619 Q64.9272 667.815 63.6859 669.12 Q62.4446 670.425 59.8983 670.902 Q62.4127 672.494 63.6859 674.817 Q64.9272 677.109 64.9272 680.228 Q64.9272 683.475 63.6859 685.766 Q62.4446 688.026 59.9619 689.363 L77.5631 689.363 L77.5631 695.219 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M14.5426 597.633 Q21.8632 601.898 29.0246 603.967 Q36.186 606.036 43.5384 606.036 Q50.8908 606.036 58.1159 603.967 Q65.3091 601.866 72.5979 597.633 L72.5979 602.726 Q65.1182 607.5 57.8931 609.887 Q50.668 612.242 43.5384 612.242 Q36.4406 612.242 29.2474 609.887 Q22.0542 607.532 14.5426 602.726 L14.5426 597.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M21.7677 579.586 L39.6235 579.586 L39.6235 571.502 Q39.6235 567.014 37.3 564.563 Q34.9765 562.112 30.6797 562.112 Q26.4147 562.112 24.0912 564.563 Q21.7677 567.014 21.7677 571.502 L21.7677 579.586 M16.4842 586.016 L16.4842 571.502 Q16.4842 563.513 20.1126 559.439 Q23.7092 555.333 30.6797 555.333 Q37.7138 555.333 41.3104 559.439 Q44.907 563.513 44.907 571.502 L44.907 579.586 L64.0042 579.586 L64.0042 586.016 L16.4842 586.016 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M46.0847 533.69 Q46.0847 540.787 47.7079 543.525 Q49.3312 546.262 53.2461 546.262 Q56.3653 546.262 58.2114 544.225 Q60.0256 542.156 60.0256 538.623 Q60.0256 533.753 56.5881 530.825 Q53.1188 527.865 47.3897 527.865 L46.0847 527.865 L46.0847 533.69 M43.6657 522.009 L64.0042 522.009 L64.0042 527.865 L58.5933 527.865 Q61.8398 529.87 63.3994 532.862 Q64.9272 535.854 64.9272 540.183 Q64.9272 545.657 61.8716 548.904 Q58.7843 552.118 53.6281 552.118 Q47.6125 552.118 44.5569 548.108 Q41.5014 544.066 41.5014 536.077 L41.5014 527.865 L40.9285 527.865 Q36.8862 527.865 34.6901 530.539 Q32.4621 533.18 32.4621 537.986 Q32.4621 541.042 33.1941 543.938 Q33.9262 546.835 35.3903 549.508 L29.9795 549.508 Q28.7381 546.294 28.1334 543.27 Q27.4968 540.246 27.4968 537.382 Q27.4968 529.647 31.5072 525.828 Q35.5176 522.009 43.6657 522.009 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M29.4065 466.5 L34.9447 466.5 Q33.6716 468.982 33.035 471.656 Q32.3984 474.329 32.3984 477.194 Q32.3984 481.554 33.7352 483.751 Q35.072 485.915 37.7456 485.915 Q39.7826 485.915 40.9603 484.355 Q42.1061 482.796 43.1565 478.085 L43.6021 476.08 Q44.9389 469.842 47.3897 467.232 Q49.8086 464.59 54.1691 464.59 Q59.1344 464.59 62.0308 468.537 Q64.9272 472.452 64.9272 479.326 Q64.9272 482.191 64.3543 485.31 Q63.8132 488.398 62.6992 491.835 L56.6518 491.835 Q58.3387 488.589 59.198 485.438 Q60.0256 482.287 60.0256 479.199 Q60.0256 475.061 58.6251 472.833 Q57.1929 470.605 54.6147 470.605 Q52.2276 470.605 50.9545 472.229 Q49.6813 473.82 48.5037 479.263 L48.0262 481.3 Q46.8804 486.743 44.5251 489.161 Q42.138 491.58 38.0002 491.58 Q32.9713 491.58 30.2341 488.016 Q27.4968 484.451 27.4968 477.894 Q27.4968 474.648 27.9743 471.783 Q28.4517 468.919 29.4065 466.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip530)\" d=\"M14.5426 456.187 L14.5426 451.095 Q22.0542 446.32 29.2474 443.965 Q36.4406 441.578 43.5384 441.578 Q50.668 441.578 57.8931 443.965 Q65.1182 446.32 72.5979 451.095 L72.5979 456.187 Q65.3091 451.954 58.1159 449.885 Q50.8908 447.784 43.5384 447.784 Q36.186 447.784 29.0246 449.885 Q21.8632 451.954 14.5426 456.187 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip532)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  455.919,176.945 474.521,176.077 493.123,175.211 511.725,174.348 530.326,173.488 548.928,172.631 567.53,171.777 586.132,170.927 604.734,170.082 623.336,169.241 \n",
       "  641.938,168.405 660.54,167.575 679.142,166.751 697.744,165.933 716.346,165.123 734.948,164.319 753.549,163.524 772.151,162.738 790.753,161.961 809.355,161.194 \n",
       "  827.957,160.438 846.559,159.693 865.161,158.96 883.763,158.241 902.365,157.535 920.967,156.843 939.569,156.168 958.17,155.509 976.772,154.867 995.374,154.244 \n",
       "  1013.98,153.641 1032.58,153.059 1051.18,152.499 1069.78,151.963 1088.38,151.451 1106.99,150.966 1125.59,150.509 1144.19,150.081 1162.79,149.684 1181.39,149.321 \n",
       "  1200,148.992 1218.6,148.701 1237.2,148.448 1255.8,148.236 1274.4,148.068 1293,147.947 1311.61,147.873 1330.21,147.851 1348.81,147.884 1367.41,147.974 \n",
       "  1386.01,148.124 1404.62,148.339 1423.22,148.621 1441.82,148.975 1460.42,149.405 1479.02,149.915 1497.63,150.509 1516.23,151.193 1534.83,151.972 1553.43,152.851 \n",
       "  1572.03,153.837 1590.64,154.934 1609.24,156.151 1627.84,157.494 1646.44,158.97 1665.04,160.588 1683.65,162.357 1702.25,164.284 1720.85,166.381 1739.45,168.656 \n",
       "  1758.05,171.123 1776.65,173.792 1795.26,176.676 1813.86,179.788 1832.46,183.144 1851.06,186.76 1869.66,190.651 1888.27,194.836 1906.87,199.335 1925.47,204.169 \n",
       "  1944.07,209.36 1962.67,214.932 1981.28,220.913 1999.88,227.331 2018.48,234.216 2037.08,241.603 2055.68,249.527 2074.29,258.028 2092.89,267.149 2111.49,276.937 \n",
       "  2130.09,287.443 2148.69,298.723 2167.29,310.838 2185.9,323.855 2204.5,337.847 2223.1,352.895 2241.7,369.087 2260.3,386.523 2278.91,405.311 2297.51,425.57 \n",
       "  \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "let\n",
    "\n",
    "xs = range(0.0, 1.0, 100)\n",
    "plot( xs.*100, [μ(x, Tᵣ) for x in xs], lab=false, color=colors[1],\n",
    "      ylabel=\"Viscosity, μ \", xlabel=\"% Hydrogen (vol/vol)\", ylim=(0,1.2e-5))\n",
    "\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d7da83a8-d9d0-40f3-9226-bbe3a33824b5",
   "metadata": {},
   "source": [
    "### Pipe dimensions and friction\n",
    "\n",
    "For the sake of having something to calculate I am just assuming a 20m length of 2in steel pipe. But you could put in really anything here."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "7817b625-e538-4af7-8e06-4fba63a185e8",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "0.0008704761904761904"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Pipe dimensions\n",
    "L = 20u\"m\"      # length\n",
    "D = 52.5u\"mm\"   # diameter\n",
    "ϵ = 0.0457u\"mm\" # roughness\n",
    "\n",
    "A = 0.25*π*D^2  # cross-sectional area\n",
    "l = L/D         # relative length\n",
    "κ = ϵ/D         # relative roughness"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "11cb85c3-36a5-41dd-8870-98675ce31996",
   "metadata": {},
   "source": [
    "The Reynold's number is simply a function of the mass velocity, *G*, the pipe diameter, *D*, and the mixture viscosity *&mu;*"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "9a381946-0842-485d-a42a-e6168bab8b7d",
   "metadata": {},
   "outputs": [],
   "source": [
    "# Reynold's number\n",
    "Re(x,T,G) = G*D/μ(x,T);"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7b51dbe3-bd1c-44ab-841a-6188422a0db8",
   "metadata": {},
   "source": [
    "I am using my favourite correlation for the Darcy friction factor, *f*,"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "027d13a5-e80b-445f-b5d8-634880d3a198",
   "metadata": {},
   "outputs": [],
   "source": [
    "# Churchill correlation, from Perry's\n",
    "function churchill(Re)\n",
    "    A = (2.457 * log(1/((7/Re)^0.9 + 0.27*κ)))^16\n",
    "    B = (37530/Re)^16\n",
    "    return 8*((8/Re)^12 + 1/(A+B)^(3/2))^(1/12)\n",
    "end;"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "cae60007-1ef1-47db-a394-ab9e39444658",
   "metadata": {},
   "source": [
    "Since this is just a straight length of pipe, the K factor is simply *fL*/*D*, defaulting back to the Nikuradse rough pipe law for fully developed turbulent flow (i.e. very high Reynold's numbers)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "id": "f977e08c-084b-40dd-8dfd-f5f7855fe423",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Kf (generic function with 2 methods)"
      ]
     },
     "execution_count": 21,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Kf() = l/(2*log10(3.7/κ))^2 # Nikuradse\n",
    "Kf(Re) = l*churchill(Re)    # Churchill"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "548a0534-4a20-404f-ba15-ce76bfbb50c1",
   "metadata": {},
   "source": [
    "### Volumetric flowrate\n",
    "\n",
    "The volumetric flowrate for an isothermal ideal gas is simply the mass velocity, *G*, multiplied by the cross sectional area and divided by the density *GA*/*&rho;*. It is very easy to modify some code I had previously written to solve for the volumetric flowrate."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "id": "8ddd4778-4b72-431e-bbc0-60c39179cbc2",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Q₁ (generic function with 2 methods)"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# Isothermal ideal gas pipeflow\n",
    "function Q₁(x, T₁, P₁, P₂, K::Number)\n",
    "    ρ₁ = ρ(x, T₁, P₁)\n",
    "    v̄₁ = 1/ρ₁\n",
    "    q  = P₂/P₁\n",
    "    Q₁ = A*√((v̄₁*P₁*(1-q^2))/(K-2*log(q)))\n",
    "    return upreferred(Q₁)\n",
    "end\n",
    "\n",
    "function Q₁(x, T₁, P₁, P₂, K::Function)\n",
    "    # Initialize Parameters\n",
    "    ρ₁ = ρ(x, T₁, P₁)\n",
    "    q = P₂/P₁\n",
    "    \n",
    "    # Initial Guesses\n",
    "    Q₀ = Q₁(x, T₁, P₁, P₂, K())\n",
    "    G₀ = Q₀*ρ₁/A\n",
    "\n",
    "    # Numerically solve for G\n",
    "    obj(G) = (K(Re(x,T₁,G))- 2*log(q))*(G^2) - ρ₁*P₁*(1-q^2)\n",
    "    G = find_zero(obj, G₀)\n",
    "    \n",
    "    return upreferred(G*A/ρ₁)\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d10a3b19-0f11-4ce4-8cfd-48b607c78811",
   "metadata": {},
   "source": [
    "This uses julia's multiple dispatch to handle two cases: for large Reynold's numbers where *K* is a constant, and for cases where K is a function of the Reynold's number (and thus the volumetric flowrate).\n",
    "\n",
    "The volumetric flowrate at standard state is then the flowrate from above, corrected to the reference pressure and temperature"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "id": "90cf27cc-bb94-4ba5-b626-1837c6df6ce4",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Qₛ (generic function with 1 method)"
      ]
     },
     "execution_count": 23,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Qₛ(x, T₁, P₁, P₂) = upreferred((P₁/Pᵣ)*(Tᵣ/T₁)*Q₁(x, T₁, P₁, P₂, Kf))"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "31972d5e-3eab-4f74-8e7b-dd8fff4b9f68",
   "metadata": {},
   "source": [
    "**Note** I have been using `upreferred` to force Unitful to cancel out and simplify units.\n",
    "{: .notice}"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "14ea1ae5-7fac-4ec6-898f-0fac6a590161",
   "metadata": {},
   "source": [
    "### Heat rate\n",
    "\n",
    "The heat rate is then the heating value, already worked out, times the volumetric flowrate at standard state"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "id": "c772f9cb-6ef6-4ca4-8c37-a8c46b66f5ee",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "q (generic function with 1 method)"
      ]
     },
     "execution_count": 24,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "q(x, T₁, P₁, P₂) = HHV(x)*Qₛ(x, T₁, P₁, P₂)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "id": "f006abe5-29ef-43db-bac2-31aee7190599",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip570\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip570)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip571\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip570)\" d=\"\n",
       "M201.232 1410.9 L2352.76 1410.9 L2352.76 47.2441 L201.232 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip572\">\n",
       "    <rect x=\"201\" y=\"47\" width=\"2153\" height=\"1365\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  241.622,1410.9 241.622,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  754.182,1410.9 754.182,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1266.74,1410.9 1266.74,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1779.3,1410.9 1779.3,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2291.86,1410.9 2291.86,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,1410.9 2352.76,1410.9 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  241.622,1410.9 241.622,1392 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  754.182,1410.9 754.182,1392 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1266.74,1410.9 1266.74,1392 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1779.3,1410.9 1779.3,1392 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2291.86,1410.9 2291.86,1392 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M241.622 1441.82 Q238.011 1441.82 236.182 1445.38 Q234.377 1448.92 234.377 1456.05 Q234.377 1463.16 236.182 1466.72 Q238.011 1470.26 241.622 1470.26 Q245.256 1470.26 247.062 1466.72 Q248.89 1463.16 248.89 1456.05 Q248.89 1448.92 247.062 1445.38 Q245.256 1441.82 241.622 1441.82 M241.622 1438.11 Q247.432 1438.11 250.488 1442.72 Q253.566 1447.3 253.566 1456.05 Q253.566 1464.78 250.488 1469.38 Q247.432 1473.97 241.622 1473.97 Q235.812 1473.97 232.733 1469.38 Q229.677 1464.78 229.677 1456.05 Q229.677 1447.3 232.733 1442.72 Q235.812 1438.11 241.622 1438.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M650.086 1485.02 L666.405 1485.02 L666.405 1488.96 L644.461 1488.96 L644.461 1485.02 Q647.123 1482.27 651.706 1477.64 Q656.312 1472.98 657.493 1471.64 Q659.738 1469.12 660.618 1467.38 Q661.521 1465.62 661.521 1463.93 Q661.521 1461.18 659.576 1459.44 Q657.655 1457.71 654.553 1457.71 Q652.354 1457.71 649.9 1458.47 Q647.47 1459.23 644.692 1460.79 L644.692 1456.06 Q647.516 1454.93 649.97 1454.35 Q652.424 1453.77 654.461 1453.77 Q659.831 1453.77 663.025 1456.46 Q666.22 1459.14 666.22 1463.63 Q666.22 1465.76 665.41 1467.68 Q664.623 1469.58 662.516 1472.17 Q661.937 1472.85 658.836 1476.06 Q655.734 1479.26 650.086 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M676.22 1483.08 L681.104 1483.08 L681.104 1488.96 L676.22 1488.96 L676.22 1483.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M691.335 1454.4 L709.692 1454.4 L709.692 1458.33 L695.618 1458.33 L695.618 1466.8 Q696.636 1466.46 697.655 1466.29 Q698.673 1466.11 699.692 1466.11 Q705.479 1466.11 708.859 1469.28 Q712.238 1472.45 712.238 1477.87 Q712.238 1483.45 708.766 1486.55 Q705.294 1489.63 698.974 1489.63 Q696.798 1489.63 694.53 1489.26 Q692.285 1488.89 689.877 1488.15 L689.877 1483.45 Q691.96 1484.58 694.183 1485.14 Q696.405 1485.69 698.882 1485.69 Q702.886 1485.69 705.224 1483.59 Q707.562 1481.48 707.562 1477.87 Q707.562 1474.26 705.224 1472.15 Q702.886 1470.04 698.882 1470.04 Q697.007 1470.04 695.132 1470.46 Q693.28 1470.88 691.335 1471.76 L691.335 1454.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M731.451 1457.48 Q727.84 1457.48 726.011 1461.04 Q724.206 1464.58 724.206 1471.71 Q724.206 1478.82 726.011 1482.38 Q727.84 1485.92 731.451 1485.92 Q735.085 1485.92 736.891 1482.38 Q738.719 1478.82 738.719 1471.71 Q738.719 1464.58 736.891 1461.04 Q735.085 1457.48 731.451 1457.48 M731.451 1453.77 Q737.261 1453.77 740.317 1458.38 Q743.395 1462.96 743.395 1471.71 Q743.395 1480.44 740.317 1485.04 Q737.261 1489.63 731.451 1489.63 Q725.641 1489.63 722.562 1485.04 Q719.507 1480.44 719.507 1471.71 Q719.507 1462.96 722.562 1458.38 Q725.641 1453.77 731.451 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M779.784 1463.49 L769.205 1474.12 L779.784 1484.7 L777.029 1487.5 L766.404 1476.87 L755.78 1487.5 L753.048 1484.7 L763.604 1474.12 L753.048 1463.49 L755.78 1460.69 L766.404 1471.32 L777.029 1460.69 L779.784 1463.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M792.145 1485.02 L799.784 1485.02 L799.784 1458.66 L791.474 1460.32 L791.474 1456.06 L799.738 1454.4 L804.414 1454.4 L804.414 1485.02 L812.052 1485.02 L812.052 1488.96 L792.145 1488.96 L792.145 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M831.497 1457.48 Q827.886 1457.48 826.057 1461.04 Q824.251 1464.58 824.251 1471.71 Q824.251 1478.82 826.057 1482.38 Q827.886 1485.92 831.497 1485.92 Q835.131 1485.92 836.937 1482.38 Q838.765 1478.82 838.765 1471.71 Q838.765 1464.58 836.937 1461.04 Q835.131 1457.48 831.497 1457.48 M831.497 1453.77 Q837.307 1453.77 840.362 1458.38 Q843.441 1462.96 843.441 1471.71 Q843.441 1480.44 840.362 1485.04 Q837.307 1489.63 831.497 1489.63 Q825.687 1489.63 822.608 1485.04 Q819.552 1480.44 819.552 1471.71 Q819.552 1462.96 822.608 1458.38 Q825.687 1453.77 831.497 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M856.118 1436.78 L846.526 1451.77 L856.118 1451.77 L856.118 1436.78 M855.121 1433.47 L859.898 1433.47 L859.898 1451.77 L863.904 1451.77 L863.904 1454.93 L859.898 1454.93 L859.898 1461.55 L856.118 1461.55 L856.118 1454.93 L843.441 1454.93 L843.441 1451.26 L855.121 1433.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1158.57 1454.4 L1176.93 1454.4 L1176.93 1458.33 L1162.85 1458.33 L1162.85 1466.8 Q1163.87 1466.46 1164.89 1466.29 Q1165.91 1466.11 1166.93 1466.11 Q1172.72 1466.11 1176.1 1469.28 Q1179.47 1472.45 1179.47 1477.87 Q1179.47 1483.45 1176 1486.55 Q1172.53 1489.63 1166.21 1489.63 Q1164.04 1489.63 1161.77 1489.26 Q1159.52 1488.89 1157.11 1488.15 L1157.11 1483.45 Q1159.2 1484.58 1161.42 1485.14 Q1163.64 1485.69 1166.12 1485.69 Q1170.12 1485.69 1172.46 1483.59 Q1174.8 1481.48 1174.8 1477.87 Q1174.8 1474.26 1172.46 1472.15 Q1170.12 1470.04 1166.12 1470.04 Q1164.24 1470.04 1162.37 1470.46 Q1160.52 1470.88 1158.57 1471.76 L1158.57 1454.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1188.69 1483.08 L1193.57 1483.08 L1193.57 1488.96 L1188.69 1488.96 L1188.69 1483.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1213.76 1457.48 Q1210.15 1457.48 1208.32 1461.04 Q1206.51 1464.58 1206.51 1471.71 Q1206.51 1478.82 1208.32 1482.38 Q1210.15 1485.92 1213.76 1485.92 Q1217.39 1485.92 1219.2 1482.38 Q1221.03 1478.82 1221.03 1471.71 Q1221.03 1464.58 1219.2 1461.04 Q1217.39 1457.48 1213.76 1457.48 M1213.76 1453.77 Q1219.57 1453.77 1222.62 1458.38 Q1225.7 1462.96 1225.7 1471.71 Q1225.7 1480.44 1222.62 1485.04 Q1219.57 1489.63 1213.76 1489.63 Q1207.95 1489.63 1204.87 1485.04 Q1201.81 1480.44 1201.81 1471.71 Q1201.81 1462.96 1204.87 1458.38 Q1207.95 1453.77 1213.76 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1243.92 1457.48 Q1240.31 1457.48 1238.48 1461.04 Q1236.67 1464.58 1236.67 1471.71 Q1236.67 1478.82 1238.48 1482.38 Q1240.31 1485.92 1243.92 1485.92 Q1247.55 1485.92 1249.36 1482.38 Q1251.19 1478.82 1251.19 1471.71 Q1251.19 1464.58 1249.36 1461.04 Q1247.55 1457.48 1243.92 1457.48 M1243.92 1453.77 Q1249.73 1453.77 1252.78 1458.38 Q1255.86 1462.96 1255.86 1471.71 Q1255.86 1480.44 1252.78 1485.04 Q1249.73 1489.63 1243.92 1489.63 Q1238.11 1489.63 1235.03 1485.04 Q1231.97 1480.44 1231.97 1471.71 Q1231.97 1462.96 1235.03 1458.38 Q1238.11 1453.77 1243.92 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1292.25 1463.49 L1281.67 1474.12 L1292.25 1484.7 L1289.5 1487.5 L1278.87 1476.87 L1268.25 1487.5 L1265.52 1484.7 L1276.07 1474.12 L1265.52 1463.49 L1268.25 1460.69 L1278.87 1471.32 L1289.5 1460.69 L1292.25 1463.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1304.61 1485.02 L1312.25 1485.02 L1312.25 1458.66 L1303.94 1460.32 L1303.94 1456.06 L1312.21 1454.4 L1316.88 1454.4 L1316.88 1485.02 L1324.52 1485.02 L1324.52 1488.96 L1304.61 1488.96 L1304.61 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1343.96 1457.48 Q1340.35 1457.48 1338.52 1461.04 Q1336.72 1464.58 1336.72 1471.71 Q1336.72 1478.82 1338.52 1482.38 Q1340.35 1485.92 1343.96 1485.92 Q1347.6 1485.92 1349.4 1482.38 Q1351.23 1478.82 1351.23 1471.71 Q1351.23 1464.58 1349.4 1461.04 Q1347.6 1457.48 1343.96 1457.48 M1343.96 1453.77 Q1349.77 1453.77 1352.83 1458.38 Q1355.91 1462.96 1355.91 1471.71 Q1355.91 1480.44 1352.83 1485.04 Q1349.77 1489.63 1343.96 1489.63 Q1338.15 1489.63 1335.08 1485.04 Q1332.02 1480.44 1332.02 1471.71 Q1332.02 1462.96 1335.08 1458.38 Q1338.15 1453.77 1343.96 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1368.59 1436.78 L1358.99 1451.77 L1368.59 1451.77 L1368.59 1436.78 M1367.59 1433.47 L1372.37 1433.47 L1372.37 1451.77 L1376.37 1451.77 L1376.37 1454.93 L1372.37 1454.93 L1372.37 1461.55 L1368.59 1461.55 L1368.59 1454.93 L1355.91 1454.93 L1355.91 1451.26 L1367.59 1433.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1669.79 1454.4 L1692.01 1454.4 L1692.01 1456.39 L1679.47 1488.96 L1674.58 1488.96 L1686.39 1458.33 L1669.79 1458.33 L1669.79 1454.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1701.13 1483.08 L1706.02 1483.08 L1706.02 1488.96 L1701.13 1488.96 L1701.13 1483.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1716.25 1454.4 L1734.6 1454.4 L1734.6 1458.33 L1720.53 1458.33 L1720.53 1466.8 Q1721.55 1466.46 1722.57 1466.29 Q1723.59 1466.11 1724.6 1466.11 Q1730.39 1466.11 1733.77 1469.28 Q1737.15 1472.45 1737.15 1477.87 Q1737.15 1483.45 1733.68 1486.55 Q1730.21 1489.63 1723.89 1489.63 Q1721.71 1489.63 1719.44 1489.26 Q1717.2 1488.89 1714.79 1488.15 L1714.79 1483.45 Q1716.87 1484.58 1719.1 1485.14 Q1721.32 1485.69 1723.79 1485.69 Q1727.8 1485.69 1730.14 1483.59 Q1732.47 1481.48 1732.47 1477.87 Q1732.47 1474.26 1730.14 1472.15 Q1727.8 1470.04 1723.79 1470.04 Q1721.92 1470.04 1720.04 1470.46 Q1718.19 1470.88 1716.25 1471.76 L1716.25 1454.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1756.36 1457.48 Q1752.75 1457.48 1750.92 1461.04 Q1749.12 1464.58 1749.12 1471.71 Q1749.12 1478.82 1750.92 1482.38 Q1752.75 1485.92 1756.36 1485.92 Q1760 1485.92 1761.8 1482.38 Q1763.63 1478.82 1763.63 1471.71 Q1763.63 1464.58 1761.8 1461.04 Q1760 1457.48 1756.36 1457.48 M1756.36 1453.77 Q1762.17 1453.77 1765.23 1458.38 Q1768.31 1462.96 1768.31 1471.71 Q1768.31 1480.44 1765.23 1485.04 Q1762.17 1489.63 1756.36 1489.63 Q1750.55 1489.63 1747.47 1485.04 Q1744.42 1480.44 1744.42 1471.71 Q1744.42 1462.96 1747.47 1458.38 Q1750.55 1453.77 1756.36 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1804.7 1463.49 L1794.12 1474.12 L1804.7 1484.7 L1801.94 1487.5 L1791.32 1476.87 L1780.69 1487.5 L1777.96 1484.7 L1788.52 1474.12 L1777.96 1463.49 L1780.69 1460.69 L1791.32 1471.32 L1801.94 1460.69 L1804.7 1463.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1817.06 1485.02 L1824.7 1485.02 L1824.7 1458.66 L1816.39 1460.32 L1816.39 1456.06 L1824.65 1454.4 L1829.33 1454.4 L1829.33 1485.02 L1836.96 1485.02 L1836.96 1488.96 L1817.06 1488.96 L1817.06 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1856.41 1457.48 Q1852.8 1457.48 1850.97 1461.04 Q1849.16 1464.58 1849.16 1471.71 Q1849.16 1478.82 1850.97 1482.38 Q1852.8 1485.92 1856.41 1485.92 Q1860.04 1485.92 1861.85 1482.38 Q1863.68 1478.82 1863.68 1471.71 Q1863.68 1464.58 1861.85 1461.04 Q1860.04 1457.48 1856.41 1457.48 M1856.41 1453.77 Q1862.22 1453.77 1865.28 1458.38 Q1868.35 1462.96 1868.35 1471.71 Q1868.35 1480.44 1865.28 1485.04 Q1862.22 1489.63 1856.41 1489.63 Q1850.6 1489.63 1847.52 1485.04 Q1844.46 1480.44 1844.46 1471.71 Q1844.46 1462.96 1847.52 1458.38 Q1850.6 1453.77 1856.41 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1881.03 1436.78 L1871.44 1451.77 L1881.03 1451.77 L1881.03 1436.78 M1880.03 1433.47 L1884.81 1433.47 L1884.81 1451.77 L1888.82 1451.77 L1888.82 1454.93 L1884.81 1454.93 L1884.81 1461.55 L1881.03 1461.55 L1881.03 1454.93 L1868.35 1454.93 L1868.35 1451.26 L1880.03 1433.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2184.83 1485.02 L2192.47 1485.02 L2192.47 1458.66 L2184.16 1460.32 L2184.16 1456.06 L2192.42 1454.4 L2197.1 1454.4 L2197.1 1485.02 L2204.74 1485.02 L2204.74 1488.96 L2184.83 1488.96 L2184.83 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2214.18 1483.08 L2219.06 1483.08 L2219.06 1488.96 L2214.18 1488.96 L2214.18 1483.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2239.25 1457.48 Q2235.64 1457.48 2233.81 1461.04 Q2232 1464.58 2232 1471.71 Q2232 1478.82 2233.81 1482.38 Q2235.64 1485.92 2239.25 1485.92 Q2242.88 1485.92 2244.69 1482.38 Q2246.52 1478.82 2246.52 1471.71 Q2246.52 1464.58 2244.69 1461.04 Q2242.88 1457.48 2239.25 1457.48 M2239.25 1453.77 Q2245.06 1453.77 2248.12 1458.38 Q2251.19 1462.96 2251.19 1471.71 Q2251.19 1480.44 2248.12 1485.04 Q2245.06 1489.63 2239.25 1489.63 Q2233.44 1489.63 2230.36 1485.04 Q2227.31 1480.44 2227.31 1471.71 Q2227.31 1462.96 2230.36 1458.38 Q2233.44 1453.77 2239.25 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2269.41 1457.48 Q2265.8 1457.48 2263.97 1461.04 Q2262.17 1464.58 2262.17 1471.71 Q2262.17 1478.82 2263.97 1482.38 Q2265.8 1485.92 2269.41 1485.92 Q2273.05 1485.92 2274.85 1482.38 Q2276.68 1478.82 2276.68 1471.71 Q2276.68 1464.58 2274.85 1461.04 Q2273.05 1457.48 2269.41 1457.48 M2269.41 1453.77 Q2275.22 1453.77 2278.28 1458.38 Q2281.36 1462.96 2281.36 1471.71 Q2281.36 1480.44 2278.28 1485.04 Q2275.22 1489.63 2269.41 1489.63 Q2263.6 1489.63 2260.52 1485.04 Q2257.47 1480.44 2257.47 1471.71 Q2257.47 1462.96 2260.52 1458.38 Q2263.6 1453.77 2269.41 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2317.74 1463.49 L2307.17 1474.12 L2317.74 1484.7 L2314.99 1487.5 L2304.37 1476.87 L2293.74 1487.5 L2291.01 1484.7 L2301.56 1474.12 L2291.01 1463.49 L2293.74 1460.69 L2304.37 1471.32 L2314.99 1460.69 L2317.74 1463.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2330.11 1485.02 L2337.74 1485.02 L2337.74 1458.66 L2329.43 1460.32 L2329.43 1456.06 L2337.7 1454.4 L2342.37 1454.4 L2342.37 1485.02 L2350.01 1485.02 L2350.01 1488.96 L2330.11 1488.96 L2330.11 1485.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2369.46 1457.48 Q2365.85 1457.48 2364.02 1461.04 Q2362.21 1464.58 2362.21 1471.71 Q2362.21 1478.82 2364.02 1482.38 Q2365.85 1485.92 2369.46 1485.92 Q2373.09 1485.92 2374.9 1482.38 Q2376.73 1478.82 2376.73 1471.71 Q2376.73 1464.58 2374.9 1461.04 Q2373.09 1457.48 2369.46 1457.48 M2369.46 1453.77 Q2375.27 1453.77 2378.32 1458.38 Q2381.4 1462.96 2381.4 1471.71 Q2381.4 1480.44 2378.32 1485.04 Q2375.27 1489.63 2369.46 1489.63 Q2363.65 1489.63 2360.57 1485.04 Q2357.51 1480.44 2357.51 1471.71 Q2357.51 1462.96 2360.57 1458.38 Q2363.65 1453.77 2369.46 1453.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2382.59 1433.47 L2397.5 1433.47 L2397.5 1436.66 L2386.07 1436.66 L2386.07 1443.55 Q2386.89 1443.27 2387.72 1443.13 Q2388.55 1442.98 2389.38 1442.98 Q2394.08 1442.98 2396.82 1445.56 Q2399.57 1448.14 2399.57 1452.54 Q2399.57 1457.07 2396.75 1459.59 Q2393.93 1462.09 2388.79 1462.09 Q2387.03 1462.09 2385.18 1461.79 Q2383.36 1461.49 2381.4 1460.89 L2381.4 1457.07 Q2383.09 1457.99 2384.9 1458.44 Q2386.71 1458.89 2388.72 1458.89 Q2391.97 1458.89 2393.87 1457.18 Q2395.77 1455.47 2395.77 1452.54 Q2395.77 1449.6 2393.87 1447.89 Q2391.97 1446.18 2388.72 1446.18 Q2387.19 1446.18 2385.67 1446.52 Q2384.17 1446.86 2382.59 1447.57 L2382.59 1433.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M924.859 1531.95 L924.859 1549.8 L932.943 1549.8 Q937.431 1549.8 939.882 1547.48 Q942.333 1545.16 942.333 1540.86 Q942.333 1536.6 939.882 1534.27 Q937.431 1531.95 932.943 1531.95 L924.859 1531.95 M918.43 1526.67 L932.943 1526.67 Q940.932 1526.67 945.006 1530.29 Q949.112 1533.89 949.112 1540.86 Q949.112 1547.9 945.006 1551.49 Q940.932 1555.09 932.943 1555.09 L924.859 1555.09 L924.859 1574.19 L918.43 1574.19 L918.43 1526.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M976.994 1544.01 Q976.007 1543.44 974.83 1543.18 Q973.684 1542.9 972.284 1542.9 Q967.318 1542.9 964.645 1546.14 Q962.003 1549.36 962.003 1555.41 L962.003 1574.19 L956.115 1574.19 L956.115 1538.54 L962.003 1538.54 L962.003 1544.08 Q963.849 1540.83 966.809 1539.27 Q969.769 1537.68 974.002 1537.68 Q974.607 1537.68 975.339 1537.77 Q976.071 1537.84 976.962 1538 L976.994 1544.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1012.2 1554.9 L1012.2 1557.76 L985.27 1557.76 Q985.652 1563.81 988.898 1566.99 Q992.176 1570.14 998.001 1570.14 Q1001.37 1570.14 1004.53 1569.32 Q1007.71 1568.49 1010.83 1566.83 L1010.83 1572.37 Q1007.68 1573.71 1004.37 1574.41 Q1001.06 1575.11 997.651 1575.11 Q989.121 1575.11 984.124 1570.14 Q979.159 1565.18 979.159 1556.71 Q979.159 1547.96 983.869 1542.83 Q988.612 1537.68 996.632 1537.68 Q1003.83 1537.68 1008 1542.33 Q1012.2 1546.94 1012.2 1554.9 M1006.34 1553.18 Q1006.28 1548.37 1003.63 1545.51 Q1001.02 1542.64 996.696 1542.64 Q991.794 1542.64 988.834 1545.41 Q985.906 1548.18 985.461 1553.21 L1006.34 1553.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1044.53 1539.59 L1044.53 1545.13 Q1042.05 1543.85 1039.38 1543.22 Q1036.7 1542.58 1033.84 1542.58 Q1029.48 1542.58 1027.28 1543.92 Q1025.12 1545.25 1025.12 1547.93 Q1025.12 1549.96 1026.68 1551.14 Q1028.24 1552.29 1032.95 1553.34 L1034.95 1553.78 Q1041.19 1555.12 1043.8 1557.57 Q1046.44 1559.99 1046.44 1564.35 Q1046.44 1569.32 1042.5 1572.21 Q1038.58 1575.11 1031.71 1575.11 Q1028.84 1575.11 1025.72 1574.54 Q1022.64 1573.99 1019.2 1572.88 L1019.2 1566.83 Q1022.45 1568.52 1025.6 1569.38 Q1028.75 1570.21 1031.83 1570.21 Q1035.97 1570.21 1038.2 1568.81 Q1040.43 1567.37 1040.43 1564.8 Q1040.43 1562.41 1038.81 1561.14 Q1037.21 1559.86 1031.77 1558.68 L1029.73 1558.21 Q1024.29 1557.06 1021.87 1554.71 Q1019.45 1552.32 1019.45 1548.18 Q1019.45 1543.15 1023.02 1540.42 Q1026.58 1537.68 1033.14 1537.68 Q1036.39 1537.68 1039.25 1538.16 Q1042.12 1538.63 1044.53 1539.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1078.5 1539.59 L1078.5 1545.13 Q1076.01 1543.85 1073.34 1543.22 Q1070.67 1542.58 1067.8 1542.58 Q1063.44 1542.58 1061.24 1543.92 Q1059.08 1545.25 1059.08 1547.93 Q1059.08 1549.96 1060.64 1551.14 Q1062.2 1552.29 1066.91 1553.34 L1068.91 1553.78 Q1075.15 1555.12 1077.76 1557.57 Q1080.41 1559.99 1080.41 1564.35 Q1080.41 1569.32 1076.46 1572.21 Q1072.54 1575.11 1065.67 1575.11 Q1062.8 1575.11 1059.68 1574.54 Q1056.6 1573.99 1053.16 1572.88 L1053.16 1566.83 Q1056.41 1568.52 1059.56 1569.38 Q1062.71 1570.21 1065.8 1570.21 Q1069.93 1570.21 1072.16 1568.81 Q1074.39 1567.37 1074.39 1564.8 Q1074.39 1562.41 1072.77 1561.14 Q1071.17 1559.86 1065.73 1558.68 L1063.7 1558.21 Q1058.25 1557.06 1055.83 1554.71 Q1053.41 1552.32 1053.41 1548.18 Q1053.41 1543.15 1056.98 1540.42 Q1060.54 1537.68 1067.1 1537.68 Q1070.35 1537.68 1073.21 1538.16 Q1076.08 1538.63 1078.5 1539.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1089.13 1560.12 L1089.13 1538.54 L1094.98 1538.54 L1094.98 1559.89 Q1094.98 1564.96 1096.96 1567.5 Q1098.93 1570.02 1102.88 1570.02 Q1107.62 1570.02 1110.36 1566.99 Q1113.12 1563.97 1113.12 1558.75 L1113.12 1538.54 L1118.98 1538.54 L1118.98 1574.19 L1113.12 1574.19 L1113.12 1568.71 Q1110.99 1571.96 1108.16 1573.55 Q1105.36 1575.11 1101.63 1575.11 Q1095.49 1575.11 1092.31 1571.29 Q1089.13 1567.47 1089.13 1560.12 M1103.86 1537.68 L1103.86 1537.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1151.7 1544.01 Q1150.71 1543.44 1149.54 1543.18 Q1148.39 1542.9 1146.99 1542.9 Q1142.03 1542.9 1139.35 1546.14 Q1136.71 1549.36 1136.71 1555.41 L1136.71 1574.19 L1130.82 1574.19 L1130.82 1538.54 L1136.71 1538.54 L1136.71 1544.08 Q1138.56 1540.83 1141.52 1539.27 Q1144.48 1537.68 1148.71 1537.68 Q1149.31 1537.68 1150.05 1537.77 Q1150.78 1537.84 1151.67 1538 L1151.7 1544.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1186.9 1554.9 L1186.9 1557.76 L1159.98 1557.76 Q1160.36 1563.81 1163.6 1566.99 Q1166.88 1570.14 1172.71 1570.14 Q1176.08 1570.14 1179.23 1569.32 Q1182.42 1568.49 1185.53 1566.83 L1185.53 1572.37 Q1182.38 1573.71 1179.07 1574.41 Q1175.76 1575.11 1172.36 1575.11 Q1163.83 1575.11 1158.83 1570.14 Q1153.87 1565.18 1153.87 1556.71 Q1153.87 1547.96 1158.58 1542.83 Q1163.32 1537.68 1171.34 1537.68 Q1178.53 1537.68 1182.7 1542.33 Q1186.9 1546.94 1186.9 1554.9 M1181.05 1553.18 Q1180.98 1548.37 1178.34 1545.51 Q1175.73 1542.64 1171.4 1542.64 Q1166.5 1542.64 1163.54 1545.41 Q1160.61 1548.18 1160.17 1553.21 L1181.05 1553.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1223.92 1531.95 L1223.92 1568.9 L1231.69 1568.9 Q1241.52 1568.9 1246.07 1564.45 Q1250.66 1559.99 1250.66 1550.38 Q1250.66 1540.83 1246.07 1536.4 Q1241.52 1531.95 1231.69 1531.95 L1223.92 1531.95 M1217.49 1526.67 L1230.7 1526.67 Q1244.51 1526.67 1250.97 1532.43 Q1257.44 1538.16 1257.44 1550.38 Q1257.44 1562.66 1250.94 1568.42 Q1244.45 1574.19 1230.7 1574.19 L1217.49 1574.19 L1217.49 1526.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1288.09 1544.01 Q1287.1 1543.44 1285.92 1543.18 Q1284.78 1542.9 1283.38 1542.9 Q1278.41 1542.9 1275.74 1546.14 Q1273.1 1549.36 1273.1 1555.41 L1273.1 1574.19 L1267.21 1574.19 L1267.21 1538.54 L1273.1 1538.54 L1273.1 1544.08 Q1274.94 1540.83 1277.9 1539.27 Q1280.86 1537.68 1285.09 1537.68 Q1285.7 1537.68 1286.43 1537.77 Q1287.16 1537.84 1288.05 1538 L1288.09 1544.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1306.61 1542.64 Q1301.9 1542.64 1299.16 1546.34 Q1296.43 1550 1296.43 1556.39 Q1296.43 1562.79 1299.13 1566.48 Q1301.87 1570.14 1306.61 1570.14 Q1311.29 1570.14 1314.03 1566.45 Q1316.76 1562.76 1316.76 1556.39 Q1316.76 1550.06 1314.03 1546.37 Q1311.29 1542.64 1306.61 1542.64 M1306.61 1537.68 Q1314.25 1537.68 1318.61 1542.64 Q1322.97 1547.61 1322.97 1556.39 Q1322.97 1565.15 1318.61 1570.14 Q1314.25 1575.11 1306.61 1575.11 Q1298.94 1575.11 1294.58 1570.14 Q1290.25 1565.15 1290.25 1556.39 Q1290.25 1547.61 1294.58 1542.64 Q1298.94 1537.68 1306.61 1537.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1338.34 1568.84 L1338.34 1587.74 L1332.46 1587.74 L1332.46 1538.54 L1338.34 1538.54 L1338.34 1543.95 Q1340.19 1540.77 1342.99 1539.24 Q1345.82 1537.68 1349.74 1537.68 Q1356.23 1537.68 1360.27 1542.83 Q1364.35 1547.99 1364.35 1556.39 Q1364.35 1564.8 1360.27 1569.95 Q1356.23 1575.11 1349.74 1575.11 Q1345.82 1575.11 1342.99 1573.58 Q1340.19 1572.02 1338.34 1568.84 M1358.27 1556.39 Q1358.27 1549.93 1355.59 1546.27 Q1352.95 1542.58 1348.31 1542.58 Q1343.66 1542.58 1340.99 1546.27 Q1338.34 1549.93 1338.34 1556.39 Q1338.34 1562.85 1340.99 1566.55 Q1343.66 1570.21 1348.31 1570.21 Q1352.95 1570.21 1355.59 1566.55 Q1358.27 1562.85 1358.27 1556.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1375.55 1566.1 L1382.27 1566.1 L1382.27 1571.58 L1377.05 1581.76 L1372.94 1581.76 L1375.55 1571.58 L1375.55 1566.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1431.63 1533 L1418.58 1568.84 L1444.71 1568.84 L1431.63 1533 M1409.86 1574.19 L1428 1526.67 L1435.29 1526.67 L1453.4 1574.19 L1409.86 1574.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1466.77 1531.95 L1466.77 1549.8 L1474.86 1549.8 Q1479.34 1549.8 1481.79 1547.48 Q1484.25 1545.16 1484.25 1540.86 Q1484.25 1536.6 1481.79 1534.27 Q1479.34 1531.95 1474.86 1531.95 L1466.77 1531.95 M1460.34 1526.67 L1474.86 1526.67 Q1482.85 1526.67 1486.92 1530.29 Q1491.02 1533.89 1491.02 1540.86 Q1491.02 1547.9 1486.92 1551.49 Q1482.85 1555.09 1474.86 1555.09 L1466.77 1555.09 L1466.77 1574.19 L1460.34 1574.19 L1460.34 1526.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1534.18 1524.72 Q1529.92 1532.04 1527.85 1539.21 Q1525.78 1546.37 1525.78 1553.72 Q1525.78 1561.07 1527.85 1568.3 Q1529.95 1575.49 1534.18 1582.78 L1529.09 1582.78 Q1524.32 1575.3 1521.93 1568.07 Q1519.58 1560.85 1519.58 1553.72 Q1519.58 1546.62 1521.93 1539.43 Q1524.29 1532.24 1529.09 1524.72 L1534.18 1524.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1552.23 1531.95 L1552.23 1549.8 L1560.32 1549.8 Q1564.8 1549.8 1567.25 1547.48 Q1569.71 1545.16 1569.71 1540.86 Q1569.71 1536.6 1567.25 1534.27 Q1564.8 1531.95 1560.32 1531.95 L1552.23 1531.95 M1545.8 1526.67 L1560.32 1526.67 Q1568.3 1526.67 1572.38 1530.29 Q1576.48 1533.89 1576.48 1540.86 Q1576.48 1547.9 1572.38 1551.49 Q1568.3 1555.09 1560.32 1555.09 L1552.23 1555.09 L1552.23 1574.19 L1545.8 1574.19 L1545.8 1526.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1598.13 1556.27 Q1591.03 1556.27 1588.29 1557.89 Q1585.56 1559.51 1585.56 1563.43 Q1585.56 1566.55 1587.59 1568.39 Q1589.66 1570.21 1593.19 1570.21 Q1598.06 1570.21 1600.99 1566.77 Q1603.95 1563.3 1603.95 1557.57 L1603.95 1556.27 L1598.13 1556.27 M1609.81 1553.85 L1609.81 1574.19 L1603.95 1574.19 L1603.95 1568.77 Q1601.95 1572.02 1598.96 1573.58 Q1595.96 1575.11 1591.63 1575.11 Q1586.16 1575.11 1582.91 1572.05 Q1579.7 1568.97 1579.7 1563.81 Q1579.7 1557.79 1583.71 1554.74 Q1587.75 1551.68 1595.74 1551.68 L1603.95 1551.68 L1603.95 1551.11 Q1603.95 1547.07 1601.28 1544.87 Q1598.64 1542.64 1593.83 1542.64 Q1590.78 1542.64 1587.88 1543.38 Q1584.98 1544.11 1582.31 1545.57 L1582.31 1540.16 Q1585.52 1538.92 1588.55 1538.31 Q1591.57 1537.68 1594.44 1537.68 Q1602.17 1537.68 1605.99 1541.69 Q1609.81 1545.7 1609.81 1553.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1620.95 1524.72 L1626.04 1524.72 Q1630.82 1532.24 1633.17 1539.43 Q1635.56 1546.62 1635.56 1553.72 Q1635.56 1560.85 1633.17 1568.07 Q1630.82 1575.3 1626.04 1582.78 L1620.95 1582.78 Q1625.18 1575.49 1627.25 1568.3 Q1629.35 1561.07 1629.35 1553.72 Q1629.35 1546.37 1627.25 1539.21 Q1625.18 1532.04 1620.95 1524.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  201.232,1210.57 2352.76,1210.57 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  201.232,957.235 2352.76,957.235 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  201.232,703.901 2352.76,703.901 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  201.232,450.566 2352.76,450.566 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  201.232,197.232 2352.76,197.232 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,1410.9 201.232,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,1210.57 220.13,1210.57 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,957.235 220.13,957.235 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,703.901 220.13,703.901 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,450.566 220.13,450.566 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  201.232,197.232 220.13,197.232 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M158.103 1209.22 Q161.459 1209.93 163.334 1212.2 Q165.232 1214.47 165.232 1217.8 Q165.232 1222.92 161.714 1225.72 Q158.195 1228.52 151.714 1228.52 Q149.538 1228.52 147.223 1228.08 Q144.931 1227.66 142.478 1226.81 L142.478 1222.29 Q144.422 1223.43 146.737 1224.01 Q149.052 1224.59 151.575 1224.59 Q155.973 1224.59 158.265 1222.85 Q160.579 1221.11 160.579 1217.8 Q160.579 1214.75 158.427 1213.03 Q156.297 1211.3 152.478 1211.3 L148.45 1211.3 L148.45 1207.46 L152.663 1207.46 Q156.112 1207.46 157.94 1206.09 Q159.769 1204.7 159.769 1202.11 Q159.769 1199.45 157.871 1198.03 Q155.996 1196.6 152.478 1196.6 Q150.556 1196.6 148.357 1197.02 Q146.158 1197.43 143.519 1198.31 L143.519 1194.15 Q146.181 1193.4 148.496 1193.03 Q150.834 1192.66 152.894 1192.66 Q158.218 1192.66 161.32 1195.09 Q164.422 1197.5 164.422 1201.62 Q164.422 1204.49 162.778 1206.48 Q161.135 1208.45 158.103 1209.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M153.704 955.372 Q150.556 955.372 148.704 957.524 Q146.876 959.677 146.876 963.427 Q146.876 967.154 148.704 969.33 Q150.556 971.483 153.704 971.483 Q156.853 971.483 158.681 969.33 Q160.533 967.154 160.533 963.427 Q160.533 959.677 158.681 957.524 Q156.853 955.372 153.704 955.372 M162.987 940.719 L162.987 944.978 Q161.227 944.145 159.422 943.705 Q157.64 943.265 155.88 943.265 Q151.251 943.265 148.797 946.39 Q146.366 949.515 146.019 955.834 Q147.385 953.821 149.445 952.756 Q151.505 951.668 153.982 951.668 Q159.19 951.668 162.2 954.839 Q165.232 957.987 165.232 963.427 Q165.232 968.751 162.084 971.969 Q158.936 975.186 153.704 975.186 Q147.709 975.186 144.538 970.603 Q141.366 965.996 141.366 957.27 Q141.366 949.075 145.255 944.214 Q149.144 939.33 155.695 939.33 Q157.454 939.33 159.237 939.677 Q161.042 940.024 162.987 940.719 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M143.612 720.463 L143.612 716.204 Q145.371 717.037 147.177 717.477 Q148.982 717.917 150.718 717.917 Q155.348 717.917 157.778 714.815 Q160.232 711.69 160.579 705.347 Q159.237 707.338 157.177 708.403 Q155.116 709.468 152.616 709.468 Q147.431 709.468 144.399 706.343 Q141.39 703.195 141.39 697.755 Q141.39 692.431 144.538 689.213 Q147.686 685.996 152.917 685.996 Q158.913 685.996 162.061 690.602 Q165.232 695.185 165.232 703.935 Q165.232 712.107 161.343 716.991 Q157.478 721.852 150.927 721.852 Q149.167 721.852 147.362 721.505 Q145.556 721.158 143.612 720.463 M152.917 705.81 Q156.065 705.81 157.894 703.658 Q159.746 701.505 159.746 697.755 Q159.746 694.028 157.894 691.875 Q156.065 689.699 152.917 689.699 Q149.769 689.699 147.917 691.875 Q146.089 694.028 146.089 697.755 Q146.089 701.505 147.917 703.658 Q149.769 705.81 152.917 705.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M115.533 463.911 L123.172 463.911 L123.172 437.546 L114.862 439.212 L114.862 434.953 L123.126 433.286 L127.802 433.286 L127.802 463.911 L135.441 463.911 L135.441 467.846 L115.533 467.846 L115.533 463.911 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M148.913 463.911 L165.232 463.911 L165.232 467.846 L143.288 467.846 L143.288 463.911 Q145.95 461.157 150.533 456.527 Q155.14 451.874 156.32 450.532 Q158.565 448.009 159.445 446.272 Q160.348 444.513 160.348 442.823 Q160.348 440.069 158.403 438.333 Q156.482 436.597 153.38 436.597 Q151.181 436.597 148.728 437.36 Q146.297 438.124 143.519 439.675 L143.519 434.953 Q146.343 433.819 148.797 433.24 Q151.251 432.661 153.288 432.661 Q158.658 432.661 161.852 435.347 Q165.047 438.032 165.047 442.522 Q165.047 444.652 164.237 446.573 Q163.45 448.472 161.343 451.064 Q160.765 451.735 157.663 454.953 Q154.561 458.147 148.913 463.911 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M114.931 210.577 L122.57 210.577 L122.57 184.211 L114.26 185.878 L114.26 181.619 L122.524 179.952 L127.2 179.952 L127.2 210.577 L134.839 210.577 L134.839 214.512 L114.931 214.512 L114.931 210.577 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M144.329 179.952 L162.686 179.952 L162.686 183.887 L148.612 183.887 L148.612 192.359 Q149.63 192.012 150.649 191.85 Q151.667 191.665 152.686 191.665 Q158.473 191.665 161.852 194.836 Q165.232 198.008 165.232 203.424 Q165.232 209.003 161.76 212.105 Q158.288 215.183 151.968 215.183 Q149.792 215.183 147.524 214.813 Q145.279 214.443 142.871 213.702 L142.871 209.003 Q144.954 210.137 147.177 210.693 Q149.399 211.248 151.876 211.248 Q155.88 211.248 158.218 209.142 Q160.556 207.035 160.556 203.424 Q160.556 199.813 158.218 197.707 Q155.88 195.6 151.876 195.6 Q150.001 195.6 148.126 196.017 Q146.274 196.434 144.329 197.313 L144.329 179.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M16.4842 1028.37 L16.4842 1021.94 L35.9632 1021.94 L35.9632 998.578 L16.4842 998.578 L16.4842 992.149 L64.0042 992.149 L64.0042 998.578 L41.3741 998.578 L41.3741 1021.94 L64.0042 1021.94 L64.0042 1028.37 L16.4842 1028.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M44.7161 949.117 L47.5806 949.117 L47.5806 976.044 Q53.6281 975.662 56.8109 972.415 Q59.9619 969.137 59.9619 963.312 Q59.9619 959.939 59.1344 956.788 Q58.3069 953.605 56.6518 950.486 L62.1899 950.486 Q63.5267 953.637 64.227 956.947 Q64.9272 960.257 64.9272 963.663 Q64.9272 972.193 59.9619 977.19 Q54.9967 982.155 46.5303 982.155 Q37.7774 982.155 32.6531 977.444 Q27.4968 972.702 27.4968 964.681 Q27.4968 957.488 32.1438 953.318 Q36.7589 949.117 44.7161 949.117 M42.9973 954.973 Q38.1912 955.037 35.3266 957.679 Q32.4621 960.289 32.4621 964.617 Q32.4621 969.519 35.2312 972.479 Q38.0002 975.407 43.0292 975.853 L42.9973 954.973 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M46.0847 923.304 Q46.0847 930.402 47.7079 933.139 Q49.3312 935.876 53.2461 935.876 Q56.3653 935.876 58.2114 933.839 Q60.0256 931.77 60.0256 928.237 Q60.0256 923.368 56.5881 920.439 Q53.1188 917.479 47.3897 917.479 L46.0847 917.479 L46.0847 923.304 M43.6657 911.623 L64.0042 911.623 L64.0042 917.479 L58.5933 917.479 Q61.8398 919.485 63.3994 922.476 Q64.9272 925.468 64.9272 929.797 Q64.9272 935.272 61.8716 938.518 Q58.7843 941.733 53.6281 941.733 Q47.6125 941.733 44.5569 937.722 Q41.5014 933.68 41.5014 925.691 L41.5014 917.479 L40.9285 917.479 Q36.8862 917.479 34.6901 920.153 Q32.4621 922.795 32.4621 927.601 Q32.4621 930.656 33.1941 933.553 Q33.9262 936.449 35.3903 939.123 L29.9795 939.123 Q28.7381 935.908 28.1334 932.884 Q27.4968 929.861 27.4968 926.996 Q27.4968 919.262 31.5072 915.442 Q35.5176 911.623 43.6657 911.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M18.2347 893.767 L28.3562 893.767 L28.3562 881.704 L32.9077 881.704 L32.9077 893.767 L52.2594 893.767 Q56.6199 893.767 57.8613 892.589 Q59.1026 891.38 59.1026 887.72 L59.1026 881.704 L64.0042 881.704 L64.0042 887.72 Q64.0042 894.499 61.4897 897.077 Q58.9434 899.655 52.2594 899.655 L32.9077 899.655 L32.9077 903.952 L28.3562 903.952 L28.3562 899.655 L18.2347 899.655 L18.2347 893.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M41.7242 830.492 Q42.4244 828.423 44.7161 826.482 Q47.0077 824.508 51.0181 822.535 L64.0042 816.01 L64.0042 822.917 L51.8138 828.996 Q47.0395 831.351 45.48 833.579 Q43.9204 835.776 43.9204 839.595 L43.9204 846.597 L64.0042 846.597 L64.0042 853.027 L16.4842 853.027 L16.4842 838.513 Q16.4842 830.365 19.8898 826.354 Q23.2955 822.344 30.1704 822.344 Q34.6582 822.344 37.6183 824.445 Q40.5784 826.513 41.7242 830.492 M21.7677 846.597 L38.6368 846.597 L38.6368 838.513 Q38.6368 833.866 36.5043 831.511 Q34.34 829.123 30.1704 829.123 Q26.0009 829.123 23.9002 831.511 Q21.7677 833.866 21.7677 838.513 L21.7677 846.597 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M46.0847 793.221 Q46.0847 800.319 47.7079 803.056 Q49.3312 805.793 53.2461 805.793 Q56.3653 805.793 58.2114 803.756 Q60.0256 801.687 60.0256 798.154 Q60.0256 793.284 56.5881 790.356 Q53.1188 787.396 47.3897 787.396 L46.0847 787.396 L46.0847 793.221 M43.6657 781.54 L64.0042 781.54 L64.0042 787.396 L58.5933 787.396 Q61.8398 789.401 63.3994 792.393 Q64.9272 795.385 64.9272 799.714 Q64.9272 805.188 61.8716 808.435 Q58.7843 811.649 53.6281 811.649 Q47.6125 811.649 44.5569 807.639 Q41.5014 803.597 41.5014 795.608 L41.5014 787.396 L40.9285 787.396 Q36.8862 787.396 34.6901 790.07 Q32.4621 792.712 32.4621 797.518 Q32.4621 800.573 33.1941 803.47 Q33.9262 806.366 35.3903 809.04 L29.9795 809.04 Q28.7381 805.825 28.1334 802.801 Q27.4968 799.777 27.4968 796.913 Q27.4968 789.179 31.5072 785.359 Q35.5176 781.54 43.6657 781.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M18.2347 763.684 L28.3562 763.684 L28.3562 751.621 L32.9077 751.621 L32.9077 763.684 L52.2594 763.684 Q56.6199 763.684 57.8613 762.506 Q59.1026 761.297 59.1026 757.636 L59.1026 751.621 L64.0042 751.621 L64.0042 757.636 Q64.0042 764.416 61.4897 766.994 Q58.9434 769.572 52.2594 769.572 L32.9077 769.572 L32.9077 773.869 L28.3562 773.869 L28.3562 769.572 L18.2347 769.572 L18.2347 763.684 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M44.7161 713.427 L47.5806 713.427 L47.5806 740.354 Q53.6281 739.972 56.8109 736.725 Q59.9619 733.447 59.9619 727.622 Q59.9619 724.248 59.1344 721.097 Q58.3069 717.914 56.6518 714.795 L62.1899 714.795 Q63.5267 717.946 64.227 721.256 Q64.9272 724.567 64.9272 727.972 Q64.9272 736.502 59.9619 741.499 Q54.9967 746.465 46.5303 746.465 Q37.7774 746.465 32.6531 741.754 Q27.4968 737.012 27.4968 728.991 Q27.4968 721.798 32.1438 717.628 Q36.7589 713.427 44.7161 713.427 M42.9973 719.283 Q38.1912 719.347 35.3266 721.989 Q32.4621 724.598 32.4621 728.927 Q32.4621 733.829 35.2312 736.789 Q38.0002 739.717 43.0292 740.163 L42.9973 719.283 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M55.9197 702.318 L55.9197 695.603 L61.3942 695.603 L71.5793 700.823 L71.5793 704.928 L61.3942 702.318 L55.9197 702.318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M46.212 658.873 Q52.6732 658.873 56.3653 656.231 Q60.0256 653.557 60.0256 648.91 Q60.0256 644.263 56.3653 641.59 Q52.6732 638.916 46.212 638.916 Q39.7508 638.916 36.0905 641.59 Q32.3984 644.263 32.3984 648.91 Q32.3984 653.557 36.0905 656.231 Q39.7508 658.873 46.212 658.873 M58.657 638.916 Q61.8398 640.762 63.3994 643.595 Q64.9272 646.396 64.9272 650.342 Q64.9272 656.804 59.771 660.878 Q54.6147 664.92 46.212 664.92 Q37.8093 664.92 32.6531 660.878 Q27.4968 656.804 27.4968 650.342 Q27.4968 646.396 29.0564 643.595 Q30.5842 640.762 33.7671 638.916 L28.3562 638.916 L28.3562 633.06 L77.5631 633.06 L77.5631 638.916 L58.657 638.916 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M14.5426 586.208 Q21.8632 590.473 29.0246 592.542 Q36.186 594.611 43.5384 594.611 Q50.8908 594.611 58.1159 592.542 Q65.3091 590.441 72.5979 586.208 L72.5979 591.301 Q65.1182 596.075 57.8931 598.462 Q50.668 600.817 43.5384 600.817 Q36.4406 600.817 29.2474 598.462 Q22.0542 596.107 14.5426 591.301 L14.5426 586.208 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M16.4842 574.591 L16.4842 565.01 L48.8219 552.884 L16.4842 540.693 L16.4842 531.113 L64.0042 531.113 L64.0042 537.383 L22.277 537.383 L54.8694 549.637 L54.8694 556.098 L22.277 568.352 L64.0042 568.352 L64.0042 574.591 L16.4842 574.591 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M16.4842 518.35 L16.4842 511.92 L60.694 511.92 Q69.2877 511.92 73.1708 515.199 Q77.0539 518.445 77.0539 525.67 L77.0539 528.121 L71.643 528.121 L71.643 526.116 Q71.643 521.851 69.2559 520.1 Q66.8687 518.35 60.694 518.35 L16.4842 518.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M16.4842 488.972 L16.4842 483.561 L70.0516 500.112 L70.0516 505.523 L16.4842 488.972 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M29.4065 454.692 L34.9447 454.692 Q33.6716 457.175 33.035 459.849 Q32.3984 462.522 32.3984 465.387 Q32.3984 469.747 33.7352 471.944 Q35.072 474.108 37.7456 474.108 Q39.7826 474.108 40.9603 472.548 Q42.1061 470.989 43.1565 466.278 L43.6021 464.273 Q44.9389 458.034 47.3897 455.425 Q49.8086 452.783 54.1691 452.783 Q59.1344 452.783 62.0308 456.73 Q64.9272 460.644 64.9272 467.519 Q64.9272 470.384 64.3543 473.503 Q63.8132 476.591 62.6992 480.028 L56.6518 480.028 Q58.3387 476.782 59.198 473.63 Q60.0256 470.479 60.0256 467.392 Q60.0256 463.254 58.6251 461.026 Q57.1929 458.798 54.6147 458.798 Q52.2276 458.798 50.9545 460.422 Q49.6813 462.013 48.5037 467.456 L48.0262 469.493 Q46.8804 474.935 44.5251 477.354 Q42.138 479.773 38.0002 479.773 Q32.9713 479.773 30.2341 476.209 Q27.4968 472.644 27.4968 466.087 Q27.4968 462.841 27.9743 459.976 Q28.4517 457.111 29.4065 454.692 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M14.5426 444.38 L14.5426 439.287 Q22.0542 434.513 29.2474 432.158 Q36.4406 429.771 43.5384 429.771 Q50.668 429.771 57.8931 432.158 Q65.1182 434.513 72.5979 439.287 L72.5979 444.38 Q65.3091 440.147 58.1159 438.078 Q50.8908 435.977 43.5384 435.977 Q36.186 435.977 29.0246 438.078 Q21.8632 440.147 14.5426 444.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip572)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  262.124,1355.91 282.627,1307.74 303.129,1270.41 323.632,1238.71 344.134,1210.64 364.636,1185.13 385.139,1161.56 405.641,1139.53 426.144,1118.75 446.646,1099.02 \n",
       "  467.148,1080.17 487.651,1062.09 508.153,1044.69 528.656,1027.88 549.158,1011.6 569.661,995.792 590.163,980.415 610.665,965.429 631.168,950.801 651.67,936.501 \n",
       "  672.173,922.504 692.675,908.787 713.177,895.33 733.68,882.116 754.182,869.129 774.685,856.353 795.187,843.777 815.69,831.389 836.192,819.177 856.694,807.133 \n",
       "  877.197,795.246 897.699,783.51 918.202,771.916 938.704,760.457 959.207,749.127 979.709,737.921 1000.21,726.831 1020.71,715.854 1041.22,704.983 1061.72,694.216 \n",
       "  1082.22,683.547 1102.72,672.973 1123.23,662.489 1143.73,652.093 1164.23,641.78 1184.73,631.549 1205.24,621.395 1225.74,611.317 1246.24,601.311 1266.74,591.375 \n",
       "  1287.25,581.507 1307.75,571.704 1328.25,561.964 1348.75,552.286 1369.25,542.667 1389.76,533.105 1410.26,523.599 1430.76,514.147 1451.26,504.748 1471.77,495.399 \n",
       "  1492.27,486.1 1512.77,476.849 1533.27,467.644 1553.78,458.485 1574.28,449.37 1594.78,440.299 1615.28,431.269 1635.79,422.279 1656.29,413.33 1676.79,404.419 \n",
       "  1697.29,395.546 1717.8,386.71 1738.3,377.91 1758.8,369.144 1779.3,360.413 1799.81,351.716 1820.31,343.051 1840.81,334.418 1861.31,325.816 1881.82,317.244 \n",
       "  1902.32,308.703 1922.82,300.19 1943.32,291.706 1963.83,283.25 1984.33,274.821 2004.83,266.419 2025.33,258.043 2045.83,249.693 2066.34,241.368 2086.84,233.067 \n",
       "  2107.34,224.791 2127.84,216.538 2148.35,208.308 2168.85,200.101 2189.35,191.917 2209.85,183.754 2230.36,175.613 2250.86,167.492 2271.36,159.393 2291.86,151.313 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#ff7c00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  262.124,1362.47 282.627,1316.97 303.129,1281.66 323.632,1251.67 344.134,1225.09 364.636,1200.94 385.139,1178.62 405.641,1157.75 426.144,1138.07 446.646,1119.37 \n",
       "  467.148,1101.52 487.651,1084.39 508.153,1067.9 528.656,1051.97 549.158,1036.53 569.661,1021.55 590.163,1006.98 610.665,992.773 631.168,978.907 651.67,965.351 \n",
       "  672.173,952.081 692.675,939.077 713.177,926.319 733.68,913.791 754.182,901.477 774.685,889.365 795.187,877.44 815.69,865.694 836.192,854.115 856.694,842.694 \n",
       "  877.197,831.423 897.699,820.294 918.202,809.3 938.704,798.434 959.207,787.69 979.709,777.062 1000.21,766.546 1020.71,756.135 1041.22,745.827 1061.72,735.615 \n",
       "  1082.22,725.497 1102.72,715.469 1123.23,705.526 1143.73,695.667 1164.23,685.887 1184.73,676.183 1205.24,666.553 1225.74,656.995 1246.24,647.505 1266.74,638.081 \n",
       "  1287.25,628.722 1307.75,619.424 1328.25,610.186 1348.75,601.007 1369.25,591.883 1389.76,582.815 1410.26,573.798 1430.76,564.833 1451.26,555.918 1471.77,547.051 \n",
       "  1492.27,538.231 1512.77,529.456 1533.27,520.726 1553.78,512.038 1574.28,503.393 1594.78,494.788 1615.28,486.223 1635.79,477.696 1656.29,469.207 1676.79,460.755 \n",
       "  1697.29,452.339 1717.8,443.958 1738.3,435.61 1758.8,427.296 1779.3,419.014 1799.81,410.764 1820.31,402.545 1840.81,394.356 1861.31,386.197 1881.82,378.066 \n",
       "  1902.32,369.964 1922.82,361.89 1943.32,353.842 1963.83,345.821 1984.33,337.825 2004.83,329.856 2025.33,321.91 2045.83,313.99 2066.34,306.093 2086.84,298.219 \n",
       "  2107.34,290.368 2127.84,282.54 2148.35,274.733 2168.85,266.948 2189.35,259.184 2209.85,251.441 2230.36,243.719 2250.86,236.016 2271.36,228.333 2291.86,220.669 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#1ac938; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  262.124,1368.58 282.627,1325.49 303.129,1292.01 323.632,1263.55 344.134,1238.32 364.636,1215.38 385.139,1194.18 405.641,1174.35 426.144,1155.64 446.646,1137.87 \n",
       "  467.148,1120.89 487.651,1104.6 508.153,1088.92 528.656,1073.76 549.158,1059.09 569.661,1044.84 590.163,1030.97 610.665,1017.46 631.168,1004.26 651.67,991.365 \n",
       "  672.173,978.738 692.675,966.364 713.177,954.223 733.68,942.3 754.182,930.581 774.685,919.053 795.187,907.704 815.69,896.523 836.192,885.502 856.694,874.631 \n",
       "  877.197,863.902 897.699,853.308 918.202,842.843 938.704,832.499 959.207,822.271 979.709,812.153 1000.21,802.141 1020.71,792.23 1041.22,782.416 1061.72,772.694 \n",
       "  1082.22,763.061 1102.72,753.513 1123.23,744.047 1143.73,734.659 1164.23,725.347 1184.73,716.108 1205.24,706.939 1225.74,697.837 1246.24,688.801 1266.74,679.828 \n",
       "  1287.25,670.916 1307.75,662.063 1328.25,653.267 1348.75,644.526 1369.25,635.838 1389.76,627.202 1410.26,618.617 1430.76,610.08 1451.26,601.59 1471.77,593.146 \n",
       "  1492.27,584.747 1512.77,576.39 1533.27,568.077 1553.78,559.803 1574.28,551.57 1594.78,543.376 1615.28,535.219 1635.79,527.099 1656.29,519.015 1676.79,510.966 \n",
       "  1697.29,502.951 1717.8,494.969 1738.3,487.019 1758.8,479.101 1779.3,471.214 1799.81,463.357 1820.31,455.529 1840.81,447.73 1861.31,439.96 1881.82,432.216 \n",
       "  1902.32,424.5 1922.82,416.81 1943.32,409.145 1963.83,401.506 1984.33,393.891 2004.83,386.301 2025.33,378.734 2045.83,371.19 2066.34,363.669 2086.84,356.17 \n",
       "  2107.34,348.693 2127.84,341.237 2148.35,333.802 2168.85,326.388 2189.35,318.993 2209.85,311.619 2230.36,304.263 2250.86,296.927 2271.36,289.609 2291.86,282.31 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#e8000b; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  262.124,1372.3 282.627,1330.47 303.129,1297.9 323.632,1270.19 344.134,1245.59 364.636,1223.22 385.139,1202.53 405.641,1183.18 426.144,1164.91 446.646,1147.55 \n",
       "  467.148,1130.97 487.651,1115.05 508.153,1099.73 528.656,1084.92 549.158,1070.57 569.661,1056.64 590.163,1043.08 610.665,1029.86 631.168,1016.96 651.67,1004.35 \n",
       "  672.173,991.995 692.675,979.89 713.177,968.013 733.68,956.348 754.182,944.882 774.685,933.602 795.187,922.496 815.69,911.555 836.192,900.77 856.694,890.13 \n",
       "  877.197,879.63 897.699,869.261 918.202,859.017 938.704,848.892 959.207,838.88 979.709,828.976 1000.21,819.175 1020.71,809.473 1041.22,799.865 1061.72,790.347 \n",
       "  1082.22,780.916 1102.72,771.567 1123.23,762.299 1143.73,753.107 1164.23,743.989 1184.73,734.943 1205.24,725.964 1225.74,717.052 1246.24,708.204 1266.74,699.417 \n",
       "  1287.25,690.69 1307.75,682.02 1328.25,673.406 1348.75,664.846 1369.25,656.338 1389.76,647.88 1410.26,639.472 1430.76,631.111 1451.26,622.796 1471.77,614.526 \n",
       "  1492.27,606.3 1512.77,598.116 1533.27,589.973 1553.78,581.87 1574.28,573.806 1594.78,565.78 1615.28,557.791 1635.79,549.838 1656.29,541.919 1676.79,534.035 \n",
       "  1697.29,526.184 1717.8,518.366 1738.3,510.579 1758.8,502.823 1779.3,495.097 1799.81,487.401 1820.31,479.733 1840.81,472.094 1861.31,464.482 1881.82,456.897 \n",
       "  1902.32,449.338 1922.82,441.805 1943.32,434.297 1963.83,426.814 1984.33,419.354 2004.83,411.919 2025.33,404.506 2045.83,397.116 2066.34,389.748 2086.84,382.402 \n",
       "  2107.34,375.077 2127.84,367.773 2148.35,360.489 2168.85,353.226 2189.35,345.982 2209.85,338.758 2230.36,331.552 2250.86,324.365 2271.36,317.196 2291.86,310.045 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip572)\" style=\"stroke:#8b2be2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  262.124,1357.51 282.627,1308.13 303.129,1269.54 323.632,1236.63 344.134,1207.38 364.636,1180.75 385.139,1156.1 405.641,1133.01 426.144,1111.22 446.646,1090.5 \n",
       "  467.148,1070.69 487.651,1051.67 508.153,1033.35 528.656,1015.65 549.158,998.487 569.661,981.819 590.163,965.596 610.665,949.78 631.168,934.334 651.67,919.229 \n",
       "  672.173,904.439 692.675,889.94 713.177,875.712 733.68,861.736 754.182,847.997 774.685,834.479 795.187,821.169 815.69,808.054 836.192,795.124 856.694,782.368 \n",
       "  877.197,769.777 897.699,757.344 918.202,745.059 938.704,732.915 959.207,720.906 979.709,709.026 1000.21,697.269 1020.71,685.628 1041.22,674.101 1061.72,662.681 \n",
       "  1082.22,651.364 1102.72,640.146 1123.23,629.023 1143.73,617.992 1164.23,607.049 1184.73,596.191 1205.24,585.414 1225.74,574.716 1246.24,564.095 1266.74,553.547 \n",
       "  1287.25,543.07 1307.75,532.661 1328.25,522.319 1348.75,512.042 1369.25,501.826 1389.76,491.671 1410.26,481.575 1430.76,471.535 1451.26,461.551 1471.77,451.62 \n",
       "  1492.27,441.741 1512.77,431.913 1533.27,422.133 1553.78,412.402 1574.28,402.717 1594.78,393.077 1615.28,383.482 1635.79,373.929 1656.29,364.418 1676.79,354.948 \n",
       "  1697.29,345.518 1717.8,336.126 1738.3,326.772 1758.8,317.456 1779.3,308.175 1799.81,298.93 1820.31,289.718 1840.81,280.541 1861.31,271.397 1881.82,262.284 \n",
       "  1902.32,253.203 1922.82,244.153 1943.32,235.133 1963.83,226.142 1984.33,217.18 2004.83,208.246 2025.33,199.34 2045.83,190.461 2066.34,181.608 2086.84,172.782 \n",
       "  2107.34,163.981 2127.84,155.204 2148.35,146.453 2168.85,137.725 2189.35,129.021 2209.85,120.34 2230.36,111.681 2250.86,103.045 2271.36,94.4309 2291.86,85.838 \n",
       "  \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"\n",
       "M1648.74 1365.44 L2281.04 1365.44 L2281.04 1054.4 L1648.74 1054.4  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1648.74,1365.44 2281.04,1365.44 2281.04,1054.4 1648.74,1054.4 1648.74,1365.44 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip570)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1672.64,1106.24 1816.08,1106.24 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M1851.93 1092.04 Q1848.32 1092.04 1846.49 1095.61 Q1844.68 1099.15 1844.68 1106.28 Q1844.68 1113.38 1846.49 1116.95 Q1848.32 1120.49 1851.93 1120.49 Q1855.56 1120.49 1857.37 1116.95 Q1859.19 1113.38 1859.19 1106.28 Q1859.19 1099.15 1857.37 1095.61 Q1855.56 1092.04 1851.93 1092.04 M1851.93 1088.34 Q1857.74 1088.34 1860.79 1092.94 Q1863.87 1097.53 1863.87 1106.28 Q1863.87 1115 1860.79 1119.61 Q1857.74 1124.19 1851.93 1124.19 Q1846.12 1124.19 1843.04 1119.61 Q1839.98 1115 1839.98 1106.28 Q1839.98 1097.53 1843.04 1092.94 Q1846.12 1088.34 1851.93 1088.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1872.09 1117.64 L1876.97 1117.64 L1876.97 1123.52 L1872.09 1123.52 L1872.09 1117.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1897.16 1092.04 Q1893.55 1092.04 1891.72 1095.61 Q1889.91 1099.15 1889.91 1106.28 Q1889.91 1113.38 1891.72 1116.95 Q1893.55 1120.49 1897.16 1120.49 Q1900.79 1120.49 1902.6 1116.95 Q1904.43 1113.38 1904.43 1106.28 Q1904.43 1099.15 1902.6 1095.61 Q1900.79 1092.04 1897.16 1092.04 M1897.16 1088.34 Q1902.97 1088.34 1906.02 1092.94 Q1909.1 1097.53 1909.1 1106.28 Q1909.1 1115 1906.02 1119.61 Q1902.97 1124.19 1897.16 1124.19 Q1891.35 1124.19 1888.27 1119.61 Q1885.21 1115 1885.21 1106.28 Q1885.21 1097.53 1888.27 1092.94 Q1891.35 1088.34 1897.16 1088.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1946.72 1108.31 Q1944.7 1108.31 1943.55 1110.03 Q1942.41 1111.74 1942.41 1114.79 Q1942.41 1117.8 1943.55 1119.54 Q1944.7 1121.25 1946.72 1121.25 Q1948.69 1121.25 1949.82 1119.54 Q1950.98 1117.8 1950.98 1114.79 Q1950.98 1111.76 1949.82 1110.05 Q1948.69 1108.31 1946.72 1108.31 M1946.72 1105.37 Q1950.38 1105.37 1952.53 1107.92 Q1954.68 1110.47 1954.68 1114.79 Q1954.68 1119.12 1952.5 1121.67 Q1950.35 1124.19 1946.72 1124.19 Q1943.01 1124.19 1940.86 1121.67 Q1938.71 1119.12 1938.71 1114.79 Q1938.71 1110.44 1940.86 1107.92 Q1943.04 1105.37 1946.72 1105.37 M1922.83 1091.28 Q1920.84 1091.28 1919.68 1093.01 Q1918.55 1094.73 1918.55 1097.73 Q1918.55 1100.79 1919.68 1102.5 Q1920.81 1104.22 1922.83 1104.22 Q1924.84 1104.22 1925.98 1102.5 Q1927.13 1100.79 1927.13 1097.73 Q1927.13 1094.75 1925.98 1093.01 Q1924.82 1091.28 1922.83 1091.28 M1943.73 1088.34 L1947.44 1088.34 L1925.81 1124.19 L1922.11 1124.19 L1943.73 1088.34 M1922.83 1088.34 Q1926.49 1088.34 1928.66 1090.88 Q1930.84 1093.41 1930.84 1097.73 Q1930.84 1102.11 1928.66 1104.63 Q1926.51 1107.16 1922.83 1107.16 Q1919.15 1107.16 1917 1104.63 Q1914.87 1102.09 1914.87 1097.73 Q1914.87 1093.43 1917.02 1090.88 Q1919.17 1088.34 1922.83 1088.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1977.02 1088.96 L1981.69 1088.96 L1981.69 1103.13 L1998.68 1103.13 L1998.68 1088.96 L2003.36 1088.96 L2003.36 1123.52 L1998.68 1123.52 L1998.68 1107.06 L1981.69 1107.06 L1981.69 1123.52 L1977.02 1123.52 L1977.02 1088.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2023.27 1125.93 Q2021.46 1130.56 2019.75 1131.97 Q2018.04 1133.38 2015.17 1133.38 L2011.76 1133.38 L2011.76 1129.82 L2014.26 1129.82 Q2016.02 1129.82 2017 1128.98 Q2017.97 1128.15 2019.15 1125.05 L2019.91 1123.1 L2009.43 1097.6 L2013.94 1097.6 L2022.04 1117.87 L2030.14 1097.6 L2034.66 1097.6 L2023.27 1125.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2057.6 1101.53 L2057.6 1087.5 L2061.86 1087.5 L2061.86 1123.52 L2057.6 1123.52 L2057.6 1119.63 Q2056.25 1121.95 2054.19 1123.08 Q2052.16 1124.19 2049.29 1124.19 Q2044.59 1124.19 2041.62 1120.44 Q2038.68 1116.69 2038.68 1110.58 Q2038.68 1104.47 2041.62 1100.72 Q2044.59 1096.97 2049.29 1096.97 Q2052.16 1096.97 2054.19 1098.11 Q2056.25 1099.22 2057.6 1101.53 M2043.08 1110.58 Q2043.08 1115.28 2045 1117.97 Q2046.95 1120.63 2050.33 1120.63 Q2053.71 1120.63 2055.65 1117.97 Q2057.6 1115.28 2057.6 1110.58 Q2057.6 1105.88 2055.65 1103.22 Q2053.71 1100.54 2050.33 1100.54 Q2046.95 1100.54 2045 1103.22 Q2043.08 1105.88 2043.08 1110.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2085.65 1101.58 Q2084.93 1101.16 2084.08 1100.98 Q2083.24 1100.77 2082.23 1100.77 Q2078.62 1100.77 2076.67 1103.13 Q2074.75 1105.47 2074.75 1109.86 L2074.75 1123.52 L2070.47 1123.52 L2070.47 1097.6 L2074.75 1097.6 L2074.75 1101.62 Q2076.09 1099.26 2078.24 1098.13 Q2080.4 1096.97 2083.48 1096.97 Q2083.92 1096.97 2084.45 1097.04 Q2084.98 1097.09 2085.63 1097.2 L2085.65 1101.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2099.12 1100.58 Q2095.7 1100.58 2093.71 1103.27 Q2091.72 1105.93 2091.72 1110.58 Q2091.72 1115.23 2093.68 1117.92 Q2095.68 1120.58 2099.12 1120.58 Q2102.53 1120.58 2104.52 1117.9 Q2106.51 1115.21 2106.51 1110.58 Q2106.51 1105.98 2104.52 1103.29 Q2102.53 1100.58 2099.12 1100.58 M2099.12 1096.97 Q2104.68 1096.97 2107.85 1100.58 Q2111.02 1104.19 2111.02 1110.58 Q2111.02 1116.95 2107.85 1120.58 Q2104.68 1124.19 2099.12 1124.19 Q2093.55 1124.19 2090.37 1120.58 Q2087.23 1116.95 2087.23 1110.58 Q2087.23 1104.19 2090.37 1100.58 Q2093.55 1096.97 2099.12 1096.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2135.14 1110.26 Q2135.14 1105.63 2133.22 1103.08 Q2131.32 1100.54 2127.87 1100.54 Q2124.45 1100.54 2122.53 1103.08 Q2120.63 1105.63 2120.63 1110.26 Q2120.63 1114.86 2122.53 1117.41 Q2124.45 1119.96 2127.87 1119.96 Q2131.32 1119.96 2133.22 1117.41 Q2135.14 1114.86 2135.14 1110.26 M2139.4 1120.3 Q2139.4 1126.92 2136.46 1130.14 Q2133.52 1133.38 2127.46 1133.38 Q2125.21 1133.38 2123.22 1133.04 Q2121.23 1132.71 2119.36 1132.02 L2119.36 1127.87 Q2121.23 1128.89 2123.06 1129.38 Q2124.89 1129.86 2126.79 1129.86 Q2130.98 1129.86 2133.06 1127.67 Q2135.14 1125.49 2135.14 1121.07 L2135.14 1118.96 Q2133.82 1121.25 2131.76 1122.39 Q2129.7 1123.52 2126.83 1123.52 Q2122.06 1123.52 2119.15 1119.89 Q2116.23 1116.25 2116.23 1110.26 Q2116.23 1104.24 2119.15 1100.61 Q2122.06 1096.97 2126.83 1096.97 Q2129.7 1096.97 2131.76 1098.11 Q2133.82 1099.24 2135.14 1101.53 L2135.14 1097.6 L2139.4 1097.6 L2139.4 1120.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2170.35 1109.49 L2170.35 1111.58 L2150.77 1111.58 Q2151.05 1115.98 2153.41 1118.29 Q2155.79 1120.58 2160.03 1120.58 Q2162.48 1120.58 2164.77 1119.98 Q2167.09 1119.38 2169.36 1118.17 L2169.36 1122.2 Q2167.06 1123.17 2164.66 1123.68 Q2162.25 1124.19 2159.77 1124.19 Q2153.57 1124.19 2149.93 1120.58 Q2146.32 1116.97 2146.32 1110.81 Q2146.32 1104.45 2149.75 1100.72 Q2153.2 1096.97 2159.03 1096.97 Q2164.26 1096.97 2167.3 1100.35 Q2170.35 1103.71 2170.35 1109.49 M2166.09 1108.24 Q2166.05 1104.75 2164.12 1102.67 Q2162.23 1100.58 2159.08 1100.58 Q2155.51 1100.58 2153.36 1102.6 Q2151.23 1104.61 2150.91 1108.27 L2166.09 1108.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2198.89 1107.87 L2198.89 1123.52 L2194.63 1123.52 L2194.63 1108.01 Q2194.63 1104.33 2193.2 1102.5 Q2191.76 1100.67 2188.89 1100.67 Q2185.44 1100.67 2183.45 1102.87 Q2181.46 1105.07 2181.46 1108.87 L2181.46 1123.52 L2177.18 1123.52 L2177.18 1097.6 L2181.46 1097.6 L2181.46 1101.62 Q2182.99 1099.29 2185.05 1098.13 Q2187.13 1096.97 2189.84 1096.97 Q2194.31 1096.97 2196.6 1099.75 Q2198.89 1102.5 2198.89 1107.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip570)\" style=\"stroke:#ff7c00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1672.64,1158.08 1816.08,1158.08 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M1845.61 1171.43 L1861.93 1171.43 L1861.93 1175.36 L1839.98 1175.36 L1839.98 1171.43 Q1842.64 1168.67 1847.23 1164.04 Q1851.83 1159.39 1853.01 1158.05 Q1855.26 1155.52 1856.14 1153.79 Q1857.04 1152.03 1857.04 1150.34 Q1857.04 1147.58 1855.1 1145.85 Q1853.18 1144.11 1850.07 1144.11 Q1847.88 1144.11 1845.42 1144.88 Q1842.99 1145.64 1840.21 1147.19 L1840.21 1142.47 Q1843.04 1141.33 1845.49 1140.76 Q1847.95 1140.18 1849.98 1140.18 Q1855.35 1140.18 1858.55 1142.86 Q1861.74 1145.55 1861.74 1150.04 Q1861.74 1152.17 1860.93 1154.09 Q1860.14 1155.99 1858.04 1158.58 Q1857.46 1159.25 1854.36 1162.47 Q1851.26 1165.66 1845.61 1171.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1871.79 1140.8 L1890.14 1140.8 L1890.14 1144.74 L1876.07 1144.74 L1876.07 1153.21 Q1877.09 1152.86 1878.11 1152.7 Q1879.13 1152.51 1880.14 1152.51 Q1885.93 1152.51 1889.31 1155.69 Q1892.69 1158.86 1892.69 1164.27 Q1892.69 1169.85 1889.22 1172.95 Q1885.75 1176.03 1879.43 1176.03 Q1877.25 1176.03 1874.98 1175.66 Q1872.74 1175.29 1870.33 1174.55 L1870.33 1169.85 Q1872.41 1170.99 1874.63 1171.54 Q1876.86 1172.1 1879.33 1172.1 Q1883.34 1172.1 1885.68 1169.99 Q1888.01 1167.88 1888.01 1164.27 Q1888.01 1160.66 1885.68 1158.56 Q1883.34 1156.45 1879.33 1156.45 Q1877.46 1156.45 1875.58 1156.87 Q1873.73 1157.28 1871.79 1158.16 L1871.79 1140.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1901.9 1169.48 L1906.79 1169.48 L1906.79 1175.36 L1901.9 1175.36 L1901.9 1169.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1926.97 1143.88 Q1923.36 1143.88 1921.53 1147.45 Q1919.73 1150.99 1919.73 1158.12 Q1919.73 1165.22 1921.53 1168.79 Q1923.36 1172.33 1926.97 1172.33 Q1930.61 1172.33 1932.41 1168.79 Q1934.24 1165.22 1934.24 1158.12 Q1934.24 1150.99 1932.41 1147.45 Q1930.61 1143.88 1926.97 1143.88 M1926.97 1140.18 Q1932.78 1140.18 1935.84 1144.78 Q1938.92 1149.37 1938.92 1158.12 Q1938.92 1166.84 1935.84 1171.45 Q1932.78 1176.03 1926.97 1176.03 Q1921.16 1176.03 1918.08 1171.45 Q1915.03 1166.84 1915.03 1158.12 Q1915.03 1149.37 1918.08 1144.78 Q1921.16 1140.18 1926.97 1140.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1976.53 1160.15 Q1974.52 1160.15 1973.36 1161.87 Q1972.23 1163.58 1972.23 1166.63 Q1972.23 1169.64 1973.36 1171.38 Q1974.52 1173.09 1976.53 1173.09 Q1978.5 1173.09 1979.63 1171.38 Q1980.79 1169.64 1980.79 1166.63 Q1980.79 1163.6 1979.63 1161.89 Q1978.5 1160.15 1976.53 1160.15 M1976.53 1157.21 Q1980.19 1157.21 1982.34 1159.76 Q1984.5 1162.31 1984.5 1166.63 Q1984.5 1170.96 1982.32 1173.51 Q1980.17 1176.03 1976.53 1176.03 Q1972.83 1176.03 1970.68 1173.51 Q1968.52 1170.96 1968.52 1166.63 Q1968.52 1162.28 1970.68 1159.76 Q1972.85 1157.21 1976.53 1157.21 M1952.64 1143.12 Q1950.65 1143.12 1949.5 1144.85 Q1948.36 1146.57 1948.36 1149.57 Q1948.36 1152.63 1949.5 1154.34 Q1950.63 1156.06 1952.64 1156.06 Q1954.66 1156.06 1955.79 1154.34 Q1956.95 1152.63 1956.95 1149.57 Q1956.95 1146.59 1955.79 1144.85 Q1954.63 1143.12 1952.64 1143.12 M1973.55 1140.18 L1977.25 1140.18 L1955.63 1176.03 L1951.93 1176.03 L1973.55 1140.18 M1952.64 1140.18 Q1956.3 1140.18 1958.48 1142.72 Q1960.65 1145.25 1960.65 1149.57 Q1960.65 1153.95 1958.48 1156.47 Q1956.32 1159 1952.64 1159 Q1948.96 1159 1946.81 1156.47 Q1944.68 1153.93 1944.68 1149.57 Q1944.68 1145.27 1946.83 1142.72 Q1948.99 1140.18 1952.64 1140.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2006.83 1140.8 L2011.51 1140.8 L2011.51 1154.97 L2028.5 1154.97 L2028.5 1140.8 L2033.18 1140.8 L2033.18 1175.36 L2028.5 1175.36 L2028.5 1158.9 L2011.51 1158.9 L2011.51 1175.36 L2006.83 1175.36 L2006.83 1140.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2053.08 1177.77 Q2051.28 1182.4 2049.56 1183.81 Q2047.85 1185.22 2044.98 1185.22 L2041.58 1185.22 L2041.58 1181.66 L2044.08 1181.66 Q2045.84 1181.66 2046.81 1180.82 Q2047.78 1179.99 2048.96 1176.89 L2049.73 1174.94 L2039.24 1149.44 L2043.75 1149.44 L2051.86 1169.71 L2059.96 1149.44 L2064.47 1149.44 L2053.08 1177.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2087.41 1153.37 L2087.41 1139.34 L2091.67 1139.34 L2091.67 1175.36 L2087.41 1175.36 L2087.41 1171.47 Q2086.07 1173.79 2084.01 1174.92 Q2081.97 1176.03 2079.1 1176.03 Q2074.4 1176.03 2071.44 1172.28 Q2068.5 1168.53 2068.5 1162.42 Q2068.5 1156.31 2071.44 1152.56 Q2074.4 1148.81 2079.1 1148.81 Q2081.97 1148.81 2084.01 1149.95 Q2086.07 1151.06 2087.41 1153.37 M2072.9 1162.42 Q2072.9 1167.12 2074.82 1169.81 Q2076.76 1172.47 2080.14 1172.47 Q2083.52 1172.47 2085.47 1169.81 Q2087.41 1167.12 2087.41 1162.42 Q2087.41 1157.72 2085.47 1155.06 Q2083.52 1152.38 2080.14 1152.38 Q2076.76 1152.38 2074.82 1155.06 Q2072.9 1157.72 2072.9 1162.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2115.47 1153.42 Q2114.75 1153 2113.89 1152.82 Q2113.06 1152.61 2112.04 1152.61 Q2108.43 1152.61 2106.49 1154.97 Q2104.56 1157.31 2104.56 1161.7 L2104.56 1175.36 L2100.28 1175.36 L2100.28 1149.44 L2104.56 1149.44 L2104.56 1153.46 Q2105.91 1151.1 2108.06 1149.97 Q2110.21 1148.81 2113.29 1148.81 Q2113.73 1148.81 2114.26 1148.88 Q2114.8 1148.93 2115.44 1149.04 L2115.47 1153.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2128.94 1152.42 Q2125.51 1152.42 2123.52 1155.11 Q2121.53 1157.77 2121.53 1162.42 Q2121.53 1167.07 2123.5 1169.76 Q2125.49 1172.42 2128.94 1172.42 Q2132.34 1172.42 2134.33 1169.74 Q2136.32 1167.05 2136.32 1162.42 Q2136.32 1157.82 2134.33 1155.13 Q2132.34 1152.42 2128.94 1152.42 M2128.94 1148.81 Q2134.49 1148.81 2137.67 1152.42 Q2140.84 1156.03 2140.84 1162.42 Q2140.84 1168.79 2137.67 1172.42 Q2134.49 1176.03 2128.94 1176.03 Q2123.36 1176.03 2120.19 1172.42 Q2117.04 1168.79 2117.04 1162.42 Q2117.04 1156.03 2120.19 1152.42 Q2123.36 1148.81 2128.94 1148.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2164.96 1162.1 Q2164.96 1157.47 2163.04 1154.92 Q2161.14 1152.38 2157.69 1152.38 Q2154.26 1152.38 2152.34 1154.92 Q2150.44 1157.47 2150.44 1162.1 Q2150.44 1166.7 2152.34 1169.25 Q2154.26 1171.8 2157.69 1171.8 Q2161.14 1171.8 2163.04 1169.25 Q2164.96 1166.7 2164.96 1162.1 M2169.22 1172.14 Q2169.22 1178.76 2166.28 1181.98 Q2163.34 1185.22 2157.27 1185.22 Q2155.03 1185.22 2153.04 1184.88 Q2151.05 1184.55 2149.17 1183.86 L2149.17 1179.71 Q2151.05 1180.73 2152.87 1181.22 Q2154.7 1181.7 2156.6 1181.7 Q2160.79 1181.7 2162.87 1179.51 Q2164.96 1177.33 2164.96 1172.91 L2164.96 1170.8 Q2163.64 1173.09 2161.58 1174.23 Q2159.52 1175.36 2156.65 1175.36 Q2151.88 1175.36 2148.96 1171.73 Q2146.05 1168.09 2146.05 1162.1 Q2146.05 1156.08 2148.96 1152.45 Q2151.88 1148.81 2156.65 1148.81 Q2159.52 1148.81 2161.58 1149.95 Q2163.64 1151.08 2164.96 1153.37 L2164.96 1149.44 L2169.22 1149.44 L2169.22 1172.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2200.17 1161.33 L2200.17 1163.42 L2180.58 1163.42 Q2180.86 1167.82 2183.22 1170.13 Q2185.61 1172.42 2189.84 1172.42 Q2192.3 1172.42 2194.59 1171.82 Q2196.9 1171.22 2199.17 1170.01 L2199.17 1174.04 Q2196.88 1175.01 2194.47 1175.52 Q2192.06 1176.03 2189.59 1176.03 Q2183.38 1176.03 2179.75 1172.42 Q2176.14 1168.81 2176.14 1162.65 Q2176.14 1156.29 2179.56 1152.56 Q2183.01 1148.81 2188.85 1148.81 Q2194.08 1148.81 2197.11 1152.19 Q2200.17 1155.55 2200.17 1161.33 M2195.91 1160.08 Q2195.86 1156.59 2193.94 1154.51 Q2192.04 1152.42 2188.89 1152.42 Q2185.33 1152.42 2183.17 1154.44 Q2181.05 1156.45 2180.72 1160.11 L2195.91 1160.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2228.71 1159.71 L2228.71 1175.36 L2224.45 1175.36 L2224.45 1159.85 Q2224.45 1156.17 2223.01 1154.34 Q2221.58 1152.51 2218.71 1152.51 Q2215.26 1152.51 2213.27 1154.71 Q2211.28 1156.91 2211.28 1160.71 L2211.28 1175.36 L2206.99 1175.36 L2206.99 1149.44 L2211.28 1149.44 L2211.28 1153.46 Q2212.8 1151.13 2214.86 1149.97 Q2216.95 1148.81 2219.66 1148.81 Q2224.12 1148.81 2226.42 1151.59 Q2228.71 1154.34 2228.71 1159.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip570)\" style=\"stroke:#1ac938; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1672.64,1209.92 1816.08,1209.92 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M1841.44 1192.64 L1859.8 1192.64 L1859.8 1196.58 L1845.72 1196.58 L1845.72 1205.05 Q1846.74 1204.7 1847.76 1204.54 Q1848.78 1204.35 1849.8 1204.35 Q1855.58 1204.35 1858.96 1207.53 Q1862.34 1210.7 1862.34 1216.11 Q1862.34 1221.69 1858.87 1224.79 Q1855.4 1227.87 1849.08 1227.87 Q1846.9 1227.87 1844.63 1227.5 Q1842.39 1227.13 1839.98 1226.39 L1839.98 1221.69 Q1842.07 1222.83 1844.29 1223.38 Q1846.51 1223.94 1848.99 1223.94 Q1852.99 1223.94 1855.33 1221.83 Q1857.67 1219.72 1857.67 1216.11 Q1857.67 1212.5 1855.33 1210.4 Q1852.99 1208.29 1848.99 1208.29 Q1847.11 1208.29 1845.24 1208.71 Q1843.38 1209.12 1841.44 1210 L1841.44 1192.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1881.56 1195.72 Q1877.94 1195.72 1876.12 1199.29 Q1874.31 1202.83 1874.31 1209.96 Q1874.31 1217.06 1876.12 1220.63 Q1877.94 1224.17 1881.56 1224.17 Q1885.19 1224.17 1887 1220.63 Q1888.82 1217.06 1888.82 1209.96 Q1888.82 1202.83 1887 1199.29 Q1885.19 1195.72 1881.56 1195.72 M1881.56 1192.02 Q1887.37 1192.02 1890.42 1196.62 Q1893.5 1201.21 1893.5 1209.96 Q1893.5 1218.68 1890.42 1223.29 Q1887.37 1227.87 1881.56 1227.87 Q1875.75 1227.87 1872.67 1223.29 Q1869.61 1218.68 1869.61 1209.96 Q1869.61 1201.21 1872.67 1196.62 Q1875.75 1192.02 1881.56 1192.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1901.72 1221.32 L1906.6 1221.32 L1906.6 1227.2 L1901.72 1227.2 L1901.72 1221.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1926.79 1195.72 Q1923.18 1195.72 1921.35 1199.29 Q1919.54 1202.83 1919.54 1209.96 Q1919.54 1217.06 1921.35 1220.63 Q1923.18 1224.17 1926.79 1224.17 Q1930.42 1224.17 1932.23 1220.63 Q1934.06 1217.06 1934.06 1209.96 Q1934.06 1202.83 1932.23 1199.29 Q1930.42 1195.72 1926.79 1195.72 M1926.79 1192.02 Q1932.6 1192.02 1935.65 1196.62 Q1938.73 1201.21 1938.73 1209.96 Q1938.73 1218.68 1935.65 1223.29 Q1932.6 1227.87 1926.79 1227.87 Q1920.98 1227.87 1917.9 1223.29 Q1914.84 1218.68 1914.84 1209.96 Q1914.84 1201.21 1917.9 1196.62 Q1920.98 1192.02 1926.79 1192.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1976.35 1211.99 Q1974.33 1211.99 1973.18 1213.71 Q1972.04 1215.42 1972.04 1218.47 Q1972.04 1221.48 1973.18 1223.22 Q1974.33 1224.93 1976.35 1224.93 Q1978.31 1224.93 1979.45 1223.22 Q1980.61 1221.48 1980.61 1218.47 Q1980.61 1215.44 1979.45 1213.73 Q1978.31 1211.99 1976.35 1211.99 M1976.35 1209.05 Q1980 1209.05 1982.16 1211.6 Q1984.31 1214.15 1984.31 1218.47 Q1984.31 1222.8 1982.13 1225.35 Q1979.98 1227.87 1976.35 1227.87 Q1972.64 1227.87 1970.49 1225.35 Q1968.34 1222.8 1968.34 1218.47 Q1968.34 1214.12 1970.49 1211.6 Q1972.67 1209.05 1976.35 1209.05 M1952.46 1194.96 Q1950.47 1194.96 1949.31 1196.69 Q1948.18 1198.41 1948.18 1201.41 Q1948.18 1204.47 1949.31 1206.18 Q1950.44 1207.9 1952.46 1207.9 Q1954.47 1207.9 1955.61 1206.18 Q1956.76 1204.47 1956.76 1201.41 Q1956.76 1198.43 1955.61 1196.69 Q1954.45 1194.96 1952.46 1194.96 M1973.36 1192.02 L1977.06 1192.02 L1955.44 1227.87 L1951.74 1227.87 L1973.36 1192.02 M1952.46 1192.02 Q1956.12 1192.02 1958.29 1194.56 Q1960.47 1197.09 1960.47 1201.41 Q1960.47 1205.79 1958.29 1208.31 Q1956.14 1210.84 1952.46 1210.84 Q1948.78 1210.84 1946.63 1208.31 Q1944.5 1205.77 1944.5 1201.41 Q1944.5 1197.11 1946.65 1194.56 Q1948.8 1192.02 1952.46 1192.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2006.65 1192.64 L2011.32 1192.64 L2011.32 1206.81 L2028.31 1206.81 L2028.31 1192.64 L2032.99 1192.64 L2032.99 1227.2 L2028.31 1227.2 L2028.31 1210.74 L2011.32 1210.74 L2011.32 1227.2 L2006.65 1227.2 L2006.65 1192.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2052.9 1229.61 Q2051.09 1234.24 2049.38 1235.65 Q2047.67 1237.06 2044.8 1237.06 L2041.39 1237.06 L2041.39 1233.5 L2043.89 1233.5 Q2045.65 1233.5 2046.62 1232.66 Q2047.6 1231.83 2048.78 1228.73 L2049.54 1226.78 L2039.06 1201.28 L2043.57 1201.28 L2051.67 1221.55 L2059.77 1201.28 L2064.29 1201.28 L2052.9 1229.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2087.23 1205.21 L2087.23 1191.18 L2091.49 1191.18 L2091.49 1227.2 L2087.23 1227.2 L2087.23 1223.31 Q2085.88 1225.63 2083.82 1226.76 Q2081.79 1227.87 2078.92 1227.87 Q2074.22 1227.87 2071.25 1224.12 Q2068.31 1220.37 2068.31 1214.26 Q2068.31 1208.15 2071.25 1204.4 Q2074.22 1200.65 2078.92 1200.65 Q2081.79 1200.65 2083.82 1201.79 Q2085.88 1202.9 2087.23 1205.21 M2072.71 1214.26 Q2072.71 1218.96 2074.63 1221.65 Q2076.58 1224.31 2079.96 1224.31 Q2083.34 1224.31 2085.28 1221.65 Q2087.23 1218.96 2087.23 1214.26 Q2087.23 1209.56 2085.28 1206.9 Q2083.34 1204.22 2079.96 1204.22 Q2076.58 1204.22 2074.63 1206.9 Q2072.71 1209.56 2072.71 1214.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2115.28 1205.26 Q2114.56 1204.84 2113.71 1204.66 Q2112.87 1204.45 2111.86 1204.45 Q2108.24 1204.45 2106.3 1206.81 Q2104.38 1209.15 2104.38 1213.54 L2104.38 1227.2 L2100.1 1227.2 L2100.1 1201.28 L2104.38 1201.28 L2104.38 1205.3 Q2105.72 1202.94 2107.87 1201.81 Q2110.03 1200.65 2113.11 1200.65 Q2113.55 1200.65 2114.08 1200.72 Q2114.61 1200.77 2115.26 1200.88 L2115.28 1205.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2128.75 1204.26 Q2125.33 1204.26 2123.34 1206.95 Q2121.35 1209.61 2121.35 1214.26 Q2121.35 1218.91 2123.31 1221.6 Q2125.3 1224.26 2128.75 1224.26 Q2132.16 1224.26 2134.15 1221.58 Q2136.14 1218.89 2136.14 1214.26 Q2136.14 1209.66 2134.15 1206.97 Q2132.16 1204.26 2128.75 1204.26 M2128.75 1200.65 Q2134.31 1200.65 2137.48 1204.26 Q2140.65 1207.87 2140.65 1214.26 Q2140.65 1220.63 2137.48 1224.26 Q2134.31 1227.87 2128.75 1227.87 Q2123.18 1227.87 2120 1224.26 Q2116.86 1220.63 2116.86 1214.26 Q2116.86 1207.87 2120 1204.26 Q2123.18 1200.65 2128.75 1200.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2164.77 1213.94 Q2164.77 1209.31 2162.85 1206.76 Q2160.95 1204.22 2157.5 1204.22 Q2154.08 1204.22 2152.16 1206.76 Q2150.26 1209.31 2150.26 1213.94 Q2150.26 1218.54 2152.16 1221.09 Q2154.08 1223.64 2157.5 1223.64 Q2160.95 1223.64 2162.85 1221.09 Q2164.77 1218.54 2164.77 1213.94 M2169.03 1223.98 Q2169.03 1230.6 2166.09 1233.82 Q2163.15 1237.06 2157.09 1237.06 Q2154.84 1237.06 2152.85 1236.72 Q2150.86 1236.39 2148.99 1235.7 L2148.99 1231.55 Q2150.86 1232.57 2152.69 1233.06 Q2154.52 1233.54 2156.42 1233.54 Q2160.61 1233.54 2162.69 1231.35 Q2164.77 1229.17 2164.77 1224.75 L2164.77 1222.64 Q2163.45 1224.93 2161.39 1226.07 Q2159.33 1227.2 2156.46 1227.2 Q2151.69 1227.2 2148.78 1223.57 Q2145.86 1219.93 2145.86 1213.94 Q2145.86 1207.92 2148.78 1204.29 Q2151.69 1200.65 2156.46 1200.65 Q2159.33 1200.65 2161.39 1201.79 Q2163.45 1202.92 2164.77 1205.21 L2164.77 1201.28 L2169.03 1201.28 L2169.03 1223.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2199.98 1213.17 L2199.98 1215.26 L2180.4 1215.26 Q2180.67 1219.66 2183.04 1221.97 Q2185.42 1224.26 2189.66 1224.26 Q2192.11 1224.26 2194.4 1223.66 Q2196.72 1223.06 2198.98 1221.85 L2198.98 1225.88 Q2196.69 1226.85 2194.29 1227.36 Q2191.88 1227.87 2189.4 1227.87 Q2183.2 1227.87 2179.56 1224.26 Q2175.95 1220.65 2175.95 1214.49 Q2175.95 1208.13 2179.38 1204.4 Q2182.83 1200.65 2188.66 1200.65 Q2193.89 1200.65 2196.92 1204.03 Q2199.98 1207.39 2199.98 1213.17 M2195.72 1211.92 Q2195.67 1208.43 2193.75 1206.35 Q2191.86 1204.26 2188.71 1204.26 Q2185.14 1204.26 2182.99 1206.28 Q2180.86 1208.29 2180.54 1211.95 L2195.72 1211.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2228.52 1211.55 L2228.52 1227.2 L2224.26 1227.2 L2224.26 1211.69 Q2224.26 1208.01 2222.83 1206.18 Q2221.39 1204.35 2218.52 1204.35 Q2215.07 1204.35 2213.08 1206.55 Q2211.09 1208.75 2211.09 1212.55 L2211.09 1227.2 L2206.81 1227.2 L2206.81 1201.28 L2211.09 1201.28 L2211.09 1205.3 Q2212.62 1202.97 2214.68 1201.81 Q2216.76 1200.65 2219.47 1200.65 Q2223.94 1200.65 2226.23 1203.43 Q2228.52 1206.18 2228.52 1211.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip570)\" style=\"stroke:#e8000b; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1672.64,1261.76 1816.08,1261.76 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M1839.98 1244.48 L1862.2 1244.48 L1862.2 1246.47 L1849.66 1279.04 L1844.77 1279.04 L1856.58 1248.42 L1839.98 1248.42 L1839.98 1244.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1871.37 1244.48 L1889.73 1244.48 L1889.73 1248.42 L1875.65 1248.42 L1875.65 1256.89 Q1876.67 1256.54 1877.69 1256.38 Q1878.71 1256.19 1879.73 1256.19 Q1885.51 1256.19 1888.89 1259.37 Q1892.27 1262.54 1892.27 1267.95 Q1892.27 1273.53 1888.8 1276.63 Q1885.33 1279.71 1879.01 1279.71 Q1876.83 1279.71 1874.57 1279.34 Q1872.32 1278.97 1869.91 1278.23 L1869.91 1273.53 Q1872 1274.67 1874.22 1275.22 Q1876.44 1275.78 1878.92 1275.78 Q1882.92 1275.78 1885.26 1273.67 Q1887.6 1271.56 1887.6 1267.95 Q1887.6 1264.34 1885.26 1262.24 Q1882.92 1260.13 1878.92 1260.13 Q1877.04 1260.13 1875.17 1260.55 Q1873.32 1260.96 1871.37 1261.84 L1871.37 1244.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1901.49 1273.16 L1906.37 1273.16 L1906.37 1279.04 L1901.49 1279.04 L1901.49 1273.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1926.56 1247.56 Q1922.94 1247.56 1921.12 1251.13 Q1919.31 1254.67 1919.31 1261.8 Q1919.31 1268.9 1921.12 1272.47 Q1922.94 1276.01 1926.56 1276.01 Q1930.19 1276.01 1932 1272.47 Q1933.82 1268.9 1933.82 1261.8 Q1933.82 1254.67 1932 1251.13 Q1930.19 1247.56 1926.56 1247.56 M1926.56 1243.86 Q1932.37 1243.86 1935.42 1248.46 Q1938.5 1253.05 1938.5 1261.8 Q1938.5 1270.52 1935.42 1275.13 Q1932.37 1279.71 1926.56 1279.71 Q1920.75 1279.71 1917.67 1275.13 Q1914.61 1270.52 1914.61 1261.8 Q1914.61 1253.05 1917.67 1248.46 Q1920.75 1243.86 1926.56 1243.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1976.12 1263.83 Q1974.1 1263.83 1972.94 1265.55 Q1971.81 1267.26 1971.81 1270.31 Q1971.81 1273.32 1972.94 1275.06 Q1974.1 1276.77 1976.12 1276.77 Q1978.08 1276.77 1979.22 1275.06 Q1980.37 1273.32 1980.37 1270.31 Q1980.37 1267.28 1979.22 1265.57 Q1978.08 1263.83 1976.12 1263.83 M1976.12 1260.89 Q1979.77 1260.89 1981.93 1263.44 Q1984.08 1265.99 1984.08 1270.31 Q1984.08 1274.64 1981.9 1277.19 Q1979.75 1279.71 1976.12 1279.71 Q1972.41 1279.71 1970.26 1277.19 Q1968.11 1274.64 1968.11 1270.31 Q1968.11 1265.96 1970.26 1263.44 Q1972.44 1260.89 1976.12 1260.89 M1952.23 1246.8 Q1950.24 1246.8 1949.08 1248.53 Q1947.94 1250.25 1947.94 1253.25 Q1947.94 1256.31 1949.08 1258.02 Q1950.21 1259.74 1952.23 1259.74 Q1954.24 1259.74 1955.37 1258.02 Q1956.53 1256.31 1956.53 1253.25 Q1956.53 1250.27 1955.37 1248.53 Q1954.22 1246.8 1952.23 1246.8 M1973.13 1243.86 L1976.83 1243.86 L1955.21 1279.71 L1951.51 1279.71 L1973.13 1243.86 M1952.23 1243.86 Q1955.88 1243.86 1958.06 1246.4 Q1960.24 1248.93 1960.24 1253.25 Q1960.24 1257.63 1958.06 1260.15 Q1955.91 1262.68 1952.23 1262.68 Q1948.55 1262.68 1946.39 1260.15 Q1944.26 1257.61 1944.26 1253.25 Q1944.26 1248.95 1946.42 1246.4 Q1948.57 1243.86 1952.23 1243.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2006.42 1244.48 L2011.09 1244.48 L2011.09 1258.65 L2028.08 1258.65 L2028.08 1244.48 L2032.76 1244.48 L2032.76 1279.04 L2028.08 1279.04 L2028.08 1262.58 L2011.09 1262.58 L2011.09 1279.04 L2006.42 1279.04 L2006.42 1244.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2052.67 1281.45 Q2050.86 1286.08 2049.15 1287.49 Q2047.43 1288.9 2044.56 1288.9 L2041.16 1288.9 L2041.16 1285.34 L2043.66 1285.34 Q2045.42 1285.34 2046.39 1284.5 Q2047.37 1283.67 2048.55 1280.57 L2049.31 1278.62 L2038.82 1253.12 L2043.34 1253.12 L2051.44 1273.39 L2059.54 1253.12 L2064.05 1253.12 L2052.67 1281.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2086.99 1257.05 L2086.99 1243.02 L2091.25 1243.02 L2091.25 1279.04 L2086.99 1279.04 L2086.99 1275.15 Q2085.65 1277.47 2083.59 1278.6 Q2081.55 1279.71 2078.68 1279.71 Q2073.99 1279.71 2071.02 1275.96 Q2068.08 1272.21 2068.08 1266.1 Q2068.08 1259.99 2071.02 1256.24 Q2073.99 1252.49 2078.68 1252.49 Q2081.55 1252.49 2083.59 1253.63 Q2085.65 1254.74 2086.99 1257.05 M2072.48 1266.1 Q2072.48 1270.8 2074.4 1273.49 Q2076.35 1276.15 2079.73 1276.15 Q2083.11 1276.15 2085.05 1273.49 Q2086.99 1270.8 2086.99 1266.1 Q2086.99 1261.4 2085.05 1258.74 Q2083.11 1256.06 2079.73 1256.06 Q2076.35 1256.06 2074.4 1258.74 Q2072.48 1261.4 2072.48 1266.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2115.05 1257.1 Q2114.33 1256.68 2113.48 1256.5 Q2112.64 1256.29 2111.62 1256.29 Q2108.01 1256.29 2106.07 1258.65 Q2104.15 1260.99 2104.15 1265.38 L2104.15 1279.04 L2099.86 1279.04 L2099.86 1253.12 L2104.15 1253.12 L2104.15 1257.14 Q2105.49 1254.78 2107.64 1253.65 Q2109.8 1252.49 2112.87 1252.49 Q2113.31 1252.49 2113.85 1252.56 Q2114.38 1252.61 2115.03 1252.72 L2115.05 1257.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2128.52 1256.1 Q2125.1 1256.1 2123.11 1258.79 Q2121.11 1261.45 2121.11 1266.1 Q2121.11 1270.75 2123.08 1273.44 Q2125.07 1276.1 2128.52 1276.1 Q2131.92 1276.1 2133.92 1273.42 Q2135.91 1270.73 2135.91 1266.1 Q2135.91 1261.5 2133.92 1258.81 Q2131.92 1256.1 2128.52 1256.1 M2128.52 1252.49 Q2134.08 1252.49 2137.25 1256.1 Q2140.42 1259.71 2140.42 1266.1 Q2140.42 1272.47 2137.25 1276.1 Q2134.08 1279.71 2128.52 1279.71 Q2122.94 1279.71 2119.77 1276.1 Q2116.62 1272.47 2116.62 1266.1 Q2116.62 1259.71 2119.77 1256.1 Q2122.94 1252.49 2128.52 1252.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2164.54 1265.78 Q2164.54 1261.15 2162.62 1258.6 Q2160.72 1256.06 2157.27 1256.06 Q2153.85 1256.06 2151.92 1258.6 Q2150.03 1261.15 2150.03 1265.78 Q2150.03 1270.38 2151.92 1272.93 Q2153.85 1275.48 2157.27 1275.48 Q2160.72 1275.48 2162.62 1272.93 Q2164.54 1270.38 2164.54 1265.78 M2168.8 1275.82 Q2168.8 1282.44 2165.86 1285.66 Q2162.92 1288.9 2156.86 1288.9 Q2154.61 1288.9 2152.62 1288.56 Q2150.63 1288.23 2148.75 1287.54 L2148.75 1283.39 Q2150.63 1284.41 2152.46 1284.9 Q2154.29 1285.38 2156.18 1285.38 Q2160.37 1285.38 2162.46 1283.19 Q2164.54 1281.01 2164.54 1276.59 L2164.54 1274.48 Q2163.22 1276.77 2161.16 1277.91 Q2159.1 1279.04 2156.23 1279.04 Q2151.46 1279.04 2148.55 1275.41 Q2145.63 1271.77 2145.63 1265.78 Q2145.63 1259.76 2148.55 1256.13 Q2151.46 1252.49 2156.23 1252.49 Q2159.1 1252.49 2161.16 1253.63 Q2163.22 1254.76 2164.54 1257.05 L2164.54 1253.12 L2168.8 1253.12 L2168.8 1275.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2199.75 1265.01 L2199.75 1267.1 L2180.17 1267.1 Q2180.44 1271.5 2182.8 1273.81 Q2185.19 1276.1 2189.42 1276.1 Q2191.88 1276.1 2194.17 1275.5 Q2196.48 1274.9 2198.75 1273.69 L2198.75 1277.72 Q2196.46 1278.69 2194.05 1279.2 Q2191.65 1279.71 2189.17 1279.71 Q2182.97 1279.71 2179.33 1276.1 Q2175.72 1272.49 2175.72 1266.33 Q2175.72 1259.97 2179.15 1256.24 Q2182.6 1252.49 2188.43 1252.49 Q2193.66 1252.49 2196.69 1255.87 Q2199.75 1259.23 2199.75 1265.01 M2195.49 1263.76 Q2195.44 1260.27 2193.52 1258.19 Q2191.62 1256.1 2188.48 1256.1 Q2184.91 1256.1 2182.76 1258.12 Q2180.63 1260.13 2180.3 1263.79 L2195.49 1263.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2228.29 1263.39 L2228.29 1279.04 L2224.03 1279.04 L2224.03 1263.53 Q2224.03 1259.85 2222.6 1258.02 Q2221.16 1256.19 2218.29 1256.19 Q2214.84 1256.19 2212.85 1258.39 Q2210.86 1260.59 2210.86 1264.39 L2210.86 1279.04 L2206.58 1279.04 L2206.58 1253.12 L2210.86 1253.12 L2210.86 1257.14 Q2212.39 1254.81 2214.45 1253.65 Q2216.53 1252.49 2219.24 1252.49 Q2223.71 1252.49 2226 1255.27 Q2228.29 1258.02 2228.29 1263.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip570)\" style=\"stroke:#8b2be2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1672.64,1313.6 1816.08,1313.6 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip570)\" d=\"M1840.65 1326.95 L1848.29 1326.95 L1848.29 1300.58 L1839.98 1302.25 L1839.98 1297.99 L1848.25 1296.32 L1852.92 1296.32 L1852.92 1326.95 L1860.56 1326.95 L1860.56 1330.88 L1840.65 1330.88 L1840.65 1326.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1880.01 1299.4 Q1876.39 1299.4 1874.57 1302.97 Q1872.76 1306.51 1872.76 1313.64 Q1872.76 1320.74 1874.57 1324.31 Q1876.39 1327.85 1880.01 1327.85 Q1883.64 1327.85 1885.44 1324.31 Q1887.27 1320.74 1887.27 1313.64 Q1887.27 1306.51 1885.44 1302.97 Q1883.64 1299.4 1880.01 1299.4 M1880.01 1295.7 Q1885.82 1295.7 1888.87 1300.3 Q1891.95 1304.89 1891.95 1313.64 Q1891.95 1322.36 1888.87 1326.97 Q1885.82 1331.55 1880.01 1331.55 Q1874.19 1331.55 1871.12 1326.97 Q1868.06 1322.36 1868.06 1313.64 Q1868.06 1304.89 1871.12 1300.3 Q1874.19 1295.7 1880.01 1295.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1910.17 1299.4 Q1906.56 1299.4 1904.73 1302.97 Q1902.92 1306.51 1902.92 1313.64 Q1902.92 1320.74 1904.73 1324.31 Q1906.56 1327.85 1910.17 1327.85 Q1913.8 1327.85 1915.61 1324.31 Q1917.44 1320.74 1917.44 1313.64 Q1917.44 1306.51 1915.61 1302.97 Q1913.8 1299.4 1910.17 1299.4 M1910.17 1295.7 Q1915.98 1295.7 1919.03 1300.3 Q1922.11 1304.89 1922.11 1313.64 Q1922.11 1322.36 1919.03 1326.97 Q1915.98 1331.55 1910.17 1331.55 Q1904.36 1331.55 1901.28 1326.97 Q1898.22 1322.36 1898.22 1313.64 Q1898.22 1304.89 1901.28 1300.3 Q1904.36 1295.7 1910.17 1295.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1930.33 1325 L1935.21 1325 L1935.21 1330.88 L1930.33 1330.88 L1930.33 1325 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1955.4 1299.4 Q1951.79 1299.4 1949.96 1302.97 Q1948.15 1306.51 1948.15 1313.64 Q1948.15 1320.74 1949.96 1324.31 Q1951.79 1327.85 1955.4 1327.85 Q1959.03 1327.85 1960.84 1324.31 Q1962.67 1320.74 1962.67 1313.64 Q1962.67 1306.51 1960.84 1302.97 Q1959.03 1299.4 1955.4 1299.4 M1955.4 1295.7 Q1961.21 1295.7 1964.26 1300.3 Q1967.34 1304.89 1967.34 1313.64 Q1967.34 1322.36 1964.26 1326.97 Q1961.21 1331.55 1955.4 1331.55 Q1949.59 1331.55 1946.51 1326.97 Q1943.45 1322.36 1943.45 1313.64 Q1943.45 1304.89 1946.51 1300.3 Q1949.59 1295.7 1955.4 1295.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2004.96 1315.67 Q2002.94 1315.67 2001.79 1317.39 Q2000.65 1319.1 2000.65 1322.15 Q2000.65 1325.16 2001.79 1326.9 Q2002.94 1328.61 2004.96 1328.61 Q2006.93 1328.61 2008.06 1326.9 Q2009.22 1325.16 2009.22 1322.15 Q2009.22 1319.12 2008.06 1317.41 Q2006.93 1315.67 2004.96 1315.67 M2004.96 1312.73 Q2008.62 1312.73 2010.77 1315.28 Q2012.92 1317.83 2012.92 1322.15 Q2012.92 1326.48 2010.75 1329.03 Q2008.59 1331.55 2004.96 1331.55 Q2001.25 1331.55 1999.1 1329.03 Q1996.95 1326.48 1996.95 1322.15 Q1996.95 1317.8 1999.1 1315.28 Q2001.28 1312.73 2004.96 1312.73 M1981.07 1298.64 Q1979.08 1298.64 1977.92 1300.37 Q1976.79 1302.09 1976.79 1305.09 Q1976.79 1308.15 1977.92 1309.86 Q1979.06 1311.58 1981.07 1311.58 Q1983.08 1311.58 1984.22 1309.86 Q1985.37 1308.15 1985.37 1305.09 Q1985.37 1302.11 1984.22 1300.37 Q1983.06 1298.64 1981.07 1298.64 M2001.97 1295.7 L2005.68 1295.7 L1984.06 1331.55 L1980.35 1331.55 L2001.97 1295.7 M1981.07 1295.7 Q1984.73 1295.7 1986.9 1298.24 Q1989.08 1300.77 1989.08 1305.09 Q1989.08 1309.47 1986.9 1311.99 Q1984.75 1314.52 1981.07 1314.52 Q1977.39 1314.52 1975.24 1311.99 Q1973.11 1309.45 1973.11 1305.09 Q1973.11 1300.79 1975.26 1298.24 Q1977.41 1295.7 1981.07 1295.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2035.26 1296.32 L2039.93 1296.32 L2039.93 1310.49 L2056.93 1310.49 L2056.93 1296.32 L2061.6 1296.32 L2061.6 1330.88 L2056.93 1330.88 L2056.93 1314.42 L2039.93 1314.42 L2039.93 1330.88 L2035.26 1330.88 L2035.26 1296.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2081.51 1333.29 Q2079.7 1337.92 2077.99 1339.33 Q2076.28 1340.74 2073.41 1340.74 L2070 1340.74 L2070 1337.18 L2072.5 1337.18 Q2074.26 1337.18 2075.24 1336.34 Q2076.21 1335.51 2077.39 1332.41 L2078.15 1330.46 L2067.67 1304.96 L2072.18 1304.96 L2080.28 1325.23 L2088.38 1304.96 L2092.9 1304.96 L2081.51 1333.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2115.84 1308.89 L2115.84 1294.86 L2120.1 1294.86 L2120.1 1330.88 L2115.84 1330.88 L2115.84 1326.99 Q2114.49 1329.31 2112.43 1330.44 Q2110.4 1331.55 2107.53 1331.55 Q2102.83 1331.55 2099.86 1327.8 Q2096.93 1324.05 2096.93 1317.94 Q2096.93 1311.83 2099.86 1308.08 Q2102.83 1304.33 2107.53 1304.33 Q2110.4 1304.33 2112.43 1305.47 Q2114.49 1306.58 2115.84 1308.89 M2101.32 1317.94 Q2101.32 1322.64 2103.24 1325.33 Q2105.19 1327.99 2108.57 1327.99 Q2111.95 1327.99 2113.89 1325.33 Q2115.84 1322.64 2115.84 1317.94 Q2115.84 1313.24 2113.89 1310.58 Q2111.95 1307.9 2108.57 1307.9 Q2105.19 1307.9 2103.24 1310.58 Q2101.32 1313.24 2101.32 1317.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2143.89 1308.94 Q2143.17 1308.52 2142.32 1308.34 Q2141.49 1308.13 2140.47 1308.13 Q2136.86 1308.13 2134.91 1310.49 Q2132.99 1312.83 2132.99 1317.22 L2132.99 1330.88 L2128.71 1330.88 L2128.71 1304.96 L2132.99 1304.96 L2132.99 1308.98 Q2134.33 1306.62 2136.49 1305.49 Q2138.64 1304.33 2141.72 1304.33 Q2142.16 1304.33 2142.69 1304.4 Q2143.22 1304.45 2143.87 1304.56 L2143.89 1308.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2157.36 1307.94 Q2153.94 1307.94 2151.95 1310.63 Q2149.96 1313.29 2149.96 1317.94 Q2149.96 1322.59 2151.92 1325.28 Q2153.92 1327.94 2157.36 1327.94 Q2160.77 1327.94 2162.76 1325.26 Q2164.75 1322.57 2164.75 1317.94 Q2164.75 1313.34 2162.76 1310.65 Q2160.77 1307.94 2157.36 1307.94 M2157.36 1304.33 Q2162.92 1304.33 2166.09 1307.94 Q2169.26 1311.55 2169.26 1317.94 Q2169.26 1324.31 2166.09 1327.94 Q2162.92 1331.55 2157.36 1331.55 Q2151.79 1331.55 2148.61 1327.94 Q2145.47 1324.31 2145.47 1317.94 Q2145.47 1311.55 2148.61 1307.94 Q2151.79 1304.33 2157.36 1304.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2193.38 1317.62 Q2193.38 1312.99 2191.46 1310.44 Q2189.56 1307.9 2186.11 1307.9 Q2182.69 1307.9 2180.77 1310.44 Q2178.87 1312.99 2178.87 1317.62 Q2178.87 1322.22 2180.77 1324.77 Q2182.69 1327.32 2186.11 1327.32 Q2189.56 1327.32 2191.46 1324.77 Q2193.38 1322.22 2193.38 1317.62 M2197.64 1327.66 Q2197.64 1334.28 2194.7 1337.5 Q2191.76 1340.74 2185.7 1340.74 Q2183.45 1340.74 2181.46 1340.4 Q2179.47 1340.07 2177.6 1339.38 L2177.6 1335.23 Q2179.47 1336.25 2181.3 1336.74 Q2183.13 1337.22 2185.03 1337.22 Q2189.22 1337.22 2191.3 1335.03 Q2193.38 1332.85 2193.38 1328.43 L2193.38 1326.32 Q2192.06 1328.61 2190 1329.75 Q2187.94 1330.88 2185.07 1330.88 Q2180.3 1330.88 2177.39 1327.25 Q2174.47 1323.61 2174.47 1317.62 Q2174.47 1311.6 2177.39 1307.97 Q2180.3 1304.33 2185.07 1304.33 Q2187.94 1304.33 2190 1305.47 Q2192.06 1306.6 2193.38 1308.89 L2193.38 1304.96 L2197.64 1304.96 L2197.64 1327.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2228.59 1316.85 L2228.59 1318.94 L2209.01 1318.94 Q2209.29 1323.34 2211.65 1325.65 Q2214.03 1327.94 2218.27 1327.94 Q2220.72 1327.94 2223.01 1327.34 Q2225.33 1326.74 2227.6 1325.53 L2227.6 1329.56 Q2225.3 1330.53 2222.9 1331.04 Q2220.49 1331.55 2218.01 1331.55 Q2211.81 1331.55 2208.17 1327.94 Q2204.56 1324.33 2204.56 1318.17 Q2204.56 1311.81 2207.99 1308.08 Q2211.44 1304.33 2217.27 1304.33 Q2222.5 1304.33 2225.54 1307.71 Q2228.59 1311.07 2228.59 1316.85 M2224.33 1315.6 Q2224.29 1312.11 2222.36 1310.03 Q2220.47 1307.94 2217.32 1307.94 Q2213.75 1307.94 2211.6 1309.96 Q2209.47 1311.97 2209.15 1315.63 L2224.33 1315.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2257.13 1315.23 L2257.13 1330.88 L2252.87 1330.88 L2252.87 1315.37 Q2252.87 1311.69 2251.44 1309.86 Q2250 1308.03 2247.13 1308.03 Q2243.68 1308.03 2241.69 1310.23 Q2239.7 1312.43 2239.7 1316.23 L2239.7 1330.88 L2235.42 1330.88 L2235.42 1304.96 L2239.7 1304.96 L2239.7 1308.98 Q2241.23 1306.65 2243.29 1305.49 Q2245.37 1304.33 2248.08 1304.33 Q2252.55 1304.33 2254.84 1307.11 Q2257.13 1309.86 2257.13 1315.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
      ]
     },
     "execution_count": 25,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "let\n",
    "\n",
    "Δps = range(1.0,100.0,100).*1e3u\"Pa\"\n",
    "ps = Pᵣ.+Δps\n",
    "xs = range(0.0,1.0,5)\n",
    "\n",
    "fig = plot(palette=colors)\n",
    "\n",
    "for x in xs\n",
    "    qs = [ q(x, Tᵣ, p, Pᵣ) for p in ps ]\n",
    "    plot!(fig, Δps, qs, lab=\"$(round(x*100))% Hydrogen\")\n",
    "end\n",
    "\n",
    "plot!(fig, ylabel=\"Heat Rate, q (MJ/s)\", xlabel=\"Pressure Drop, ΔP (Pa)\", legend=:bottomright)\n",
    "\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "579e6345-d4a7-45b7-a564-e6a659438697",
   "metadata": {},
   "source": [
    "We see the same ordering that we expect, given the previous analysis, namely that the 0% and 100% cases are pretty close to each other, followed by the in-between hydrogen contents.\n",
    "\n",
    "Another way of looking at this is to pick a required heat rate and look at the pressure drop as a function of hydrogen content."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "76612ceb-4c5c-4144-a049-6c59ab718faa",
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
       "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
       "<defs>\n",
       "  <clipPath id=\"clip610\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip610)\" d=\"\n",
       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip611\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip610)\" d=\"\n",
       "M205.121 1423.18 L2352.76 1423.18 L2352.76 47.2441 L205.121 47.2441  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip612\">\n",
       "    <rect x=\"205\" y=\"47\" width=\"2149\" height=\"1377\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  265.903,1423.18 265.903,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  772.421,1423.18 772.421,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1278.94,1423.18 1278.94,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1785.46,1423.18 1785.46,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2291.97,1423.18 2291.97,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,1423.18 265.903,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  772.421,1423.18 772.421,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1278.94,1423.18 1278.94,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1785.46,1423.18 1785.46,1404.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2291.97,1423.18 2291.97,1404.28 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M265.903 1454.1 Q262.292 1454.1 260.463 1457.66 Q258.658 1461.2 258.658 1468.33 Q258.658 1475.44 260.463 1479.01 Q262.292 1482.55 265.903 1482.55 Q269.537 1482.55 271.343 1479.01 Q273.172 1475.44 273.172 1468.33 Q273.172 1461.2 271.343 1457.66 Q269.537 1454.1 265.903 1454.1 M265.903 1450.39 Q271.713 1450.39 274.769 1455 Q277.847 1459.58 277.847 1468.33 Q277.847 1477.06 274.769 1481.67 Q271.713 1486.25 265.903 1486.25 Q260.093 1486.25 257.014 1481.67 Q253.959 1477.06 253.959 1468.33 Q253.959 1459.58 257.014 1455 Q260.093 1450.39 265.903 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M751.692 1481.64 L768.011 1481.64 L768.011 1485.58 L746.067 1485.58 L746.067 1481.64 Q748.729 1478.89 753.312 1474.26 Q757.919 1469.61 759.099 1468.27 Q761.344 1465.74 762.224 1464.01 Q763.127 1462.25 763.127 1460.56 Q763.127 1457.8 761.182 1456.07 Q759.261 1454.33 756.159 1454.33 Q753.96 1454.33 751.507 1455.09 Q749.076 1455.86 746.298 1457.41 L746.298 1452.69 Q749.122 1451.55 751.576 1450.97 Q754.03 1450.39 756.067 1450.39 Q761.437 1450.39 764.631 1453.08 Q767.826 1455.77 767.826 1460.26 Q767.826 1462.39 767.016 1464.31 Q766.229 1466.2 764.122 1468.8 Q763.544 1469.47 760.442 1472.69 Q757.34 1475.88 751.692 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M777.872 1451.02 L796.229 1451.02 L796.229 1454.96 L782.155 1454.96 L782.155 1463.43 Q783.173 1463.08 784.192 1462.92 Q785.21 1462.73 786.229 1462.73 Q792.016 1462.73 795.395 1465.9 Q798.775 1469.08 798.775 1474.49 Q798.775 1480.07 795.303 1483.17 Q791.83 1486.25 785.511 1486.25 Q783.335 1486.25 781.067 1485.88 Q778.821 1485.51 776.414 1484.77 L776.414 1480.07 Q778.497 1481.2 780.719 1481.76 Q782.942 1482.32 785.418 1482.32 Q789.423 1482.32 791.761 1480.21 Q794.099 1478.1 794.099 1474.49 Q794.099 1470.88 791.761 1468.77 Q789.423 1466.67 785.418 1466.67 Q783.543 1466.67 781.668 1467.08 Q779.817 1467.5 777.872 1468.38 L777.872 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1253.64 1451.02 L1271.99 1451.02 L1271.99 1454.96 L1257.92 1454.96 L1257.92 1463.43 Q1258.94 1463.08 1259.96 1462.92 Q1260.98 1462.73 1261.99 1462.73 Q1267.78 1462.73 1271.16 1465.9 Q1274.54 1469.08 1274.54 1474.49 Q1274.54 1480.07 1271.07 1483.17 Q1267.6 1486.25 1261.28 1486.25 Q1259.1 1486.25 1256.83 1485.88 Q1254.59 1485.51 1252.18 1484.77 L1252.18 1480.07 Q1254.26 1481.2 1256.48 1481.76 Q1258.71 1482.32 1261.18 1482.32 Q1265.19 1482.32 1267.53 1480.21 Q1269.86 1478.1 1269.86 1474.49 Q1269.86 1470.88 1267.53 1468.77 Q1265.19 1466.67 1261.18 1466.67 Q1259.31 1466.67 1257.43 1467.08 Q1255.58 1467.5 1253.64 1468.38 L1253.64 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1293.75 1454.1 Q1290.14 1454.1 1288.31 1457.66 Q1286.51 1461.2 1286.51 1468.33 Q1286.51 1475.44 1288.31 1479.01 Q1290.14 1482.55 1293.75 1482.55 Q1297.39 1482.55 1299.19 1479.01 Q1301.02 1475.44 1301.02 1468.33 Q1301.02 1461.2 1299.19 1457.66 Q1297.39 1454.1 1293.75 1454.1 M1293.75 1450.39 Q1299.56 1450.39 1302.62 1455 Q1305.7 1459.58 1305.7 1468.33 Q1305.7 1477.06 1302.62 1481.67 Q1299.56 1486.25 1293.75 1486.25 Q1287.94 1486.25 1284.86 1481.67 Q1281.81 1477.06 1281.81 1468.33 Q1281.81 1459.58 1284.86 1455 Q1287.94 1450.39 1293.75 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1759.31 1451.02 L1781.53 1451.02 L1781.53 1453.01 L1768.99 1485.58 L1764.1 1485.58 L1775.91 1454.96 L1759.31 1454.96 L1759.31 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1790.7 1451.02 L1809.06 1451.02 L1809.06 1454.96 L1794.98 1454.96 L1794.98 1463.43 Q1796 1463.08 1797.02 1462.92 Q1798.04 1462.73 1799.06 1462.73 Q1804.84 1462.73 1808.22 1465.9 Q1811.6 1469.08 1811.6 1474.49 Q1811.6 1480.07 1808.13 1483.17 Q1804.66 1486.25 1798.34 1486.25 Q1796.16 1486.25 1793.89 1485.88 Q1791.65 1485.51 1789.24 1484.77 L1789.24 1480.07 Q1791.32 1481.2 1793.55 1481.76 Q1795.77 1482.32 1798.25 1482.32 Q1802.25 1482.32 1804.59 1480.21 Q1806.93 1478.1 1806.93 1474.49 Q1806.93 1470.88 1804.59 1468.77 Q1802.25 1466.67 1798.25 1466.67 Q1796.37 1466.67 1794.5 1467.08 Q1792.64 1467.5 1790.7 1468.38 L1790.7 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M2251.58 1481.64 L2259.22 1481.64 L2259.22 1455.28 L2250.91 1456.95 L2250.91 1452.69 L2259.17 1451.02 L2263.85 1451.02 L2263.85 1481.64 L2271.49 1481.64 L2271.49 1485.58 L2251.58 1485.58 L2251.58 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M2290.93 1454.1 Q2287.32 1454.1 2285.49 1457.66 Q2283.69 1461.2 2283.69 1468.33 Q2283.69 1475.44 2285.49 1479.01 Q2287.32 1482.55 2290.93 1482.55 Q2294.57 1482.55 2296.37 1479.01 Q2298.2 1475.44 2298.2 1468.33 Q2298.2 1461.2 2296.37 1457.66 Q2294.57 1454.1 2290.93 1454.1 M2290.93 1450.39 Q2296.74 1450.39 2299.8 1455 Q2302.88 1459.58 2302.88 1468.33 Q2302.88 1477.06 2299.8 1481.67 Q2296.74 1486.25 2290.93 1486.25 Q2285.12 1486.25 2282.04 1481.67 Q2278.99 1477.06 2278.99 1468.33 Q2278.99 1459.58 2282.04 1455 Q2285.12 1450.39 2290.93 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M2321.09 1454.1 Q2317.48 1454.1 2315.65 1457.66 Q2313.85 1461.2 2313.85 1468.33 Q2313.85 1475.44 2315.65 1479.01 Q2317.48 1482.55 2321.09 1482.55 Q2324.73 1482.55 2326.53 1479.01 Q2328.36 1475.44 2328.36 1468.33 Q2328.36 1461.2 2326.53 1457.66 Q2324.73 1454.1 2321.09 1454.1 M2321.09 1450.39 Q2326.9 1450.39 2329.96 1455 Q2333.04 1459.58 2333.04 1468.33 Q2333.04 1477.06 2329.96 1481.67 Q2326.9 1486.25 2321.09 1486.25 Q2315.28 1486.25 2312.21 1481.67 Q2309.15 1477.06 2309.15 1468.33 Q2309.15 1459.58 2312.21 1455 Q2315.28 1450.39 2321.09 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M984.158 1547.13 Q981.389 1547.13 979.798 1549.49 Q978.238 1551.84 978.238 1556.04 Q978.238 1560.18 979.798 1562.57 Q981.389 1564.92 984.158 1564.92 Q986.864 1564.92 988.424 1562.57 Q990.015 1560.18 990.015 1556.04 Q990.015 1551.87 988.424 1549.52 Q986.864 1547.13 984.158 1547.13 M984.158 1543.09 Q989.187 1543.09 992.147 1546.59 Q995.107 1550.09 995.107 1556.04 Q995.107 1562 992.116 1565.5 Q989.156 1568.97 984.158 1568.97 Q979.066 1568.97 976.106 1565.5 Q973.146 1562 973.146 1556.04 Q973.146 1550.06 976.106 1546.59 Q979.098 1543.09 984.158 1543.09 M951.311 1523.71 Q948.574 1523.71 946.983 1526.09 Q945.423 1528.45 945.423 1532.59 Q945.423 1536.79 946.983 1539.14 Q948.542 1541.5 951.311 1541.5 Q954.081 1541.5 955.64 1539.14 Q957.232 1536.79 957.232 1532.59 Q957.232 1528.48 955.64 1526.09 Q954.049 1523.71 951.311 1523.71 M980.053 1519.66 L985.145 1519.66 L955.417 1568.97 L950.325 1568.97 L980.053 1519.66 M951.311 1519.66 Q956.34 1519.66 959.332 1523.17 Q962.324 1526.63 962.324 1532.59 Q962.324 1538.6 959.332 1542.07 Q956.372 1545.54 951.311 1545.54 Q946.251 1545.54 943.291 1542.07 Q940.362 1538.57 940.362 1532.59 Q940.362 1526.67 943.322 1523.17 Q946.283 1519.66 951.311 1519.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1025.82 1520.52 L1032.25 1520.52 L1032.25 1540 L1055.61 1540 L1055.61 1520.52 L1062.04 1520.52 L1062.04 1568.04 L1055.61 1568.04 L1055.61 1545.41 L1032.25 1545.41 L1032.25 1568.04 L1025.82 1568.04 L1025.82 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1089.42 1571.35 Q1086.93 1577.72 1084.58 1579.66 Q1082.22 1581.6 1078.28 1581.6 L1073.6 1581.6 L1073.6 1576.7 L1077.03 1576.7 Q1079.45 1576.7 1080.79 1575.56 Q1082.13 1574.41 1083.75 1570.14 L1084.8 1567.47 L1070.38 1532.4 L1076.59 1532.4 L1087.73 1560.28 L1098.87 1532.4 L1105.08 1532.4 L1089.42 1571.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1136.62 1537.81 L1136.62 1518.52 L1142.47 1518.52 L1142.47 1568.04 L1136.62 1568.04 L1136.62 1562.7 Q1134.77 1565.88 1131.94 1567.44 Q1129.14 1568.97 1125.19 1568.97 Q1118.73 1568.97 1114.66 1563.81 Q1110.61 1558.65 1110.61 1550.25 Q1110.61 1541.85 1114.66 1536.69 Q1118.73 1531.54 1125.19 1531.54 Q1129.14 1531.54 1131.94 1533.1 Q1134.77 1534.62 1136.62 1537.81 M1116.66 1550.25 Q1116.66 1556.71 1119.3 1560.4 Q1121.98 1564.07 1126.62 1564.07 Q1131.27 1564.07 1133.94 1560.4 Q1136.62 1556.71 1136.62 1550.25 Q1136.62 1543.79 1133.94 1540.13 Q1131.27 1536.44 1126.62 1536.44 Q1121.98 1536.44 1119.3 1540.13 Q1116.66 1543.79 1116.66 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1175.19 1537.87 Q1174.21 1537.3 1173.03 1537.04 Q1171.88 1536.76 1170.48 1536.76 Q1165.52 1536.76 1162.84 1540 Q1160.2 1543.22 1160.2 1549.27 L1160.2 1568.04 L1154.31 1568.04 L1154.31 1532.4 L1160.2 1532.4 L1160.2 1537.93 Q1162.05 1534.69 1165.01 1533.13 Q1167.97 1531.54 1172.2 1531.54 Q1172.81 1531.54 1173.54 1531.63 Q1174.27 1531.7 1175.16 1531.85 L1175.19 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1193.72 1536.5 Q1189.01 1536.5 1186.27 1540.19 Q1183.53 1543.85 1183.53 1550.25 Q1183.53 1556.65 1186.24 1560.34 Q1188.98 1564 1193.72 1564 Q1198.4 1564 1201.13 1560.31 Q1203.87 1556.62 1203.87 1550.25 Q1203.87 1543.92 1201.13 1540.23 Q1198.4 1536.5 1193.72 1536.5 M1193.72 1531.54 Q1201.36 1531.54 1205.72 1536.5 Q1210.08 1541.47 1210.08 1550.25 Q1210.08 1559 1205.72 1564 Q1201.36 1568.97 1193.72 1568.97 Q1186.05 1568.97 1181.69 1564 Q1177.36 1559 1177.36 1550.25 Q1177.36 1541.47 1181.69 1536.5 Q1186.05 1531.54 1193.72 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1243.24 1549.81 Q1243.24 1543.44 1240.6 1539.94 Q1237.99 1536.44 1233.25 1536.44 Q1228.54 1536.44 1225.9 1539.94 Q1223.29 1543.44 1223.29 1549.81 Q1223.29 1556.14 1225.9 1559.64 Q1228.54 1563.14 1233.25 1563.14 Q1237.99 1563.14 1240.6 1559.64 Q1243.24 1556.14 1243.24 1549.81 M1249.1 1563.62 Q1249.1 1572.72 1245.06 1577.15 Q1241.01 1581.6 1232.68 1581.6 Q1229.59 1581.6 1226.85 1581.13 Q1224.11 1580.68 1221.54 1579.72 L1221.54 1574.03 Q1224.11 1575.43 1226.63 1576.1 Q1229.14 1576.76 1231.75 1576.76 Q1237.51 1576.76 1240.38 1573.74 Q1243.24 1570.75 1243.24 1564.67 L1243.24 1561.77 Q1241.43 1564.92 1238.6 1566.48 Q1235.76 1568.04 1231.82 1568.04 Q1225.26 1568.04 1221.25 1563.05 Q1217.24 1558.05 1217.24 1549.81 Q1217.24 1541.53 1221.25 1536.53 Q1225.26 1531.54 1231.82 1531.54 Q1235.76 1531.54 1238.6 1533.1 Q1241.43 1534.66 1243.24 1537.81 L1243.24 1532.4 L1249.1 1532.4 L1249.1 1563.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1291.65 1548.76 L1291.65 1551.62 L1264.73 1551.62 Q1265.11 1557.67 1268.36 1560.85 Q1271.63 1564 1277.46 1564 Q1280.83 1564 1283.98 1563.17 Q1287.17 1562.35 1290.29 1560.69 L1290.29 1566.23 Q1287.13 1567.57 1283.82 1568.27 Q1280.51 1568.97 1277.11 1568.97 Q1268.58 1568.97 1263.58 1564 Q1258.62 1559.04 1258.62 1550.57 Q1258.62 1541.82 1263.33 1536.69 Q1268.07 1531.54 1276.09 1531.54 Q1283.28 1531.54 1287.45 1536.18 Q1291.65 1540.8 1291.65 1548.76 M1285.8 1547.04 Q1285.73 1542.23 1283.09 1539.37 Q1280.48 1536.5 1276.15 1536.5 Q1271.25 1536.5 1268.29 1539.27 Q1265.36 1542.04 1264.92 1547.07 L1285.8 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1330.9 1546.53 L1330.9 1568.04 L1325.04 1568.04 L1325.04 1546.72 Q1325.04 1541.66 1323.07 1539.14 Q1321.1 1536.63 1317.15 1536.63 Q1312.41 1536.63 1309.67 1539.65 Q1306.93 1542.68 1306.93 1547.9 L1306.93 1568.04 L1301.04 1568.04 L1301.04 1532.4 L1306.93 1532.4 L1306.93 1537.93 Q1309.03 1534.72 1311.87 1533.13 Q1314.73 1531.54 1318.45 1531.54 Q1324.6 1531.54 1327.75 1535.36 Q1330.9 1539.14 1330.9 1546.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1377.37 1518.58 Q1373.1 1525.9 1371.03 1533.06 Q1368.97 1540.23 1368.97 1547.58 Q1368.97 1554.93 1371.03 1562.16 Q1373.13 1569.35 1377.37 1576.64 L1372.28 1576.64 Q1367.5 1569.16 1365.11 1561.93 Q1362.76 1554.71 1362.76 1547.58 Q1362.76 1540.48 1365.11 1533.29 Q1367.47 1526.09 1372.28 1518.58 L1377.37 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1384.53 1532.4 L1390.74 1532.4 L1401.88 1562.31 L1413.02 1532.4 L1419.22 1532.4 L1405.85 1568.04 L1397.9 1568.04 L1384.53 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1441.12 1536.5 Q1436.41 1536.5 1433.67 1540.19 Q1430.94 1543.85 1430.94 1550.25 Q1430.94 1556.65 1433.64 1560.34 Q1436.38 1564 1441.12 1564 Q1445.8 1564 1448.54 1560.31 Q1451.27 1556.62 1451.27 1550.25 Q1451.27 1543.92 1448.54 1540.23 Q1445.8 1536.5 1441.12 1536.5 M1441.12 1531.54 Q1448.76 1531.54 1453.12 1536.5 Q1457.48 1541.47 1457.48 1550.25 Q1457.48 1559 1453.12 1564 Q1448.76 1568.97 1441.12 1568.97 Q1433.45 1568.97 1429.09 1564 Q1424.76 1559 1424.76 1550.25 Q1424.76 1541.47 1429.09 1536.5 Q1433.45 1531.54 1441.12 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1467.19 1518.52 L1473.04 1518.52 L1473.04 1568.04 L1467.19 1568.04 L1467.19 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1495.71 1520.52 L1501.12 1520.52 L1484.57 1574.09 L1479.16 1574.09 L1495.71 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1503.06 1532.4 L1509.27 1532.4 L1520.41 1562.31 L1531.55 1532.4 L1537.75 1532.4 L1524.38 1568.04 L1516.43 1568.04 L1503.06 1532.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1559.65 1536.5 Q1554.94 1536.5 1552.2 1540.19 Q1549.47 1543.85 1549.47 1550.25 Q1549.47 1556.65 1552.17 1560.34 Q1554.91 1564 1559.65 1564 Q1564.33 1564 1567.07 1560.31 Q1569.8 1556.62 1569.8 1550.25 Q1569.8 1543.92 1567.07 1540.23 Q1564.33 1536.5 1559.65 1536.5 M1559.65 1531.54 Q1567.29 1531.54 1571.65 1536.5 Q1576.01 1541.47 1576.01 1550.25 Q1576.01 1559 1571.65 1564 Q1567.29 1568.97 1559.65 1568.97 Q1551.98 1568.97 1547.62 1564 Q1543.29 1559 1543.29 1550.25 Q1543.29 1541.47 1547.62 1536.5 Q1551.98 1531.54 1559.65 1531.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1585.72 1518.52 L1591.57 1518.52 L1591.57 1568.04 L1585.72 1568.04 L1585.72 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M1602.91 1518.58 L1608 1518.58 Q1612.77 1526.09 1615.13 1533.29 Q1617.51 1540.48 1617.51 1547.58 Q1617.51 1554.71 1615.13 1561.93 Q1612.77 1569.16 1608 1576.64 L1602.91 1576.64 Q1607.14 1569.35 1609.21 1562.16 Q1611.31 1554.93 1611.31 1547.58 Q1611.31 1540.23 1609.21 1533.06 Q1607.14 1525.9 1602.91 1518.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  205.121,1423.18 2352.76,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  205.121,1099.43 2352.76,1099.43 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  205.121,775.681 2352.76,775.681 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  205.121,451.931 2352.76,451.931 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  205.121,128.181 2352.76,128.181 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,1423.18 205.121,47.2441 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,1423.18 224.019,1423.18 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,1099.43 224.019,1099.43 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,775.681 224.019,775.681 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,451.931 224.019,451.931 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  205.121,128.181 224.019,128.181 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M157.177 1408.98 Q153.566 1408.98 151.737 1412.54 Q149.931 1416.08 149.931 1423.21 Q149.931 1430.32 151.737 1433.89 Q153.566 1437.43 157.177 1437.43 Q160.811 1437.43 162.616 1433.89 Q164.445 1430.32 164.445 1423.21 Q164.445 1416.08 162.616 1412.54 Q160.811 1408.98 157.177 1408.98 M157.177 1405.27 Q162.987 1405.27 166.042 1409.88 Q169.121 1414.46 169.121 1423.21 Q169.121 1431.94 166.042 1436.55 Q162.987 1441.13 157.177 1441.13 Q151.366 1441.13 148.288 1436.55 Q145.232 1431.94 145.232 1423.21 Q145.232 1414.46 148.288 1409.88 Q151.366 1405.27 157.177 1405.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M121.043 1112.78 L137.362 1112.78 L137.362 1116.71 L115.418 1116.71 L115.418 1112.78 Q118.08 1110.02 122.663 1105.39 Q127.269 1100.74 128.45 1099.4 Q130.695 1096.87 131.575 1095.14 Q132.478 1093.38 132.478 1091.69 Q132.478 1088.93 130.533 1087.2 Q128.612 1085.46 125.51 1085.46 Q123.311 1085.46 120.857 1086.22 Q118.427 1086.99 115.649 1088.54 L115.649 1083.82 Q118.473 1082.68 120.927 1082.1 Q123.38 1081.53 125.418 1081.53 Q130.788 1081.53 133.982 1084.21 Q137.177 1086.9 137.177 1091.39 Q137.177 1093.52 136.367 1095.44 Q135.579 1097.34 133.473 1099.93 Q132.894 1100.6 129.792 1103.82 Q126.691 1107.01 121.043 1112.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M157.177 1085.23 Q153.566 1085.23 151.737 1088.79 Q149.931 1092.34 149.931 1099.46 Q149.931 1106.57 151.737 1110.14 Q153.566 1113.68 157.177 1113.68 Q160.811 1113.68 162.616 1110.14 Q164.445 1106.57 164.445 1099.46 Q164.445 1092.34 162.616 1088.79 Q160.811 1085.23 157.177 1085.23 M157.177 1081.53 Q162.987 1081.53 166.042 1086.13 Q169.121 1090.72 169.121 1099.46 Q169.121 1108.19 166.042 1112.8 Q162.987 1117.38 157.177 1117.38 Q151.366 1117.38 148.288 1112.8 Q145.232 1108.19 145.232 1099.46 Q145.232 1090.72 148.288 1086.13 Q151.366 1081.53 157.177 1081.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M129.862 762.475 L118.056 780.924 L129.862 780.924 L129.862 762.475 M128.635 758.401 L134.515 758.401 L134.515 780.924 L139.445 780.924 L139.445 784.813 L134.515 784.813 L134.515 792.961 L129.862 792.961 L129.862 784.813 L114.26 784.813 L114.26 780.299 L128.635 758.401 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M157.177 761.479 Q153.566 761.479 151.737 765.044 Q149.931 768.586 149.931 775.715 Q149.931 782.822 151.737 786.387 Q153.566 789.928 157.177 789.928 Q160.811 789.928 162.616 786.387 Q164.445 782.822 164.445 775.715 Q164.445 768.586 162.616 765.044 Q160.811 761.479 157.177 761.479 M157.177 757.776 Q162.987 757.776 166.042 762.382 Q169.121 766.965 169.121 775.715 Q169.121 784.442 166.042 789.049 Q162.987 793.632 157.177 793.632 Q151.366 793.632 148.288 789.049 Q145.232 784.442 145.232 775.715 Q145.232 766.965 148.288 762.382 Q151.366 757.776 157.177 757.776 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M127.593 450.068 Q124.445 450.068 122.593 452.22 Q120.765 454.373 120.765 458.123 Q120.765 461.85 122.593 464.026 Q124.445 466.179 127.593 466.179 Q130.742 466.179 132.57 464.026 Q134.422 461.85 134.422 458.123 Q134.422 454.373 132.57 452.22 Q130.742 450.068 127.593 450.068 M136.876 435.415 L136.876 439.674 Q135.117 438.841 133.311 438.401 Q131.529 437.961 129.769 437.961 Q125.14 437.961 122.686 441.086 Q120.255 444.211 119.908 450.531 Q121.274 448.517 123.334 447.452 Q125.394 446.364 127.871 446.364 Q133.08 446.364 136.089 449.535 Q139.121 452.683 139.121 458.123 Q139.121 463.447 135.973 466.665 Q132.825 469.882 127.593 469.882 Q121.598 469.882 118.427 465.299 Q115.256 460.693 115.256 451.966 Q115.256 443.771 119.144 438.91 Q123.033 434.026 129.584 434.026 Q131.343 434.026 133.126 434.373 Q134.931 434.721 136.876 435.415 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M157.177 437.73 Q153.566 437.73 151.737 441.295 Q149.931 444.836 149.931 451.966 Q149.931 459.072 151.737 462.637 Q153.566 466.179 157.177 466.179 Q160.811 466.179 162.616 462.637 Q164.445 459.072 164.445 451.966 Q164.445 444.836 162.616 441.295 Q160.811 437.73 157.177 437.73 M157.177 434.026 Q162.987 434.026 166.042 438.633 Q169.121 443.216 169.121 451.966 Q169.121 460.693 166.042 465.299 Q162.987 469.882 157.177 469.882 Q151.366 469.882 148.288 465.299 Q145.232 460.693 145.232 451.966 Q145.232 443.216 148.288 438.633 Q151.366 434.026 157.177 434.026 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M127.015 129.05 Q123.681 129.05 121.76 130.832 Q119.862 132.614 119.862 135.739 Q119.862 138.864 121.76 140.647 Q123.681 142.429 127.015 142.429 Q130.348 142.429 132.269 140.647 Q134.191 138.841 134.191 135.739 Q134.191 132.614 132.269 130.832 Q130.371 129.05 127.015 129.05 M122.339 127.059 Q119.33 126.318 117.64 124.258 Q115.973 122.198 115.973 119.235 Q115.973 115.091 118.913 112.684 Q121.876 110.276 127.015 110.276 Q132.177 110.276 135.117 112.684 Q138.056 115.091 138.056 119.235 Q138.056 122.198 136.367 124.258 Q134.7 126.318 131.714 127.059 Q135.093 127.846 136.968 130.137 Q138.867 132.429 138.867 135.739 Q138.867 140.762 135.788 143.448 Q132.732 146.133 127.015 146.133 Q121.297 146.133 118.218 143.448 Q115.163 140.762 115.163 135.739 Q115.163 132.429 117.061 130.137 Q118.959 127.846 122.339 127.059 M120.626 119.675 Q120.626 122.36 122.293 123.864 Q123.982 125.369 127.015 125.369 Q130.024 125.369 131.714 123.864 Q133.427 122.36 133.427 119.675 Q133.427 116.989 131.714 115.485 Q130.024 113.98 127.015 113.98 Q123.982 113.98 122.293 115.485 Q120.626 116.989 120.626 119.675 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M157.177 113.98 Q153.566 113.98 151.737 117.545 Q149.931 121.087 149.931 128.216 Q149.931 135.323 151.737 138.887 Q153.566 142.429 157.177 142.429 Q160.811 142.429 162.616 138.887 Q164.445 135.323 164.445 128.216 Q164.445 121.087 162.616 117.545 Q160.811 113.98 157.177 113.98 M157.177 110.276 Q162.987 110.276 166.042 114.883 Q169.121 119.466 169.121 128.216 Q169.121 136.943 166.042 141.549 Q162.987 146.133 157.177 146.133 Q151.366 146.133 148.288 141.549 Q145.232 136.943 145.232 128.216 Q145.232 119.466 148.288 114.883 Q151.366 110.276 157.177 110.276 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M21.7677 1106.22 L39.6235 1106.22 L39.6235 1098.14 Q39.6235 1093.65 37.3 1091.2 Q34.9765 1088.75 30.6797 1088.75 Q26.4147 1088.75 24.0912 1091.2 Q21.7677 1093.65 21.7677 1098.14 L21.7677 1106.22 M16.4842 1112.65 L16.4842 1098.14 Q16.4842 1090.15 20.1126 1086.07 Q23.7092 1081.97 30.6797 1081.97 Q37.7138 1081.97 41.3104 1086.07 Q44.907 1090.15 44.907 1098.14 L44.907 1106.22 L64.0042 1106.22 L64.0042 1112.65 L16.4842 1112.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M33.8307 1054.09 Q33.2578 1055.07 33.0032 1056.25 Q32.7167 1057.4 32.7167 1058.8 Q32.7167 1063.76 35.9632 1066.44 Q39.1779 1069.08 45.2253 1069.08 L64.0042 1069.08 L64.0042 1074.97 L28.3562 1074.97 L28.3562 1069.08 L33.8944 1069.08 Q30.6479 1067.23 29.0883 1064.27 Q27.4968 1061.31 27.4968 1057.08 Q27.4968 1056.47 27.5923 1055.74 Q27.656 1055.01 27.8151 1054.12 L33.8307 1054.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M44.7161 1018.88 L47.5806 1018.88 L47.5806 1045.81 Q53.6281 1045.43 56.8109 1042.18 Q59.9619 1038.9 59.9619 1033.08 Q59.9619 1029.71 59.1344 1026.55 Q58.3069 1023.37 56.6518 1020.25 L62.1899 1020.25 Q63.5267 1023.4 64.227 1026.71 Q64.9272 1030.02 64.9272 1033.43 Q64.9272 1041.96 59.9619 1046.96 Q54.9967 1051.92 46.5303 1051.92 Q37.7774 1051.92 32.6531 1047.21 Q27.4968 1042.47 27.4968 1034.45 Q27.4968 1027.25 32.1438 1023.09 Q36.7589 1018.88 44.7161 1018.88 M42.9973 1024.74 Q38.1912 1024.8 35.3266 1027.45 Q32.4621 1030.06 32.4621 1034.38 Q32.4621 1039.29 35.2312 1042.25 Q38.0002 1045.17 43.0292 1045.62 L42.9973 1024.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M29.4065 986.546 L34.9447 986.546 Q33.6716 989.029 33.035 991.702 Q32.3984 994.376 32.3984 997.24 Q32.3984 1001.6 33.7352 1003.8 Q35.072 1005.96 37.7456 1005.96 Q39.7826 1005.96 40.9603 1004.4 Q42.1061 1002.84 43.1565 998.132 L43.6021 996.126 Q44.9389 989.888 47.3897 987.278 Q49.8086 984.636 54.1691 984.636 Q59.1344 984.636 62.0308 988.583 Q64.9272 992.498 64.9272 999.373 Q64.9272 1002.24 64.3543 1005.36 Q63.8132 1008.44 62.6992 1011.88 L56.6518 1011.88 Q58.3387 1008.63 59.198 1005.48 Q60.0256 1002.33 60.0256 999.246 Q60.0256 995.108 58.6251 992.88 Q57.1929 990.652 54.6147 990.652 Q52.2276 990.652 50.9545 992.275 Q49.6813 993.867 48.5037 999.309 L48.0262 1001.35 Q46.8804 1006.79 44.5251 1009.21 Q42.138 1011.63 38.0002 1011.63 Q32.9713 1011.63 30.2341 1008.06 Q27.4968 1004.5 27.4968 997.941 Q27.4968 994.694 27.9743 991.83 Q28.4517 988.965 29.4065 986.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M29.4065 952.585 L34.9447 952.585 Q33.6716 955.068 33.035 957.741 Q32.3984 960.415 32.3984 963.279 Q32.3984 967.64 33.7352 969.836 Q35.072 972 37.7456 972 Q39.7826 972 40.9603 970.441 Q42.1061 968.881 43.1565 964.171 L43.6021 962.165 Q44.9389 955.927 47.3897 953.317 Q49.8086 950.675 54.1691 950.675 Q59.1344 950.675 62.0308 954.622 Q64.9272 958.537 64.9272 965.412 Q64.9272 968.276 64.3543 971.396 Q63.8132 974.483 62.6992 977.92 L56.6518 977.92 Q58.3387 974.674 59.198 971.523 Q60.0256 968.372 60.0256 965.285 Q60.0256 961.147 58.6251 958.919 Q57.1929 956.691 54.6147 956.691 Q52.2276 956.691 50.9545 958.314 Q49.6813 959.905 48.5037 965.348 L48.0262 967.385 Q46.8804 972.828 44.5251 975.247 Q42.138 977.666 38.0002 977.666 Q32.9713 977.666 30.2341 974.101 Q27.4968 970.536 27.4968 963.98 Q27.4968 960.733 27.9743 957.868 Q28.4517 955.004 29.4065 952.585 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M49.9359 941.954 L28.3562 941.954 L28.3562 936.098 L49.7131 936.098 Q54.7739 936.098 57.3202 934.124 Q59.8346 932.151 59.8346 928.204 Q59.8346 923.462 56.8109 920.725 Q53.7872 917.955 48.5673 917.955 L28.3562 917.955 L28.3562 912.099 L64.0042 912.099 L64.0042 917.955 L58.5296 917.955 Q61.7762 920.088 63.3676 922.921 Q64.9272 925.722 64.9272 929.446 Q64.9272 935.588 61.1078 938.771 Q57.2883 941.954 49.9359 941.954 M27.4968 927.218 L27.4968 927.218 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M33.8307 879.379 Q33.2578 880.366 33.0032 881.544 Q32.7167 882.689 32.7167 884.09 Q32.7167 889.055 35.9632 891.729 Q39.1779 894.371 45.2253 894.371 L64.0042 894.371 L64.0042 900.259 L28.3562 900.259 L28.3562 894.371 L33.8944 894.371 Q30.6479 892.524 29.0883 889.564 Q27.4968 886.604 27.4968 882.371 Q27.4968 881.766 27.5923 881.034 Q27.656 880.302 27.8151 879.411 L33.8307 879.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M44.7161 844.177 L47.5806 844.177 L47.5806 871.104 Q53.6281 870.722 56.8109 867.475 Q59.9619 864.197 59.9619 858.372 Q59.9619 854.999 59.1344 851.848 Q58.3069 848.665 56.6518 845.546 L62.1899 845.546 Q63.5267 848.697 64.227 852.007 Q64.9272 855.317 64.9272 858.723 Q64.9272 867.253 59.9619 872.25 Q54.9967 877.215 46.5303 877.215 Q37.7774 877.215 32.6531 872.504 Q27.4968 867.762 27.4968 859.741 Q27.4968 852.548 32.1438 848.378 Q36.7589 844.177 44.7161 844.177 M42.9973 850.033 Q38.1912 850.097 35.3266 852.739 Q32.4621 855.349 32.4621 859.677 Q32.4621 864.579 35.2312 867.539 Q38.0002 870.467 43.0292 870.913 L42.9973 850.033 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M21.7677 807.16 L58.7206 807.16 L58.7206 799.394 Q58.7206 789.559 54.2646 785.008 Q49.8086 780.424 40.1964 780.424 Q30.6479 780.424 26.2237 785.008 Q21.7677 789.559 21.7677 799.394 L21.7677 807.16 M16.4842 813.59 L16.4842 800.381 Q16.4842 786.567 22.2451 780.106 Q27.9743 773.645 40.1964 773.645 Q52.4822 773.645 58.2432 780.138 Q64.0042 786.631 64.0042 800.381 L64.0042 813.59 L16.4842 813.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M33.8307 742.994 Q33.2578 743.981 33.0032 745.158 Q32.7167 746.304 32.7167 747.705 Q32.7167 752.67 35.9632 755.344 Q39.1779 757.985 45.2253 757.985 L64.0042 757.985 L64.0042 763.874 L28.3562 763.874 L28.3562 757.985 L33.8944 757.985 Q30.6479 756.139 29.0883 753.179 Q27.4968 750.219 27.4968 745.986 Q27.4968 745.381 27.5923 744.649 Q27.656 743.917 27.8151 743.026 L33.8307 742.994 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M32.4621 724.47 Q32.4621 729.18 36.1542 731.918 Q39.8145 734.655 46.212 734.655 Q52.6095 734.655 56.3017 731.95 Q59.9619 729.212 59.9619 724.47 Q59.9619 719.791 56.2698 717.054 Q52.5777 714.317 46.212 714.317 Q39.8781 714.317 36.186 717.054 Q32.4621 719.791 32.4621 724.47 M27.4968 724.47 Q27.4968 716.831 32.4621 712.47 Q37.4273 708.11 46.212 708.11 Q54.9649 708.11 59.9619 712.47 Q64.9272 716.831 64.9272 724.47 Q64.9272 732.141 59.9619 736.501 Q54.9649 740.83 46.212 740.83 Q37.4273 740.83 32.4621 736.501 Q27.4968 732.141 27.4968 724.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M58.657 692.737 L77.5631 692.737 L77.5631 698.625 L28.3562 698.625 L28.3562 692.737 L33.7671 692.737 Q30.5842 690.891 29.0564 688.09 Q27.4968 685.257 27.4968 681.342 Q27.4968 674.849 32.6531 670.807 Q37.8093 666.733 46.212 666.733 Q54.6147 666.733 59.771 670.807 Q64.9272 674.849 64.9272 681.342 Q64.9272 685.257 63.3994 688.09 Q61.8398 690.891 58.657 692.737 M46.212 672.812 Q39.7508 672.812 36.0905 675.486 Q32.3984 678.127 32.3984 682.774 Q32.3984 687.421 36.0905 690.095 Q39.7508 692.737 46.212 692.737 Q52.6732 692.737 56.3653 690.095 Q60.0256 687.421 60.0256 682.774 Q60.0256 678.127 56.3653 675.486 Q52.6732 672.812 46.212 672.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M55.9197 655.529 L55.9197 648.813 L61.3942 648.813 L71.5793 654.033 L71.5793 658.139 L61.3942 655.529 L55.9197 655.529 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M22.818 599.447 L58.657 612.497 L58.657 586.366 L22.818 599.447 M64.0042 621.218 L16.4842 603.076 L16.4842 595.787 L64.0042 577.677 L64.0042 621.218 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M21.7677 564.309 L39.6235 564.309 L39.6235 556.224 Q39.6235 551.736 37.3 549.286 Q34.9765 546.835 30.6797 546.835 Q26.4147 546.835 24.0912 549.286 Q21.7677 551.736 21.7677 556.224 L21.7677 564.309 M16.4842 570.738 L16.4842 556.224 Q16.4842 548.235 20.1126 544.161 Q23.7092 540.055 30.6797 540.055 Q37.7138 540.055 41.3104 544.161 Q44.907 548.235 44.907 556.224 L44.907 564.309 L64.0042 564.309 L64.0042 570.738 L16.4842 570.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M14.5426 496.896 Q21.8632 501.161 29.0246 503.23 Q36.186 505.299 43.5384 505.299 Q50.8908 505.299 58.1159 503.23 Q65.3091 501.129 72.5979 496.896 L72.5979 501.988 Q65.1182 506.763 57.8931 509.15 Q50.668 511.505 43.5384 511.505 Q36.4406 511.505 29.2474 509.15 Q22.0542 506.795 14.5426 501.988 L14.5426 496.896 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M14.479 485.756 L14.479 479.868 L43.7294 479.868 L28.3562 462.394 L28.3562 454.914 L45.0344 473.82 L64.0042 454.118 L64.0042 461.757 L46.5939 479.868 L64.0042 479.868 L64.0042 485.756 L14.479 485.756 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M21.7677 441.1 L39.6235 441.1 L39.6235 433.016 Q39.6235 428.528 37.3 426.077 Q34.9765 423.627 30.6797 423.627 Q26.4147 423.627 24.0912 426.077 Q21.7677 428.528 21.7677 433.016 L21.7677 441.1 M16.4842 447.53 L16.4842 433.016 Q16.4842 425.027 20.1126 420.953 Q23.7092 416.847 30.6797 416.847 Q37.7138 416.847 41.3104 420.953 Q44.907 425.027 44.907 433.016 L44.907 441.1 L64.0042 441.1 L64.0042 447.53 L16.4842 447.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M46.0847 395.204 Q46.0847 402.301 47.7079 405.039 Q49.3312 407.776 53.2461 407.776 Q56.3653 407.776 58.2114 405.739 Q60.0256 403.67 60.0256 400.137 Q60.0256 395.267 56.5881 392.339 Q53.1188 389.379 47.3897 389.379 L46.0847 389.379 L46.0847 395.204 M43.6657 383.523 L64.0042 383.523 L64.0042 389.379 L58.5933 389.379 Q61.8398 391.384 63.3994 394.376 Q64.9272 397.368 64.9272 401.697 Q64.9272 407.171 61.8716 410.418 Q58.7843 413.632 53.6281 413.632 Q47.6125 413.632 44.5569 409.622 Q41.5014 405.58 41.5014 397.591 L41.5014 389.379 L40.9285 389.379 Q36.8862 389.379 34.6901 392.053 Q32.4621 394.694 32.4621 399.501 Q32.4621 402.556 33.1941 405.452 Q33.9262 408.349 35.3903 411.022 L29.9795 411.022 Q28.7381 407.808 28.1334 404.784 Q27.4968 401.76 27.4968 398.896 Q27.4968 391.161 31.5072 387.342 Q35.5176 383.523 43.6657 383.523 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M14.5426 372.383 L14.5426 367.29 Q22.0542 362.516 29.2474 360.16 Q36.4406 357.773 43.5384 357.773 Q50.668 357.773 57.8931 360.16 Q65.1182 362.516 72.5979 367.29 L72.5979 372.383 Q65.3091 368.149 58.1159 366.081 Q50.8908 363.98 43.5384 363.98 Q36.186 363.98 29.0246 366.081 Q21.8632 368.149 14.5426 372.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip612)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,911.874 286.368,909.803 306.834,907.721 327.299,905.627 347.765,903.522 368.23,901.406 388.695,899.279 409.161,897.141 429.626,894.993 450.091,892.833 \n",
       "  470.557,890.664 491.022,888.484 511.487,886.294 531.953,884.094 552.418,881.885 572.884,879.666 593.349,877.438 613.814,875.202 634.28,872.956 654.745,870.703 \n",
       "  675.21,868.443 695.676,866.174 716.141,863.899 736.606,861.618 757.072,859.33 777.537,857.038 798.002,854.74 818.468,852.438 838.933,850.133 859.399,847.825 \n",
       "  879.864,845.514 900.329,843.203 920.795,840.891 941.26,838.579 961.725,836.269 982.191,833.961 1002.66,831.657 1023.12,829.358 1043.59,827.065 1064.05,824.78 \n",
       "  1084.52,822.503 1104.98,820.237 1125.45,817.983 1145.91,815.743 1166.38,813.519 1186.84,811.313 1207.31,809.126 1227.78,806.962 1248.24,804.823 1268.71,802.711 \n",
       "  1289.17,800.629 1309.64,798.581 1330.1,796.569 1350.57,794.597 1371.03,792.669 1391.5,790.788 1411.96,788.959 1432.43,787.186 1452.89,785.475 1473.36,783.83 \n",
       "  1493.82,782.256 1514.29,780.761 1534.76,779.35 1555.22,778.031 1575.69,776.81 1596.15,775.696 1616.62,774.698 1637.08,773.824 1657.55,773.084 1678.01,772.49 \n",
       "  1698.48,772.053 1718.94,771.785 1739.41,771.701 1759.87,771.814 1780.34,772.141 1800.81,772.698 1821.27,773.505 1841.74,774.581 1862.2,775.949 1882.67,777.633 \n",
       "  1903.13,779.658 1923.6,782.053 1944.06,784.849 1964.53,788.08 1984.99,791.783 2005.46,795.998 2025.92,800.771 2046.39,806.151 2066.85,812.191 2087.32,818.952 \n",
       "  2107.79,826.499 2128.25,834.906 2148.72,844.254 2169.18,854.633 2189.65,866.144 2210.11,878.901 2230.58,893.029 2251.04,908.672 2271.51,925.991 2291.97,945.168 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#ff7c00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,790.247 286.368,787.731 306.834,785.202 327.299,782.659 347.765,780.104 368.23,777.534 388.695,774.952 409.161,772.358 429.626,769.75 450.091,767.13 \n",
       "  470.557,764.498 491.022,761.854 511.487,759.199 531.953,756.531 552.418,753.853 572.884,751.164 593.349,748.464 613.814,745.754 634.28,743.034 654.745,740.305 \n",
       "  675.21,737.567 695.676,734.821 716.141,732.067 736.606,729.306 757.072,726.538 777.537,723.764 798.002,720.985 818.468,718.201 838.933,715.414 859.399,712.624 \n",
       "  879.864,709.832 900.329,707.039 920.795,704.246 941.26,701.454 961.725,698.665 982.191,695.879 1002.66,693.099 1023.12,690.325 1043.59,687.559 1064.05,684.803 \n",
       "  1084.52,682.058 1104.98,679.327 1125.45,676.611 1145.91,673.913 1166.38,671.235 1186.84,668.579 1207.31,665.948 1227.78,663.344 1248.24,660.772 1268.71,658.233 \n",
       "  1289.17,655.732 1309.64,653.272 1330.1,650.857 1350.57,648.491 1371.03,646.178 1391.5,643.924 1411.96,641.733 1432.43,639.612 1452.89,637.565 1473.36,635.599 \n",
       "  1493.82,633.721 1514.29,631.939 1534.76,630.259 1555.22,628.691 1575.69,627.243 1596.15,625.925 1616.62,624.747 1637.08,623.721 1657.55,622.859 1678.01,622.173 \n",
       "  1698.48,621.678 1718.94,621.389 1739.41,621.323 1759.87,621.496 1780.34,621.929 1800.81,622.641 1821.27,623.657 1841.74,625 1862.2,626.696 1882.67,628.776 \n",
       "  1903.13,631.27 1923.6,634.213 1944.06,637.643 1964.53,641.601 1984.99,646.132 2005.46,651.286 2025.92,657.118 2046.39,663.687 2066.85,671.059 2087.32,679.308 \n",
       "  2107.79,688.515 2128.25,698.769 2148.72,710.17 2169.18,722.83 2189.65,736.873 2210.11,752.439 2230.58,769.685 2251.04,788.788 2271.51,809.948 2291.97,833.394 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#1ac938; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,659.262 286.368,656.283 306.834,653.287 327.299,650.277 347.765,647.251 368.23,644.21 388.695,641.154 409.161,638.083 429.626,634.998 450.091,631.899 \n",
       "  470.557,628.786 491.022,625.659 511.487,622.519 531.953,619.365 552.418,616.199 572.884,613.021 593.349,609.83 613.814,606.628 634.28,603.416 654.745,600.192 \n",
       "  675.21,596.959 695.676,593.717 716.141,590.466 736.606,587.207 757.072,583.941 777.537,580.668 798.002,577.389 818.468,574.106 838.933,570.82 859.399,567.53 \n",
       "  879.864,564.239 900.329,560.947 920.795,557.656 941.26,554.367 961.725,551.082 982.191,547.802 1002.66,544.529 1023.12,541.264 1043.59,538.009 1064.05,534.766 \n",
       "  1084.52,531.538 1104.98,528.326 1125.45,525.134 1145.91,521.962 1166.38,518.815 1186.84,515.695 1207.31,512.606 1227.78,509.55 1248.24,506.531 1268.71,503.553 \n",
       "  1289.17,500.619 1309.64,497.735 1330.1,494.905 1350.57,492.134 1371.03,489.426 1391.5,486.789 1411.96,484.227 1432.43,481.747 1452.89,479.356 1473.36,477.062 \n",
       "  1493.82,474.872 1514.29,472.796 1534.76,470.842 1555.22,469.02 1575.69,467.34 1596.15,465.815 1616.62,464.456 1637.08,463.277 1657.55,462.292 1678.01,461.515 \n",
       "  1698.48,460.965 1718.94,460.659 1739.41,460.615 1759.87,460.856 1780.34,461.403 1800.81,462.281 1821.27,463.518 1841.74,465.141 1862.2,467.184 1882.67,469.679 \n",
       "  1903.13,472.664 1923.6,476.181 1944.06,480.273 1964.53,484.991 1984.99,490.387 2005.46,496.52 2025.92,503.456 2046.39,511.265 2066.85,520.026 2087.32,529.828 \n",
       "  2107.79,540.765 2128.25,552.947 2148.72,566.492 2169.18,581.534 2189.65,598.223 2210.11,616.727 2230.58,637.236 2251.04,659.964 2271.51,685.155 2291.97,713.086 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#e8000b; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,519.915 286.368,516.458 306.834,512.982 327.299,509.489 347.765,505.979 368.23,502.452 388.695,498.909 409.161,495.348 429.626,491.772 450.091,488.179 \n",
       "  470.557,484.571 491.022,480.947 511.487,477.308 531.953,473.655 552.418,469.987 572.884,466.306 593.349,462.612 613.814,458.905 634.28,455.185 654.745,451.454 \n",
       "  675.21,447.713 695.676,443.961 716.141,440.199 736.606,436.429 757.072,432.652 777.537,428.867 798.002,425.077 818.468,421.281 838.933,417.482 859.399,413.681 \n",
       "  879.864,409.878 900.329,406.075 920.795,402.274 941.26,398.477 961.725,394.683 982.191,390.897 1002.66,387.119 1023.12,383.351 1043.59,379.596 1064.05,375.856 \n",
       "  1084.52,372.133 1104.98,368.43 1125.45,364.75 1145.91,361.096 1166.38,357.47 1186.84,353.876 1207.31,350.318 1227.78,346.8 1248.24,343.325 1268.71,339.899 \n",
       "  1289.17,336.525 1309.64,333.209 1330.1,329.956 1350.57,326.771 1371.03,323.662 1391.5,320.634 1411.96,317.694 1432.43,314.85 1452.89,312.11 1473.36,309.482 \n",
       "  1493.82,306.976 1514.29,304.601 1534.76,302.369 1555.22,300.29 1575.69,298.377 1596.15,296.643 1616.62,295.102 1637.08,293.769 1657.55,292.661 1678.01,291.796 \n",
       "  1698.48,291.193 1718.94,290.872 1739.41,290.856 1759.87,291.169 1780.34,291.838 1800.81,292.891 1821.27,294.358 1841.74,296.273 1862.2,298.674 1882.67,301.599 \n",
       "  1903.13,305.093 1923.6,309.202 1944.06,313.978 1964.53,319.479 1984.99,325.767 2005.46,332.91 2025.92,340.984 2046.39,350.071 2066.85,360.265 2087.32,371.666 \n",
       "  2107.79,384.389 2128.25,398.558 2148.72,414.314 2169.18,431.815 2189.65,451.236 2210.11,472.776 2230.58,496.66 2251.04,523.141 2271.51,552.508 2291.97,585.095 \n",
       "  \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip612)\" style=\"stroke:#8b2be2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  265.903,373.122 286.368,369.176 306.834,365.21 327.299,361.225 347.765,357.22 368.23,353.197 388.695,349.155 409.161,345.095 429.626,341.016 450.091,336.92 \n",
       "  470.557,332.807 491.022,328.676 511.487,324.529 531.953,320.366 552.418,316.188 572.884,311.994 593.349,307.786 613.814,303.563 634.28,299.328 654.745,295.08 \n",
       "  675.21,290.82 695.676,286.549 716.141,282.268 736.606,277.978 757.072,273.679 777.537,269.374 798.002,265.062 818.468,260.746 838.933,256.426 859.399,252.104 \n",
       "  879.864,247.781 900.329,243.458 920.795,239.139 941.26,234.824 961.725,230.514 982.191,226.213 1002.66,221.923 1023.12,217.645 1043.59,213.382 1064.05,209.136 \n",
       "  1084.52,204.912 1104.98,200.71 1125.45,196.535 1145.91,192.39 1166.38,188.279 1186.84,184.205 1207.31,180.172 1227.78,176.185 1248.24,172.249 1268.71,168.368 \n",
       "  1289.17,164.548 1309.64,160.794 1330.1,157.113 1350.57,153.511 1371.03,149.994 1391.5,146.571 1411.96,143.249 1432.43,140.037 1452.89,136.944 1473.36,133.98 \n",
       "  1493.82,131.154 1514.29,128.479 1534.76,125.966 1555.22,123.629 1575.69,121.481 1596.15,119.537 1616.62,117.814 1637.08,116.328 1657.55,115.099 1678.01,114.147 \n",
       "  1698.48,113.493 1718.94,113.161 1739.41,113.176 1759.87,113.567 1780.34,114.362 1800.81,115.595 1821.27,117.3 1841.74,119.516 1862.2,122.285 1882.67,125.652 \n",
       "  1903.13,129.666 1923.6,134.381 1944.06,139.858 1964.53,146.16 1984.99,153.359 2005.46,161.534 2025.92,170.771 2046.39,181.165 2066.85,192.822 2087.32,205.858 \n",
       "  2107.79,220.405 2128.25,236.606 2148.72,254.624 2169.18,274.64 2189.65,296.858 2210.11,321.508 2230.58,348.85 2251.04,379.18 2271.51,412.837 2291.97,450.209 \n",
       "  \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"\n",
       "M276.709 1377.32 L1033.16 1377.32 L1033.16 1066.28 L276.709 1066.28  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  276.709,1377.32 1033.16,1377.32 1033.16,1066.28 276.709,1066.28 276.709,1377.32 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip610)\" style=\"stroke:#023eff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  300.571,1118.12 443.747,1118.12 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M467.61 1100.84 L472.286 1100.84 L472.286 1115 L489.276 1115 L489.276 1100.84 L493.952 1100.84 L493.952 1135.4 L489.276 1135.4 L489.276 1118.94 L472.286 1118.94 L472.286 1135.4 L467.61 1135.4 L467.61 1100.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M525.248 1121.37 L525.248 1123.45 L505.665 1123.45 Q505.943 1127.85 508.304 1130.16 Q510.688 1132.46 514.924 1132.46 Q517.378 1132.46 519.67 1131.85 Q521.984 1131.25 524.253 1130.05 L524.253 1134.08 Q521.961 1135.05 519.554 1135.56 Q517.146 1136.07 514.67 1136.07 Q508.466 1136.07 504.832 1132.46 Q501.221 1128.84 501.221 1122.69 Q501.221 1116.32 504.647 1112.59 Q508.096 1108.84 513.929 1108.84 Q519.16 1108.84 522.193 1112.22 Q525.248 1115.58 525.248 1121.37 M520.989 1120.12 Q520.943 1116.62 519.021 1114.54 Q517.123 1112.46 513.975 1112.46 Q510.41 1112.46 508.258 1114.47 Q506.128 1116.48 505.804 1120.14 L520.989 1120.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M544.021 1122.36 Q538.859 1122.36 536.869 1123.54 Q534.878 1124.72 534.878 1127.57 Q534.878 1129.84 536.359 1131.18 Q537.864 1132.5 540.433 1132.5 Q543.975 1132.5 546.105 1130 Q548.257 1127.48 548.257 1123.31 L548.257 1122.36 L544.021 1122.36 M552.517 1120.6 L552.517 1135.4 L548.257 1135.4 L548.257 1131.46 Q546.799 1133.82 544.623 1134.96 Q542.447 1136.07 539.299 1136.07 Q535.318 1136.07 532.957 1133.84 Q530.619 1131.6 530.619 1127.85 Q530.619 1123.47 533.535 1121.25 Q536.475 1119.03 542.285 1119.03 L548.257 1119.03 L548.257 1118.61 Q548.257 1115.67 546.313 1114.08 Q544.392 1112.46 540.896 1112.46 Q538.674 1112.46 536.568 1112.99 Q534.461 1113.52 532.517 1114.59 L532.517 1110.65 Q534.855 1109.75 537.054 1109.31 Q539.253 1108.84 541.336 1108.84 Q546.961 1108.84 549.739 1111.76 Q552.517 1114.68 552.517 1120.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M565.503 1102.11 L565.503 1109.47 L574.276 1109.47 L574.276 1112.78 L565.503 1112.78 L565.503 1126.85 Q565.503 1130.02 566.359 1130.93 Q567.239 1131.83 569.901 1131.83 L574.276 1131.83 L574.276 1135.4 L569.901 1135.4 Q564.97 1135.4 563.095 1133.57 Q561.22 1131.71 561.22 1126.85 L561.22 1112.78 L558.095 1112.78 L558.095 1109.47 L561.22 1109.47 L561.22 1102.11 L565.503 1102.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M609.97 1113.45 Q609.252 1113.03 608.396 1112.85 Q607.563 1112.64 606.544 1112.64 Q602.933 1112.64 600.989 1115 Q599.067 1117.34 599.067 1121.74 L599.067 1135.4 L594.785 1135.4 L594.785 1109.47 L599.067 1109.47 L599.067 1113.5 Q600.41 1111.14 602.563 1110 Q604.715 1108.84 607.794 1108.84 Q608.234 1108.84 608.766 1108.91 Q609.299 1108.96 609.947 1109.08 L609.97 1113.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M626.22 1122.36 Q621.058 1122.36 619.067 1123.54 Q617.076 1124.72 617.076 1127.57 Q617.076 1129.84 618.558 1131.18 Q620.063 1132.5 622.632 1132.5 Q626.174 1132.5 628.303 1130 Q630.456 1127.48 630.456 1123.31 L630.456 1122.36 L626.22 1122.36 M634.715 1120.6 L634.715 1135.4 L630.456 1135.4 L630.456 1131.46 Q628.998 1133.82 626.822 1134.96 Q624.646 1136.07 621.498 1136.07 Q617.516 1136.07 615.155 1133.84 Q612.817 1131.6 612.817 1127.85 Q612.817 1123.47 615.734 1121.25 Q618.674 1119.03 624.484 1119.03 L630.456 1119.03 L630.456 1118.61 Q630.456 1115.67 628.512 1114.08 Q626.59 1112.46 623.095 1112.46 Q620.873 1112.46 618.766 1112.99 Q616.66 1113.52 614.715 1114.59 L614.715 1110.65 Q617.053 1109.75 619.252 1109.31 Q621.451 1108.84 623.535 1108.84 Q629.16 1108.84 631.938 1111.76 Q634.715 1114.68 634.715 1120.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M647.701 1102.11 L647.701 1109.47 L656.474 1109.47 L656.474 1112.78 L647.701 1112.78 L647.701 1126.85 Q647.701 1130.02 648.558 1130.93 Q649.437 1131.83 652.099 1131.83 L656.474 1131.83 L656.474 1135.4 L652.099 1135.4 Q647.169 1135.4 645.294 1133.57 Q643.419 1131.71 643.419 1126.85 L643.419 1112.78 L640.294 1112.78 L640.294 1109.47 L643.419 1109.47 L643.419 1102.11 L647.701 1102.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M684.252 1121.37 L684.252 1123.45 L664.669 1123.45 Q664.947 1127.85 667.308 1130.16 Q669.692 1132.46 673.928 1132.46 Q676.382 1132.46 678.673 1131.85 Q680.988 1131.25 683.257 1130.05 L683.257 1134.08 Q680.965 1135.05 678.558 1135.56 Q676.15 1136.07 673.673 1136.07 Q667.47 1136.07 663.835 1132.46 Q660.224 1128.84 660.224 1122.69 Q660.224 1116.32 663.65 1112.59 Q667.099 1108.84 672.933 1108.84 Q678.164 1108.84 681.197 1112.22 Q684.252 1115.58 684.252 1121.37 M679.993 1120.12 Q679.947 1116.62 678.025 1114.54 Q676.127 1112.46 672.979 1112.46 Q669.414 1112.46 667.261 1114.47 Q665.132 1116.48 664.808 1120.14 L679.993 1120.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M706.868 1113.87 L736.543 1113.87 L736.543 1117.76 L706.868 1117.76 L706.868 1113.87 M706.868 1123.31 L736.543 1123.31 L736.543 1127.25 L706.868 1127.25 L706.868 1123.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M771.705 1118.98 Q768.372 1118.98 766.451 1120.77 Q764.553 1122.55 764.553 1125.67 Q764.553 1128.8 766.451 1130.58 Q768.372 1132.36 771.705 1132.36 Q775.039 1132.36 776.96 1130.58 Q778.881 1128.77 778.881 1125.67 Q778.881 1122.55 776.96 1120.77 Q775.062 1118.98 771.705 1118.98 M767.029 1116.99 Q764.02 1116.25 762.33 1114.19 Q760.664 1112.13 760.664 1109.17 Q760.664 1105.03 763.603 1102.62 Q766.566 1100.21 771.705 1100.21 Q776.867 1100.21 779.807 1102.62 Q782.747 1105.03 782.747 1109.17 Q782.747 1112.13 781.057 1114.19 Q779.39 1116.25 776.404 1116.99 Q779.784 1117.78 781.659 1120.07 Q783.557 1122.36 783.557 1125.67 Q783.557 1130.7 780.478 1133.38 Q777.423 1136.07 771.705 1136.07 Q765.988 1136.07 762.909 1133.38 Q759.853 1130.7 759.853 1125.67 Q759.853 1122.36 761.752 1120.07 Q763.65 1117.78 767.029 1116.99 M765.316 1109.61 Q765.316 1112.29 766.983 1113.8 Q768.673 1115.3 771.705 1115.3 Q774.715 1115.3 776.404 1113.8 Q778.117 1112.29 778.117 1109.61 Q778.117 1106.92 776.404 1105.42 Q774.715 1103.91 771.705 1103.91 Q768.673 1103.91 766.983 1105.42 Q765.316 1106.92 765.316 1109.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M806.52 1100.84 L813.487 1100.84 L822.307 1124.35 L831.173 1100.84 L838.14 1100.84 L838.14 1135.4 L833.58 1135.4 L833.58 1105.05 L824.668 1128.75 L819.969 1128.75 L811.057 1105.05 L811.057 1135.4 L806.52 1135.4 L806.52 1100.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M847.422 1100.84 L852.098 1100.84 L852.098 1132.99 Q852.098 1139.24 849.714 1142.06 Q847.353 1144.89 842.098 1144.89 L840.316 1144.89 L840.316 1140.95 L841.774 1140.95 Q844.876 1140.95 846.149 1139.21 Q847.422 1137.48 847.422 1132.99 L847.422 1100.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M892.816 1110.23 L892.816 1114.26 Q891.01 1113.34 889.066 1112.87 Q887.121 1112.41 885.038 1112.41 Q881.867 1112.41 880.27 1113.38 Q878.695 1114.35 878.695 1116.3 Q878.695 1117.78 879.83 1118.64 Q880.964 1119.47 884.39 1120.23 L885.848 1120.56 Q890.385 1121.53 892.283 1123.31 Q894.205 1125.07 894.205 1128.24 Q894.205 1131.85 891.334 1133.96 Q888.487 1136.07 883.487 1136.07 Q881.404 1136.07 879.135 1135.65 Q876.89 1135.26 874.39 1134.45 L874.39 1130.05 Q876.751 1131.27 879.043 1131.9 Q881.334 1132.5 883.58 1132.5 Q886.589 1132.5 888.209 1131.48 Q889.83 1130.44 889.83 1128.57 Q889.83 1126.83 888.649 1125.9 Q887.492 1124.98 883.533 1124.12 L882.052 1123.78 Q878.094 1122.94 876.334 1121.23 Q874.575 1119.49 874.575 1116.48 Q874.575 1112.83 877.168 1110.84 Q879.76 1108.84 884.529 1108.84 Q886.89 1108.84 888.973 1109.19 Q891.056 1109.54 892.816 1110.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M918.649 1100.84 L931.218 1113.73 L926.566 1113.73 L916.38 1104.59 L906.195 1113.73 L901.543 1113.73 L914.112 1100.84 L918.649 1100.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M938.556 1120.51 L951.033 1120.51 L951.033 1124.31 L938.556 1124.31 L938.556 1120.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M959.227 1131.46 L966.866 1131.46 L966.866 1105.09 L958.556 1106.76 L958.556 1102.5 L966.82 1100.84 L971.496 1100.84 L971.496 1131.46 L979.135 1131.46 L979.135 1135.4 L959.227 1135.4 L959.227 1131.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip610)\" style=\"stroke:#ff7c00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  300.571,1169.96 443.747,1169.96 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M467.61 1152.68 L472.286 1152.68 L472.286 1166.84 L489.276 1166.84 L489.276 1152.68 L493.952 1152.68 L493.952 1187.24 L489.276 1187.24 L489.276 1170.78 L472.286 1170.78 L472.286 1187.24 L467.61 1187.24 L467.61 1152.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M525.248 1173.21 L525.248 1175.29 L505.665 1175.29 Q505.943 1179.69 508.304 1182 Q510.688 1184.3 514.924 1184.3 Q517.378 1184.3 519.67 1183.69 Q521.984 1183.09 524.253 1181.89 L524.253 1185.92 Q521.961 1186.89 519.554 1187.4 Q517.146 1187.91 514.67 1187.91 Q508.466 1187.91 504.832 1184.3 Q501.221 1180.68 501.221 1174.53 Q501.221 1168.16 504.647 1164.43 Q508.096 1160.68 513.929 1160.68 Q519.16 1160.68 522.193 1164.06 Q525.248 1167.42 525.248 1173.21 M520.989 1171.96 Q520.943 1168.46 519.021 1166.38 Q517.123 1164.3 513.975 1164.3 Q510.41 1164.3 508.258 1166.31 Q506.128 1168.32 505.804 1171.98 L520.989 1171.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M544.021 1174.2 Q538.859 1174.2 536.869 1175.38 Q534.878 1176.56 534.878 1179.41 Q534.878 1181.68 536.359 1183.02 Q537.864 1184.34 540.433 1184.34 Q543.975 1184.34 546.105 1181.84 Q548.257 1179.32 548.257 1175.15 L548.257 1174.2 L544.021 1174.2 M552.517 1172.44 L552.517 1187.24 L548.257 1187.24 L548.257 1183.3 Q546.799 1185.66 544.623 1186.8 Q542.447 1187.91 539.299 1187.91 Q535.318 1187.91 532.957 1185.68 Q530.619 1183.44 530.619 1179.69 Q530.619 1175.31 533.535 1173.09 Q536.475 1170.87 542.285 1170.87 L548.257 1170.87 L548.257 1170.45 Q548.257 1167.51 546.313 1165.92 Q544.392 1164.3 540.896 1164.3 Q538.674 1164.3 536.568 1164.83 Q534.461 1165.36 532.517 1166.43 L532.517 1162.49 Q534.855 1161.59 537.054 1161.15 Q539.253 1160.68 541.336 1160.68 Q546.961 1160.68 549.739 1163.6 Q552.517 1166.52 552.517 1172.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M565.503 1153.95 L565.503 1161.31 L574.276 1161.31 L574.276 1164.62 L565.503 1164.62 L565.503 1178.69 Q565.503 1181.86 566.359 1182.77 Q567.239 1183.67 569.901 1183.67 L574.276 1183.67 L574.276 1187.24 L569.901 1187.24 Q564.97 1187.24 563.095 1185.41 Q561.22 1183.55 561.22 1178.69 L561.22 1164.62 L558.095 1164.62 L558.095 1161.31 L561.22 1161.31 L561.22 1153.95 L565.503 1153.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M609.97 1165.29 Q609.252 1164.87 608.396 1164.69 Q607.563 1164.48 606.544 1164.48 Q602.933 1164.48 600.989 1166.84 Q599.067 1169.18 599.067 1173.58 L599.067 1187.24 L594.785 1187.24 L594.785 1161.31 L599.067 1161.31 L599.067 1165.34 Q600.41 1162.98 602.563 1161.84 Q604.715 1160.68 607.794 1160.68 Q608.234 1160.68 608.766 1160.75 Q609.299 1160.8 609.947 1160.92 L609.97 1165.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M626.22 1174.2 Q621.058 1174.2 619.067 1175.38 Q617.076 1176.56 617.076 1179.41 Q617.076 1181.68 618.558 1183.02 Q620.063 1184.34 622.632 1184.34 Q626.174 1184.34 628.303 1181.84 Q630.456 1179.32 630.456 1175.15 L630.456 1174.2 L626.22 1174.2 M634.715 1172.44 L634.715 1187.24 L630.456 1187.24 L630.456 1183.3 Q628.998 1185.66 626.822 1186.8 Q624.646 1187.91 621.498 1187.91 Q617.516 1187.91 615.155 1185.68 Q612.817 1183.44 612.817 1179.69 Q612.817 1175.31 615.734 1173.09 Q618.674 1170.87 624.484 1170.87 L630.456 1170.87 L630.456 1170.45 Q630.456 1167.51 628.512 1165.92 Q626.59 1164.3 623.095 1164.3 Q620.873 1164.3 618.766 1164.83 Q616.66 1165.36 614.715 1166.43 L614.715 1162.49 Q617.053 1161.59 619.252 1161.15 Q621.451 1160.68 623.535 1160.68 Q629.16 1160.68 631.938 1163.6 Q634.715 1166.52 634.715 1172.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M647.701 1153.95 L647.701 1161.31 L656.474 1161.31 L656.474 1164.62 L647.701 1164.62 L647.701 1178.69 Q647.701 1181.86 648.558 1182.77 Q649.437 1183.67 652.099 1183.67 L656.474 1183.67 L656.474 1187.24 L652.099 1187.24 Q647.169 1187.24 645.294 1185.41 Q643.419 1183.55 643.419 1178.69 L643.419 1164.62 L640.294 1164.62 L640.294 1161.31 L643.419 1161.31 L643.419 1153.95 L647.701 1153.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M684.252 1173.21 L684.252 1175.29 L664.669 1175.29 Q664.947 1179.69 667.308 1182 Q669.692 1184.3 673.928 1184.3 Q676.382 1184.3 678.673 1183.69 Q680.988 1183.09 683.257 1181.89 L683.257 1185.92 Q680.965 1186.89 678.558 1187.4 Q676.15 1187.91 673.673 1187.91 Q667.47 1187.91 663.835 1184.3 Q660.224 1180.68 660.224 1174.53 Q660.224 1168.16 663.65 1164.43 Q667.099 1160.68 672.933 1160.68 Q678.164 1160.68 681.197 1164.06 Q684.252 1167.42 684.252 1173.21 M679.993 1171.96 Q679.947 1168.46 678.025 1166.38 Q676.127 1164.3 672.979 1164.3 Q669.414 1164.3 667.261 1166.31 Q665.132 1168.32 664.808 1171.98 L679.993 1171.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M706.868 1165.71 L736.543 1165.71 L736.543 1169.6 L706.868 1169.6 L706.868 1165.71 M706.868 1175.15 L736.543 1175.15 L736.543 1179.09 L706.868 1179.09 L706.868 1175.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M761.844 1186.52 L761.844 1182.26 Q763.603 1183.09 765.409 1183.53 Q767.215 1183.97 768.951 1183.97 Q773.58 1183.97 776.011 1180.87 Q778.465 1177.74 778.812 1171.4 Q777.469 1173.39 775.409 1174.46 Q773.349 1175.52 770.849 1175.52 Q765.664 1175.52 762.631 1172.4 Q759.622 1169.25 759.622 1163.81 Q759.622 1158.49 762.77 1155.27 Q765.918 1152.05 771.15 1152.05 Q777.145 1152.05 780.293 1156.66 Q783.464 1161.24 783.464 1169.99 Q783.464 1178.16 779.576 1183.05 Q775.71 1187.91 769.159 1187.91 Q767.4 1187.91 765.594 1187.56 Q763.789 1187.21 761.844 1186.52 M771.15 1171.87 Q774.298 1171.87 776.127 1169.71 Q777.978 1167.56 777.978 1163.81 Q777.978 1160.08 776.127 1157.93 Q774.298 1155.75 771.15 1155.75 Q768.002 1155.75 766.15 1157.93 Q764.321 1160.08 764.321 1163.81 Q764.321 1167.56 766.15 1169.71 Q768.002 1171.87 771.15 1171.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M806.52 1152.68 L813.487 1152.68 L822.307 1176.19 L831.173 1152.68 L838.14 1152.68 L838.14 1187.24 L833.58 1187.24 L833.58 1156.89 L824.668 1180.59 L819.969 1180.59 L811.057 1156.89 L811.057 1187.24 L806.52 1187.24 L806.52 1152.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M847.422 1152.68 L852.098 1152.68 L852.098 1184.83 Q852.098 1191.08 849.714 1193.9 Q847.353 1196.73 842.098 1196.73 L840.316 1196.73 L840.316 1192.79 L841.774 1192.79 Q844.876 1192.79 846.149 1191.05 Q847.422 1189.32 847.422 1184.83 L847.422 1152.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M892.816 1162.07 L892.816 1166.1 Q891.01 1165.18 889.066 1164.71 Q887.121 1164.25 885.038 1164.25 Q881.867 1164.25 880.27 1165.22 Q878.695 1166.19 878.695 1168.14 Q878.695 1169.62 879.83 1170.48 Q880.964 1171.31 884.39 1172.07 L885.848 1172.4 Q890.385 1173.37 892.283 1175.15 Q894.205 1176.91 894.205 1180.08 Q894.205 1183.69 891.334 1185.8 Q888.487 1187.91 883.487 1187.91 Q881.404 1187.91 879.135 1187.49 Q876.89 1187.1 874.39 1186.29 L874.39 1181.89 Q876.751 1183.11 879.043 1183.74 Q881.334 1184.34 883.58 1184.34 Q886.589 1184.34 888.209 1183.32 Q889.83 1182.28 889.83 1180.41 Q889.83 1178.67 888.649 1177.74 Q887.492 1176.82 883.533 1175.96 L882.052 1175.62 Q878.094 1174.78 876.334 1173.07 Q874.575 1171.33 874.575 1168.32 Q874.575 1164.67 877.168 1162.68 Q879.76 1160.68 884.529 1160.68 Q886.89 1160.68 888.973 1161.03 Q891.056 1161.38 892.816 1162.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M918.649 1152.68 L931.218 1165.57 L926.566 1165.57 L916.38 1156.43 L906.195 1165.57 L901.543 1165.57 L914.112 1152.68 L918.649 1152.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M938.556 1172.35 L951.033 1172.35 L951.033 1176.15 L938.556 1176.15 L938.556 1172.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M959.227 1183.3 L966.866 1183.3 L966.866 1156.93 L958.556 1158.6 L958.556 1154.34 L966.82 1152.68 L971.496 1152.68 L971.496 1183.3 L979.135 1183.3 L979.135 1187.24 L959.227 1187.24 L959.227 1183.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip610)\" style=\"stroke:#1ac938; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  300.571,1221.8 443.747,1221.8 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M467.61 1204.52 L472.286 1204.52 L472.286 1218.68 L489.276 1218.68 L489.276 1204.52 L493.952 1204.52 L493.952 1239.08 L489.276 1239.08 L489.276 1222.62 L472.286 1222.62 L472.286 1239.08 L467.61 1239.08 L467.61 1204.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M525.248 1225.05 L525.248 1227.13 L505.665 1227.13 Q505.943 1231.53 508.304 1233.84 Q510.688 1236.14 514.924 1236.14 Q517.378 1236.14 519.67 1235.53 Q521.984 1234.93 524.253 1233.73 L524.253 1237.76 Q521.961 1238.73 519.554 1239.24 Q517.146 1239.75 514.67 1239.75 Q508.466 1239.75 504.832 1236.14 Q501.221 1232.52 501.221 1226.37 Q501.221 1220 504.647 1216.27 Q508.096 1212.52 513.929 1212.52 Q519.16 1212.52 522.193 1215.9 Q525.248 1219.26 525.248 1225.05 M520.989 1223.8 Q520.943 1220.3 519.021 1218.22 Q517.123 1216.14 513.975 1216.14 Q510.41 1216.14 508.258 1218.15 Q506.128 1220.16 505.804 1223.82 L520.989 1223.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M544.021 1226.04 Q538.859 1226.04 536.869 1227.22 Q534.878 1228.4 534.878 1231.25 Q534.878 1233.52 536.359 1234.86 Q537.864 1236.18 540.433 1236.18 Q543.975 1236.18 546.105 1233.68 Q548.257 1231.16 548.257 1226.99 L548.257 1226.04 L544.021 1226.04 M552.517 1224.28 L552.517 1239.08 L548.257 1239.08 L548.257 1235.14 Q546.799 1237.5 544.623 1238.64 Q542.447 1239.75 539.299 1239.75 Q535.318 1239.75 532.957 1237.52 Q530.619 1235.28 530.619 1231.53 Q530.619 1227.15 533.535 1224.93 Q536.475 1222.71 542.285 1222.71 L548.257 1222.71 L548.257 1222.29 Q548.257 1219.35 546.313 1217.76 Q544.392 1216.14 540.896 1216.14 Q538.674 1216.14 536.568 1216.67 Q534.461 1217.2 532.517 1218.27 L532.517 1214.33 Q534.855 1213.43 537.054 1212.99 Q539.253 1212.52 541.336 1212.52 Q546.961 1212.52 549.739 1215.44 Q552.517 1218.36 552.517 1224.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M565.503 1205.79 L565.503 1213.15 L574.276 1213.15 L574.276 1216.46 L565.503 1216.46 L565.503 1230.53 Q565.503 1233.7 566.359 1234.61 Q567.239 1235.51 569.901 1235.51 L574.276 1235.51 L574.276 1239.08 L569.901 1239.08 Q564.97 1239.08 563.095 1237.25 Q561.22 1235.39 561.22 1230.53 L561.22 1216.46 L558.095 1216.46 L558.095 1213.15 L561.22 1213.15 L561.22 1205.79 L565.503 1205.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M609.97 1217.13 Q609.252 1216.71 608.396 1216.53 Q607.563 1216.32 606.544 1216.32 Q602.933 1216.32 600.989 1218.68 Q599.067 1221.02 599.067 1225.42 L599.067 1239.08 L594.785 1239.08 L594.785 1213.15 L599.067 1213.15 L599.067 1217.18 Q600.41 1214.82 602.563 1213.68 Q604.715 1212.52 607.794 1212.52 Q608.234 1212.52 608.766 1212.59 Q609.299 1212.64 609.947 1212.76 L609.97 1217.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M626.22 1226.04 Q621.058 1226.04 619.067 1227.22 Q617.076 1228.4 617.076 1231.25 Q617.076 1233.52 618.558 1234.86 Q620.063 1236.18 622.632 1236.18 Q626.174 1236.18 628.303 1233.68 Q630.456 1231.16 630.456 1226.99 L630.456 1226.04 L626.22 1226.04 M634.715 1224.28 L634.715 1239.08 L630.456 1239.08 L630.456 1235.14 Q628.998 1237.5 626.822 1238.64 Q624.646 1239.75 621.498 1239.75 Q617.516 1239.75 615.155 1237.52 Q612.817 1235.28 612.817 1231.53 Q612.817 1227.15 615.734 1224.93 Q618.674 1222.71 624.484 1222.71 L630.456 1222.71 L630.456 1222.29 Q630.456 1219.35 628.512 1217.76 Q626.59 1216.14 623.095 1216.14 Q620.873 1216.14 618.766 1216.67 Q616.66 1217.2 614.715 1218.27 L614.715 1214.33 Q617.053 1213.43 619.252 1212.99 Q621.451 1212.52 623.535 1212.52 Q629.16 1212.52 631.938 1215.44 Q634.715 1218.36 634.715 1224.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M647.701 1205.79 L647.701 1213.15 L656.474 1213.15 L656.474 1216.46 L647.701 1216.46 L647.701 1230.53 Q647.701 1233.7 648.558 1234.61 Q649.437 1235.51 652.099 1235.51 L656.474 1235.51 L656.474 1239.08 L652.099 1239.08 Q647.169 1239.08 645.294 1237.25 Q643.419 1235.39 643.419 1230.53 L643.419 1216.46 L640.294 1216.46 L640.294 1213.15 L643.419 1213.15 L643.419 1205.79 L647.701 1205.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M684.252 1225.05 L684.252 1227.13 L664.669 1227.13 Q664.947 1231.53 667.308 1233.84 Q669.692 1236.14 673.928 1236.14 Q676.382 1236.14 678.673 1235.53 Q680.988 1234.93 683.257 1233.73 L683.257 1237.76 Q680.965 1238.73 678.558 1239.24 Q676.15 1239.75 673.673 1239.75 Q667.47 1239.75 663.835 1236.14 Q660.224 1232.52 660.224 1226.37 Q660.224 1220 663.65 1216.27 Q667.099 1212.52 672.933 1212.52 Q678.164 1212.52 681.197 1215.9 Q684.252 1219.26 684.252 1225.05 M679.993 1223.8 Q679.947 1220.3 678.025 1218.22 Q676.127 1216.14 672.979 1216.14 Q669.414 1216.14 667.261 1218.15 Q665.132 1220.16 664.808 1223.82 L679.993 1223.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M706.868 1217.55 L736.543 1217.55 L736.543 1221.44 L706.868 1221.44 L706.868 1217.55 M706.868 1226.99 L736.543 1226.99 L736.543 1230.93 L706.868 1230.93 L706.868 1226.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M762.516 1235.14 L770.154 1235.14 L770.154 1208.77 L761.844 1210.44 L761.844 1206.18 L770.108 1204.52 L774.784 1204.52 L774.784 1235.14 L782.423 1235.14 L782.423 1239.08 L762.516 1239.08 L762.516 1235.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M801.867 1207.59 Q798.256 1207.59 796.427 1211.16 Q794.622 1214.7 794.622 1221.83 Q794.622 1228.94 796.427 1232.5 Q798.256 1236.04 801.867 1236.04 Q805.501 1236.04 807.307 1232.5 Q809.136 1228.94 809.136 1221.83 Q809.136 1214.7 807.307 1211.16 Q805.501 1207.59 801.867 1207.59 M801.867 1203.89 Q807.677 1203.89 810.733 1208.5 Q813.812 1213.08 813.812 1221.83 Q813.812 1230.56 810.733 1235.16 Q807.677 1239.75 801.867 1239.75 Q796.057 1239.75 792.978 1235.16 Q789.923 1230.56 789.923 1221.83 Q789.923 1213.08 792.978 1208.5 Q796.057 1203.89 801.867 1203.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M836.682 1204.52 L843.649 1204.52 L852.469 1228.03 L861.334 1204.52 L868.302 1204.52 L868.302 1239.08 L863.742 1239.08 L863.742 1208.73 L854.83 1232.43 L850.131 1232.43 L841.219 1208.73 L841.219 1239.08 L836.682 1239.08 L836.682 1204.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M877.584 1204.52 L882.26 1204.52 L882.26 1236.67 Q882.26 1242.92 879.876 1245.74 Q877.515 1248.57 872.26 1248.57 L870.478 1248.57 L870.478 1244.63 L871.936 1244.63 Q875.038 1244.63 876.311 1242.89 Q877.584 1241.16 877.584 1236.67 L877.584 1204.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M922.978 1213.91 L922.978 1217.94 Q921.172 1217.02 919.228 1216.55 Q917.283 1216.09 915.2 1216.09 Q912.029 1216.09 910.431 1217.06 Q908.857 1218.03 908.857 1219.98 Q908.857 1221.46 909.992 1222.32 Q911.126 1223.15 914.552 1223.91 L916.01 1224.24 Q920.547 1225.21 922.445 1226.99 Q924.367 1228.75 924.367 1231.92 Q924.367 1235.53 921.496 1237.64 Q918.649 1239.75 913.649 1239.75 Q911.566 1239.75 909.297 1239.33 Q907.052 1238.94 904.552 1238.13 L904.552 1233.73 Q906.913 1234.95 909.205 1235.58 Q911.496 1236.18 913.742 1236.18 Q916.751 1236.18 918.371 1235.16 Q919.992 1234.12 919.992 1232.25 Q919.992 1230.51 918.811 1229.58 Q917.654 1228.66 913.695 1227.8 L912.214 1227.46 Q908.255 1226.62 906.496 1224.91 Q904.737 1223.17 904.737 1220.16 Q904.737 1216.51 907.33 1214.52 Q909.922 1212.52 914.691 1212.52 Q917.052 1212.52 919.135 1212.87 Q921.218 1213.22 922.978 1213.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M948.811 1204.52 L961.38 1217.41 L956.727 1217.41 L946.542 1208.27 L936.357 1217.41 L931.704 1217.41 L944.274 1204.52 L948.811 1204.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M968.718 1224.19 L981.195 1224.19 L981.195 1227.99 L968.718 1227.99 L968.718 1224.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M989.389 1235.14 L997.028 1235.14 L997.028 1208.77 L988.718 1210.44 L988.718 1206.18 L996.982 1204.52 L1001.66 1204.52 L1001.66 1235.14 L1009.3 1235.14 L1009.3 1239.08 L989.389 1239.08 L989.389 1235.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip610)\" style=\"stroke:#e8000b; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  300.571,1273.64 443.747,1273.64 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M467.61 1256.36 L472.286 1256.36 L472.286 1270.52 L489.276 1270.52 L489.276 1256.36 L493.952 1256.36 L493.952 1290.92 L489.276 1290.92 L489.276 1274.46 L472.286 1274.46 L472.286 1290.92 L467.61 1290.92 L467.61 1256.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M525.248 1276.89 L525.248 1278.97 L505.665 1278.97 Q505.943 1283.37 508.304 1285.68 Q510.688 1287.98 514.924 1287.98 Q517.378 1287.98 519.67 1287.37 Q521.984 1286.77 524.253 1285.57 L524.253 1289.6 Q521.961 1290.57 519.554 1291.08 Q517.146 1291.59 514.67 1291.59 Q508.466 1291.59 504.832 1287.98 Q501.221 1284.36 501.221 1278.21 Q501.221 1271.84 504.647 1268.11 Q508.096 1264.36 513.929 1264.36 Q519.16 1264.36 522.193 1267.74 Q525.248 1271.1 525.248 1276.89 M520.989 1275.64 Q520.943 1272.14 519.021 1270.06 Q517.123 1267.98 513.975 1267.98 Q510.41 1267.98 508.258 1269.99 Q506.128 1272 505.804 1275.66 L520.989 1275.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M544.021 1277.88 Q538.859 1277.88 536.869 1279.06 Q534.878 1280.24 534.878 1283.09 Q534.878 1285.36 536.359 1286.7 Q537.864 1288.02 540.433 1288.02 Q543.975 1288.02 546.105 1285.52 Q548.257 1283 548.257 1278.83 L548.257 1277.88 L544.021 1277.88 M552.517 1276.12 L552.517 1290.92 L548.257 1290.92 L548.257 1286.98 Q546.799 1289.34 544.623 1290.48 Q542.447 1291.59 539.299 1291.59 Q535.318 1291.59 532.957 1289.36 Q530.619 1287.12 530.619 1283.37 Q530.619 1278.99 533.535 1276.77 Q536.475 1274.55 542.285 1274.55 L548.257 1274.55 L548.257 1274.13 Q548.257 1271.19 546.313 1269.6 Q544.392 1267.98 540.896 1267.98 Q538.674 1267.98 536.568 1268.51 Q534.461 1269.04 532.517 1270.11 L532.517 1266.17 Q534.855 1265.27 537.054 1264.83 Q539.253 1264.36 541.336 1264.36 Q546.961 1264.36 549.739 1267.28 Q552.517 1270.2 552.517 1276.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M565.503 1257.63 L565.503 1264.99 L574.276 1264.99 L574.276 1268.3 L565.503 1268.3 L565.503 1282.37 Q565.503 1285.54 566.359 1286.45 Q567.239 1287.35 569.901 1287.35 L574.276 1287.35 L574.276 1290.92 L569.901 1290.92 Q564.97 1290.92 563.095 1289.09 Q561.22 1287.23 561.22 1282.37 L561.22 1268.3 L558.095 1268.3 L558.095 1264.99 L561.22 1264.99 L561.22 1257.63 L565.503 1257.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M609.97 1268.97 Q609.252 1268.55 608.396 1268.37 Q607.563 1268.16 606.544 1268.16 Q602.933 1268.16 600.989 1270.52 Q599.067 1272.86 599.067 1277.26 L599.067 1290.92 L594.785 1290.92 L594.785 1264.99 L599.067 1264.99 L599.067 1269.02 Q600.41 1266.66 602.563 1265.52 Q604.715 1264.36 607.794 1264.36 Q608.234 1264.36 608.766 1264.43 Q609.299 1264.48 609.947 1264.6 L609.97 1268.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M626.22 1277.88 Q621.058 1277.88 619.067 1279.06 Q617.076 1280.24 617.076 1283.09 Q617.076 1285.36 618.558 1286.7 Q620.063 1288.02 622.632 1288.02 Q626.174 1288.02 628.303 1285.52 Q630.456 1283 630.456 1278.83 L630.456 1277.88 L626.22 1277.88 M634.715 1276.12 L634.715 1290.92 L630.456 1290.92 L630.456 1286.98 Q628.998 1289.34 626.822 1290.48 Q624.646 1291.59 621.498 1291.59 Q617.516 1291.59 615.155 1289.36 Q612.817 1287.12 612.817 1283.37 Q612.817 1278.99 615.734 1276.77 Q618.674 1274.55 624.484 1274.55 L630.456 1274.55 L630.456 1274.13 Q630.456 1271.19 628.512 1269.6 Q626.59 1267.98 623.095 1267.98 Q620.873 1267.98 618.766 1268.51 Q616.66 1269.04 614.715 1270.11 L614.715 1266.17 Q617.053 1265.27 619.252 1264.83 Q621.451 1264.36 623.535 1264.36 Q629.16 1264.36 631.938 1267.28 Q634.715 1270.2 634.715 1276.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M647.701 1257.63 L647.701 1264.99 L656.474 1264.99 L656.474 1268.3 L647.701 1268.3 L647.701 1282.37 Q647.701 1285.54 648.558 1286.45 Q649.437 1287.35 652.099 1287.35 L656.474 1287.35 L656.474 1290.92 L652.099 1290.92 Q647.169 1290.92 645.294 1289.09 Q643.419 1287.23 643.419 1282.37 L643.419 1268.3 L640.294 1268.3 L640.294 1264.99 L643.419 1264.99 L643.419 1257.63 L647.701 1257.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M684.252 1276.89 L684.252 1278.97 L664.669 1278.97 Q664.947 1283.37 667.308 1285.68 Q669.692 1287.98 673.928 1287.98 Q676.382 1287.98 678.673 1287.37 Q680.988 1286.77 683.257 1285.57 L683.257 1289.6 Q680.965 1290.57 678.558 1291.08 Q676.15 1291.59 673.673 1291.59 Q667.47 1291.59 663.835 1287.98 Q660.224 1284.36 660.224 1278.21 Q660.224 1271.84 663.65 1268.11 Q667.099 1264.36 672.933 1264.36 Q678.164 1264.36 681.197 1267.74 Q684.252 1271.1 684.252 1276.89 M679.993 1275.64 Q679.947 1272.14 678.025 1270.06 Q676.127 1267.98 672.979 1267.98 Q669.414 1267.98 667.261 1269.99 Q665.132 1272 664.808 1275.66 L679.993 1275.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M706.868 1269.39 L736.543 1269.39 L736.543 1273.28 L706.868 1273.28 L706.868 1269.39 M706.868 1278.83 L736.543 1278.83 L736.543 1282.77 L706.868 1282.77 L706.868 1278.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M762.516 1286.98 L770.154 1286.98 L770.154 1260.61 L761.844 1262.28 L761.844 1258.02 L770.108 1256.36 L774.784 1256.36 L774.784 1286.98 L782.423 1286.98 L782.423 1290.92 L762.516 1290.92 L762.516 1286.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M792.677 1286.98 L800.316 1286.98 L800.316 1260.61 L792.006 1262.28 L792.006 1258.02 L800.27 1256.36 L804.946 1256.36 L804.946 1286.98 L812.585 1286.98 L812.585 1290.92 L792.677 1290.92 L792.677 1286.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M836.682 1256.36 L843.649 1256.36 L852.469 1279.87 L861.334 1256.36 L868.302 1256.36 L868.302 1290.92 L863.742 1290.92 L863.742 1260.57 L854.83 1284.27 L850.131 1284.27 L841.219 1260.57 L841.219 1290.92 L836.682 1290.92 L836.682 1256.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M877.584 1256.36 L882.26 1256.36 L882.26 1288.51 Q882.26 1294.76 879.876 1297.58 Q877.515 1300.41 872.26 1300.41 L870.478 1300.41 L870.478 1296.47 L871.936 1296.47 Q875.038 1296.47 876.311 1294.73 Q877.584 1293 877.584 1288.51 L877.584 1256.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M922.978 1265.75 L922.978 1269.78 Q921.172 1268.86 919.228 1268.39 Q917.283 1267.93 915.2 1267.93 Q912.029 1267.93 910.431 1268.9 Q908.857 1269.87 908.857 1271.82 Q908.857 1273.3 909.992 1274.16 Q911.126 1274.99 914.552 1275.75 L916.01 1276.08 Q920.547 1277.05 922.445 1278.83 Q924.367 1280.59 924.367 1283.76 Q924.367 1287.37 921.496 1289.48 Q918.649 1291.59 913.649 1291.59 Q911.566 1291.59 909.297 1291.17 Q907.052 1290.78 904.552 1289.97 L904.552 1285.57 Q906.913 1286.79 909.205 1287.42 Q911.496 1288.02 913.742 1288.02 Q916.751 1288.02 918.371 1287 Q919.992 1285.96 919.992 1284.09 Q919.992 1282.35 918.811 1281.42 Q917.654 1280.5 913.695 1279.64 L912.214 1279.3 Q908.255 1278.46 906.496 1276.75 Q904.737 1275.01 904.737 1272 Q904.737 1268.35 907.33 1266.36 Q909.922 1264.36 914.691 1264.36 Q917.052 1264.36 919.135 1264.71 Q921.218 1265.06 922.978 1265.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M948.811 1256.36 L961.38 1269.25 L956.727 1269.25 L946.542 1260.11 L936.357 1269.25 L931.704 1269.25 L944.274 1256.36 L948.811 1256.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M968.718 1276.03 L981.195 1276.03 L981.195 1279.83 L968.718 1279.83 L968.718 1276.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M989.389 1286.98 L997.028 1286.98 L997.028 1260.61 L988.718 1262.28 L988.718 1258.02 L996.982 1256.36 L1001.66 1256.36 L1001.66 1286.98 L1009.3 1286.98 L1009.3 1290.92 L989.389 1290.92 L989.389 1286.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip610)\" style=\"stroke:#8b2be2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  300.571,1325.48 443.747,1325.48 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip610)\" d=\"M467.61 1308.2 L472.286 1308.2 L472.286 1322.36 L489.276 1322.36 L489.276 1308.2 L493.952 1308.2 L493.952 1342.76 L489.276 1342.76 L489.276 1326.3 L472.286 1326.3 L472.286 1342.76 L467.61 1342.76 L467.61 1308.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M525.248 1328.73 L525.248 1330.81 L505.665 1330.81 Q505.943 1335.21 508.304 1337.52 Q510.688 1339.82 514.924 1339.82 Q517.378 1339.82 519.67 1339.21 Q521.984 1338.61 524.253 1337.41 L524.253 1341.44 Q521.961 1342.41 519.554 1342.92 Q517.146 1343.43 514.67 1343.43 Q508.466 1343.43 504.832 1339.82 Q501.221 1336.2 501.221 1330.05 Q501.221 1323.68 504.647 1319.95 Q508.096 1316.2 513.929 1316.2 Q519.16 1316.2 522.193 1319.58 Q525.248 1322.94 525.248 1328.73 M520.989 1327.48 Q520.943 1323.98 519.021 1321.9 Q517.123 1319.82 513.975 1319.82 Q510.41 1319.82 508.258 1321.83 Q506.128 1323.84 505.804 1327.5 L520.989 1327.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M544.021 1329.72 Q538.859 1329.72 536.869 1330.9 Q534.878 1332.08 534.878 1334.93 Q534.878 1337.2 536.359 1338.54 Q537.864 1339.86 540.433 1339.86 Q543.975 1339.86 546.105 1337.36 Q548.257 1334.84 548.257 1330.67 L548.257 1329.72 L544.021 1329.72 M552.517 1327.96 L552.517 1342.76 L548.257 1342.76 L548.257 1338.82 Q546.799 1341.18 544.623 1342.32 Q542.447 1343.43 539.299 1343.43 Q535.318 1343.43 532.957 1341.2 Q530.619 1338.96 530.619 1335.21 Q530.619 1330.83 533.535 1328.61 Q536.475 1326.39 542.285 1326.39 L548.257 1326.39 L548.257 1325.97 Q548.257 1323.03 546.313 1321.44 Q544.392 1319.82 540.896 1319.82 Q538.674 1319.82 536.568 1320.35 Q534.461 1320.88 532.517 1321.95 L532.517 1318.01 Q534.855 1317.11 537.054 1316.67 Q539.253 1316.2 541.336 1316.2 Q546.961 1316.2 549.739 1319.12 Q552.517 1322.04 552.517 1327.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M565.503 1309.47 L565.503 1316.83 L574.276 1316.83 L574.276 1320.14 L565.503 1320.14 L565.503 1334.21 Q565.503 1337.38 566.359 1338.29 Q567.239 1339.19 569.901 1339.19 L574.276 1339.19 L574.276 1342.76 L569.901 1342.76 Q564.97 1342.76 563.095 1340.93 Q561.22 1339.07 561.22 1334.21 L561.22 1320.14 L558.095 1320.14 L558.095 1316.83 L561.22 1316.83 L561.22 1309.47 L565.503 1309.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M609.97 1320.81 Q609.252 1320.39 608.396 1320.21 Q607.563 1320 606.544 1320 Q602.933 1320 600.989 1322.36 Q599.067 1324.7 599.067 1329.1 L599.067 1342.76 L594.785 1342.76 L594.785 1316.83 L599.067 1316.83 L599.067 1320.86 Q600.41 1318.5 602.563 1317.36 Q604.715 1316.2 607.794 1316.2 Q608.234 1316.2 608.766 1316.27 Q609.299 1316.32 609.947 1316.44 L609.97 1320.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M626.22 1329.72 Q621.058 1329.72 619.067 1330.9 Q617.076 1332.08 617.076 1334.93 Q617.076 1337.2 618.558 1338.54 Q620.063 1339.86 622.632 1339.86 Q626.174 1339.86 628.303 1337.36 Q630.456 1334.84 630.456 1330.67 L630.456 1329.72 L626.22 1329.72 M634.715 1327.96 L634.715 1342.76 L630.456 1342.76 L630.456 1338.82 Q628.998 1341.18 626.822 1342.32 Q624.646 1343.43 621.498 1343.43 Q617.516 1343.43 615.155 1341.2 Q612.817 1338.96 612.817 1335.21 Q612.817 1330.83 615.734 1328.61 Q618.674 1326.39 624.484 1326.39 L630.456 1326.39 L630.456 1325.97 Q630.456 1323.03 628.512 1321.44 Q626.59 1319.82 623.095 1319.82 Q620.873 1319.82 618.766 1320.35 Q616.66 1320.88 614.715 1321.95 L614.715 1318.01 Q617.053 1317.11 619.252 1316.67 Q621.451 1316.2 623.535 1316.2 Q629.16 1316.2 631.938 1319.12 Q634.715 1322.04 634.715 1327.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M647.701 1309.47 L647.701 1316.83 L656.474 1316.83 L656.474 1320.14 L647.701 1320.14 L647.701 1334.21 Q647.701 1337.38 648.558 1338.29 Q649.437 1339.19 652.099 1339.19 L656.474 1339.19 L656.474 1342.76 L652.099 1342.76 Q647.169 1342.76 645.294 1340.93 Q643.419 1339.07 643.419 1334.21 L643.419 1320.14 L640.294 1320.14 L640.294 1316.83 L643.419 1316.83 L643.419 1309.47 L647.701 1309.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M684.252 1328.73 L684.252 1330.81 L664.669 1330.81 Q664.947 1335.21 667.308 1337.52 Q669.692 1339.82 673.928 1339.82 Q676.382 1339.82 678.673 1339.21 Q680.988 1338.61 683.257 1337.41 L683.257 1341.44 Q680.965 1342.41 678.558 1342.92 Q676.15 1343.43 673.673 1343.43 Q667.47 1343.43 663.835 1339.82 Q660.224 1336.2 660.224 1330.05 Q660.224 1323.68 663.65 1319.95 Q667.099 1316.2 672.933 1316.2 Q678.164 1316.2 681.197 1319.58 Q684.252 1322.94 684.252 1328.73 M679.993 1327.48 Q679.947 1323.98 678.025 1321.9 Q676.127 1319.82 672.979 1319.82 Q669.414 1319.82 667.261 1321.83 Q665.132 1323.84 664.808 1327.5 L679.993 1327.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M706.868 1321.23 L736.543 1321.23 L736.543 1325.12 L706.868 1325.12 L706.868 1321.23 M706.868 1330.67 L736.543 1330.67 L736.543 1334.61 L706.868 1334.61 L706.868 1330.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M762.516 1338.82 L770.154 1338.82 L770.154 1312.45 L761.844 1314.12 L761.844 1309.86 L770.108 1308.2 L774.784 1308.2 L774.784 1338.82 L782.423 1338.82 L782.423 1342.76 L762.516 1342.76 L762.516 1338.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M795.895 1338.82 L812.214 1338.82 L812.214 1342.76 L790.27 1342.76 L790.27 1338.82 Q792.932 1336.07 797.515 1331.44 Q802.122 1326.78 803.302 1325.44 Q805.548 1322.92 806.427 1321.18 Q807.33 1319.42 807.33 1317.73 Q807.33 1314.98 805.386 1313.24 Q803.464 1311.51 800.363 1311.51 Q798.163 1311.51 795.71 1312.27 Q793.279 1313.03 790.501 1314.58 L790.501 1309.86 Q793.326 1308.73 795.779 1308.15 Q798.233 1307.57 800.27 1307.57 Q805.64 1307.57 808.835 1310.26 Q812.029 1312.94 812.029 1317.43 Q812.029 1319.56 811.219 1321.48 Q810.432 1323.38 808.325 1325.97 Q807.747 1326.64 804.645 1329.86 Q801.543 1333.06 795.895 1338.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M836.682 1308.2 L843.649 1308.2 L852.469 1331.71 L861.334 1308.2 L868.302 1308.2 L868.302 1342.76 L863.742 1342.76 L863.742 1312.41 L854.83 1336.11 L850.131 1336.11 L841.219 1312.41 L841.219 1342.76 L836.682 1342.76 L836.682 1308.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M877.584 1308.2 L882.26 1308.2 L882.26 1340.35 Q882.26 1346.6 879.876 1349.42 Q877.515 1352.25 872.26 1352.25 L870.478 1352.25 L870.478 1348.31 L871.936 1348.31 Q875.038 1348.31 876.311 1346.57 Q877.584 1344.84 877.584 1340.35 L877.584 1308.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M922.978 1317.59 L922.978 1321.62 Q921.172 1320.7 919.228 1320.23 Q917.283 1319.77 915.2 1319.77 Q912.029 1319.77 910.431 1320.74 Q908.857 1321.71 908.857 1323.66 Q908.857 1325.14 909.992 1326 Q911.126 1326.83 914.552 1327.59 L916.01 1327.92 Q920.547 1328.89 922.445 1330.67 Q924.367 1332.43 924.367 1335.6 Q924.367 1339.21 921.496 1341.32 Q918.649 1343.43 913.649 1343.43 Q911.566 1343.43 909.297 1343.01 Q907.052 1342.62 904.552 1341.81 L904.552 1337.41 Q906.913 1338.63 909.205 1339.26 Q911.496 1339.86 913.742 1339.86 Q916.751 1339.86 918.371 1338.84 Q919.992 1337.8 919.992 1335.93 Q919.992 1334.19 918.811 1333.26 Q917.654 1332.34 913.695 1331.48 L912.214 1331.14 Q908.255 1330.3 906.496 1328.59 Q904.737 1326.85 904.737 1323.84 Q904.737 1320.19 907.33 1318.2 Q909.922 1316.2 914.691 1316.2 Q917.052 1316.2 919.135 1316.55 Q921.218 1316.9 922.978 1317.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M948.811 1308.2 L961.38 1321.09 L956.727 1321.09 L946.542 1311.95 L936.357 1321.09 L931.704 1321.09 L944.274 1308.2 L948.811 1308.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M968.718 1327.87 L981.195 1327.87 L981.195 1331.67 L968.718 1331.67 L968.718 1327.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip610)\" d=\"M989.389 1338.82 L997.028 1338.82 L997.028 1312.45 L988.718 1314.12 L988.718 1309.86 L996.982 1308.2 L1001.66 1308.2 L1001.66 1338.82 L1009.3 1338.82 L1009.3 1342.76 L989.389 1342.76 L989.389 1338.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
      ]
     },
     "execution_count": 26,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "# hide\n",
    "\n",
    "let\n",
    "obj(ΔP, x, set_point) = ustrip(q(x, Tᵣ, Pᵣ+(ΔP*1u\"Pa\"), Pᵣ) - set_point)\n",
    "xs = range(0.0,1.0,100)\n",
    "    \n",
    "fig = plot(palette=colors)\n",
    "\n",
    "for set_point in [8, 9, 10, 11, 12].*1u\"MJ/s\"\n",
    "    Δps = [ find_zero((p)->obj(p,x,set_point), 5e4) for x in xs ]\n",
    "    plot!(fig, xs.*100, Δps.*1e-3, lab=\"Heat rate = $set_point\")\n",
    "end    \n",
    "    \n",
    "plot!(fig, ylabel=\"Pressure Drop, ΔP (kPa)\", xlabel=\"% Hydrogen (vol/vol)\",\n",
    "      ylim=(0,85), legend=:bottomleft)\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "333aa53d-d3bb-46ca-ba79-d3a0fa1eb93a",
   "metadata": {},
   "source": [
    "All of this has been done assuming the ideal gas case. The next logical step is to start incorporating non-ideal gas models, say a cubic equation of state, and so on.\n",
    "\n",
    "---"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Julia 1.8.2",
   "language": "julia",
   "name": "julia-1.8"
  },
  "language_info": {
   "file_extension": ".jl",
   "mimetype": "application/julia",
   "name": "julia",
   "version": "1.8.2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}