2019-08-15 11:05:19 -05:00

2606 lines
128 KiB
Plaintext

{
"cells": [
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Requirement already satisfied: pandas in c:\\programdata\\anaconda3\\lib\\site-packages (0.24.2)\n",
"Requirement already satisfied: pytz>=2011k in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (2018.9)\n",
"Requirement already satisfied: python-dateutil>=2.5.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (2.8.0)\n",
"Requirement already satisfied: numpy>=1.12.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from pandas) (1.16.2)\n",
"Requirement already satisfied: six>=1.5 in c:\\programdata\\anaconda3\\lib\\site-packages (from python-dateutil>=2.5.0->pandas) (1.12.0)\n",
"Requirement already satisfied: xlrd in c:\\programdata\\anaconda3\\lib\\site-packages (1.2.0)\n",
"Requirement already satisfied: sklearn in c:\\programdata\\anaconda3\\lib\\site-packages (0.0)\n",
"Requirement already satisfied: scikit-learn in c:\\programdata\\anaconda3\\lib\\site-packages (from sklearn) (0.21.2)\n",
"Requirement already satisfied: scipy>=0.17.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (1.2.1)\n",
"Requirement already satisfied: joblib>=0.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (0.13.2)\n",
"Requirement already satisfied: numpy>=1.11.0 in c:\\programdata\\anaconda3\\lib\\site-packages (from scikit-learn->sklearn) (1.16.2)\n",
"Requirement already satisfied: imblearn in c:\\programdata\\anaconda3\\lib\\site-packages (0.0)\n",
"Requirement already satisfied: imbalanced-learn in c:\\programdata\\anaconda3\\lib\\site-packages (from imblearn) (0.5.0)\n",
"Requirement already satisfied: joblib>=0.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (0.13.2)\n",
"Requirement already satisfied: scipy>=0.17 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (1.2.1)\n",
"Requirement already satisfied: numpy>=1.11 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (1.16.2)\n",
"Requirement already satisfied: scikit-learn>=0.21 in c:\\programdata\\anaconda3\\lib\\site-packages (from imbalanced-learn->imblearn) (0.21.2)\n"
]
}
],
"source": [
"!pip install pandas\n",
"!pip install xlrd\n",
"!pip install sklearn\n",
"!pip install imblearn"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import xlrd\n",
"book = xlrd.open_workbook(\"Datasheets info.xlsx\")\n",
"sheetMQ2 = book.sheet_by_name(\"MQ2 - Pololulu\")\n",
"sheetMQ3 = book.sheet_by_name(\"MQ3 - Sparkfun\")\n",
"sheetMQ4 = book.sheet_by_name(\"MQ4 - Sparkfun\")\n",
"sheetMQ5 = book.sheet_by_name(\"MQ5 - Sparkfun\")\n",
"sheetMQ6 = book.sheet_by_name(\"MQ6 - Sparkfun\")\n",
"sheetMQ7 = book.sheet_by_name(\"MQ7 - Sparkfun\")\n",
"sheetMQ8 = book.sheet_by_name(\"MQ8 - Sparkfun\")\n",
"sheetMQ9 = book.sheet_by_name(\"MQ9 - Haoyuelectronics\")\n",
"sheetMQ131 = book.sheet_by_name(\"MQ131- Sensorsportal\")\n",
"sheetMQ135 = book.sheet_by_name(\"MQ135 - HANWEI\")\n",
"sheetMQ303A = book.sheet_by_name(\"MQ303A - HANWEI\")\n",
"sheetMQ309A = book.sheet_by_name(\"MQ309A - HANWEI\")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.01 \t \t \t \t \t \n",
"0.02 \t \t \t \t \t \n",
"0.03 \t \t \t \t \t \n",
"0.04 \t \t \t \t \t \n",
"0.05 \t \t \t \t \t \n",
"0.06 \t \t \t \t \t \n",
"0.07 \t \t \t \t \t \n",
"0.08 \t \t \t \t \t \n",
"0.09 \t \t \t \t \t \n",
"0.1 \t \t 5000.0 \t \t \t \n",
"0.2 \t \t \t \t \t \n",
"0.3 \t \t \t \t \t \n",
"0.4 \t \t \t \t \t \n",
"0.5 \t \t \t \t \t \n",
"0.6 \t \t \t \t \t \n",
"0.7 \t \t \t \t \t \n",
"0.8 \t \t \t \t \t \n",
"0.9 \t \t \t \t \t \n",
"1.0 \t \t 1000.0 \t \t \t \n"
]
}
],
"source": [
"for row_index in range(1,20): #reading first columns\n",
" RsR0, H2, LPG, CH4, CO, Alcohol = sheetMQ8.row_values(row_index, start_colx=0, end_colx=6)\n",
" print(RsR0, \"\t\", LPG, \"\t\", H2, \"\t\", CH4, \"\t\", CO, \"\t\", Alcohol)\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"x_MQ8 = sheetMQ8.col_values(0)[2:]\n",
"MQ8_H2 = sheetMQ8.col_values(1)[2:]\n",
"MQ8_LPG = sheetMQ8.col_values(2)[2:]\n",
"MQ8_CH4 = sheetMQ8.col_values(3)[2:]\n",
"MQ8_CO = sheetMQ8.col_values(4)[2:]\n",
"MQ8_Alcohol = sheetMQ8.col_values(5)[2:]"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"def zero_to_nan(values):\n",
" \"\"\"Replace every 0 with 'nan' and return a copy.\"\"\"\n",
" return [float('nan') if x==0 else x for x in values]"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"MQ8_H2 =zero_to_nan(MQ8_H2)\n",
"MQ8_LPG =zero_to_nan(MQ8_LPG)\n",
"MQ8_CH4 =zero_to_nan(MQ8_CH4)\n",
"MQ8_CO =zero_to_nan(MQ8_CO)\n",
"MQ8_Alcohol =zero_to_nan(MQ8_Alcohol)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"scrolled": false
},
"outputs": [],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"from sklearn.datasets import load_iris\n",
"#from sklearn.cross_validation import train_test_split\n",
"from sklearn.tree import DecisionTreeClassifier\n",
"from sklearn import datasets\n",
"from sklearn import linear_model\n",
"\n",
"dataH2 = {'RsRo': x_MQ8, 'H2': MQ8_H2}\n",
"dataLPG = {'RsRo': x_MQ8, 'LPG': MQ8_LPG}\n",
"dataCH4 = {'RsRo': x_MQ8, 'CH4': MQ8_CH4}\n",
"dataCO = {'RsRo': x_MQ8, 'CO': MQ8_CO}\n",
"dataALcohol = {'RsRo': x_MQ8, 'Alcohol': MQ8_Alcohol}\n",
"\n",
"dfMQ8_H2 = pd.DataFrame(dataH2)\n",
"dfMQ8_LPG = pd.DataFrame(dataLPG)\n",
"dfMQ8_CH4 = pd.DataFrame(dataCH4)\n",
"dfMQ8_CO = pd.DataFrame(dataCO)\n",
"dfMQ8_Alcohol = pd.DataFrame(dataALcohol)\n",
"\n",
"dfMQ8_H2['H2'] = pd.to_numeric(dfMQ8_H2['H2'])\n",
"dfMQ8_LPG['LPG'] = pd.to_numeric(dfMQ8_LPG['LPG'])\n",
"dfMQ8_CH4['CH4'] = pd.to_numeric(dfMQ8_CH4['CH4'])\n",
"dfMQ8_CO['CO'] = pd.to_numeric(dfMQ8_CO['CO'])\n",
"dfMQ8_Alcohol['Alcohol'] = pd.to_numeric(dfMQ8_Alcohol['Alcohol'])\n",
"\n",
"dfMQ8_H2['H2'] = dfMQ8_H2['H2'].replace('',None, regex=True)\n",
"dfMQ8_LPG['LPG'] = dfMQ8_LPG['LPG'].replace('',None, regex=True)\n",
"dfMQ8_CH4['CH4'] = dfMQ8_CH4['CH4'].replace('',None, regex=True)\n",
"dfMQ8_CO['CO'] = dfMQ8_CO['CO'].replace('',None, regex=True)\n",
"dfMQ8_Alcohol['Alcohol'] = dfMQ8_Alcohol['Alcohol'].replace('',None, regex=True)\n",
"\n",
"#Global X_Predict variable\n",
"X_Predict = dfMQ8_LPG.RsRo.apply(lambda x: [x]).tolist()"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"#Model and train H2\n",
"dataset2TrainH2 = dfMQ8_H2.copy()\n",
"dataset2TrainH2.dropna(inplace=True)\n",
"X_trainH2 = dataset2TrainH2.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainH2 = dataset2TrainH2['H2'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainH2, y_trainH2)\n",
"#Predict\n",
"H2_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ8_H2 = H2_Predicted\n"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"#Model and train LPG\n",
"dataset2TrainLPG = dfMQ8_LPG.copy()\n",
"dataset2TrainLPG.dropna(inplace=True)\n",
"X_trainLPG = dataset2TrainLPG.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainLPG = dataset2TrainLPG['LPG'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainLPG, y_trainLPG)\n",
"#Predict\n",
"LPG_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ8_LPG = LPG_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CH4\n",
"dataset2TrainCH4 = dfMQ8_CH4.copy()\n",
"dataset2TrainCH4.dropna(inplace=True)\n",
"X_trainCH4 = dataset2TrainCH4.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainCH4 = dataset2TrainCH4['CH4'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainCH4, y_trainCH4)\n",
"#Predict\n",
"CH4_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ8_CH4 = CH4_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CO\n",
"dataset2TrainCO = dfMQ8_CO.copy()\n",
"dataset2TrainCO.dropna(inplace=True)\n",
"X_trainCO = dataset2TrainCO.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainCO = dataset2TrainCO['CO'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainCO, y_trainCO)\n",
"#Predict\n",
"CO_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ8_CO = CO_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"#Model and train Alcohol\n",
"dataset2TrainAlcohol = dfMQ8_Alcohol.copy()\n",
"dataset2TrainAlcohol.dropna(inplace=True)\n",
"X_trainAlcohol = dataset2TrainAlcohol.RsRo.apply(lambda x: [x]).tolist()\n",
"y_trainAlcohol = dataset2TrainAlcohol['Alcohol'].tolist()\n",
"model = linear_model.Lasso(alpha=0.1)\n",
"model.fit(X_trainAlcohol, y_trainAlcohol)\n",
"#Predict\n",
"Alcohol_Predicted = model.predict(X_Predict)\n",
"#save into MQ2\n",
"MQ8_Alcohol = Alcohol_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\r\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\r\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\r\n",
"<!-- Created with matplotlib (https://matplotlib.org/) -->\r\n",
"<svg height=\"383.33625pt\" version=\"1.1\" viewBox=\"0 0 564.278125 383.33625\" width=\"564.278125pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\r\n",
" <defs>\r\n",
" <style type=\"text/css\">\r\n",
"*{stroke-linecap:butt;stroke-linejoin:round;}\r\n",
" </style>\r\n",
" </defs>\r\n",
" <g id=\"figure_1\">\r\n",
" <g id=\"patch_1\">\r\n",
" <path d=\"M 0 383.33625 \r\n",
"L 564.278125 383.33625 \r\n",
"L 564.278125 0 \r\n",
"L 0 0 \r\n",
"z\r\n",
"\" style=\"fill:none;\"/>\r\n",
" </g>\r\n",
" <g id=\"axes_1\">\r\n",
" <g id=\"patch_2\">\r\n",
" <path d=\"M 51.378125 345.78 \r\n",
"L 553.578125 345.78 \r\n",
"L 553.578125 46.8 \r\n",
"L 51.378125 46.8 \r\n",
"z\r\n",
"\" style=\"fill:#ffffff;\"/>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_1\">\r\n",
" <g id=\"xtick_1\">\r\n",
" <g id=\"line2d_1\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L 0 3.5 \r\n",
"\" id=\"m04ec159fa0\" style=\"stroke:#000000;stroke-width:0.8;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"116.091141\" xlink:href=\"#m04ec159fa0\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_1\">\r\n",
" <!-- $\\mathdefault{10^{1}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 12.40625 8.296875 \r\n",
"L 28.515625 8.296875 \r\n",
"L 28.515625 63.921875 \r\n",
"L 10.984375 60.40625 \r\n",
"L 10.984375 69.390625 \r\n",
"L 28.421875 72.90625 \r\n",
"L 38.28125 72.90625 \r\n",
"L 38.28125 8.296875 \r\n",
"L 54.390625 8.296875 \r\n",
"L 54.390625 0 \r\n",
"L 12.40625 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-49\"/>\r\n",
" <path d=\"M 31.78125 66.40625 \r\n",
"Q 24.171875 66.40625 20.328125 58.90625 \r\n",
"Q 16.5 51.421875 16.5 36.375 \r\n",
"Q 16.5 21.390625 20.328125 13.890625 \r\n",
"Q 24.171875 6.390625 31.78125 6.390625 \r\n",
"Q 39.453125 6.390625 43.28125 13.890625 \r\n",
"Q 47.125 21.390625 47.125 36.375 \r\n",
"Q 47.125 51.421875 43.28125 58.90625 \r\n",
"Q 39.453125 66.40625 31.78125 66.40625 \r\n",
"z\r\n",
"M 31.78125 74.21875 \r\n",
"Q 44.046875 74.21875 50.515625 64.515625 \r\n",
"Q 56.984375 54.828125 56.984375 36.375 \r\n",
"Q 56.984375 17.96875 50.515625 8.265625 \r\n",
"Q 44.046875 -1.421875 31.78125 -1.421875 \r\n",
"Q 19.53125 -1.421875 13.0625 8.265625 \r\n",
"Q 6.59375 17.96875 6.59375 36.375 \r\n",
"Q 6.59375 54.828125 13.0625 64.515625 \r\n",
"Q 19.53125 74.21875 31.78125 74.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-48\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(107.291141 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_2\">\r\n",
" <g id=\"line2d_2\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"238.99129\" xlink:href=\"#m04ec159fa0\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_2\">\r\n",
" <!-- $\\mathdefault{10^{2}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 19.1875 8.296875 \r\n",
"L 53.609375 8.296875 \r\n",
"L 53.609375 0 \r\n",
"L 7.328125 0 \r\n",
"L 7.328125 8.296875 \r\n",
"Q 12.9375 14.109375 22.625 23.890625 \r\n",
"Q 32.328125 33.6875 34.8125 36.53125 \r\n",
"Q 39.546875 41.84375 41.421875 45.53125 \r\n",
"Q 43.3125 49.21875 43.3125 52.78125 \r\n",
"Q 43.3125 58.59375 39.234375 62.25 \r\n",
"Q 35.15625 65.921875 28.609375 65.921875 \r\n",
"Q 23.96875 65.921875 18.8125 64.3125 \r\n",
"Q 13.671875 62.703125 7.8125 59.421875 \r\n",
"L 7.8125 69.390625 \r\n",
"Q 13.765625 71.78125 18.9375 73 \r\n",
"Q 24.125 74.21875 28.421875 74.21875 \r\n",
"Q 39.75 74.21875 46.484375 68.546875 \r\n",
"Q 53.21875 62.890625 53.21875 53.421875 \r\n",
"Q 53.21875 48.921875 51.53125 44.890625 \r\n",
"Q 49.859375 40.875 45.40625 35.40625 \r\n",
"Q 44.1875 33.984375 37.640625 27.21875 \r\n",
"Q 31.109375 20.453125 19.1875 8.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-50\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(230.19129 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-50\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_3\">\r\n",
" <g id=\"line2d_3\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"361.89144\" xlink:href=\"#m04ec159fa0\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_3\">\r\n",
" <!-- $\\mathdefault{10^{3}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 40.578125 39.3125 \r\n",
"Q 47.65625 37.796875 51.625 33 \r\n",
"Q 55.609375 28.21875 55.609375 21.1875 \r\n",
"Q 55.609375 10.40625 48.1875 4.484375 \r\n",
"Q 40.765625 -1.421875 27.09375 -1.421875 \r\n",
"Q 22.515625 -1.421875 17.65625 -0.515625 \r\n",
"Q 12.796875 0.390625 7.625 2.203125 \r\n",
"L 7.625 11.71875 \r\n",
"Q 11.71875 9.328125 16.59375 8.109375 \r\n",
"Q 21.484375 6.890625 26.8125 6.890625 \r\n",
"Q 36.078125 6.890625 40.9375 10.546875 \r\n",
"Q 45.796875 14.203125 45.796875 21.1875 \r\n",
"Q 45.796875 27.640625 41.28125 31.265625 \r\n",
"Q 36.765625 34.90625 28.71875 34.90625 \r\n",
"L 20.21875 34.90625 \r\n",
"L 20.21875 43.015625 \r\n",
"L 29.109375 43.015625 \r\n",
"Q 36.375 43.015625 40.234375 45.921875 \r\n",
"Q 44.09375 48.828125 44.09375 54.296875 \r\n",
"Q 44.09375 59.90625 40.109375 62.90625 \r\n",
"Q 36.140625 65.921875 28.71875 65.921875 \r\n",
"Q 24.65625 65.921875 20.015625 65.03125 \r\n",
"Q 15.375 64.15625 9.8125 62.3125 \r\n",
"L 9.8125 71.09375 \r\n",
"Q 15.4375 72.65625 20.34375 73.4375 \r\n",
"Q 25.25 74.21875 29.59375 74.21875 \r\n",
"Q 40.828125 74.21875 47.359375 69.109375 \r\n",
"Q 53.90625 64.015625 53.90625 55.328125 \r\n",
"Q 53.90625 49.265625 50.4375 45.09375 \r\n",
"Q 46.96875 40.921875 40.578125 39.3125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-51\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(353.09144 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-51\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_4\">\r\n",
" <g id=\"line2d_4\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"484.791589\" xlink:href=\"#m04ec159fa0\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_4\">\r\n",
" <!-- $\\mathdefault{10^{4}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 37.796875 64.3125 \r\n",
"L 12.890625 25.390625 \r\n",
"L 37.796875 25.390625 \r\n",
"z\r\n",
"M 35.203125 72.90625 \r\n",
"L 47.609375 72.90625 \r\n",
"L 47.609375 25.390625 \r\n",
"L 58.015625 25.390625 \r\n",
"L 58.015625 17.1875 \r\n",
"L 47.609375 17.1875 \r\n",
"L 47.609375 0 \r\n",
"L 37.796875 0 \r\n",
"L 37.796875 17.1875 \r\n",
"L 4.890625 17.1875 \r\n",
"L 4.890625 26.703125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-52\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(475.991589 360.378437)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-52\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_5\">\r\n",
" <g id=\"line2d_5\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.829265 345.78 \r\n",
"L 51.829265 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_6\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L 0 2 \r\n",
"\" id=\"md45cf6b189\" style=\"stroke:#000000;stroke-width:0.6;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.829265\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_6\">\r\n",
" <g id=\"line2d_7\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 67.184255 345.78 \r\n",
"L 67.184255 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_8\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"67.184255\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_7\">\r\n",
" <g id=\"line2d_9\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 79.09451 345.78 \r\n",
"L 79.09451 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_10\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"79.09451\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_8\">\r\n",
" <g id=\"line2d_11\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 88.825897 345.78 \r\n",
"L 88.825897 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_12\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"88.825897\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_9\">\r\n",
" <g id=\"line2d_13\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 97.053667 345.78 \r\n",
"L 97.053667 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_14\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"97.053667\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_10\">\r\n",
" <g id=\"line2d_15\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 104.180886 345.78 \r\n",
"L 104.180886 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_16\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"104.180886\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_11\">\r\n",
" <g id=\"line2d_17\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 110.467539 345.78 \r\n",
"L 110.467539 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_18\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"110.467539\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_12\">\r\n",
" <g id=\"line2d_19\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 153.087773 345.78 \r\n",
"L 153.087773 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_20\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"153.087773\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_13\">\r\n",
" <g id=\"line2d_21\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 174.729415 345.78 \r\n",
"L 174.729415 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_22\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"174.729415\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_14\">\r\n",
" <g id=\"line2d_23\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 190.084404 345.78 \r\n",
"L 190.084404 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_24\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"190.084404\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_15\">\r\n",
" <g id=\"line2d_25\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 201.994659 345.78 \r\n",
"L 201.994659 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_26\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"201.994659\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_16\">\r\n",
" <g id=\"line2d_27\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 211.726046 345.78 \r\n",
"L 211.726046 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_28\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"211.726046\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_17\">\r\n",
" <g id=\"line2d_29\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 219.953816 345.78 \r\n",
"L 219.953816 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_30\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"219.953816\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_18\">\r\n",
" <g id=\"line2d_31\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 227.081035 345.78 \r\n",
"L 227.081035 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_32\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"227.081035\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_19\">\r\n",
" <g id=\"line2d_33\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 233.367688 345.78 \r\n",
"L 233.367688 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_34\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"233.367688\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_20\">\r\n",
" <g id=\"line2d_35\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 275.987922 345.78 \r\n",
"L 275.987922 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_36\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"275.987922\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_21\">\r\n",
" <g id=\"line2d_37\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 297.629564 345.78 \r\n",
"L 297.629564 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_38\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"297.629564\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_22\">\r\n",
" <g id=\"line2d_39\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 312.984553 345.78 \r\n",
"L 312.984553 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_40\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"312.984553\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_23\">\r\n",
" <g id=\"line2d_41\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 324.894808 345.78 \r\n",
"L 324.894808 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_42\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"324.894808\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_24\">\r\n",
" <g id=\"line2d_43\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 334.626195 345.78 \r\n",
"L 334.626195 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_44\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"334.626195\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_25\">\r\n",
" <g id=\"line2d_45\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 342.853966 345.78 \r\n",
"L 342.853966 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_46\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"342.853966\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_26\">\r\n",
" <g id=\"line2d_47\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 349.981185 345.78 \r\n",
"L 349.981185 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_48\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"349.981185\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_27\">\r\n",
" <g id=\"line2d_49\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 356.267837 345.78 \r\n",
"L 356.267837 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_50\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"356.267837\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_28\">\r\n",
" <g id=\"line2d_51\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 398.888071 345.78 \r\n",
"L 398.888071 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_52\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"398.888071\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_29\">\r\n",
" <g id=\"line2d_53\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 420.529713 345.78 \r\n",
"L 420.529713 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_54\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"420.529713\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_30\">\r\n",
" <g id=\"line2d_55\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 435.884703 345.78 \r\n",
"L 435.884703 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_56\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"435.884703\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_31\">\r\n",
" <g id=\"line2d_57\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 447.794958 345.78 \r\n",
"L 447.794958 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_58\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"447.794958\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_32\">\r\n",
" <g id=\"line2d_59\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 457.526345 345.78 \r\n",
"L 457.526345 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_60\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"457.526345\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_33\">\r\n",
" <g id=\"line2d_61\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 465.754115 345.78 \r\n",
"L 465.754115 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_62\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"465.754115\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_34\">\r\n",
" <g id=\"line2d_63\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 472.881334 345.78 \r\n",
"L 472.881334 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_64\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"472.881334\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_35\">\r\n",
" <g id=\"line2d_65\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 479.167987 345.78 \r\n",
"L 479.167987 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_66\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"479.167987\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_36\">\r\n",
" <g id=\"line2d_67\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 521.788221 345.78 \r\n",
"L 521.788221 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_68\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"521.788221\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_37\">\r\n",
" <g id=\"line2d_69\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 543.429863 345.78 \r\n",
"L 543.429863 46.8 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_70\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"543.429863\" xlink:href=\"#md45cf6b189\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_5\">\r\n",
" <!-- PPM Concentration -->\r\n",
" <defs>\r\n",
" <path d=\"M 19.671875 64.796875 \r\n",
"L 19.671875 37.40625 \r\n",
"L 32.078125 37.40625 \r\n",
"Q 38.96875 37.40625 42.71875 40.96875 \r\n",
"Q 46.484375 44.53125 46.484375 51.125 \r\n",
"Q 46.484375 57.671875 42.71875 61.234375 \r\n",
"Q 38.96875 64.796875 32.078125 64.796875 \r\n",
"z\r\n",
"M 9.8125 72.90625 \r\n",
"L 32.078125 72.90625 \r\n",
"Q 44.34375 72.90625 50.609375 67.359375 \r\n",
"Q 56.890625 61.8125 56.890625 51.125 \r\n",
"Q 56.890625 40.328125 50.609375 34.8125 \r\n",
"Q 44.34375 29.296875 32.078125 29.296875 \r\n",
"L 19.671875 29.296875 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-80\"/>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 24.515625 72.90625 \r\n",
"L 43.109375 23.296875 \r\n",
"L 61.8125 72.90625 \r\n",
"L 76.515625 72.90625 \r\n",
"L 76.515625 0 \r\n",
"L 66.890625 0 \r\n",
"L 66.890625 64.015625 \r\n",
"L 48.09375 14.015625 \r\n",
"L 38.1875 14.015625 \r\n",
"L 19.390625 64.015625 \r\n",
"L 19.390625 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-77\"/>\r\n",
" <path id=\"DejaVuSans-32\"/>\r\n",
" <path d=\"M 64.40625 67.28125 \r\n",
"L 64.40625 56.890625 \r\n",
"Q 59.421875 61.53125 53.78125 63.8125 \r\n",
"Q 48.140625 66.109375 41.796875 66.109375 \r\n",
"Q 29.296875 66.109375 22.65625 58.46875 \r\n",
"Q 16.015625 50.828125 16.015625 36.375 \r\n",
"Q 16.015625 21.96875 22.65625 14.328125 \r\n",
"Q 29.296875 6.6875 41.796875 6.6875 \r\n",
"Q 48.140625 6.6875 53.78125 8.984375 \r\n",
"Q 59.421875 11.28125 64.40625 15.921875 \r\n",
"L 64.40625 5.609375 \r\n",
"Q 59.234375 2.09375 53.4375 0.328125 \r\n",
"Q 47.65625 -1.421875 41.21875 -1.421875 \r\n",
"Q 24.65625 -1.421875 15.125 8.703125 \r\n",
"Q 5.609375 18.84375 5.609375 36.375 \r\n",
"Q 5.609375 53.953125 15.125 64.078125 \r\n",
"Q 24.65625 74.21875 41.21875 74.21875 \r\n",
"Q 47.75 74.21875 53.53125 72.484375 \r\n",
"Q 59.328125 70.75 64.40625 67.28125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-67\"/>\r\n",
" <path d=\"M 30.609375 48.390625 \r\n",
"Q 23.390625 48.390625 19.1875 42.75 \r\n",
"Q 14.984375 37.109375 14.984375 27.296875 \r\n",
"Q 14.984375 17.484375 19.15625 11.84375 \r\n",
"Q 23.34375 6.203125 30.609375 6.203125 \r\n",
"Q 37.796875 6.203125 41.984375 11.859375 \r\n",
"Q 46.1875 17.53125 46.1875 27.296875 \r\n",
"Q 46.1875 37.015625 41.984375 42.703125 \r\n",
"Q 37.796875 48.390625 30.609375 48.390625 \r\n",
"z\r\n",
"M 30.609375 56 \r\n",
"Q 42.328125 56 49.015625 48.375 \r\n",
"Q 55.71875 40.765625 55.71875 27.296875 \r\n",
"Q 55.71875 13.875 49.015625 6.21875 \r\n",
"Q 42.328125 -1.421875 30.609375 -1.421875 \r\n",
"Q 18.84375 -1.421875 12.171875 6.21875 \r\n",
"Q 5.515625 13.875 5.515625 27.296875 \r\n",
"Q 5.515625 40.765625 12.171875 48.375 \r\n",
"Q 18.84375 56 30.609375 56 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-111\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-110\"/>\r\n",
" <path d=\"M 48.78125 52.59375 \r\n",
"L 48.78125 44.1875 \r\n",
"Q 44.96875 46.296875 41.140625 47.34375 \r\n",
"Q 37.3125 48.390625 33.40625 48.390625 \r\n",
"Q 24.65625 48.390625 19.8125 42.84375 \r\n",
"Q 14.984375 37.3125 14.984375 27.296875 \r\n",
"Q 14.984375 17.28125 19.8125 11.734375 \r\n",
"Q 24.65625 6.203125 33.40625 6.203125 \r\n",
"Q 37.3125 6.203125 41.140625 7.25 \r\n",
"Q 44.96875 8.296875 48.78125 10.40625 \r\n",
"L 48.78125 2.09375 \r\n",
"Q 45.015625 0.34375 40.984375 -0.53125 \r\n",
"Q 36.96875 -1.421875 32.421875 -1.421875 \r\n",
"Q 20.0625 -1.421875 12.78125 6.34375 \r\n",
"Q 5.515625 14.109375 5.515625 27.296875 \r\n",
"Q 5.515625 40.671875 12.859375 48.328125 \r\n",
"Q 20.21875 56 33.015625 56 \r\n",
"Q 37.15625 56 41.109375 55.140625 \r\n",
"Q 45.0625 54.296875 48.78125 52.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-99\"/>\r\n",
" <path d=\"M 56.203125 29.59375 \r\n",
"L 56.203125 25.203125 \r\n",
"L 14.890625 25.203125 \r\n",
"Q 15.484375 15.921875 20.484375 11.0625 \r\n",
"Q 25.484375 6.203125 34.421875 6.203125 \r\n",
"Q 39.59375 6.203125 44.453125 7.46875 \r\n",
"Q 49.3125 8.734375 54.109375 11.28125 \r\n",
"L 54.109375 2.78125 \r\n",
"Q 49.265625 0.734375 44.1875 -0.34375 \r\n",
"Q 39.109375 -1.421875 33.890625 -1.421875 \r\n",
"Q 20.796875 -1.421875 13.15625 6.1875 \r\n",
"Q 5.515625 13.8125 5.515625 26.8125 \r\n",
"Q 5.515625 40.234375 12.765625 48.109375 \r\n",
"Q 20.015625 56 32.328125 56 \r\n",
"Q 43.359375 56 49.78125 48.890625 \r\n",
"Q 56.203125 41.796875 56.203125 29.59375 \r\n",
"z\r\n",
"M 47.21875 32.234375 \r\n",
"Q 47.125 39.59375 43.09375 43.984375 \r\n",
"Q 39.0625 48.390625 32.421875 48.390625 \r\n",
"Q 24.90625 48.390625 20.390625 44.140625 \r\n",
"Q 15.875 39.890625 15.1875 32.171875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-101\"/>\r\n",
" <path d=\"M 18.3125 70.21875 \r\n",
"L 18.3125 54.6875 \r\n",
"L 36.8125 54.6875 \r\n",
"L 36.8125 47.703125 \r\n",
"L 18.3125 47.703125 \r\n",
"L 18.3125 18.015625 \r\n",
"Q 18.3125 11.328125 20.140625 9.421875 \r\n",
"Q 21.96875 7.515625 27.59375 7.515625 \r\n",
"L 36.8125 7.515625 \r\n",
"L 36.8125 0 \r\n",
"L 27.59375 0 \r\n",
"Q 17.1875 0 13.234375 3.875 \r\n",
"Q 9.28125 7.765625 9.28125 18.015625 \r\n",
"L 9.28125 47.703125 \r\n",
"L 2.6875 47.703125 \r\n",
"L 2.6875 54.6875 \r\n",
"L 9.28125 54.6875 \r\n",
"L 9.28125 70.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-116\"/>\r\n",
" <path d=\"M 41.109375 46.296875 \r\n",
"Q 39.59375 47.171875 37.8125 47.578125 \r\n",
"Q 36.03125 48 33.890625 48 \r\n",
"Q 26.265625 48 22.1875 43.046875 \r\n",
"Q 18.109375 38.09375 18.109375 28.8125 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 20.953125 51.171875 25.484375 53.578125 \r\n",
"Q 30.03125 56 36.53125 56 \r\n",
"Q 37.453125 56 38.578125 55.875 \r\n",
"Q 39.703125 55.765625 41.0625 55.515625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-114\"/>\r\n",
" <path d=\"M 34.28125 27.484375 \r\n",
"Q 23.390625 27.484375 19.1875 25 \r\n",
"Q 14.984375 22.515625 14.984375 16.5 \r\n",
"Q 14.984375 11.71875 18.140625 8.90625 \r\n",
"Q 21.296875 6.109375 26.703125 6.109375 \r\n",
"Q 34.1875 6.109375 38.703125 11.40625 \r\n",
"Q 43.21875 16.703125 43.21875 25.484375 \r\n",
"L 43.21875 27.484375 \r\n",
"z\r\n",
"M 52.203125 31.203125 \r\n",
"L 52.203125 0 \r\n",
"L 43.21875 0 \r\n",
"L 43.21875 8.296875 \r\n",
"Q 40.140625 3.328125 35.546875 0.953125 \r\n",
"Q 30.953125 -1.421875 24.3125 -1.421875 \r\n",
"Q 15.921875 -1.421875 10.953125 3.296875 \r\n",
"Q 6 8.015625 6 15.921875 \r\n",
"Q 6 25.140625 12.171875 29.828125 \r\n",
"Q 18.359375 34.515625 30.609375 34.515625 \r\n",
"L 43.21875 34.515625 \r\n",
"L 43.21875 35.40625 \r\n",
"Q 43.21875 41.609375 39.140625 45 \r\n",
"Q 35.0625 48.390625 27.6875 48.390625 \r\n",
"Q 23 48.390625 18.546875 47.265625 \r\n",
"Q 14.109375 46.140625 10.015625 43.890625 \r\n",
"L 10.015625 52.203125 \r\n",
"Q 14.9375 54.109375 19.578125 55.046875 \r\n",
"Q 24.21875 56 28.609375 56 \r\n",
"Q 40.484375 56 46.34375 49.84375 \r\n",
"Q 52.203125 43.703125 52.203125 31.203125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-97\"/>\r\n",
" <path d=\"M 9.421875 54.6875 \r\n",
"L 18.40625 54.6875 \r\n",
"L 18.40625 0 \r\n",
"L 9.421875 0 \r\n",
"z\r\n",
"M 9.421875 75.984375 \r\n",
"L 18.40625 75.984375 \r\n",
"L 18.40625 64.59375 \r\n",
"L 9.421875 64.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-105\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(255.174219 374.056562)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-80\"/>\r\n",
" <use x=\"60.302734\" xlink:href=\"#DejaVuSans-80\"/>\r\n",
" <use x=\"120.605469\" xlink:href=\"#DejaVuSans-77\"/>\r\n",
" <use x=\"206.884766\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"238.671875\" xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"308.496094\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"369.677734\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"433.056641\" xlink:href=\"#DejaVuSans-99\"/>\r\n",
" <use x=\"488.037109\" xlink:href=\"#DejaVuSans-101\"/>\r\n",
" <use x=\"549.560547\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"612.939453\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"652.148438\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"693.261719\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"754.541016\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"793.75\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"821.533203\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"882.714844\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"matplotlib.axis_2\">\r\n",
" <g id=\"ytick_1\">\r\n",
" <g id=\"line2d_71\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -3.5 0 \r\n",
"\" id=\"m2841bb15ca\" style=\"stroke:#000000;stroke-width:0.8;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#m2841bb15ca\" y=\"280.829744\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_6\">\r\n",
" <!-- $\\mathdefault{10^{-1}}$ -->\r\n",
" <defs>\r\n",
" <path d=\"M 10.59375 35.5 \r\n",
"L 73.1875 35.5 \r\n",
"L 73.1875 27.203125 \r\n",
"L 10.59375 27.203125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-8722\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(20.878125 284.628963)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-8722\"/>\r\n",
" <use transform=\"translate(186.855469 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_2\">\r\n",
" <g id=\"line2d_72\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#m2841bb15ca\" y=\"207.349829\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_7\">\r\n",
" <!-- $\\mathdefault{10^{0}}$ -->\r\n",
" <g transform=\"translate(26.778125 211.149048)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_3\">\r\n",
" <g id=\"line2d_73\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#m2841bb15ca\" y=\"133.869915\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_8\">\r\n",
" <!-- $\\mathdefault{10^{1}}$ -->\r\n",
" <g transform=\"translate(26.778125 137.669133)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.684375)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.684375)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 38.965625)scale(0.7)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_4\">\r\n",
" <g id=\"line2d_74\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#m2841bb15ca\" y=\"60.39\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_9\">\r\n",
" <!-- $\\mathdefault{10^{2}}$ -->\r\n",
" <g transform=\"translate(26.778125 64.189219)scale(0.1 -0.1)\">\r\n",
" <use transform=\"translate(0 0.765625)\" xlink:href=\"#DejaVuSans-49\"/>\r\n",
" <use transform=\"translate(63.623047 0.765625)\" xlink:href=\"#DejaVuSans-48\"/>\r\n",
" <use transform=\"translate(128.203125 39.046875)scale(0.7)\" xlink:href=\"#DejaVuSans-50\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_5\">\r\n",
" <g id=\"line2d_75\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 332.19 \r\n",
"L 553.578125 332.19 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_76\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -2 0 \r\n",
"\" id=\"mf325af8eeb\" style=\"stroke:#000000;stroke-width:0.6;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"332.19\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_6\">\r\n",
" <g id=\"line2d_77\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 319.250829 \r\n",
"L 553.578125 319.250829 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_78\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"319.250829\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_7\">\r\n",
" <g id=\"line2d_79\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 310.070342 \r\n",
"L 553.578125 310.070342 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_80\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"310.070342\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_8\">\r\n",
" <g id=\"line2d_81\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 302.949402 \r\n",
"L 553.578125 302.949402 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_82\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"302.949402\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_9\">\r\n",
" <g id=\"line2d_83\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 297.131171 \r\n",
"L 553.578125 297.131171 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_84\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"297.131171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_10\">\r\n",
" <g id=\"line2d_85\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 292.211927 \r\n",
"L 553.578125 292.211927 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_86\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"292.211927\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_11\">\r\n",
" <g id=\"line2d_87\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 287.950683 \r\n",
"L 553.578125 287.950683 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_88\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"287.950683\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_12\">\r\n",
" <g id=\"line2d_89\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 284.192 \r\n",
"L 553.578125 284.192 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_90\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"284.192\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_13\">\r\n",
" <g id=\"line2d_91\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 258.710085 \r\n",
"L 553.578125 258.710085 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_92\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"258.710085\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_14\">\r\n",
" <g id=\"line2d_93\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 245.770915 \r\n",
"L 553.578125 245.770915 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_94\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"245.770915\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_15\">\r\n",
" <g id=\"line2d_95\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 236.590427 \r\n",
"L 553.578125 236.590427 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_96\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"236.590427\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_16\">\r\n",
" <g id=\"line2d_97\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 229.469488 \r\n",
"L 553.578125 229.469488 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_98\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"229.469488\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_17\">\r\n",
" <g id=\"line2d_99\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 223.651256 \r\n",
"L 553.578125 223.651256 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_100\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"223.651256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_18\">\r\n",
" <g id=\"line2d_101\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 218.732012 \r\n",
"L 553.578125 218.732012 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_102\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"218.732012\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_19\">\r\n",
" <g id=\"line2d_103\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 214.470769 \r\n",
"L 553.578125 214.470769 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_104\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"214.470769\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_20\">\r\n",
" <g id=\"line2d_105\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 210.712086 \r\n",
"L 553.578125 210.712086 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_106\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"210.712086\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_21\">\r\n",
" <g id=\"line2d_107\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 185.230171 \r\n",
"L 553.578125 185.230171 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_108\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"185.230171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_22\">\r\n",
" <g id=\"line2d_109\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 172.291 \r\n",
"L 553.578125 172.291 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_110\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"172.291\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_23\">\r\n",
" <g id=\"line2d_111\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 163.110512 \r\n",
"L 553.578125 163.110512 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_112\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"163.110512\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_24\">\r\n",
" <g id=\"line2d_113\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 155.989573 \r\n",
"L 553.578125 155.989573 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_114\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"155.989573\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_25\">\r\n",
" <g id=\"line2d_115\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 150.171342 \r\n",
"L 553.578125 150.171342 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_116\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"150.171342\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_26\">\r\n",
" <g id=\"line2d_117\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 145.252097 \r\n",
"L 553.578125 145.252097 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_118\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"145.252097\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_27\">\r\n",
" <g id=\"line2d_119\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 140.990854 \r\n",
"L 553.578125 140.990854 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_120\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"140.990854\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_28\">\r\n",
" <g id=\"line2d_121\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 137.232171 \r\n",
"L 553.578125 137.232171 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_122\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"137.232171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_29\">\r\n",
" <g id=\"line2d_123\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 111.750256 \r\n",
"L 553.578125 111.750256 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_124\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"111.750256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_30\">\r\n",
" <g id=\"line2d_125\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 98.811086 \r\n",
"L 553.578125 98.811086 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_126\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"98.811086\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_31\">\r\n",
" <g id=\"line2d_127\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 89.630598 \r\n",
"L 553.578125 89.630598 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_128\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"89.630598\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_32\">\r\n",
" <g id=\"line2d_129\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 82.509658 \r\n",
"L 553.578125 82.509658 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_130\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"82.509658\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_33\">\r\n",
" <g id=\"line2d_131\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 76.691427 \r\n",
"L 553.578125 76.691427 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_132\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"76.691427\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_34\">\r\n",
" <g id=\"line2d_133\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 71.772183 \r\n",
"L 553.578125 71.772183 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_134\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"71.772183\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_35\">\r\n",
" <g id=\"line2d_135\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 67.510939 \r\n",
"L 553.578125 67.510939 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_136\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"67.510939\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_36\">\r\n",
" <g id=\"line2d_137\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 51.378125 63.752256 \r\n",
"L 553.578125 63.752256 \r\n",
"\" style=\"fill:none;stroke:#d3d3d3;stroke-dasharray:2.96,1.28;stroke-dashoffset:0;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_138\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#mf325af8eeb\" y=\"63.752256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_10\">\r\n",
" <!-- Rs/Ro -->\r\n",
" <defs>\r\n",
" <path d=\"M 44.390625 34.1875 \r\n",
"Q 47.5625 33.109375 50.5625 29.59375 \r\n",
"Q 53.5625 26.078125 56.59375 19.921875 \r\n",
"L 66.609375 0 \r\n",
"L 56 0 \r\n",
"L 46.6875 18.703125 \r\n",
"Q 43.0625 26.03125 39.671875 28.421875 \r\n",
"Q 36.28125 30.8125 30.421875 30.8125 \r\n",
"L 19.671875 30.8125 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"L 9.8125 72.90625 \r\n",
"L 32.078125 72.90625 \r\n",
"Q 44.578125 72.90625 50.734375 67.671875 \r\n",
"Q 56.890625 62.453125 56.890625 51.90625 \r\n",
"Q 56.890625 45.015625 53.6875 40.46875 \r\n",
"Q 50.484375 35.9375 44.390625 34.1875 \r\n",
"z\r\n",
"M 19.671875 64.796875 \r\n",
"L 19.671875 38.921875 \r\n",
"L 32.078125 38.921875 \r\n",
"Q 39.203125 38.921875 42.84375 42.21875 \r\n",
"Q 46.484375 45.515625 46.484375 51.90625 \r\n",
"Q 46.484375 58.296875 42.84375 61.546875 \r\n",
"Q 39.203125 64.796875 32.078125 64.796875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-82\"/>\r\n",
" <path d=\"M 44.28125 53.078125 \r\n",
"L 44.28125 44.578125 \r\n",
"Q 40.484375 46.53125 36.375 47.5 \r\n",
"Q 32.28125 48.484375 27.875 48.484375 \r\n",
"Q 21.1875 48.484375 17.84375 46.4375 \r\n",
"Q 14.5 44.390625 14.5 40.28125 \r\n",
"Q 14.5 37.15625 16.890625 35.375 \r\n",
"Q 19.28125 33.59375 26.515625 31.984375 \r\n",
"L 29.59375 31.296875 \r\n",
"Q 39.15625 29.25 43.1875 25.515625 \r\n",
"Q 47.21875 21.78125 47.21875 15.09375 \r\n",
"Q 47.21875 7.46875 41.1875 3.015625 \r\n",
"Q 35.15625 -1.421875 24.609375 -1.421875 \r\n",
"Q 20.21875 -1.421875 15.453125 -0.5625 \r\n",
"Q 10.6875 0.296875 5.421875 2 \r\n",
"L 5.421875 11.28125 \r\n",
"Q 10.40625 8.6875 15.234375 7.390625 \r\n",
"Q 20.0625 6.109375 24.8125 6.109375 \r\n",
"Q 31.15625 6.109375 34.5625 8.28125 \r\n",
"Q 37.984375 10.453125 37.984375 14.40625 \r\n",
"Q 37.984375 18.0625 35.515625 20.015625 \r\n",
"Q 33.0625 21.96875 24.703125 23.78125 \r\n",
"L 21.578125 24.515625 \r\n",
"Q 13.234375 26.265625 9.515625 29.90625 \r\n",
"Q 5.8125 33.546875 5.8125 39.890625 \r\n",
"Q 5.8125 47.609375 11.28125 51.796875 \r\n",
"Q 16.75 56 26.8125 56 \r\n",
"Q 31.78125 56 36.171875 55.265625 \r\n",
"Q 40.578125 54.546875 44.28125 53.078125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-115\"/>\r\n",
" <path d=\"M 25.390625 72.90625 \r\n",
"L 33.6875 72.90625 \r\n",
"L 8.296875 -9.28125 \r\n",
"L 0 -9.28125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-47\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(14.798437 210.58375)rotate(-90)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-82\"/>\r\n",
" <use x=\"69.482422\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
" <use x=\"121.582031\" xlink:href=\"#DejaVuSans-47\"/>\r\n",
" <use x=\"155.273438\" xlink:href=\"#DejaVuSans-82\"/>\r\n",
" <use x=\"224.693359\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_139\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 425.482911 332.19 \r\n",
"L 425.423523 319.250829 \r\n",
"L 425.364068 310.070342 \r\n",
"L 425.304548 302.949402 \r\n",
"L 425.244961 297.131171 \r\n",
"L 425.185307 292.211927 \r\n",
"L 425.125587 287.950683 \r\n",
"L 425.065799 284.192 \r\n",
"L 425.005945 280.829744 \r\n",
"L 424.403681 258.710085 \r\n",
"L 423.794544 245.770915 \r\n",
"L 423.178374 236.590427 \r\n",
"L 422.555009 229.469488 \r\n",
"L 421.924277 223.651256 \r\n",
"L 421.286002 218.732012 \r\n",
"L 420.640002 214.470769 \r\n",
"L 419.986088 210.712086 \r\n",
"L 419.324062 207.349829 \r\n",
"L 412.208703 185.230171 \r\n",
"L 403.996741 172.291 \r\n",
"L 394.287478 163.110512 \r\n",
"L 382.410392 155.989573 \r\n",
"L 367.110639 150.171342 \r\n",
"L 345.579298 145.252097 \r\n",
"L 308.912209 140.990854 \r\n",
"L 74.205398 137.232171 \r\n",
"L -1 137.230115 \r\n",
"\" style=\"fill:none;stroke:#1f77b4;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"mfe147c3b83\" style=\"stroke:#1f77b4;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pf1c8a9b058)\">\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.482911\" xlink:href=\"#mfe147c3b83\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.423523\" xlink:href=\"#mfe147c3b83\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.364068\" xlink:href=\"#mfe147c3b83\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.304548\" xlink:href=\"#mfe147c3b83\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.244961\" xlink:href=\"#mfe147c3b83\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.185307\" xlink:href=\"#mfe147c3b83\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.125587\" xlink:href=\"#mfe147c3b83\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.065799\" xlink:href=\"#mfe147c3b83\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"425.005945\" xlink:href=\"#mfe147c3b83\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"424.403681\" xlink:href=\"#mfe147c3b83\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"423.794544\" xlink:href=\"#mfe147c3b83\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"423.178374\" xlink:href=\"#mfe147c3b83\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"422.555009\" xlink:href=\"#mfe147c3b83\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"421.924277\" xlink:href=\"#mfe147c3b83\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"421.286002\" xlink:href=\"#mfe147c3b83\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"420.640002\" xlink:href=\"#mfe147c3b83\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"419.986088\" xlink:href=\"#mfe147c3b83\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"419.324062\" xlink:href=\"#mfe147c3b83\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"412.208703\" xlink:href=\"#mfe147c3b83\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"403.996741\" xlink:href=\"#mfe147c3b83\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"394.287478\" xlink:href=\"#mfe147c3b83\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"382.410392\" xlink:href=\"#mfe147c3b83\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"367.110639\" xlink:href=\"#mfe147c3b83\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"345.579298\" xlink:href=\"#mfe147c3b83\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"308.912209\" xlink:href=\"#mfe147c3b83\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"74.205398\" xlink:href=\"#mfe147c3b83\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"-1\" xlink:href=\"#mfe147c3b83\" y=\"137.230115\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_140\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 398.853368 332.19 \r\n",
"L 398.837344 319.250829 \r\n",
"L 398.821315 310.070342 \r\n",
"L 398.805281 302.949402 \r\n",
"L 398.789243 297.131171 \r\n",
"L 398.773199 292.211927 \r\n",
"L 398.757151 287.950683 \r\n",
"L 398.741098 284.192 \r\n",
"L 398.72504 280.829744 \r\n",
"L 398.564194 258.710085 \r\n",
"L 398.402862 245.770915 \r\n",
"L 398.241041 236.590427 \r\n",
"L 398.078728 229.469488 \r\n",
"L 397.915919 223.651256 \r\n",
"L 397.752613 218.732012 \r\n",
"L 397.588805 214.470769 \r\n",
"L 397.424493 210.712086 \r\n",
"L 397.259674 207.349829 \r\n",
"L 395.582868 185.230171 \r\n",
"L 393.851671 172.291 \r\n",
"L 392.062436 163.110512 \r\n",
"L 390.211135 155.989573 \r\n",
"L 388.293307 150.171342 \r\n",
"L 386.303993 145.252097 \r\n",
"L 384.237656 140.990854 \r\n",
"L 382.088091 137.232171 \r\n",
"L 379.84831 133.869915 \r\n",
"L 349.97985 111.750256 \r\n",
"L 275.993259 98.811086 \r\n",
"L -1 98.790442 \r\n",
"\" style=\"fill:none;stroke:#ff7f0e;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"mf8077c4c32\" style=\"stroke:#ff7f0e;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pf1c8a9b058)\">\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.853368\" xlink:href=\"#mf8077c4c32\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.837344\" xlink:href=\"#mf8077c4c32\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.821315\" xlink:href=\"#mf8077c4c32\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.805281\" xlink:href=\"#mf8077c4c32\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.789243\" xlink:href=\"#mf8077c4c32\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.773199\" xlink:href=\"#mf8077c4c32\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.757151\" xlink:href=\"#mf8077c4c32\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.741098\" xlink:href=\"#mf8077c4c32\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.72504\" xlink:href=\"#mf8077c4c32\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.564194\" xlink:href=\"#mf8077c4c32\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.402862\" xlink:href=\"#mf8077c4c32\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.241041\" xlink:href=\"#mf8077c4c32\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"398.078728\" xlink:href=\"#mf8077c4c32\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"397.915919\" xlink:href=\"#mf8077c4c32\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"397.752613\" xlink:href=\"#mf8077c4c32\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"397.588805\" xlink:href=\"#mf8077c4c32\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"397.424493\" xlink:href=\"#mf8077c4c32\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"397.259674\" xlink:href=\"#mf8077c4c32\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"395.582868\" xlink:href=\"#mf8077c4c32\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"393.851671\" xlink:href=\"#mf8077c4c32\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"392.062436\" xlink:href=\"#mf8077c4c32\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"390.211135\" xlink:href=\"#mf8077c4c32\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"388.293307\" xlink:href=\"#mf8077c4c32\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"386.303993\" xlink:href=\"#mf8077c4c32\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"384.237656\" xlink:href=\"#mf8077c4c32\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"382.088091\" xlink:href=\"#mf8077c4c32\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"379.84831\" xlink:href=\"#mf8077c4c32\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"349.97985\" xlink:href=\"#mf8077c4c32\" y=\"111.750256\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"275.993259\" xlink:href=\"#mf8077c4c32\" y=\"98.811086\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"-1\" xlink:href=\"#mf8077c4c32\" y=\"98.790442\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_141\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 530.750852 332.19 \r\n",
"L 530.739796 319.250829 \r\n",
"L 530.728737 310.070342 \r\n",
"L 530.717676 302.949402 \r\n",
"L 530.706612 297.131171 \r\n",
"L 530.695547 292.211927 \r\n",
"L 530.684478 287.950683 \r\n",
"L 530.673408 284.192 \r\n",
"L 530.662336 280.829744 \r\n",
"L 530.551483 258.710085 \r\n",
"L 530.440399 245.770915 \r\n",
"L 530.329084 236.590427 \r\n",
"L 530.217536 229.469488 \r\n",
"L 530.105755 223.651256 \r\n",
"L 529.993739 218.732012 \r\n",
"L 529.881488 214.470769 \r\n",
"L 529.768999 210.712086 \r\n",
"L 529.656274 207.349829 \r\n",
"L 528.515726 185.230171 \r\n",
"L 527.350273 172.291 \r\n",
"L 526.158803 163.110512 \r\n",
"L 524.940128 155.989573 \r\n",
"L 523.692976 150.171342 \r\n",
"L 522.415985 145.252097 \r\n",
"L 521.107691 140.990854 \r\n",
"L 519.766522 137.232171 \r\n",
"L 518.390781 133.869915 \r\n",
"L 502.239863 111.750256 \r\n",
"L 478.969846 98.811086 \r\n",
"L 436.766952 89.630598 \r\n",
"L -1 89.605324 \r\n",
"\" style=\"fill:none;stroke:#2ca02c;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m67b77adaea\" style=\"stroke:#2ca02c;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pf1c8a9b058)\">\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.750852\" xlink:href=\"#m67b77adaea\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.739796\" xlink:href=\"#m67b77adaea\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.728737\" xlink:href=\"#m67b77adaea\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.717676\" xlink:href=\"#m67b77adaea\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.706612\" xlink:href=\"#m67b77adaea\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.695547\" xlink:href=\"#m67b77adaea\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.684478\" xlink:href=\"#m67b77adaea\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.673408\" xlink:href=\"#m67b77adaea\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.662336\" xlink:href=\"#m67b77adaea\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.551483\" xlink:href=\"#m67b77adaea\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.440399\" xlink:href=\"#m67b77adaea\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.329084\" xlink:href=\"#m67b77adaea\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.217536\" xlink:href=\"#m67b77adaea\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"530.105755\" xlink:href=\"#m67b77adaea\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"529.993739\" xlink:href=\"#m67b77adaea\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"529.881488\" xlink:href=\"#m67b77adaea\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"529.768999\" xlink:href=\"#m67b77adaea\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"529.656274\" xlink:href=\"#m67b77adaea\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"528.515726\" xlink:href=\"#m67b77adaea\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"527.350273\" xlink:href=\"#m67b77adaea\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"526.158803\" xlink:href=\"#m67b77adaea\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"524.940128\" xlink:href=\"#m67b77adaea\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"523.692976\" xlink:href=\"#m67b77adaea\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"522.415985\" xlink:href=\"#m67b77adaea\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"521.107691\" xlink:href=\"#m67b77adaea\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"519.766522\" xlink:href=\"#m67b77adaea\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"518.390781\" xlink:href=\"#m67b77adaea\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"502.239863\" xlink:href=\"#m67b77adaea\" y=\"111.750256\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"478.969846\" xlink:href=\"#m67b77adaea\" y=\"98.811086\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"436.766952\" xlink:href=\"#m67b77adaea\" y=\"89.630598\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"-1\" xlink:href=\"#m67b77adaea\" y=\"89.605324\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_142\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 522.829392 332.19 \r\n",
"L 522.82154 319.250829 \r\n",
"L 522.813687 310.070342 \r\n",
"L 522.805833 302.949402 \r\n",
"L 522.797977 297.131171 \r\n",
"L 522.79012 292.211927 \r\n",
"L 522.782262 287.950683 \r\n",
"L 522.774403 284.192 \r\n",
"L 522.766543 280.829744 \r\n",
"L 522.687877 258.710085 \r\n",
"L 522.609095 245.770915 \r\n",
"L 522.530197 236.590427 \r\n",
"L 522.451181 229.469488 \r\n",
"L 522.372049 223.651256 \r\n",
"L 522.292799 218.732012 \r\n",
"L 522.213431 214.470769 \r\n",
"L 522.133945 210.712086 \r\n",
"L 522.054341 207.349829 \r\n",
"L 521.251696 185.230171 \r\n",
"L 520.436798 172.291 \r\n",
"L 519.609264 163.110512 \r\n",
"L 518.768698 155.989573 \r\n",
"L 517.914683 150.171342 \r\n",
"L 517.04678 145.252097 \r\n",
"L 516.164532 140.990854 \r\n",
"L 515.267455 137.232171 \r\n",
"L 514.355042 133.869915 \r\n",
"L 504.254284 111.750256 \r\n",
"L 491.785134 98.811086 \r\n",
"L 475.485448 89.630598 \r\n",
"L 451.902721 82.509658 \r\n",
"L 408.619553 76.691427 \r\n",
"L -1 76.675087 \r\n",
"\" style=\"fill:none;stroke:#d62728;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m1e5ac72c17\" style=\"stroke:#d62728;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pf1c8a9b058)\">\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.829392\" xlink:href=\"#m1e5ac72c17\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.82154\" xlink:href=\"#m1e5ac72c17\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.813687\" xlink:href=\"#m1e5ac72c17\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.805833\" xlink:href=\"#m1e5ac72c17\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.797977\" xlink:href=\"#m1e5ac72c17\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.79012\" xlink:href=\"#m1e5ac72c17\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.782262\" xlink:href=\"#m1e5ac72c17\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.774403\" xlink:href=\"#m1e5ac72c17\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.766543\" xlink:href=\"#m1e5ac72c17\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.687877\" xlink:href=\"#m1e5ac72c17\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.609095\" xlink:href=\"#m1e5ac72c17\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.530197\" xlink:href=\"#m1e5ac72c17\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.451181\" xlink:href=\"#m1e5ac72c17\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.372049\" xlink:href=\"#m1e5ac72c17\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.292799\" xlink:href=\"#m1e5ac72c17\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.213431\" xlink:href=\"#m1e5ac72c17\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.133945\" xlink:href=\"#m1e5ac72c17\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"522.054341\" xlink:href=\"#m1e5ac72c17\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"521.251696\" xlink:href=\"#m1e5ac72c17\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"520.436798\" xlink:href=\"#m1e5ac72c17\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"519.609264\" xlink:href=\"#m1e5ac72c17\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"518.768698\" xlink:href=\"#m1e5ac72c17\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"517.914683\" xlink:href=\"#m1e5ac72c17\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"517.04678\" xlink:href=\"#m1e5ac72c17\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"516.164532\" xlink:href=\"#m1e5ac72c17\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"515.267455\" xlink:href=\"#m1e5ac72c17\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"514.355042\" xlink:href=\"#m1e5ac72c17\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"504.254284\" xlink:href=\"#m1e5ac72c17\" y=\"111.750256\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"491.785134\" xlink:href=\"#m1e5ac72c17\" y=\"98.811086\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"475.485448\" xlink:href=\"#m1e5ac72c17\" y=\"89.630598\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"451.902721\" xlink:href=\"#m1e5ac72c17\" y=\"82.509658\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"408.619553\" xlink:href=\"#m1e5ac72c17\" y=\"76.691427\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"-1\" xlink:href=\"#m1e5ac72c17\" y=\"76.675087\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_143\">\r\n",
" <path clip-path=\"url(#pf1c8a9b058)\" d=\"M 468.139132 332.19 \r\n",
"L 468.0905 319.250829 \r\n",
"L 468.041823 310.070342 \r\n",
"L 467.993101 302.949402 \r\n",
"L 467.944335 297.131171 \r\n",
"L 467.895525 292.211927 \r\n",
"L 467.846669 287.950683 \r\n",
"L 467.797769 284.192 \r\n",
"L 467.748825 280.829744 \r\n",
"L 467.256891 258.710085 \r\n",
"L 466.760382 245.770915 \r\n",
"L 466.259211 236.590427 \r\n",
"L 465.753289 229.469488 \r\n",
"L 465.242526 223.651256 \r\n",
"L 464.726828 218.732012 \r\n",
"L 464.206098 214.470769 \r\n",
"L 463.680239 210.712086 \r\n",
"L 463.149146 207.349829 \r\n",
"L 457.525603 185.230171 \r\n",
"L 451.239025 172.291 \r\n",
"L 444.111901 163.110512 \r\n",
"L 435.884258 155.989573 \r\n",
"L 426.153049 150.171342 \r\n",
"L 414.243061 145.252097 \r\n",
"L 398.888516 140.990854 \r\n",
"L 377.247764 137.232171 \r\n",
"L 340.253801 133.869915 \r\n",
"L -1 133.808668 \r\n",
"\" style=\"fill:none;stroke:#9467bd;stroke-linecap:square;\"/>\r\n",
" <defs>\r\n",
" <path d=\"M 0 3 \r\n",
"C 0.795609 3 1.55874 2.683901 2.12132 2.12132 \r\n",
"C 2.683901 1.55874 3 0.795609 3 0 \r\n",
"C 3 -0.795609 2.683901 -1.55874 2.12132 -2.12132 \r\n",
"C 1.55874 -2.683901 0.795609 -3 0 -3 \r\n",
"C -0.795609 -3 -1.55874 -2.683901 -2.12132 -2.12132 \r\n",
"C -2.683901 -1.55874 -3 -0.795609 -3 0 \r\n",
"C -3 0.795609 -2.683901 1.55874 -2.12132 2.12132 \r\n",
"C -1.55874 2.683901 -0.795609 3 0 3 \r\n",
"z\r\n",
"\" id=\"m32990c4d79\" style=\"stroke:#9467bd;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pf1c8a9b058)\">\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"468.139132\" xlink:href=\"#m32990c4d79\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"468.0905\" xlink:href=\"#m32990c4d79\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"468.041823\" xlink:href=\"#m32990c4d79\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.993101\" xlink:href=\"#m32990c4d79\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.944335\" xlink:href=\"#m32990c4d79\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.895525\" xlink:href=\"#m32990c4d79\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.846669\" xlink:href=\"#m32990c4d79\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.797769\" xlink:href=\"#m32990c4d79\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.748825\" xlink:href=\"#m32990c4d79\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"467.256891\" xlink:href=\"#m32990c4d79\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"466.760382\" xlink:href=\"#m32990c4d79\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"466.259211\" xlink:href=\"#m32990c4d79\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"465.753289\" xlink:href=\"#m32990c4d79\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"465.242526\" xlink:href=\"#m32990c4d79\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"464.726828\" xlink:href=\"#m32990c4d79\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"464.206098\" xlink:href=\"#m32990c4d79\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"463.680239\" xlink:href=\"#m32990c4d79\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"463.149146\" xlink:href=\"#m32990c4d79\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"457.525603\" xlink:href=\"#m32990c4d79\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"451.239025\" xlink:href=\"#m32990c4d79\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"444.111901\" xlink:href=\"#m32990c4d79\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"435.884258\" xlink:href=\"#m32990c4d79\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"426.153049\" xlink:href=\"#m32990c4d79\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"414.243061\" xlink:href=\"#m32990c4d79\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"398.888516\" xlink:href=\"#m32990c4d79\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"377.247764\" xlink:href=\"#m32990c4d79\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"340.253801\" xlink:href=\"#m32990c4d79\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"-1\" xlink:href=\"#m32990c4d79\" y=\"133.808668\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"patch_3\">\r\n",
" <path d=\"M 51.378125 345.78 \r\n",
"L 51.378125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_4\">\r\n",
" <path d=\"M 553.578125 345.78 \r\n",
"L 553.578125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_5\">\r\n",
" <path d=\"M 51.378125 345.78 \r\n",
"L 553.578125 345.78 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_6\">\r\n",
" <path d=\"M 51.378125 46.8 \r\n",
"L 553.578125 46.8 \r\n",
"\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
" </g>\r\n",
" <g id=\"legend_1\">\r\n",
" <g id=\"patch_7\">\r\n",
" <path d=\"M 58.378125 340.78 \r\n",
"L 126.848437 340.78 \r\n",
"Q 128.848437 340.78 128.848437 338.78 \r\n",
"L 128.848437 266.389375 \r\n",
"Q 128.848437 264.389375 126.848437 264.389375 \r\n",
"L 58.378125 264.389375 \r\n",
"Q 56.378125 264.389375 56.378125 266.389375 \r\n",
"L 56.378125 338.78 \r\n",
"Q 56.378125 340.78 58.378125 340.78 \r\n",
"z\r\n",
"\" style=\"fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_144\">\r\n",
" <path d=\"M 60.378125 272.487812 \r\n",
"L 80.378125 272.487812 \r\n",
"\" style=\"fill:none;stroke:#1f77b4;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_145\">\r\n",
" <g>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"70.378125\" xlink:href=\"#mfe147c3b83\" y=\"272.487812\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_11\">\r\n",
" <!-- H2 -->\r\n",
" <defs>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 19.671875 72.90625 \r\n",
"L 19.671875 43.015625 \r\n",
"L 55.515625 43.015625 \r\n",
"L 55.515625 72.90625 \r\n",
"L 65.375 72.90625 \r\n",
"L 65.375 0 \r\n",
"L 55.515625 0 \r\n",
"L 55.515625 34.71875 \r\n",
"L 19.671875 34.71875 \r\n",
"L 19.671875 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-72\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(88.378125 275.987812)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-72\"/>\r\n",
" <use x=\"75.195312\" xlink:href=\"#DejaVuSans-50\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_146\">\r\n",
" <path d=\"M 60.378125 287.165937 \r\n",
"L 80.378125 287.165937 \r\n",
"\" style=\"fill:none;stroke:#ff7f0e;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_147\">\r\n",
" <g>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"70.378125\" xlink:href=\"#mf8077c4c32\" y=\"287.165937\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_12\">\r\n",
" <!-- LPG -->\r\n",
" <defs>\r\n",
" <path d=\"M 9.8125 72.90625 \r\n",
"L 19.671875 72.90625 \r\n",
"L 19.671875 8.296875 \r\n",
"L 55.171875 8.296875 \r\n",
"L 55.171875 0 \r\n",
"L 9.8125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-76\"/>\r\n",
" <path d=\"M 59.515625 10.40625 \r\n",
"L 59.515625 29.984375 \r\n",
"L 43.40625 29.984375 \r\n",
"L 43.40625 38.09375 \r\n",
"L 69.28125 38.09375 \r\n",
"L 69.28125 6.78125 \r\n",
"Q 63.578125 2.734375 56.6875 0.65625 \r\n",
"Q 49.8125 -1.421875 42 -1.421875 \r\n",
"Q 24.90625 -1.421875 15.25 8.5625 \r\n",
"Q 5.609375 18.5625 5.609375 36.375 \r\n",
"Q 5.609375 54.25 15.25 64.234375 \r\n",
"Q 24.90625 74.21875 42 74.21875 \r\n",
"Q 49.125 74.21875 55.546875 72.453125 \r\n",
"Q 61.96875 70.703125 67.390625 67.28125 \r\n",
"L 67.390625 56.78125 \r\n",
"Q 61.921875 61.421875 55.765625 63.765625 \r\n",
"Q 49.609375 66.109375 42.828125 66.109375 \r\n",
"Q 29.4375 66.109375 22.71875 58.640625 \r\n",
"Q 16.015625 51.171875 16.015625 36.375 \r\n",
"Q 16.015625 21.625 22.71875 14.15625 \r\n",
"Q 29.4375 6.6875 42.828125 6.6875 \r\n",
"Q 48.046875 6.6875 52.140625 7.59375 \r\n",
"Q 56.25 8.5 59.515625 10.40625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-71\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(88.378125 290.665937)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-76\"/>\r\n",
" <use x=\"55.712891\" xlink:href=\"#DejaVuSans-80\"/>\r\n",
" <use x=\"116.015625\" xlink:href=\"#DejaVuSans-71\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_148\">\r\n",
" <path d=\"M 60.378125 301.844062 \r\n",
"L 80.378125 301.844062 \r\n",
"\" style=\"fill:none;stroke:#2ca02c;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_149\">\r\n",
" <g>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"70.378125\" xlink:href=\"#m67b77adaea\" y=\"301.844062\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_13\">\r\n",
" <!-- CH4 -->\r\n",
" <g transform=\"translate(88.378125 305.344062)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-72\"/>\r\n",
" <use x=\"145.019531\" xlink:href=\"#DejaVuSans-52\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_150\">\r\n",
" <path d=\"M 60.378125 316.522187 \r\n",
"L 80.378125 316.522187 \r\n",
"\" style=\"fill:none;stroke:#d62728;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_151\">\r\n",
" <g>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"70.378125\" xlink:href=\"#m1e5ac72c17\" y=\"316.522187\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_14\">\r\n",
" <!-- CO -->\r\n",
" <defs>\r\n",
" <path d=\"M 39.40625 66.21875 \r\n",
"Q 28.65625 66.21875 22.328125 58.203125 \r\n",
"Q 16.015625 50.203125 16.015625 36.375 \r\n",
"Q 16.015625 22.609375 22.328125 14.59375 \r\n",
"Q 28.65625 6.59375 39.40625 6.59375 \r\n",
"Q 50.140625 6.59375 56.421875 14.59375 \r\n",
"Q 62.703125 22.609375 62.703125 36.375 \r\n",
"Q 62.703125 50.203125 56.421875 58.203125 \r\n",
"Q 50.140625 66.21875 39.40625 66.21875 \r\n",
"z\r\n",
"M 39.40625 74.21875 \r\n",
"Q 54.734375 74.21875 63.90625 63.9375 \r\n",
"Q 73.09375 53.65625 73.09375 36.375 \r\n",
"Q 73.09375 19.140625 63.90625 8.859375 \r\n",
"Q 54.734375 -1.421875 39.40625 -1.421875 \r\n",
"Q 24.03125 -1.421875 14.8125 8.828125 \r\n",
"Q 5.609375 19.09375 5.609375 36.375 \r\n",
"Q 5.609375 53.65625 14.8125 63.9375 \r\n",
"Q 24.03125 74.21875 39.40625 74.21875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-79\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(88.378125 320.022187)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-79\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_152\">\r\n",
" <path d=\"M 60.378125 331.200312 \r\n",
"L 80.378125 331.200312 \r\n",
"\" style=\"fill:none;stroke:#9467bd;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_153\">\r\n",
" <g>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"70.378125\" xlink:href=\"#m32990c4d79\" y=\"331.200312\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_15\">\r\n",
" <!-- Alcohol -->\r\n",
" <defs>\r\n",
" <path d=\"M 34.1875 63.1875 \r\n",
"L 20.796875 26.90625 \r\n",
"L 47.609375 26.90625 \r\n",
"z\r\n",
"M 28.609375 72.90625 \r\n",
"L 39.796875 72.90625 \r\n",
"L 67.578125 0 \r\n",
"L 57.328125 0 \r\n",
"L 50.6875 18.703125 \r\n",
"L 17.828125 18.703125 \r\n",
"L 11.1875 0 \r\n",
"L 0.78125 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-65\"/>\r\n",
" <path d=\"M 9.421875 75.984375 \r\n",
"L 18.40625 75.984375 \r\n",
"L 18.40625 0 \r\n",
"L 9.421875 0 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-108\"/>\r\n",
" <path d=\"M 54.890625 33.015625 \r\n",
"L 54.890625 0 \r\n",
"L 45.90625 0 \r\n",
"L 45.90625 32.71875 \r\n",
"Q 45.90625 40.484375 42.875 44.328125 \r\n",
"Q 39.84375 48.1875 33.796875 48.1875 \r\n",
"Q 26.515625 48.1875 22.3125 43.546875 \r\n",
"Q 18.109375 38.921875 18.109375 30.90625 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"L 18.109375 46.1875 \r\n",
"Q 21.34375 51.125 25.703125 53.5625 \r\n",
"Q 30.078125 56 35.796875 56 \r\n",
"Q 45.21875 56 50.046875 50.171875 \r\n",
"Q 54.890625 44.34375 54.890625 33.015625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-104\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(88.378125 334.700312)scale(0.1 -0.1)\">\r\n",
" <use xlink:href=\"#DejaVuSans-65\"/>\r\n",
" <use x=\"68.408203\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"96.191406\" xlink:href=\"#DejaVuSans-99\"/>\r\n",
" <use x=\"151.171875\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"212.353516\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
" <use x=\"275.732422\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"336.914062\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_16\">\r\n",
" <!-- Calibration plot for MQ-8 data -->\r\n",
" <defs>\r\n",
" <path d=\"M 48.6875 27.296875 \r\n",
"Q 48.6875 37.203125 44.609375 42.84375 \r\n",
"Q 40.53125 48.484375 33.40625 48.484375 \r\n",
"Q 26.265625 48.484375 22.1875 42.84375 \r\n",
"Q 18.109375 37.203125 18.109375 27.296875 \r\n",
"Q 18.109375 17.390625 22.1875 11.75 \r\n",
"Q 26.265625 6.109375 33.40625 6.109375 \r\n",
"Q 40.53125 6.109375 44.609375 11.75 \r\n",
"Q 48.6875 17.390625 48.6875 27.296875 \r\n",
"z\r\n",
"M 18.109375 46.390625 \r\n",
"Q 20.953125 51.265625 25.265625 53.625 \r\n",
"Q 29.59375 56 35.59375 56 \r\n",
"Q 45.5625 56 51.78125 48.09375 \r\n",
"Q 58.015625 40.1875 58.015625 27.296875 \r\n",
"Q 58.015625 14.40625 51.78125 6.484375 \r\n",
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
"Q 20.953125 3.328125 18.109375 8.203125 \r\n",
"L 18.109375 0 \r\n",
"L 9.078125 0 \r\n",
"L 9.078125 75.984375 \r\n",
"L 18.109375 75.984375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-98\"/>\r\n",
" <path d=\"M 18.109375 8.203125 \r\n",
"L 18.109375 -20.796875 \r\n",
"L 9.078125 -20.796875 \r\n",
"L 9.078125 54.6875 \r\n",
"L 18.109375 54.6875 \r\n",
"L 18.109375 46.390625 \r\n",
"Q 20.953125 51.265625 25.265625 53.625 \r\n",
"Q 29.59375 56 35.59375 56 \r\n",
"Q 45.5625 56 51.78125 48.09375 \r\n",
"Q 58.015625 40.1875 58.015625 27.296875 \r\n",
"Q 58.015625 14.40625 51.78125 6.484375 \r\n",
"Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
"Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
"Q 20.953125 3.328125 18.109375 8.203125 \r\n",
"z\r\n",
"M 48.6875 27.296875 \r\n",
"Q 48.6875 37.203125 44.609375 42.84375 \r\n",
"Q 40.53125 48.484375 33.40625 48.484375 \r\n",
"Q 26.265625 48.484375 22.1875 42.84375 \r\n",
"Q 18.109375 37.203125 18.109375 27.296875 \r\n",
"Q 18.109375 17.390625 22.1875 11.75 \r\n",
"Q 26.265625 6.109375 33.40625 6.109375 \r\n",
"Q 40.53125 6.109375 44.609375 11.75 \r\n",
"Q 48.6875 17.390625 48.6875 27.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-112\"/>\r\n",
" <path d=\"M 37.109375 75.984375 \r\n",
"L 37.109375 68.5 \r\n",
"L 28.515625 68.5 \r\n",
"Q 23.6875 68.5 21.796875 66.546875 \r\n",
"Q 19.921875 64.59375 19.921875 59.515625 \r\n",
"L 19.921875 54.6875 \r\n",
"L 34.71875 54.6875 \r\n",
"L 34.71875 47.703125 \r\n",
"L 19.921875 47.703125 \r\n",
"L 19.921875 0 \r\n",
"L 10.890625 0 \r\n",
"L 10.890625 47.703125 \r\n",
"L 2.296875 47.703125 \r\n",
"L 2.296875 54.6875 \r\n",
"L 10.890625 54.6875 \r\n",
"L 10.890625 58.5 \r\n",
"Q 10.890625 67.625 15.140625 71.796875 \r\n",
"Q 19.390625 75.984375 28.609375 75.984375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-102\"/>\r\n",
" <path d=\"M 39.40625 66.21875 \r\n",
"Q 28.65625 66.21875 22.328125 58.203125 \r\n",
"Q 16.015625 50.203125 16.015625 36.375 \r\n",
"Q 16.015625 22.609375 22.328125 14.59375 \r\n",
"Q 28.65625 6.59375 39.40625 6.59375 \r\n",
"Q 50.140625 6.59375 56.421875 14.59375 \r\n",
"Q 62.703125 22.609375 62.703125 36.375 \r\n",
"Q 62.703125 50.203125 56.421875 58.203125 \r\n",
"Q 50.140625 66.21875 39.40625 66.21875 \r\n",
"z\r\n",
"M 53.21875 1.3125 \r\n",
"L 66.21875 -12.890625 \r\n",
"L 54.296875 -12.890625 \r\n",
"L 43.5 -1.21875 \r\n",
"Q 41.890625 -1.3125 41.03125 -1.359375 \r\n",
"Q 40.1875 -1.421875 39.40625 -1.421875 \r\n",
"Q 24.03125 -1.421875 14.8125 8.859375 \r\n",
"Q 5.609375 19.140625 5.609375 36.375 \r\n",
"Q 5.609375 53.65625 14.8125 63.9375 \r\n",
"Q 24.03125 74.21875 39.40625 74.21875 \r\n",
"Q 54.734375 74.21875 63.90625 63.9375 \r\n",
"Q 73.09375 53.65625 73.09375 36.375 \r\n",
"Q 73.09375 23.6875 67.984375 14.640625 \r\n",
"Q 62.890625 5.609375 53.21875 1.3125 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-81\"/>\r\n",
" <path d=\"M 4.890625 31.390625 \r\n",
"L 31.203125 31.390625 \r\n",
"L 31.203125 23.390625 \r\n",
"L 4.890625 23.390625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-45\"/>\r\n",
" <path d=\"M 31.78125 34.625 \r\n",
"Q 24.75 34.625 20.71875 30.859375 \r\n",
"Q 16.703125 27.09375 16.703125 20.515625 \r\n",
"Q 16.703125 13.921875 20.71875 10.15625 \r\n",
"Q 24.75 6.390625 31.78125 6.390625 \r\n",
"Q 38.8125 6.390625 42.859375 10.171875 \r\n",
"Q 46.921875 13.96875 46.921875 20.515625 \r\n",
"Q 46.921875 27.09375 42.890625 30.859375 \r\n",
"Q 38.875 34.625 31.78125 34.625 \r\n",
"z\r\n",
"M 21.921875 38.8125 \r\n",
"Q 15.578125 40.375 12.03125 44.71875 \r\n",
"Q 8.5 49.078125 8.5 55.328125 \r\n",
"Q 8.5 64.0625 14.71875 69.140625 \r\n",
"Q 20.953125 74.21875 31.78125 74.21875 \r\n",
"Q 42.671875 74.21875 48.875 69.140625 \r\n",
"Q 55.078125 64.0625 55.078125 55.328125 \r\n",
"Q 55.078125 49.078125 51.53125 44.71875 \r\n",
"Q 48 40.375 41.703125 38.8125 \r\n",
"Q 48.828125 37.15625 52.796875 32.3125 \r\n",
"Q 56.78125 27.484375 56.78125 20.515625 \r\n",
"Q 56.78125 9.90625 50.3125 4.234375 \r\n",
"Q 43.84375 -1.421875 31.78125 -1.421875 \r\n",
"Q 19.734375 -1.421875 13.25 4.234375 \r\n",
"Q 6.78125 9.90625 6.78125 20.515625 \r\n",
"Q 6.78125 27.484375 10.78125 32.3125 \r\n",
"Q 14.796875 37.15625 21.921875 38.8125 \r\n",
"z\r\n",
"M 18.3125 54.390625 \r\n",
"Q 18.3125 48.734375 21.84375 45.5625 \r\n",
"Q 25.390625 42.390625 31.78125 42.390625 \r\n",
"Q 38.140625 42.390625 41.71875 45.5625 \r\n",
"Q 45.3125 48.734375 45.3125 54.390625 \r\n",
"Q 45.3125 60.0625 41.71875 63.234375 \r\n",
"Q 38.140625 66.40625 31.78125 66.40625 \r\n",
"Q 25.390625 66.40625 21.84375 63.234375 \r\n",
"Q 18.3125 60.0625 18.3125 54.390625 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-56\"/>\r\n",
" <path d=\"M 45.40625 46.390625 \r\n",
"L 45.40625 75.984375 \r\n",
"L 54.390625 75.984375 \r\n",
"L 54.390625 0 \r\n",
"L 45.40625 0 \r\n",
"L 45.40625 8.203125 \r\n",
"Q 42.578125 3.328125 38.25 0.953125 \r\n",
"Q 33.9375 -1.421875 27.875 -1.421875 \r\n",
"Q 17.96875 -1.421875 11.734375 6.484375 \r\n",
"Q 5.515625 14.40625 5.515625 27.296875 \r\n",
"Q 5.515625 40.1875 11.734375 48.09375 \r\n",
"Q 17.96875 56 27.875 56 \r\n",
"Q 33.9375 56 38.25 53.625 \r\n",
"Q 42.578125 51.265625 45.40625 46.390625 \r\n",
"z\r\n",
"M 14.796875 27.296875 \r\n",
"Q 14.796875 17.390625 18.875 11.75 \r\n",
"Q 22.953125 6.109375 30.078125 6.109375 \r\n",
"Q 37.203125 6.109375 41.296875 11.75 \r\n",
"Q 45.40625 17.390625 45.40625 27.296875 \r\n",
"Q 45.40625 37.203125 41.296875 42.84375 \r\n",
"Q 37.203125 48.484375 30.078125 48.484375 \r\n",
"Q 22.953125 48.484375 18.875 42.84375 \r\n",
"Q 14.796875 37.203125 14.796875 27.296875 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-100\"/>\r\n",
" </defs>\r\n",
" <g transform=\"translate(204.956563 16.318125)scale(0.12 -0.12)\">\r\n",
" <use xlink:href=\"#DejaVuSans-67\"/>\r\n",
" <use x=\"69.824219\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"131.103516\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"158.886719\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"186.669922\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
" <use x=\"250.146484\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"291.259766\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"352.539062\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"391.748047\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
" <use x=\"419.53125\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"480.712891\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
" <use x=\"544.091797\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"575.878906\" xlink:href=\"#DejaVuSans-112\"/>\r\n",
" <use x=\"639.355469\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
" <use x=\"667.138672\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"728.320312\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"767.529297\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"799.316406\" xlink:href=\"#DejaVuSans-102\"/>\r\n",
" <use x=\"834.521484\" xlink:href=\"#DejaVuSans-111\"/>\r\n",
" <use x=\"895.703125\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
" <use x=\"936.816406\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"968.603516\" xlink:href=\"#DejaVuSans-77\"/>\r\n",
" <use x=\"1054.882812\" xlink:href=\"#DejaVuSans-81\"/>\r\n",
" <use x=\"1133.625\" xlink:href=\"#DejaVuSans-45\"/>\r\n",
" <use x=\"1169.708984\" xlink:href=\"#DejaVuSans-56\"/>\r\n",
" <use x=\"1233.332031\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
" <use x=\"1265.119141\" xlink:href=\"#DejaVuSans-100\"/>\r\n",
" <use x=\"1328.595703\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" <use x=\"1389.875\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
" <use x=\"1429.083984\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <defs>\r\n",
" <clipPath id=\"pf1c8a9b058\">\r\n",
" <rect height=\"298.98\" width=\"502.2\" x=\"51.378125\" y=\"46.8\"/>\r\n",
" </clipPath>\r\n",
" </defs>\r\n",
"</svg>\r\n"
],
"text/plain": [
"<Figure size 1800x1100 with 1 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"%config InlineBackend.figure_formats = ['svg']\n",
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"import matplotlib.lines as mlines\n",
"import matplotlib.transforms as mtransforms\n",
"\n",
"fig, ax = plt.subplots()\n",
"\n",
"fig.set_size_inches(9, 5.5, forward=True)\n",
"fig.set_dpi(200)\n",
"\n",
"# only these two lines are calibration curves\n",
"plt.plot(MQ8_H2, x_MQ8, marker='o', linewidth=1, label='H2')\n",
"plt.plot(MQ8_LPG, x_MQ8, marker='o', linewidth=1, label='LPG')\n",
"plt.plot(MQ8_CH4, x_MQ8, marker='o', linewidth=1, label='CH4')\n",
"plt.plot(MQ8_CO, x_MQ8, marker='o', linewidth=1, label='CO')\n",
"plt.plot(MQ8_Alcohol, x_MQ8, marker='o', linewidth=1, label='Alcohol')\n",
"\n",
"\n",
"# reference line, legends, and axis labels\n",
"#line = mlines.Line2D([0, 1], [0, 1], color='black')\n",
"#transform = ax.transAxes\n",
"#line.set_transform(transform)\n",
"#ax.add_line(line)\n",
"plt.yscale('log')\n",
"plt.xscale('log')\n",
"plt.legend()\n",
"\n",
"plt.grid(b=True, which='minor', color='lightgrey', linestyle='--')\n",
"\n",
"fig.suptitle('Calibration plot for MQ-8 data')\n",
"ax.set_xlabel('PPM Concentration')\n",
"ax.set_ylabel('Rs/Ro')\n",
"\n",
"\n",
"#Save image\n",
"plt.savefig('MQ8.svg', format = 'svg', dpi = 1200)\n",
"plt.savefig('MQ8.png')\n",
"plt.savefig('MQ8.eps', format = 'eps', dpi = 1200)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}