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

2375 lines
114 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": 2,
"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 4000.0 \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 3000.0 \t \n",
"0.1 \t \t \t \t \t \n",
"0.2 \t \t \t \t \t \n",
"0.3 \t \t 400.0 \t \t \t \n",
"0.4 \t \t \t \t 400.0 \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 100.0 \t \t \t \n",
"0.9 \t \t \t \t \t \n",
"1.0 \t \t \t \t 100.0 \t \n"
]
}
],
"source": [
"for row_index in range(1,20): #reading first columns\n",
" RsR0, CO, H2, LPG, CH4, Alcohol = sheetMQ7.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": 7,
"metadata": {},
"outputs": [],
"source": [
"x_MQ7 = sheetMQ7.col_values(0)[2:]\n",
"MQ7_CO = sheetMQ7.col_values(1)[2:]\n",
"MQ7_H2 = sheetMQ7.col_values(2)[2:]\n",
"MQ7_LPG = sheetMQ7.col_values(3)[2:]\n",
"MQ7_CH4 = sheetMQ7.col_values(4)[2:]\n",
"MQ7_Alcohol = sheetMQ7.col_values(5)[2:]"
]
},
{
"cell_type": "code",
"execution_count": 8,
"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": 9,
"metadata": {},
"outputs": [],
"source": [
"MQ7_H2 =zero_to_nan(MQ7_H2)\n",
"MQ7_LPG =zero_to_nan(MQ7_LPG)\n",
"MQ7_CH4 =zero_to_nan(MQ7_CH4)\n",
"MQ7_CO =zero_to_nan(MQ7_CO)\n",
"MQ7_Alcohol =zero_to_nan(MQ7_Alcohol)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"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_MQ7, 'H2': MQ7_H2}\n",
"dataLPG = {'RsRo': x_MQ7, 'LPG': MQ7_LPG}\n",
"dataCH4 = {'RsRo': x_MQ7, 'CH4': MQ7_CH4}\n",
"dataCO = {'RsRo': x_MQ7, 'CO': MQ7_CO}\n",
"dataALcohol = {'RsRo': x_MQ7, 'Alcohol': MQ7_Alcohol}\n",
"\n",
"dfMQ7_H2 = pd.DataFrame(dataH2)\n",
"dfMQ7_LPG = pd.DataFrame(dataLPG)\n",
"dfMQ7_CH4 = pd.DataFrame(dataCH4)\n",
"dfMQ7_CO = pd.DataFrame(dataCO)\n",
"dfMQ7_Alcohol = pd.DataFrame(dataALcohol)\n",
"\n",
"dfMQ7_H2['H2'] = pd.to_numeric(dfMQ7_H2['H2'])\n",
"dfMQ7_LPG['LPG'] = pd.to_numeric(dfMQ7_LPG['LPG'])\n",
"dfMQ7_CH4['CH4'] = pd.to_numeric(dfMQ7_CH4['CH4'])\n",
"dfMQ7_CO['CO'] = pd.to_numeric(dfMQ7_CO['CO'])\n",
"dfMQ7_Alcohol['Alcohol'] = pd.to_numeric(dfMQ7_Alcohol['Alcohol'])\n",
"\n",
"dfMQ7_H2['H2'] = dfMQ7_H2['H2'].replace('',None, regex=True)\n",
"dfMQ7_LPG['LPG'] = dfMQ7_LPG['LPG'].replace('',None, regex=True)\n",
"dfMQ7_CH4['CH4'] = dfMQ7_CH4['CH4'].replace('',None, regex=True)\n",
"dfMQ7_CO['CO'] = dfMQ7_CO['CO'].replace('',None, regex=True)\n",
"dfMQ7_Alcohol['Alcohol'] = dfMQ7_Alcohol['Alcohol'].replace('',None, regex=True)\n",
"\n",
"#Global X_Predict variable\n",
"X_Predict = dfMQ7_LPG.RsRo.apply(lambda x: [x]).tolist()"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"#Model and train H2\n",
"dataset2TrainH2 = dfMQ7_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",
"MQ7_H2 = H2_Predicted\n"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"#Model and train LPG\n",
"dataset2TrainLPG = dfMQ7_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",
"MQ7_LPG = LPG_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CH4\n",
"dataset2TrainCH4 = dfMQ7_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",
"MQ7_CH4 = CH4_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"#Model and train CO\n",
"dataset2TrainCO = dfMQ7_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",
"MQ7_CO = CO_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"#Model and train Alcohol\n",
"dataset2TrainAlcohol = dfMQ7_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",
"MQ7_Alcohol = Alcohol_Predicted"
]
},
{
"cell_type": "code",
"execution_count": 17,
"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=\"m149c1ccda1\" style=\"stroke:#000000;stroke-width:0.8;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"173.664443\" xlink:href=\"#m149c1ccda1\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_1\">\r\n",
" <!-- $\\mathdefault{10^{2}}$ -->\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",
" <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(164.864443 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_2\">\r\n",
" <g id=\"line2d_2\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"355.762117\" xlink:href=\"#m149c1ccda1\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_2\">\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(346.962117 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_3\">\r\n",
" <g id=\"line2d_3\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"537.859791\" xlink:href=\"#m149c1ccda1\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_3\">\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(529.059791 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_4\">\r\n",
" <g id=\"line2d_4\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 78.44944 345.78 \r\n",
"L 78.44944 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_5\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L 0 2 \r\n",
"\" id=\"m4dd45082db\" style=\"stroke:#000000;stroke-width:0.6;\"/>\r\n",
" </defs>\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"78.44944\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_5\">\r\n",
" <g id=\"line2d_6\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 101.200493 345.78 \r\n",
"L 101.200493 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_7\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"101.200493\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_6\">\r\n",
" <g id=\"line2d_8\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 118.847581 345.78 \r\n",
"L 118.847581 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_9\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"118.847581\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_7\">\r\n",
" <g id=\"line2d_10\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 133.266302 345.78 \r\n",
"L 133.266302 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_11\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"133.266302\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_8\">\r\n",
" <g id=\"line2d_12\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 145.457156 345.78 \r\n",
"L 145.457156 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_13\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"145.457156\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_9\">\r\n",
" <g id=\"line2d_14\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 156.017355 345.78 \r\n",
"L 156.017355 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_15\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"156.017355\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_10\">\r\n",
" <g id=\"line2d_16\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 165.33211 345.78 \r\n",
"L 165.33211 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_17\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"165.33211\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_11\">\r\n",
" <g id=\"line2d_18\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 228.481305 345.78 \r\n",
"L 228.481305 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_19\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"228.481305\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_12\">\r\n",
" <g id=\"line2d_20\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 260.547113 345.78 \r\n",
"L 260.547113 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_21\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"260.547113\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_13\">\r\n",
" <g id=\"line2d_22\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 283.298167 345.78 \r\n",
"L 283.298167 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_23\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"283.298167\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_14\">\r\n",
" <g id=\"line2d_24\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 300.945255 345.78 \r\n",
"L 300.945255 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_25\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"300.945255\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_15\">\r\n",
" <g id=\"line2d_26\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 315.363975 345.78 \r\n",
"L 315.363975 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_27\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"315.363975\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_16\">\r\n",
" <g id=\"line2d_28\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 327.55483 345.78 \r\n",
"L 327.55483 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_29\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"327.55483\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_17\">\r\n",
" <g id=\"line2d_30\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 338.115029 345.78 \r\n",
"L 338.115029 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_31\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"338.115029\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_18\">\r\n",
" <g id=\"line2d_32\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 347.429784 345.78 \r\n",
"L 347.429784 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_33\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"347.429784\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_19\">\r\n",
" <g id=\"line2d_34\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 410.578979 345.78 \r\n",
"L 410.578979 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_35\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"410.578979\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_20\">\r\n",
" <g id=\"line2d_36\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 442.644787 345.78 \r\n",
"L 442.644787 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_37\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"442.644787\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_21\">\r\n",
" <g id=\"line2d_38\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 465.395841 345.78 \r\n",
"L 465.395841 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_39\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"465.395841\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_22\">\r\n",
" <g id=\"line2d_40\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 483.042929 345.78 \r\n",
"L 483.042929 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_41\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"483.042929\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_23\">\r\n",
" <g id=\"line2d_42\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 497.461649 345.78 \r\n",
"L 497.461649 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_43\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"497.461649\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_24\">\r\n",
" <g id=\"line2d_44\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 509.652504 345.78 \r\n",
"L 509.652504 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_45\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"509.652504\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_25\">\r\n",
" <g id=\"line2d_46\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 520.212703 345.78 \r\n",
"L 520.212703 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_47\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"520.212703\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"xtick_26\">\r\n",
" <g id=\"line2d_48\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 529.527458 345.78 \r\n",
"L 529.527458 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_49\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"529.527458\" xlink:href=\"#m4dd45082db\" y=\"345.78\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_4\">\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_50\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -3.5 0 \r\n",
"\" id=\"me051515df4\" 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=\"#me051515df4\" y=\"280.829744\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_5\">\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_51\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#me051515df4\" y=\"207.349829\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_6\">\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_52\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#me051515df4\" y=\"133.869915\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_7\">\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_53\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"51.378125\" xlink:href=\"#me051515df4\" y=\"60.39\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_8\">\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_54\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_55\">\r\n",
" <defs>\r\n",
" <path d=\"M 0 0 \r\n",
"L -2 0 \r\n",
"\" id=\"m4e01b6bdd9\" 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=\"#m4e01b6bdd9\" y=\"332.19\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_6\">\r\n",
" <g id=\"line2d_56\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_57\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"319.250829\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_7\">\r\n",
" <g id=\"line2d_58\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_59\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"310.070342\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_8\">\r\n",
" <g id=\"line2d_60\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_61\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"302.949402\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_9\">\r\n",
" <g id=\"line2d_62\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_63\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"297.131171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_10\">\r\n",
" <g id=\"line2d_64\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_65\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"292.211927\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_11\">\r\n",
" <g id=\"line2d_66\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_67\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"287.950683\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_12\">\r\n",
" <g id=\"line2d_68\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_69\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"284.192\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_13\">\r\n",
" <g id=\"line2d_70\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_71\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"258.710085\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_14\">\r\n",
" <g id=\"line2d_72\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_73\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"245.770915\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_15\">\r\n",
" <g id=\"line2d_74\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_75\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"236.590427\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_16\">\r\n",
" <g id=\"line2d_76\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_77\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"229.469488\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_17\">\r\n",
" <g id=\"line2d_78\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_79\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"223.651256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_18\">\r\n",
" <g id=\"line2d_80\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_81\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"218.732012\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_19\">\r\n",
" <g id=\"line2d_82\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_83\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"214.470769\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_20\">\r\n",
" <g id=\"line2d_84\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_85\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"210.712086\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_21\">\r\n",
" <g id=\"line2d_86\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_87\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"185.230171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_22\">\r\n",
" <g id=\"line2d_88\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_89\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"172.291\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_23\">\r\n",
" <g id=\"line2d_90\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_91\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"163.110512\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_24\">\r\n",
" <g id=\"line2d_92\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_93\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"155.989573\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_25\">\r\n",
" <g id=\"line2d_94\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_95\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"150.171342\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_26\">\r\n",
" <g id=\"line2d_96\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_97\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"145.252097\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_27\">\r\n",
" <g id=\"line2d_98\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_99\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"140.990854\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_28\">\r\n",
" <g id=\"line2d_100\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_101\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"137.232171\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_29\">\r\n",
" <g id=\"line2d_102\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_103\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"111.750256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_30\">\r\n",
" <g id=\"line2d_104\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_105\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"98.811086\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_31\">\r\n",
" <g id=\"line2d_106\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_107\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"89.630598\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_32\">\r\n",
" <g id=\"line2d_108\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_109\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"82.509658\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_33\">\r\n",
" <g id=\"line2d_110\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_111\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"76.691427\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_34\">\r\n",
" <g id=\"line2d_112\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_113\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"71.772183\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_35\">\r\n",
" <g id=\"line2d_114\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_115\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"67.510939\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"ytick_36\">\r\n",
" <g id=\"line2d_116\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" 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_117\">\r\n",
" <g>\r\n",
" <use style=\"stroke:#000000;stroke-width:0.6;\" x=\"51.378125\" xlink:href=\"#m4e01b6bdd9\" y=\"63.752256\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_9\">\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_118\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 446.508273 332.19 \r\n",
"L 445.359772 319.250829 \r\n",
"L 444.194346 310.070342 \r\n",
"L 443.011488 302.949402 \r\n",
"L 441.810669 297.131171 \r\n",
"L 440.591336 292.211927 \r\n",
"L 439.352908 287.950683 \r\n",
"L 438.094777 284.192 \r\n",
"L 436.816307 280.829744 \r\n",
"L 422.747299 258.710085 \r\n",
"L 405.621898 245.770915 \r\n",
"L 383.732746 236.590427 \r\n",
"L 353.363063 229.469488 \r\n",
"L 303.426661 223.651256 \r\n",
"L 135.545409 218.732012 \r\n",
"L -1 218.728822 \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=\"m012c7888b1\" style=\"stroke:#1f77b4;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p5cad0bcec1)\">\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"446.508273\" xlink:href=\"#m012c7888b1\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"445.359772\" xlink:href=\"#m012c7888b1\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"444.194346\" xlink:href=\"#m012c7888b1\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"443.011488\" xlink:href=\"#m012c7888b1\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"441.810669\" xlink:href=\"#m012c7888b1\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"440.591336\" xlink:href=\"#m012c7888b1\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"439.352908\" xlink:href=\"#m012c7888b1\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"438.094777\" xlink:href=\"#m012c7888b1\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"436.816307\" xlink:href=\"#m012c7888b1\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"422.747299\" xlink:href=\"#m012c7888b1\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"405.621898\" xlink:href=\"#m012c7888b1\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"383.732746\" xlink:href=\"#m012c7888b1\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"353.363063\" xlink:href=\"#m012c7888b1\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"303.426661\" xlink:href=\"#m012c7888b1\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"135.545409\" xlink:href=\"#m012c7888b1\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"-1\" xlink:href=\"#m012c7888b1\" y=\"218.728822\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_119\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 530.750852 332.19 \r\n",
"L 530.648819 319.250829 \r\n",
"L 530.546655 310.070342 \r\n",
"L 530.444358 302.949402 \r\n",
"L 530.341928 297.131171 \r\n",
"L 530.239366 292.211927 \r\n",
"L 530.136671 287.950683 \r\n",
"L 530.033842 284.192 \r\n",
"L 529.930879 280.829744 \r\n",
"L 528.893811 258.710085 \r\n",
"L 527.842962 245.770915 \r\n",
"L 526.777961 236.590427 \r\n",
"L 525.698422 229.469488 \r\n",
"L 524.603943 223.651256 \r\n",
"L 523.494104 218.732012 \r\n",
"L 522.368468 214.470769 \r\n",
"L 521.226578 210.712086 \r\n",
"L 520.067959 207.349829 \r\n",
"L 507.439845 185.230171 \r\n",
"L 492.404869 172.291 \r\n",
"L 473.824301 163.110512 \r\n",
"L 449.492535 155.989573 \r\n",
"L 414.167239 150.171342 \r\n",
"L 348.678934 145.252097 \r\n",
"L -1 145.243939 \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=\"m96ec32c25c\" style=\"stroke:#ff7f0e;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p5cad0bcec1)\">\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.750852\" xlink:href=\"#m96ec32c25c\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.648819\" xlink:href=\"#m96ec32c25c\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.546655\" xlink:href=\"#m96ec32c25c\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.444358\" xlink:href=\"#m96ec32c25c\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.341928\" xlink:href=\"#m96ec32c25c\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.239366\" xlink:href=\"#m96ec32c25c\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.136671\" xlink:href=\"#m96ec32c25c\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"530.033842\" xlink:href=\"#m96ec32c25c\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"529.930879\" xlink:href=\"#m96ec32c25c\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"528.893811\" xlink:href=\"#m96ec32c25c\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"527.842962\" xlink:href=\"#m96ec32c25c\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"526.777961\" xlink:href=\"#m96ec32c25c\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"525.698422\" xlink:href=\"#m96ec32c25c\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"524.603943\" xlink:href=\"#m96ec32c25c\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"523.494104\" xlink:href=\"#m96ec32c25c\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"522.368468\" xlink:href=\"#m96ec32c25c\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"521.226578\" xlink:href=\"#m96ec32c25c\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"520.067959\" xlink:href=\"#m96ec32c25c\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"507.439845\" xlink:href=\"#m96ec32c25c\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"492.404869\" xlink:href=\"#m96ec32c25c\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"473.824301\" xlink:href=\"#m96ec32c25c\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"449.492535\" xlink:href=\"#m96ec32c25c\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"414.167239\" xlink:href=\"#m96ec32c25c\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"348.678934\" xlink:href=\"#m96ec32c25c\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"-1\" xlink:href=\"#m96ec32c25c\" y=\"145.243939\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_120\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 512.149987 332.19 \r\n",
"L 512.11067 319.250829 \r\n",
"L 512.071333 310.070342 \r\n",
"L 512.031977 302.949402 \r\n",
"L 511.992601 297.131171 \r\n",
"L 511.953205 292.211927 \r\n",
"L 511.91379 287.950683 \r\n",
"L 511.874355 284.192 \r\n",
"L 511.8349 280.829744 \r\n",
"L 511.439267 258.710085 \r\n",
"L 511.041645 245.770915 \r\n",
"L 510.642014 236.590427 \r\n",
"L 510.240353 229.469488 \r\n",
"L 509.836642 223.651256 \r\n",
"L 509.430859 218.732012 \r\n",
"L 509.022984 214.470769 \r\n",
"L 508.612994 210.712086 \r\n",
"L 508.200867 207.349829 \r\n",
"L 503.956983 185.230171 \r\n",
"L 499.472381 172.291 \r\n",
"L 494.718102 163.110512 \r\n",
"L 489.659627 155.989573 \r\n",
"L 484.25535 150.171342 \r\n",
"L 478.454502 145.252097 \r\n",
"L 472.194238 140.990854 \r\n",
"L 465.395481 137.232171 \r\n",
"L 457.956799 133.869915 \r\n",
"L 118.876333 111.750256 \r\n",
"L -1 111.741753 \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=\"m9312fff8f5\" style=\"stroke:#2ca02c;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p5cad0bcec1)\">\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"512.149987\" xlink:href=\"#m9312fff8f5\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"512.11067\" xlink:href=\"#m9312fff8f5\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"512.071333\" xlink:href=\"#m9312fff8f5\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"512.031977\" xlink:href=\"#m9312fff8f5\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.992601\" xlink:href=\"#m9312fff8f5\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.953205\" xlink:href=\"#m9312fff8f5\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.91379\" xlink:href=\"#m9312fff8f5\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.874355\" xlink:href=\"#m9312fff8f5\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.8349\" xlink:href=\"#m9312fff8f5\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.439267\" xlink:href=\"#m9312fff8f5\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"511.041645\" xlink:href=\"#m9312fff8f5\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"510.642014\" xlink:href=\"#m9312fff8f5\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"510.240353\" xlink:href=\"#m9312fff8f5\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"509.836642\" xlink:href=\"#m9312fff8f5\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"509.430859\" xlink:href=\"#m9312fff8f5\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"509.022984\" xlink:href=\"#m9312fff8f5\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"508.612994\" xlink:href=\"#m9312fff8f5\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"508.200867\" xlink:href=\"#m9312fff8f5\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"503.956983\" xlink:href=\"#m9312fff8f5\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"499.472381\" xlink:href=\"#m9312fff8f5\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"494.718102\" xlink:href=\"#m9312fff8f5\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"489.659627\" xlink:href=\"#m9312fff8f5\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"484.25535\" xlink:href=\"#m9312fff8f5\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"478.454502\" xlink:href=\"#m9312fff8f5\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"472.194238\" xlink:href=\"#m9312fff8f5\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"465.395481\" xlink:href=\"#m9312fff8f5\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"457.956799\" xlink:href=\"#m9312fff8f5\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"118.876333\" xlink:href=\"#m9312fff8f5\" y=\"111.750256\"/>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"-1\" xlink:href=\"#m9312fff8f5\" y=\"111.741753\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_121\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 428.600118 332.19 \r\n",
"L 427.70658 319.250829 \r\n",
"L 426.80283 310.070342 \r\n",
"L 425.888633 302.949402 \r\n",
"L 424.963745 297.131171 \r\n",
"L 424.027912 292.211927 \r\n",
"L 423.080871 287.950683 \r\n",
"L 422.122353 284.192 \r\n",
"L 421.152074 280.829744 \r\n",
"L 410.732262 258.710085 \r\n",
"L 398.728204 245.770915 \r\n",
"L 384.570258 236.590427 \r\n",
"L 367.312728 229.469488 \r\n",
"L 345.206704 223.651256 \r\n",
"L 314.415381 218.732012 \r\n",
"L 263.30319 214.470769 \r\n",
"L 74.205398 210.712086 \r\n",
"L -1 210.710699 \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=\"m658d56fedc\" style=\"stroke:#d62728;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p5cad0bcec1)\">\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"428.600118\" xlink:href=\"#m658d56fedc\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"427.70658\" xlink:href=\"#m658d56fedc\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"426.80283\" xlink:href=\"#m658d56fedc\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"425.888633\" xlink:href=\"#m658d56fedc\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"424.963745\" xlink:href=\"#m658d56fedc\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"424.027912\" xlink:href=\"#m658d56fedc\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"423.080871\" xlink:href=\"#m658d56fedc\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"422.122353\" xlink:href=\"#m658d56fedc\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"421.152074\" xlink:href=\"#m658d56fedc\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"410.732262\" xlink:href=\"#m658d56fedc\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"398.728204\" xlink:href=\"#m658d56fedc\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"384.570258\" xlink:href=\"#m658d56fedc\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"367.312728\" xlink:href=\"#m658d56fedc\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"345.206704\" xlink:href=\"#m658d56fedc\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"314.415381\" xlink:href=\"#m658d56fedc\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"263.30319\" xlink:href=\"#m658d56fedc\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"74.205398\" xlink:href=\"#m658d56fedc\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"-1\" xlink:href=\"#m658d56fedc\" y=\"210.710699\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"line2d_122\">\r\n",
" <path clip-path=\"url(#p5cad0bcec1)\" d=\"M 519.637654 332.19 \r\n",
"L 519.598312 319.250829 \r\n",
"L 519.55895 310.070342 \r\n",
"L 519.519569 302.949402 \r\n",
"L 519.480168 297.131171 \r\n",
"L 519.440748 292.211927 \r\n",
"L 519.401307 287.950683 \r\n",
"L 519.361848 284.192 \r\n",
"L 519.322368 280.829744 \r\n",
"L 518.926485 258.710085 \r\n",
"L 518.52861 245.770915 \r\n",
"L 518.128723 236.590427 \r\n",
"L 517.726803 229.469488 \r\n",
"L 517.322831 223.651256 \r\n",
"L 516.916784 218.732012 \r\n",
"L 516.508642 214.470769 \r\n",
"L 516.098383 210.712086 \r\n",
"L 515.685984 207.349829 \r\n",
"L 511.439215 185.230171 \r\n",
"L 506.951391 172.291 \r\n",
"L 502.193491 163.110512 \r\n",
"L 497.130915 155.989573 \r\n",
"L 491.721957 150.171342 \r\n",
"L 485.915715 145.252097 \r\n",
"L 479.649169 140.990854 \r\n",
"L 472.843001 137.232171 \r\n",
"L 465.395445 133.869915 \r\n",
"L 118.879208 111.750256 \r\n",
"L -1 111.741753 \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=\"mdbd1bd2f42\" style=\"stroke:#9467bd;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p5cad0bcec1)\">\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.637654\" xlink:href=\"#mdbd1bd2f42\" y=\"332.19\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.598312\" xlink:href=\"#mdbd1bd2f42\" y=\"319.250829\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.55895\" xlink:href=\"#mdbd1bd2f42\" y=\"310.070342\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.519569\" xlink:href=\"#mdbd1bd2f42\" y=\"302.949402\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.480168\" xlink:href=\"#mdbd1bd2f42\" y=\"297.131171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.440748\" xlink:href=\"#mdbd1bd2f42\" y=\"292.211927\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.401307\" xlink:href=\"#mdbd1bd2f42\" y=\"287.950683\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.361848\" xlink:href=\"#mdbd1bd2f42\" y=\"284.192\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"519.322368\" xlink:href=\"#mdbd1bd2f42\" y=\"280.829744\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"518.926485\" xlink:href=\"#mdbd1bd2f42\" y=\"258.710085\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"518.52861\" xlink:href=\"#mdbd1bd2f42\" y=\"245.770915\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"518.128723\" xlink:href=\"#mdbd1bd2f42\" y=\"236.590427\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"517.726803\" xlink:href=\"#mdbd1bd2f42\" y=\"229.469488\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"517.322831\" xlink:href=\"#mdbd1bd2f42\" y=\"223.651256\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"516.916784\" xlink:href=\"#mdbd1bd2f42\" y=\"218.732012\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"516.508642\" xlink:href=\"#mdbd1bd2f42\" y=\"214.470769\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"516.098383\" xlink:href=\"#mdbd1bd2f42\" y=\"210.712086\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"515.685984\" xlink:href=\"#mdbd1bd2f42\" y=\"207.349829\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"511.439215\" xlink:href=\"#mdbd1bd2f42\" y=\"185.230171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"506.951391\" xlink:href=\"#mdbd1bd2f42\" y=\"172.291\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"502.193491\" xlink:href=\"#mdbd1bd2f42\" y=\"163.110512\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"497.130915\" xlink:href=\"#mdbd1bd2f42\" y=\"155.989573\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"491.721957\" xlink:href=\"#mdbd1bd2f42\" y=\"150.171342\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"485.915715\" xlink:href=\"#mdbd1bd2f42\" y=\"145.252097\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"479.649169\" xlink:href=\"#mdbd1bd2f42\" y=\"140.990854\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"472.843001\" xlink:href=\"#mdbd1bd2f42\" y=\"137.232171\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"465.395445\" xlink:href=\"#mdbd1bd2f42\" y=\"133.869915\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"118.879208\" xlink:href=\"#mdbd1bd2f42\" y=\"111.750256\"/>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"-1\" xlink:href=\"#mdbd1bd2f42\" y=\"111.741753\"/>\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 478.107812 128.190625 \r\n",
"L 546.578125 128.190625 \r\n",
"Q 548.578125 128.190625 548.578125 126.190625 \r\n",
"L 548.578125 53.8 \r\n",
"Q 548.578125 51.8 546.578125 51.8 \r\n",
"L 478.107812 51.8 \r\n",
"Q 476.107812 51.8 476.107812 53.8 \r\n",
"L 476.107812 126.190625 \r\n",
"Q 476.107812 128.190625 478.107812 128.190625 \r\n",
"z\r\n",
"\" style=\"fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_123\">\r\n",
" <path d=\"M 480.107812 59.898437 \r\n",
"L 500.107812 59.898437 \r\n",
"\" style=\"fill:none;stroke:#1f77b4;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_124\">\r\n",
" <g>\r\n",
" <use style=\"fill:#1f77b4;stroke:#1f77b4;\" x=\"490.107812\" xlink:href=\"#m012c7888b1\" y=\"59.898437\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_10\">\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(508.107812 63.398437)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_125\">\r\n",
" <path d=\"M 480.107812 74.576562 \r\n",
"L 500.107812 74.576562 \r\n",
"\" style=\"fill:none;stroke:#ff7f0e;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_126\">\r\n",
" <g>\r\n",
" <use style=\"fill:#ff7f0e;stroke:#ff7f0e;\" x=\"490.107812\" xlink:href=\"#m96ec32c25c\" y=\"74.576562\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_11\">\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(508.107812 78.076562)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_127\">\r\n",
" <path d=\"M 480.107812 89.254687 \r\n",
"L 500.107812 89.254687 \r\n",
"\" style=\"fill:none;stroke:#2ca02c;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_128\">\r\n",
" <g>\r\n",
" <use style=\"fill:#2ca02c;stroke:#2ca02c;\" x=\"490.107812\" xlink:href=\"#m9312fff8f5\" y=\"89.254687\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_12\">\r\n",
" <!-- CH4 -->\r\n",
" <g transform=\"translate(508.107812 92.754687)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_129\">\r\n",
" <path d=\"M 480.107812 103.932812 \r\n",
"L 500.107812 103.932812 \r\n",
"\" style=\"fill:none;stroke:#d62728;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_130\">\r\n",
" <g>\r\n",
" <use style=\"fill:#d62728;stroke:#d62728;\" x=\"490.107812\" xlink:href=\"#m658d56fedc\" y=\"103.932812\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_13\">\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(508.107812 107.432812)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_131\">\r\n",
" <path d=\"M 480.107812 118.610937 \r\n",
"L 500.107812 118.610937 \r\n",
"\" style=\"fill:none;stroke:#9467bd;stroke-linecap:square;\"/>\r\n",
" </g>\r\n",
" <g id=\"line2d_132\">\r\n",
" <g>\r\n",
" <use style=\"fill:#9467bd;stroke:#9467bd;\" x=\"490.107812\" xlink:href=\"#mdbd1bd2f42\" y=\"118.610937\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"text_14\">\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(508.107812 122.110937)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_15\">\r\n",
" <!-- Calibration plot for MQ-7 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 8.203125 72.90625 \r\n",
"L 55.078125 72.90625 \r\n",
"L 55.078125 68.703125 \r\n",
"L 28.609375 0 \r\n",
"L 18.3125 0 \r\n",
"L 43.21875 64.59375 \r\n",
"L 8.203125 64.59375 \r\n",
"z\r\n",
"\" id=\"DejaVuSans-55\"/>\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-55\"/>\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=\"p5cad0bcec1\">\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(MQ7_H2, x_MQ7, marker='o', linewidth=1, label='H2')\n",
"plt.plot(MQ7_LPG, x_MQ7, marker='o', linewidth=1, label='LPG')\n",
"plt.plot(MQ7_CH4, x_MQ7, marker='o', linewidth=1, label='CH4')\n",
"plt.plot(MQ7_CO, x_MQ7, marker='o', linewidth=1, label='CO')\n",
"plt.plot(MQ7_Alcohol, x_MQ7, 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-7 data')\n",
"ax.set_xlabel('PPM Concentration')\n",
"ax.set_ylabel('Rs/Ro')\n",
"\n",
"\n",
"#Save image\n",
"plt.savefig('MQ7.svg', format = 'svg', dpi = 1200)\n",
"plt.savefig('MQ7.png')\n",
"plt.savefig('MQ7.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
}